@charset "UTF-8";

/* global -------------------------------------------------*/
* {
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
  /* 追記 */
}

body {
  font-family: 'Noto Sans JP', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  letter-spacing: .04em;
  font-size: 16px;
  width: 100%;
  margin: 0 auto;
}

.en {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
}

p {
  line-height: 1.5;
  text-align: justify;
}

a {
  color: #006d11;
  transition-duration: .3s;
}

a:hover {
  opacity: 0.8;
  cursor: pointer;
  transition-duration: .3s;
}


@media (min-width:768px) and (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/* header -------------------------------------------------*/
.header__container {
  width: 1240px;
  height: 100px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 60px;
  display: flex;
  align-items: center;
}

.header__logo div {
  height: 60px;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #000;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 725px;
}

.header__btn--books {
  margin-left: 20px;
  margin-right: 6px;
}

.header__btn--books a {
  width: 190px;
  height: 60px;
  background-color: #006d11;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header__btn--books a p:nth-child(1) {
  font-size: 11px;
  margin-right: 8px;
}

.header__btn--books a p:nth-child(2) {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  color: #fff000;
}

.header__btn--kengaku a {
  width: 190px;
  height: 60px;
  border: 1px solid #006d11;
  color: #006d11;
  text-decoration: none;
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header__btn--kengaku a p:nth-child(1) {
  font-size: 11px;
  margin-right: 8px;
}

.header__btn--kengaku a p:nth-child(2) {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
}

#header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* nav -------------------------------------------------*/
.global__nav {
  width: 1100px;
  margin: 0 auto 40px;
  padding: 130px 20px 0;
  position: relative;
  z-index: 9;
}

.global__nav .navList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global__nav .navList .nav__item--ttl {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
}

.nav__item.nav__item--news {
  display: none;
}

.global__nav .navList .nav__item--ttl:not(:last-child) {
  position: relative;
  padding-right: 15px;
}

.global__nav .navList .nav__item--ttl:not(:last-child)::after {
  position: absolute;
  top: 6px;
  right: 0;
  content: '';
  display: inline-block;
  width: 13px;
  height: 8px;
  background-image: url(../img/arrowW13.svg);
  background-size: contain;
  vertical-align: middle;
}

.global__nav .navList .nav__item--ttl>a {
  position: relative;
  padding-right: 15px;
  text-decoration: none;
  display: block;
  color: #000;
}

.global__nav .navList .nav__item--ttl>a::after {
  position: absolute;
  top: 6px;
  right: 0;
  content: '';
  display: inline-block;
  width: 13px;
  height: 8px;
  background-image: url(../img/arrowW13.svg);
  background-size: contain;
  vertical-align: middle;
}

.global__nav .navList li.youtube__nav>a {
  position: relative;
  padding-right: 35px;
}

.global__nav .navList li.youtube__nav>a::after {
  position: absolute;
  top: 3px;
  right: 0;

  content: '';
  display: inline-block;
  width: 30px;
  height: 23px;
  background-image: url(../img/youtubeW30.svg);
  background-size: contain;
  vertical-align: middle;
}

/* サブナビゲーション */
@media screen and (min-width: 768px) {
  .navList {
    position: relative;
  }

  .nav__item--sub {
    /* display: flex; */
    background: #000;
    left: 0;
    /* margin: 0 calc(50% - 50vw); */
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    top: 24px;
    transition-duration: .2s;
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #006d11;
    visibility: hidden;
    /* width: 100vw; */
    width: 100%;
  }

  .nav__item--sub .nav__item--sub-inner {
    display: flex;
    margin: 0 auto;
    width: 1060px;
    padding: 0 20px;

    justify-content: space-between;
  }

  .nav__item--sub h3 {
    margin: 20px 20px;
    font-size: 1.3em;
    line-height: 1;
    color: #006d11;
  }

  .nav__item--sub .nav__item--sub-inner ul {
    margin: 0 20px 40px;
    display: flex;
  }

  .nav__item--sub .nav__item--sub-inner ul li:not(:last-child) {
    /* margin-bottom: 10px; */
    margin-right: 20px;
  }

  .nav__item--sub .nav__item--sub-inner ul li {
    position: relative;
    padding-left: 13px;
  }

  .nav__item--sub .nav__item--sub-inner ul li :not(img)::before {
    position: absolute;
    top: 7px;
    left: 0;

    content: '';
    display: inline-block;
    width: 8px;
    height: 13px;
    background-image: url(../img/arrowMulch__black.svg);
    background-size: contain;
    vertical-align: middle;
  }

  .global__nav .navList .nav__item--sub a {
    text-align: left;
    color: #000;
    text-decoration: none;
  }

  .nav__item:hover .nav__item--sub {
    opacity: 1;
    transition-duration: .2s;
    visibility: visible;
  }
}

/* SP時：ハンバーガーメニューボタン */
.nav--menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav--menu {
    height: 50px;
  }

  .global__nav {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 78px;
  }

  .navList {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navList .nav__item {
    margin: 20px 10px;
  }


  .nav__item.nav__item--news {
    display: block;
  }

  .global__nav .navList {
    color: #000;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    left: 50%;
    padding: 10px;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%;
  }

  .nav__item--sub-inner li {
    padding: 20px 0 0;
  }

  .nav__item .nav__item--sub h3 {
    display: none;
  }

  .nav__item .nav__item--sub ul img {
    display: none;
  }

  .global__nav .navList .nav__item--sub a {
    border-bottom: 1px solid #000;
    border-right: none;
    color: #000;
    padding: 1rem 1rem;
    text-align: left;
  }

  .global__nav .navList .nav__item--sub:last-child a {
    border-bottom: none;
  }

  .nav__item--sub {
    display: none;
  }

  .header__container {
    width: 100%;
    height: 78px;
    padding-right: 0;
    border-bottom: 1px solid #000;
  }

  .header__menu {
    display: none;
  }

  .header__logo h1 {
    width: 40%;
    object-fit: cover;
  }

  .header__logo h1 img {
    width: 100%;
  }

  .header__logo div {
    height: 50px;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #000;
    display: flex;
    align-items: center;
    font-size: clamp(10px, 2vw, 14px);
  }

  .nav--menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav--menu div {
    width: 78px;
    height: 78px;
    text-align: center;
  }

  .nav--menu div:not(:last-child) {
    border-left: 1px solid #000;
  }

  .nav--menu div a {
    width: 78px;
    height: 78px;

    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .nav--menu div.nav--icon {
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #000;
    color: #fff;
  }

  .nav--menu div.nav--icon i.material-icons.fa-bars.fas .menu {
    display: inline-block;
  }

  .nav--menu div.nav--icon i.material-icons.fas.fa-times .menu {
    display: none;
  }

  .nav--menu div.nav--icon i.material-icons.fas.fa-times .close {
    display: inline-block;
  }

  .nav--menu div.nav--icon i.material-icons.fa-bars.fas .close {
    display: none;
  }

  .nav--menu div a {
    text-decoration: none;
    color: #000;
  }

  .nav--menu div i.material-icons {
    font-size: clamp(30px, 5vw, 40px);
  }

  .nav--menu div span.txt {
    font-size: clamp(11px, 2vw, 12px);
    margin-top: 4px;
    line-height: 1;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 568px) {
  .header__container {
    height: 62px;
    padding-left: 10px;
  }

  .header__logo div {
    padding-left: 3%;
    margin-left: 3%;
  }

  .nav--menu div {
    width: 62px;
    height: 62px;
  }

  .nav--menu div a {
    width: 62px;
    height: 62px;
  }

  .global__nav {
    padding-top: 62px;
  }
}

@media screen and (max-width: 426px) {
  .header__logo h1 {
    width: 80%;
  }

  .header__logo div {
    padding-left: 3.4%;
    margin-left: 3.4%;
    width: 100%;
  }

  .nav--menu>div:nth-child(2) {
    display: none;
  }

  .nav--menu div {
    width: 60px;
  }

  .nav--menu div a {
    width: 60px;
  }

  .header__logo div {
    height: 40px;
  }
}

@media screen and (max-width: 320px) {
  .header__logo h1 {
    width: 60%;
  }

  .header__logo div {
    display: none;
  }

  .nav--menu div {
    width: 65px;
  }

  .nav--menu div a {
    width: 65px;
  }
}

/* mv -------------------------------------------------*/
.mv {
  width: 100%;
  margin: 0 auto 60px;
  height: 510px;
  padding-top: 40px;
}

.mv__contents {
  height: 470px;
  background: #efeddf;
  position: relative;
  padding-left: 70px;
}

.mvContents-outer {
  position: relative;
  top: -40px;
  width: 1150px;
  height: 470px;
  margin: 0 auto;
  display: flex;
}

.mvContents-inner__txt {
  margin-top: 90px;
  margin-right: 70px;
  width: 450px;
  letter-spacing: .0em;
}

.mvContents-inner__txt-read {
  font-size: 26px;
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  margin-bottom: 35px;
}

h2.mvContents-inner__txt-title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 35px;
}

h2.mvContents-inner__txt-title span:nth-child(1) {
  color: #006d11;
}

h2.mvContents-inner__txt-title span:nth-child(2) {
  font-size: .8em;
}

h2.mvContents-inner__txt-title span:nth-child(3) {
  display: block;
  font-size: 40px;
}

.mvContents-inner__img>div {
  /* border: 1px solid #000; */
}

.mvContents-inner__img>div img {
  width: 630px;
  height: 430px;
  border-radius: 15px;
}

.mvContents-inner__img>p {
  text-align: right;
  font-size: 18px;
  letter-spacing: .0em;
}

.mvContents-inner__txt-logo {
  margin-bottom: 15px;
}

.mvContents-inner__txt-map {
  font-size: 18px;
  line-height: 1.7;
}

.bg-c-set1 {
  display: none;
}

.mvContents-outer.sp {
  display: none;
}

.mv.sub {
  height: auto;
  margin: 0 auto 50px;
  padding-top: 0px;
  /* .mvのpaddingリセット */
  /* padding-top: 100px; */
}

section.sub__outer {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 150px;
  padding: 0 20px;
}

.sub__outer>h2.contents__ttl {
  margin-bottom: 80px;
  line-height: 1.5em;
  letter-spacing: -.3px;
}

.sub__outer>h2.contents__ttl.selectSwitch {
  margin-bottom: 20px;
}

.sub__inner--container {
  width: 100%;
}

.mv.sub .mv__contents {
  height: auto;
}

.mv.sub .mv__contents {
  padding: 40px;
}

.mv.sub .mvContents-outer {
  height: auto;
  top: 0;
}

.mv.sub .mvContents-inner__txt {
  margin-top: 0;
}

.mv.sub .mvContents-inner__txt-read {
  font-size: 18px;
  border: none;
  margin-bottom: 10px;
}

.mv.sub h2.mvContents-inner__txt-title {
  font-size: 35px;
}

.mv.sub .mvContents-inner__img>div {
  border: none;
}

.mv.sub .mvContents-inner__img>div img {
  width: 590px;
  height: 350px;
  border-radius: 0 0 0 4rem;
}

@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    padding-top: calc(78px + 20px + 30px);
  }

  .mv.sub {
    padding-top: 100px;
  }

  .mv__contents {
    height: auto;
    background: #efeddf;
    position: relative;
    padding: 0 20px;
  }

  .mvContents-outer {
    position: relative;
    top: -20px;
    width: 100%;
    height: 100%;
  }

  .mvContents-inner__txt {
    margin-top: 50px;
    margin-right: 5%;
    max-width: 310px;
  }

  .mvContents-inner__txt-read {
    font-size: clamp(12px, 2.8vw, 18px);
    margin-bottom: 1em;
    display: inline-block;
  }

  h2.mvContents-inner__txt-title {
    font-size: clamp(30px, 5.5vw, 35px);
    margin-bottom: .5em;
  }

  h2.mvContents-inner__txt-title span:nth-child(3) {
    font-size: clamp(18px, 4.4vw, 28px);
  }

  .mvContents-inner__img>div {
    max-width: 370px;
  }

  .mvContents-inner__img>div img {
    width: 100%;
    height: 100%;
  }

  .mvContents-inner__img>p {
    font-size: 12px;
  }

  .mvContents-inner__txt-logo img {
    width: 120px;
  }

  .mvContents-inner__txt-map {
    font-size: 12px;
    line-height: 1.7;
  }

  .mv.sub .mv__contents {
    padding: 30px 20px;
  }

  .mv.sub .mvContents-inner__txt-read {
    font-size: 18px;
    border: none;
    margin-bottom: 10px;
  }

  .mv.sub h2.mvContents-inner__txt-title {
    font-size: clamp(25px, 3.5vw, 30px);
  }

  .mv.sub .mvContents-inner__img>div {
    border: none;
  }

  .mv.sub .mvContents-inner__img>div img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 4rem;
  }

  section.sub__outer {
    max-width: 100%;
  }
}

@media screen and (max-width: 667px) {
  .mv.sub {
    height: initial;
    padding-top: calc(78px + 20px + 0px);
    margin: 0 auto 50px;
  }

  .mv.sub .mvContents-outer {
    top: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .mv.sub .mvContents-inner__img>div img {
    width: 100%;
  }

  .mv.sub .mv__contents {
    padding: 20px 25px;
    height: initial;
  }

  .mv.sub .mvContents-inner__txt {
    width: 100%;
    top: 0;
    margin: 0;
  }

  .mv.sub .mvContents-inner__img {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .mvContents-outer.pc {
    display: none;
  }

  .mvContents-outer.sp {
    display: block;
  }

  .mv {
    height: auto;
    padding-top: calc(60px + 20px + 0px);
  }

  .mv__contents {
    height: auto;
    position: relative;
    padding: 0 10px 20px;
    background: none;
    overflow: hidden;
  }

  .mvContents-outer {
    top: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
    z-index: 2;
  }

  .mvContents-inner__txt {
    margin-top: 50px;
    margin-right: 5%;
    max-width: 100%;
  }

  .mvContents-inner__txt-exp {
    font-size: 14px;
  }

  .mvContents-inner__txt-read {
    font-size: clamp(12px, 4.6vw, 20px);
  }

  h2.mvContents-inner__txt-title {
    font-size: clamp(30px, 10.3vw, 44px);
    margin-bottom: 15px;
  }

  h2.mvContents-inner__txt-title span:nth-child(3) {
    font-size: clamp(15px, 8.2vw, 37px);
  }

  .mvContents-inner__img {
    margin-bottom: 15px;
  }

  .mvContents-inner__img p {
    margin-bottom: 10px;
  }

  .mvContents-inner__img>div {
    max-width: 100%;
  }

  .mvContents-inner__img>div img {
    width: 100%;
    height: 100%;
  }

  .mvContents-inner__img>p {
    font-size: 14px;
    text-align: left;
  }

  .mvContents-inner__txt-logo img {
    width: 120px;
  }

  .mvContents-inner__txt-map {
    font-size: 12px;
    line-height: 1.7;
  }

  .mv__contents .bg-c-set1 {
    background-color: #efeddf;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 280px;
    right: 0;
    z-index: 1;

  }

  .mv.sub {
    height: initial;
    padding-top: calc(60px + 20px + 0px);
    margin: 0 auto 30px;
  }

  .mv.sub .mv__contents {
    padding: 20px 10px;
    background: #efeddf;
  }


  section.sub__outer {
    padding: 0 10px;
  }
}

@media screen and (max-width: 426px) {
  .mvContents-inner__txt-exp br {
    display: none;
  }
}

@media screen and (max-width: 320px) {}

/* article -------------------------------------------------*/
article {
  width: 100%;
  margin: 0 auto;
}

.contents__headline--base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 0 20px;
}

.contents__headline--base>p {
  width: 35%;
  text-align: justify;
}

.contents__headline--base>p a {
  position: relative;
  padding-right: 18px;
  color: #000;
  display: block;
  text-align: right;
}

.contents__headline--base>p a::after {
  position: absolute;
  top: 7px;
  right: 0;

  content: '';
  display: inline-block;
  width: 8px;
  height: 13px;
  background-image: url(../img/arrowMulch__black.svg);
  background-size: contain;
  vertical-align: middle;
}

h2.contents__ttl {
  font-size: 30px;
  font-weight: bold;
  width: 65%;
}

.sub__outer>h2.contents__ttl .sp {
  display: none;
}

section:not(:last-child) {
  /* margin-bottom: 100px; */
  margin-bottom: 150px;
}

.contents__next--btn {
  margin-top: 45px;
}

.contents__next--btn a {
  position: relative;
  margin: 0 auto;
  width: 370px;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;

  border: 5px solid #006d11;
  border-radius: 50px;
  background-color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .0em;
  color: #000;
}

.contents__next--btn a::after {
  position: absolute;
  top: 27px;
  right: 24px;

  content: '';
  display: inline-block;
  width: 14px;
  height: 24px;
  background-image: url(../img/arrowMulch__green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.section__linker {
  display: none;
}

@media screen and (max-width: 768px) {
  .contents__headline--base {
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0 10px;
    text-align: left;
  }

  h2.contents__ttl {
    width: 100%;
  }

  .sub__outer>h2.contents__ttl .sp {
    display: block;
  }

  .contents__headline--base>p {
    margin-top: 20px;
    width: 70%;
  }

  .contents__headline--base>p.sp {
    display: none;
  }

  section:not(:last-child) {
    margin-bottom: 100px;
  }

  .section__linker {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    z-index: 2;
  }

  .section__linker a {
    position: relative;
    padding: 15px 28px 15px 28px;
    color: #fff;
    display: block;
    text-decoration: none;
    background-color: #006d11;
    border-radius: 10px 0 0 10px;
  }

  .section__linker a::after {
    position: absolute;
    top: 22px;
    right: 10px;

    content: '';
    display: inline-block;
    width: 8px;
    height: 13px;
    background-image: url(../img/arrowMulch__white.svg);
    background-size: contain;
    vertical-align: middle;
  }

  .contents__next--btn {
    display: none;
  }
}


@media screen and (max-width: 667px) {
  .contents__headline--base>p {
    width: 80%;
  }
}

@media screen and (max-width: 568px) {
  h2.contents__ttl {
    font-size: clamp(20px, 5.8vw, 25px);
  }

  .sub__outer>h2.contents__ttl {
    font-size: clamp(1.125rem, 0.56rem + 2.82vw, 1.563rem);
    margin-bottom: 30px;
  }

  .contents__headline--base>p {
    width: 100%;
  }

  section:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 426px) {
  h2.contents__ttl {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {}

/* news -------------------------------------------------*/
section.news {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.news__container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.news__container-post__outer {
  width: 860px;
  padding: 30px 0 0;

  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}

/* 一覧ページ用 */
#newsList .news__container-post__outer {
  width: 100%;
}

li.news__container-post__inner {
  height: 190px;
  display: flex;
  padding: 0 25px 30px;

  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.news__container-post__outer a:not(:last-child) {
  margin-bottom: 30px;
}

div.news__container-post__outer--img {
  /* width: 250px; とりあえず*/
  margin-right: 45px;
}

div.news__container-post__outer--img img {
  border-radius: 10px;
  border: .5px solid #555;
}

.news__container-post__outer--article {
  display: flex;
  flex-direction: column;
}

.news__container-post__outer--article p:nth-child(1) {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 18px;
  color: #000;
}

.news__container-post__outer--article p:nth-child(2) {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  color: #000;
}

ul.news__container-post__outer--article-tag {
  display: flex;
  margin-top: auto;
}

ul.news__container-post__outer--article-tag li {
  margin-right: 10px;
  font-weight: bold;
}

.news__container-post__outer a {
  text-decoration: none;
  display: block;
}

.news__container-post__outer a:hover {
  opacity: 0.8;
}

ul.news__container-post__outer--article-tag li::before {
  content: "#";
  font-weight: bold;
  color: #006d11;
}

.news__article-tag__outer {
  /* width: 160px; */
  width: 200px;
  /*とりあえず*/
  letter-spacing: .0em;
}

.news__article-tag__outer h3 {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 28px;
}

.news__article-tag__inner {
  display: flex;
  flex-direction: column;
}

.news__article-tag__inner li a {
  font-size: 17px;
  font-weight: bold;
  padding: 2% 8%;
  margin-bottom: 10px;
  text-decoration: none;
  background-color: #000;
  border-radius: 15px;
  display: flex;
  justify-content: left;
  align-items: center;
  color: #fff;
}

.news__article-tag__inner li a::before {
  content: "#";
}

@media screen and (max-width: 768px) {
  section.news {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .news__container {
    padding: 0 10px;
    flex-direction: column;
  }

  .news__container-post__outer {
    width: 100%;
    order: 2;
  }

  .news__article-tag__outer {
    width: 100%;
    order: 1;
  }

  li.news__container-post__inner {
    padding: 0 15px 30px;
  }

  .news__article-tag__inner {
    overflow-x: scroll;
    flex-direction: row;
  }

  .news__article-tag__inner li {
    flex: 0 0 auto;
    width: auto;
    margin-right: 2px;
  }

  .news__article-tag__inner li a {
    padding: 2px 15px 4px;
    width: 100%;
  }

  div.news__container-post__outer--img {
    /* width: 300px; とりあえず*/
    margin-right: 15px;
  }
}

@media screen and (max-width: 568px) {
  div.news__container-post__outer--img {
    margin-right: 20px;
  }

  div.news__container-post__outer--img img {
    /* width: 100%; */
    width: 180px;
  }

  .news__container-post__outer--article p:nth-child(2) {
    text-align: left;
  }

  ul.news__container-post__outer--article-tag li {
    font-size: clamp(15px, 3vw, 18px);
  }

  .news__container-post__outer--article p:nth-child(2) br {
    display: none;
  }
}

@media screen and (max-width: 426px) {
  .news__container-post__outer--article p:nth-child(1) {
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 10px;
  }

  .news__container-post__outer--article p:nth-child(2) {
    font-size: clamp(14px, 4.2vw, 18px);
  }
}

@media screen and (max-width: 375px) {
  div.news__container-post__outer--img {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  div.news__container-post__outer--img img {
    width: 100%;
  }

  .news__container-post__outer--article p:nth-child(2) {
    margin-bottom: 20px;
  }

  li.news__container-post__inner {
    height: 100%;
    flex-direction: column;
  }
}

/* select -------------------------------------------------*/
section.select {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.select__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.select__container li a {
  width: 350px;
  height: 130px;
  /* background-image: url(../img/select__img--01.svg); */
  /* background-repeat: no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 3vw, 27px);
  font-weight: bold;
  text-decoration: none;
  /* letter-spacing: .0em;
  padding-bottom: 25px; */
  /* color: #000; */

  margin: auto;
	padding: 1rem 1rem;
	font-weight: bold;
	border-radius: 15px;
	color: #006d11;
	border: 3px solid #006d11;
	box-shadow: 5px 5px #006d11;
	transition: 0.3s ease-in-out;
}

.select__container li a:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: #fff;
  background-color: #006d11;
  opacity: 1;
}

.select__container li:nth-child(-n+3) {
  margin-bottom: 30px;
}

.select__container li a br {
  display: none;
}

@media screen and (max-width: 768px) {
  section.select {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .select__container {
    padding: 0 10px;
  }

  .select__container li {
    width: 31.2%;
    height: 16vw;
  }

  .select__container li a {
    width: 100%;
    height: 100%;
    text-align: left;
    /* background-image: url(../img/select__img--02.svg); */
  }

  .select__container li a br {
    display: block;
  }

  .select__container li:nth-child(-n+3) {
    margin-bottom: 0;
  }

  .select__container li:nth-child(-n+4) {
    margin-bottom: 3vw;
  }
}

@media screen and (max-width: 568px) {
  .select__container li {
    width: 48%;
    height: 24vw;
  }

  .select__container li a {
    font-size: clamp(15px, 5vw, 30px);
    /* background-image: url(../img/select__img--02.svg); */
  }
}

@media screen and (max-width: 426px) {
  .select__container li:nth-child(-n+4) {
    margin-bottom: 4vw;
  }
}

@media screen and (max-width: 320px) {}

/* service -------------------------------------------------*/
section.service {
  width: 100%;
}

.service__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.service__container:not(:last-child) {
  margin-bottom: 150px;
}

.service__container:nth-child(1)>div:nth-child(1) {
  min-width: 880px;
  margin-right: 60px;
}

.service__container:nth-child(1)>div:nth-child(2) h3.service__container--ttl,
.service__container:last-of-type>div:nth-child(1) h3.service__container--ttl {
  font-size: 35px;
  letter-spacing: .0em;
  line-height: 1.4em;
  margin-bottom: 1em;
}

.service__container:nth-child(1)>div:nth-child(2) p {
  width: 530px;
}

.service__container:nth-child(1)>div:nth-child(2) p:not(:last-child),
.service__container:last-of-type>div:nth-child(1) p:not(:last-child) {
  margin-bottom: 1em;
}

.service__container:nth-child(1)>div:nth-child(2) p a {
  position: relative;
  padding-right: 18px;
  color: #000;
  display: block;
  text-align: right;
}

.service__container:nth-child(1)>div:nth-child(2) p a::after {
  position: absolute;
  top: 7px;
  right: 0;

  content: '';
  display: inline-block;
  width: 8px;
  height: 13px;
  background-image: url(../img/arrowMulch__black.svg);
  background-size: contain;
  vertical-align: middle;
}

.service__container:nth-child(1)>div:nth-child(1) img {
  border-radius: 30px 30px 30px 30px;
}

.service__container:last-of-type {
  width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}

.service__container:last-of-type p {
  width: 440px;
  margin-right: 60px;
}

.service__container:last-of-type>div:nth-child(2) img {
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .service__container:last-of-type {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .service__container {
    flex-direction: column;
    position: relative;
  }

  .service__container:not(:last-child) {
    margin-bottom: 60px;
  }

  .service__container:nth-child(1)>div:nth-child(1) {
    z-index: 2;
    margin-bottom: 20px;
    min-width: 100%;
  }

  .service__container:nth-child(1)>div:nth-child(2) {
    z-index: 2;
    padding: 0 30px;
  }

  .service__container:nth-child(1)>div:nth-child(1) img {
    width: 100%;
    border-radius: 0 30px 30px 0;
  }

  .service__container:nth-child(1)>div:nth-child(2) h3.service__container--ttl,
  .service__container:last-of-type>div:nth-child(1) h3.service__container--ttl {
    font-size: clamp(20px, 3.3vw, 26px);
    letter-spacing: .0em;
    line-height: 1.4em;
    margin-bottom: 1em;
  }

  .service__container:nth-child(1)>div:nth-child(2) p {
    width: 100%;
  }

  .service__container:nth-child(1)>div:nth-child(2) p:not(:last-child),
  .service__container:last-of-type>div:nth-child(1) p:not(:last-child) {
    margin-bottom: 1em;
  }

  .service__container:nth-child(1)>div:nth-child(2) p a {
    position: relative;
    padding-right: 18px;
    color: #000;
    display: block;
    text-align: right;
  }

  .service__container:last-of-type {
    width: 100%;
    padding: 0;
    z-index: 2;
  }

  .service__container:last-of-type p {
    width: 100%;
    margin-right: 0;
  }

  .service__container:last-of-type>div:nth-child(1) {
    margin-right: 0;
    padding: 0 30px;
    z-index: 2;
    order: 2;
  }

  .service__container:last-of-type>div:nth-child(2) {
    margin-left: auto;
  }

  .service__container:last-of-type>div:nth-child(2) {
    z-index: 2;
    order: 1;
    margin-bottom: 20px;
    margin-left: 80px;
  }

  .service__container:last-of-type>div:nth-child(2) img {
    border-radius: 30px 0 0 30px;
    width: 100%;
  }

  .service__container .bg-c-set1 {
    background-color: #efeddf;
    height: 100%;
    width: 70%;
    display: block;
    position: absolute;
    top: 4vw;
    right: 0;
    z-index: 1;
  }

  .service__container:last-of-type .bg-c-set1 {
    background-color: #efeddf;
    height: 70%;
    width: 70%;
    display: block;
    position: absolute;
    top: 10vw;
    left: 0;
    z-index: 1;
  }

  .service__container .sp {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .service__container:nth-child(1)>div:nth-child(1) {
    margin-right: 50px;
  }

  .service__container:last-of-type>div:nth-child(2) {
    margin-left: 50px;
  }
}

@media screen and (max-width: 426px) {}

@media screen and (max-width: 320px) {}

/* faq -------------------------------------------------*/
section.faq {
  background-color: #efeddf;
  padding: 50px 0;
}

.faq__container--outer {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.faq__container--inner {
  width: 1140px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__container--inner li {
  width: 340px;
}

.faq__container--img {
  position: relative;
  margin-bottom: 20px;
}

.faq__container--img div:nth-child(1) {
  font-size: 38px;
  width: 76px;
  height: 76px;
  background-color: #fff;
  color: #006d11;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: -24px;
}

.faq__container--img div:nth-child(2) img {
  border-radius: 15px;
}

.faq__container--inner li h3 {
  font-size: 26px;
  line-height: 1;
  letter-spacing: .0em;
  margin-bottom: 15px;
}

.faq__container--outer .sp {
  display: none;
}



@media screen and (max-width: 768px) {
  .faq__container--outer .pc {
    display: none;
  }

  .faq__container--outer .sp {
    display: block;
  }

  section.faq {
    background-color: initial;
  }

  .faq__container--outer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq__container--inner {
    width: 100%;
  }

  .faq__container--inner li {
    width: 100%;
  }

  .faq__container--inner {
    max-width: 100%;
    flex-direction: column;
  }

  .toggle {
    display: none;
  }

  .option {
    position: relative;
  }

  .title,
  .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }

  .title {
    font-size: 26px;
    font-weight: bold;
    line-height: 3;
    letter-spacing: .0em;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    border-top: solid 2px #000;
  }

  .option:nth-child(3) {
    border-bottom: solid 2px #000;
  }

  .title span {
    font-size: 30px;
    color: #006d11;
    margin-right: 10px;
  }

  .title::after,
  .title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    top: 1.5em;
    width: 2px;
    height: 0.75em;
    background-color: #000;
    transition: all 0.3s;
  }

  .title::after {
    transform: rotate(90deg);
  }

  .content {
    max-height: 0;
    overflow: hidden;
  }

  .content p {
    margin: 0;
    padding: 0.5em 1em 1.5em;
  }

  .toggle:checked+.title+.content {
    max-height: 500px;
    transition: all 1.5s;
  }

  .toggle:checked+.title::before {
    transform: rotate(90deg) !important;
  }
}

@media screen and (max-width: 568px) {

  .title::after,
  .title::before {
    right: 1em;
  }
}

@media screen and (max-width: 426px) {
  .title {
    font-size: clamp(20px, 3.3vw, 26px);
    line-height: 2.5;
  }
}

@media screen and (max-width: 320px) {}

/* strength -------------------------------------------------*/
section.strength {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.strength__container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.strength__container li {
  position: relative;
  width: 530px;
}

.strength__container--icon {
  position: relative;
  z-index: 2;
  background-color: #000;
  width: 170px;
  height: 50px;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: bold;
}

.strength__container--icon.soudan {
  background-color: #F37456;
}

.strength__container--icon.kengaku {
  background-color: #4174BB;
}

.strength__container--inner {
  position: relative;
  top: -25px;
  z-index: 1;
  background-color: #efeddf;
  padding: 60px 55px 40px;
  border-radius: 10px;
}

.strength__container--inner h3 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
}

.strength__container--inner p {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  section.strength {
    width: 100%;
  }

  .strength__container {
    padding: 0 10px;
  }

  .strength__container li {
    width: 49%;
  }

  .strength__container--inner {
    top: -25px;
    padding: 45px 20px 20px;
  }

  .strength__container--inner h3 {
    font-size: clamp(15px, 2.8vw, 22px);
    line-height: 1;
    margin-bottom: 15px;
  }

  .strength__container--inner div {
    margin-top: auto;
  }

  .strength__container--inner img {
    width: 100%;
  }
}

@media screen and (max-width: 568px) {
  .strength__container {
    flex-direction: column;
  }

  .strength__container li {
    width: 100%;
  }

  .strength__container--inner h3 {
    font-size: clamp(18px, 5vw, 22px);
  }
}

@media screen and (max-width: 426px) {}

@media screen and (max-width: 320px) {}

/* contact -------------------------------------------------*/
section.contact {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.contact__container {
  padding: 0 20px;
}

.contact__container--calendar {
  position: relative;
}

.contact__container--calendar h3 {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 90px;
  line-height: 90px;
  background-color: #006d11;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  border-radius: 50px;
  color: #fff;
}

.contact__calendar--inner {
  position: relative;
  top: -45px;
  z-index: 1;
  border: 4px solid #efeddf;
  padding: 90px 0 60px;
}

.contact__calendar--inner div.contact__calendar--inner-img {
  margin-bottom: 30px;
  margin-left: 110px;
}

.contact__calendar--inner p {
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.contact__container--base {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact__container--base h4 {
  font-size: 30px;
  text-align: center;
  position: relative;
  line-height: 1;
  margin-bottom: 8px;
}

.contact__container--base h4::before {
  position: relative;
  top: -5px;
  margin-right: 8px;

  content: '';
  display: inline-block;
  width: 30px;
  height: 33px;
  background-image: url(../img/ic__green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.contact__container--outer {
  background-color: #efeddf;
  width: 530px;
  height: 390px;
  border-radius: 15px;
  padding: 40px 20px;

  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact__container--inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact__container--inner:first-child {
  margin-bottom: 30px;
}

.contact__container--inner h5 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 15px;
  text-align: center;
}

.contact__container--btn {
  margin-bottom: 5px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__container--btn a {
  position: relative;
  width: 420px;
  height: 80px;
  background-color: #006d11;
  border: 4px solid #DAD7CB;
  border-radius: 15px;
  color: #ffee00;
  text-decoration: none;
  font-size: 31px;
  font-weight: bold;

  display: flex;
  align-items: center;
  padding-left: 30px;
}

.contact__container--btn span {
  color: #fff;
  font-size: 0.55em;
  margin-left: 10px;
}

.contact__container--btn a::after {
  position: absolute;
  top: 27px;
  right: 24px;

  content: '';
  display: inline-block;
  width: 14px;
  height: 24px;
  background-image: url(../img/arrowMulch__yellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.contact__container--inner p {
  text-align: center;
}

.contact__container--inner p.contact__container--access {
  font-size: 14px;
  text-align: left;
  text-indent: -5.8em;
  padding-left: 5.8em;
  letter-spacing: 0;
  width: 360px;
  margin: 0 auto;
}

.contact__container--inner .en {
  margin-bottom: 5px;
}

.contact__container--inner .en a {
  font-size: 46px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  color: #C60000;
}

.contact__container--inner .en a span {
  font-size: .5em;
  color: #000;
}

.contact__container--inner .imp--default :not(span) {
  color: #000;
}

.contact__container--inner.contact-btn__non {
  margin-bottom: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid #000;
}

.contact__container--inner div.en.sp {
  display: none;
}

.contentsNsp {
  display: none;
}

@media screen and (max-width: 768px) {
  section.contact {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact__container {
    padding: 0 10px;
  }

  .contact__container--calendar {
    position: relative;
  }

  .contact__container--calendar h3 {
    position: relative;
    z-index: 2;
    width: 250px;
    height: 50px;
    line-height: 50px;
    background-color: #006d11;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    color: #fff;
  }

  .contact__calendar--inner {
    position: relative;
    top: -27px;
    z-index: 1;
    border: 4px solid #efeddf;
    padding: 60px 2% 40px;
  }

  .contact__container--base >.sp {
    display: none;
  }

  .contact__calendar--inner div.contact__calendar--inner-img {
    margin-bottom: 30px;
    margin-left: 5%;
  }

  .contact__calendar--inner div.contact__calendar--inner-img img {
    width: 95%;
  }

  .contact__calendar--inner p {
    font-size: clamp(12px, 2.3vw, 18px);
    margin-bottom: 4%;
  }

  .contact__container--base {
    display: flex;
    flex-direction: column;
  }

  .contact__container--base li {
    width: 100%;
  }

  .contact__container--base li:first-child {
    margin-bottom: 40px;
  }

  .contact__container--outer {
    background-color: #efeddf;
    width: 100%;
    height: 100%;
  }

  .contact__container--inner div.en.pc {
    display: none;
  }

  .contact__container--inner div.en.sp {
    display: block;
  }

  .contact__container--btn a {
    font-size: 28px;
  }

  .contact__container--inner div.en.sp {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact__container--inner div.en.sp a {
    width: 420px;
    height: 80px;
    background-color: #fff;
    border: 4px solid #DAD7CB;
    border-radius: 15px;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Noto Sans JP', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #006d11;
  }

  .contact__container--inner div.en.sp a::before {
    content: '\e0b0';
    font-family: 'Material Icons';
    margin-right: 5px;
  }

  .contentsNsp {
    display: block;
    margin: 0 auto;
  }

  .contact__container--btn.contentsNsp a {
    margin: 0 auto;
  }

  .contact__container--base li:nth-child(-n+2) {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .contact__container--outer {
    padding: 6% 4%;
  }

  .contact__container--btn a {
    width: 100%;
  }

  .contact__container--inner div.en.sp a {
    width: 100%;
  }
}

@media screen and (max-width: 426px) {
  .contact__container--base h4 {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .contact__container--base h4::before {
    position: relative;
    top: -5px;
    margin-right: 8px;

    content: '';
    display: inline-block;
    width: 30px;
    height: 33px;
    background-image: url(../img/ic__green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
  }

  .contact__container--btn a {
    font-size: clamp(23px, 6vw, 28px);
    padding-left: 20px;
  }

  .contact__container--btn a::after {
    right: 18px;
  }

  .contact__container--inner div.en.sp a {
    font-size: clamp(25px, 6vw, 31px);
  }

  .contact__container--inner h5 {
    font-size: clamp(18px, 4.7vw, 22px);
    line-height: 1;
    margin-bottom: 15px;
    text-align: center;
  }

  .contact__container--inner p.contact__container--access {
    width: 100%;
  }

  .contact__container--inner p.contact__container--access a {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .contact__container--btn a {
    padding-left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .contact__container--btn a span {
    display: block;
  }
}

/* youtube -------------------------------------------------*/
section.youtube {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.youtube__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.youtube__container li:nth-child(-n+3) {
  margin-bottom: 35px;
}

.youtube__container li {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-decoration: none;
}

.youtube__container li a div {
  object-fit: contain;
  overflow: hidden;
  width: 340px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  margin-bottom: 5px;
}

.youtube__container li a div img {
  width: 103%;
  height: 103%;
}

.youtube__container li a {
  text-decoration: none;
}

.youtube__container li a p {
  display: flex;
  justify-content: center;
  margin: auto auto 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0em;
  color: #000;
}

@media screen and (max-width: 768px) {
  section.youtube {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .youtube__container {
    padding: 0 10px;
  }

  .youtube__container li:nth-child(-n+3) {
    margin-bottom: 0;
  }

  .youtube__container li:nth-child(-n+4) {
    margin-bottom: 25px;
  }

  .youtube__container li {
    width: 49%;
  }

  .youtube__container li a div {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .youtube__container li a p {
    font-size: clamp(12px, 2.4vw, 18px);
  }
}

@media screen and (max-width: 568px) {}

@media screen and (max-width: 426px) {}

@media screen and (max-width: 320px) {}

/* ohakaanshin -------------------------------------------------*/
section.ohakaanshin {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.ohakaanshin__container {
  padding: 0 20px;
  width: 100%;
}

.ohakaanshin__container--map {
  margin-bottom: 50px;
}

.ohakaanshin__container--map iframe {
  width: 100%;
  height: 400px;
}

.ohakaanshin__container--data {
  display: flex;
  justify-content: space-between;
}

.data__container--outer {
  width: 550px;
}

.data__container--inner h3 {
  margin-bottom: 10px;
}

.data__container--inner:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px #ccc solid;
}

.ohakaanshin__container--map--img {
  display: none;
}

/* map-wrap -------------------------------------------------*/
.map-wrap {
  /* max-width: 1140px; */
  /* margin: 0 auto; */
  position: relative;
  padding-top: 45%;
}

.map-wrap .map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-info {
  width: 200px;
}

.custom-info>* {
  /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif !important; */
}

.custom-info .custom-info-item {
  font-size: 14px;
  font-weight: 500;
}

.custom-info .custom-info-item+.custom-info-item {
  margin-top: 8px;
}

.custom-info .name {
  font-size: 16px;
  font-weight: bold;
}

.custom-info .tel a {
  display: block;
}

.custom-info .google-map a,
.custom-info .tel a {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
}

.custom-info .google-map a::after {
  content: "";
  background-color: transparent;
  background-image: url(../img/target_blank.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-left: 5px;
}

.custom-info .google-map a::before {
  content: "";
  background-color: transparent;
  background-image: url(../img/map.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.custom-info .tel a::before {
  content: "";
  background-color: transparent;
  background-image: url(../img/telephone.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  section.ohakaanshin {
    width: 100%;
  }

  .ohakaanshin__container {
    padding: 0 10px;
  }

  .ohakaanshin__container--map {
    margin-bottom: 30px;
  }

  .map-wrap {
    padding-top: 60%;
  }

  .ohakaanshin__container--data {
    flex-direction: column;
  }

  .data__container--outer {
    width: 100%;
  }

  .data__container--inner h3 {
    margin-bottom: 10px;
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .data__container--img {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .map-wrap {
    padding-top: 0;
  }

  .ohakaanshin__container--map .map {
    display: none;
  }

  .ohakaanshin__container--map--img {
    display: block;
  }

  .ohakaanshin__container--map--img img {
    width: 100%;
  }

  .ohakaanshin__container--map iframe {
    display: none;
  }
}

@media screen and (max-width: 426px) {}

@media screen and (max-width: 320px) {}


/* media -------------------------------------------------*/
section.media {
  background-color: #efeddf;
  padding: 50px 0;
}

.media__containerーouter {
  width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media__containerーtxt {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 30px;
}

.media__containerーtxt:before {
  position: absolute;
  content: "";
  right: 30px;
  top: -50px;
  width: 2px;
  height: 60px;
  background: #000;
  border-radius: 3px;
  transform: rotate(-60deg);
}

.media__containerーtxt:after {
  position: absolute;
  content: "";
  right: 30px;
  top: 50px;
  width: 2px;
  height: 60px;
  background: #000;
  border-radius: 3px;
  transform: rotate(-120deg);
}

.media__containerーimg {
  width: 900px;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  section.media {
    padding: 20px 0;
  }

  .media__containerーouter {
    width: 100%;
    flex-direction: column;
  }

  .media__containerーimg {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
  }

  .media__containerーimg img {
    width: 100%;
  }

  .media__containerーtxt {
    margin-right: 0;
    padding: 0 30px;
    margin-bottom: 20px;
    font-size: 1.5em;
  }

  .media__containerーtxt br {
    display: none;
  }

  .media__containerーtxt:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: #000;
    border-radius: 3px;
    transform: rotate(-25deg);
  }

  .media__containerーtxt:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #000;
    border-radius: 3px;
    transform: rotate(25deg);
  }
}

@media screen and (max-width: 568px) {
  .media__containerーimg {
    border-radius: 10px;
  }

  .media__containerーimg img {
    width: 100%;
  }

  .media__containerーtxt {
    padding: 0 20px;
    margin-bottom: 10px;
    font-size: clamp(15px, 4.4vw, 22px);
  }

  .media__containerーtxt:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: #000;
    border-radius: 3px;
    transform: rotate(-25deg);
  }

  .media__containerーtxt:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #000;
    border-radius: 3px;
    transform: rotate(25deg);
  }
}

@media screen and (max-width: 426px) {}

@media screen and (max-width: 375px) {
  section.media {
    padding: 15px 0;
  }

  .media__containerーouter {
    padding: 0 15px;
  }
}

/* footer -------------------------------------------------*/
footer {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 60px;
}

.footer__container--outer {
  width: 1240px;
  margin: 0 auto 80px;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
}

.footer__logo {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer__logo div {
  height: 60px;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #000;
  display: flex;
  align-items: center;
}

.footer__logo p {
  font-size: 14px;
}

.footer__container--shop p {
  font-size: 12px;
  margin-left: -1em;
}

.footer__container--nav {
  width: 700px;
  display: flex;
  justify-content: space-between;
}

.footer__container--menu p {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 25px;
}

.footer__container--menu li a {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.footer__container--menu li a:hover {
  text-decoration: underline;
}

.footer__container--menu li:not(:last-child) {
  margin-bottom: 20px;
  line-height: 1;
}

.footer__container--copy {
  width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  line-height: 1;
}

.footer__container--copy p {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer__container--outer {
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
  }

  .footer__container--outer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__container--menu:not(:last-child) {
    display: none;
  }

  .footer__container--menu:last-child p {
    display: none;
  }

  .footer__container--shop {
    margin-bottom: 50px;
  }

  .footer__container--nav {
    width: 100%;
  }

  .footer__container--copy {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    line-height: 1;
  }
}

@media screen and (max-width: 568px) {
  footer {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 83px;
  }

  .footer__logo div {
    font-size: clamp(15px, 3vw, 18px);
    height: 50px;
  }

  .footer__logo {
    margin-bottom: 10px;
  }

  .footer__logo h1 img {
    width: 130px;
  }

  .footer__container--copy {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 10px;
    color: #fff;
  }
}

@media screen and (max-width: 426px) {
  footer {
    padding-top: 20px;
  }

  .footer__container--shop {
    margin-bottom: 30px;
  }

  .footer__container--copy p {
    font-size: clamp(10px, 3vw, 15px);
  }
}

@media screen and (max-width: 375px) {
  .footer__logo div {
    font-size: clamp(10px, 3.5vw, 15px);
  }

  .footer__container--outer {
    margin: 0 auto 30px;
  }
}

/* footer__nav--menu -------------------------------------------------*/
.footer__nav--menu {
  display: none;
}

@media screen and (max-width: 568px) {
  .footer__nav--menu {
    display: block;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
  }

  ul.footer__nav--button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  ul.footer__nav--button li {
    width: 100%;
  }

  ul.footer__nav--button li a {
    text-align: center;
    color: #fff;
    width: 100%;
    padding: .7rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  ul.footer__nav--button li a:hover {
    opacity: .9;
  }

  ul.footer__nav--button li.soudan a {
    /* background-color: #F37456; */
    background-color: #009944;
  }

  ul.footer__nav--button li.kengaku a {
    background-color: #f79e18;
  }

  ul.footer__nav--button li a img {
    width: 2rem;
    margin-bottom: .3rem;
  }
}

/* sub.popular -------------------------------------------------*/
.popular__inner {
  display: flex;
  justify-content: space-between;
}

.popular__inner:not(:last-child) {
  margin-bottom: 80px;
}

.popular__inner--img {
  width: 510px;
  margin-right: 40px;
}

.popular__inner--img img {
  border-radius: 15px;
}

.popular__inner--data {
  width: 550px;
}

.popular__inner--cat {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.popular__inner--cat li {
  border-radius: 20px;
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: #E7E7E7;
}

.popular__inner--cat li:first-child {
  width: 130px;
  position: absolute;
  z-index: 5;
}

.popular__inner--cat li:nth-child(n+3):nth-child(-n+5) {
  padding-left: 35px;
}

.popular__inner--cat li:nth-child(2) {
  position: absolute;
  left: 85px;
  z-index: 4;
  padding-left: 40px;
}

.popular__inner--cat li:nth-child(3) {
  position: absolute;
  left: 190px;
  z-index: 3;
}

.popular__inner--cat li:nth-child(4) {
  position: absolute;
  left: 290px;
  z-index: 2;
}

.popular__inner--cat li:last-child {
  position: absolute;
  left: 400px;
  z-index: 1;
}

.popular__inner--cat li.select {
  background-color: #006d11;
  color: #fff;
}

.popular__inner--name {
  position: relative;
  line-height: 1em;
  margin-top: 65px;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: bold;
}

.popular__inner--data p {
  width: 550px;
  line-height: 1.8em;
}

.popular__inner--price {
  margin-top: 30px;
  padding-top: 30px;
  height: 80px;

  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left top;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popular__inner--caution {
  font-size: 14px;
}

.popular__inner--caution li {
  line-height: 1em;
}

.popular__inner--caution li:not(:last-child) {
  margin-bottom: 8px;
}

.popular__inner--kingaku {
  font-size: 27px;
  line-height: 1em;
  letter-spacing: 0;
}

.popular__inner--kingaku span {
  font-size: 44px;
  margin-left: 10px;
  font-weight: bold;
  color: #F60000;
}

.popular__inner--caution li::before {
  content: '■';
}

@media screen and (max-width: 768px) {
  .popular__inner {
    flex-direction: column;
  }

  .popular__inner--img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
    object-fit: contain;
  }

  .popular__inner--img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50%;
  }

  .popular__inner--data {
    width: 100%;
  }

  .popular__inner--spLayout {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .popular__inner--data p {
    background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
    background-size: 2px 8px;
    background-repeat: repeat-y;
    background-position: right top;
    margin-right: 20px;
    padding-right: 20px;
  }

  .popular__inner--price {
    background-image: initial;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0px;
    padding-top: 0px;
    height: 100%;
  }

  .popular__inner--kingaku {
    margin-bottom: 20px;
    width: 300px;
  }
}

@media screen and (max-width: 667px) {
  .popular__inner--spLayout {
    flex-direction: column;
  }

  .popular__inner--data p {
    background-image: initial;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
  }

  .popular__inner--price {
    margin-top: 30px;
    padding-top: 30px;
    height: 80px;
    width: 100%;

    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: left top;
  }

  .popular__inner--cat li {
    border-radius: 20px;
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    background-color: #E7E7E7;
    font-size: 14px;
  }

  .popular__inner--cat li:first-child {
    width: 90px;
    position: absolute;
    z-index: 5;
  }

  .popular__inner--cat li:nth-child(n+3):nth-child(-n+5) {
    padding-left: 55px;
  }

  .popular__inner--cat li:nth-child(2) {
    position: absolute;
    left: 55px;
    z-index: 4;
    padding-left: 30px;
  }

  .popular__inner--cat li:nth-child(3) {
    position: absolute;
    left: 120px;
    z-index: 3;
  }

  .popular__inner--cat li:nth-child(4) {
    position: absolute;
    left: 190px;
    z-index: 2;
  }

  .popular__inner--cat li:last-child {
    position: absolute;
    left: 255px;
    z-index: 1;
  }

  .popular__inner--price {
    height: 100%;
  }
}

@media screen and (max-width: 426px) {
  .popular__inner--cat li:not(.select) {
    display: none;
  }

  .popular__inner--cat li:nth-child(n+3):nth-child(-n+5) {
    padding-left: 0;
  }

  .popular__inner--cat li.select {
    left: 0;
    padding-left: 0;
    font-size: 16px;
    width: 50%;
  }

  .popular__inner--cat li {
    width: 50%;
  }

  .popular__inner--img img {
    height: 200px;
  }
}

/* sub.voice -------------------------------------------------*/
.voice__inner {
  display: flex;
  justify-content: space-between;
}

.voice__inner:not(:last-child) {
  margin-bottom: 80px;
}

.voice__inner--img {
  width: 520px;
}

.voice__inner--img img {
  border-radius: 15px;
}

.voice__inner--data {
  width: 500px;
  margin-right: 80px;
}

.voice__inner--num {
  font-size: 37px;
  align-items: baseline;
  /* 線を上下中央 */
  display: flex;
  /* 文字と線を横並び */
  line-height: 1em;
  position: relative;
  margin-bottom: 30px;
  color: #006d11;
}

.voice__inner--num::after {
  background-color: #006d11;
  /* 線の色 */
  content: "";
  height: 1px;
  /* 線の高さ */
  width: 30px;
  /* 線の長さ */
  transform: rotate(-45deg);
  /* 傾ける */
  position: relative;
  top: 8px;
  left: -12px;
}

.voice__inner--ttl {
  font-size: 33px;
  font-weight: bold;
  text-indent: -.5em;
  margin-bottom: 30px;
  letter-spacing: -.5px;
}

.voice__inner--ttl::before {
  content: '「';
  font-weight: normal;
}

.voice__inner--ttl::after {
  content: '」';
  font-weight: normal;
}

.voice__inner--name {
  font-size: 25px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 20px;
}

.voice__inner--name span {
  font-size: .8em;
  margin-left: 25px;
  font-weight: normal;
}

.voice__inner--data p {
  line-height: 1.8em;
  width: 500px;
}

@media screen and (max-width: 768px) {
  .voice__inner {
    flex-direction: column;
  }

  .voice__inner--img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
    order: 1;
  }

  .voice__inner--img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 0 0;
  }

  .voice__inner--data {
    width: 100%;
    order: 2;
  }

  .voice__inner--spLayout {
    display: flex;
  }

  .voice__inner--ttl {
    font-size: clamp(25px, 4.4vw, 33px);
    font-weight: bold;
    text-indent: -.5em;
    margin-bottom: 30px;
    letter-spacing: -.5px;
  }

  .voice__inner--data p {
    line-height: 1.8em;
    width: 100%;
  }
}

@media screen and (max-width: 426px) {
  .voice__inner--num {
    font-size: 28px;
    align-items: baseline;
    /* 線を上下中央 */
    display: flex;
    /* 文字と線を横並び */
    line-height: 1em;
    position: relative;
    margin-bottom: 30px;
    color: #006d11;
  }

  .voice__inner--num::after {
    background-color: #006d11;
    /* 線の色 */
    content: "";
    height: 1px;
    /* 線の高さ */
    width: 30px;
    /* 線の長さ */
    transform: rotate(-45deg);
    /* 傾ける */
    position: relative;
    top: 8px;
    left: -12px;
  }

  .voice__inner--img img {
    height: 200px;
  }
}

/* sub.faq -------------------------------------------------*/
.selectSwitch__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.selectSwitch__outer li {
  width: 24%;
}

.selectSwitch__outer li:not(:last-child) {
  margin-right: 1%;
}

.selectSwitch__outer li a {
  position: relative;
  margin: 0 auto;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 50px;

  border: 5px solid #006d11;
  border-radius: 50px;
  background-color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: bold;
  letter-spacing: .0em;
  color: #000;
}

.selectSwitch__outer li a::after {
  position: absolute;
  top: 27px;
  right: 24px;

  content: '';
  display: inline-block;
  width: 14px;
  height: 24px;
  background-image: url(../img/arrowMulch__green.svg);
  transform: rotate(90deg);
  /* 傾ける */
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.selectSwitch__outer li a:hover {
  background-color: #006d11;
  color: #fff;
  opacity: 1;
}

.selectSwitch__outer li a:hover::after {
  background-image: url(../img/arrowMulch__white.svg);
}

.subFaq__outer h3 {
  font-size: 30px;
  line-height: 1em;
  margin-bottom: 20px;
}

.subFaq__inner {
  margin-bottom: 60px;
}

.subFaq__inner--container {
  border: #efeddf 1px solid;
  border-radius: 15px;
}

.subFaq__inner--container:not(:last-child) {
  margin-bottom: 30px;
}

.subFaq__inner--container-q {
  padding: 20px 40px;
  background-color: #efeddf;
  border-radius: 15px 15px 0 0;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  line-height: 1em;
}

.subFaq__inner--container-q::before {
  content: 'Q';
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 28px;
  margin-right: 15px;
}

.subFaq__inner--container-a {
  padding: 20px 40px;
  display: flex;
  text-align: justify;
}

.subFaq__inner--container-a a {
  display: contents;
  color: #000;
}

.subFaq__inner--container-a::before {
  content: 'A';
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 28px;
  margin-right: 15px;
  color: #F60000;
}

@media screen and (max-width: 768px) {
  .selectSwitch__outer li {
    width: 49%;
  }

  .selectSwitch__outer li:not(:last-child) {
    margin-right: 0%;
  }

  .selectSwitch__outer li:nth-child(-n+2) {
    margin-bottom: 2%;
  }

  .selectSwitch__outer li a {
    font-size: clamp(18px, 2.5vw, 22px);
  }

  .subFaq__inner--container-q {
    line-height: 1.5em;
  }
}

@media screen and (max-width: 568px) {
  .subFaq__outer h3 {
    font-size: 25px;
  }

  .subFaq__inner--container-q {
    padding: 20px 25px;
    font-size: 20px;
  }

  .subFaq__inner--container-q::before {
    font-size: 24px;
  }

  .subFaq__inner--container-a {
    padding: 20px 25px;
  }

  .subFaq__inner--container-a::before {
    font-size: 24px;
  }

  .subFaq__inner--container-a a {
    color: #006d11;
    font-weight: bold;
    text-decoration: underline;
  }
}

@media screen and (max-width: 426px) {
  .selectSwitch__outer {
    margin-bottom: 60px;
  }

  .selectSwitch__outer li a {
    position: relative;
    margin: 0 auto;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
    padding-right: 40px;

    border: 3px solid #006d11;
    font-size: clamp(14px, 2vw, 16px);
  }

  .selectSwitch__outer li a::after {
    position: absolute;
    top: 17px;
    right: 20px;

    content: '';
    display: inline-block;
    width: 8px;
    height: 13px;
    background-image: url(../img/arrowMulch__green.svg);
    transform: rotate(90deg);
    /* 傾ける */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
  }
}

/* sub.eitai -------------------------------------------------*/
.sub__inner--container-ttl {
  background-color: #efeddf;
  padding: 30px 60px;
  font-size: 28px;
  font-weight: bold;
  border-radius: 15px;
  margin-bottom: 60px;
}

.sub__inner--container-article {
  padding: 0 60px;
}

.popular__outer.sub__inner--container-article {
  padding: 0;
}

.sub__inner--container-article:not(:last-child) {
  margin-bottom: 80px;
}

.sub__inner--container-article p:not(:last-child) {
  margin-bottom: 1.5em;
}

.sub__inner--container-img {
  width: 100%;
}

.sub__inner--container-img img {
  border-radius: 15px;
}

.sub__inner--container-img.w2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub__inner--container-img.w2 div {
  width: 97%;
}

.sub__inner--container-img.w2 div:not(:last-child) {
  margin-right: 3%;
}

.sub__inner--container-img.w2 img {
  width: 100%;
}

.sub__inner--container-article-column {
  margin-top: 60px;
  padding: 0 60px;
}

.sub__inner--container-article-column-ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 10px;
}

.youtube__contants {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube__contants iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .sub__inner--container-ttl {
    padding: 20px 30px;
    font-size: clamp(1.25rem, 0.627rem + 2.34vw, 1.75rem);
    margin-bottom: 30px;
  }

  .sub__inner--container-article {
    padding: 0 20px;
  }
}

@media screen and (max-width: 568px) {
  .sub__inner--container-img.w2 {
    display: block
  }

  .sub__inner--container-img.w2 div {
    width: 100%;
  }

  .sub__inner--container-img.w2 div:not(:last-child) {
    margin-right: 0;
  }

  .sub__inner--container-img.w2 div.sp {
    display: none;
  }

  .sub__inner--container-img.w2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 100% 0;
  }

  .sub__inner--container-article-column {
    padding: 0;
  }
}

@media screen and (max-width: 426px) {
  .sub__inner--container-ttl {
    padding: 15px 15px;
    font-size: clamp(1rem, 0.245rem + 3.77vw, 1.25rem);
    border-radius: 10px;
  }

  .sub__inner--container-ttl br {
    display: none;
  }

  .sub__inner--container-article {
    padding: 0 10px;
  }

  .sub__inner--container-article:not(:last-child) {
    margin-bottom: 60px;
  }
}

/* sub.customer -------------------------------------------------*/
.sub__inner--container-article-ttl {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.sub__inner--container-article-ttl:not(:first-child) {
  margin-top: 60px;
}

.sub__inner--container-box:not(:last-child) {
  margin-bottom: 90px;
}

.sub__inner--container-article-img img {
  width: 100%;
}

.customer__contact--outer {
  border-radius: 15px;
  max-width: 980px;
  margin: 0 auto 90px;
  border: 5px solid #006d11;
  padding: 30px 2%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.customer__contact h4 {
  font-size: 30px;
  text-align: center;
  position: relative;
  line-height: 1;
  margin-bottom: 8px;
}

.customer__contact h4::before {
  position: relative;
  top: -5px;
  margin-right: 8px;

  content: '';
  display: inline-block;
  width: 30px;
  height: 33px;
  background-image: url(../img/ic__green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.customer__contact--inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.customer__contact--inner:first-child {
  margin-right: 5%;
  padding-right: 5%;
  border-right: 1px solid #000;
}

.customer__contact--inner h5 {
  font-size: clamp(1.125rem, 0.958rem + 0.35vw, 1.375rem);
  line-height: 1;
  margin-bottom: 15px;
  text-align: center;
}

.customer__contact--inner p {
  text-align: center;
}

.customer__contact--inner .en {
  margin-bottom: 5px;
  text-align: center;
}

.customer__contact--inner .en a {
  font-size: clamp(2.188rem, 1.156rem + 2.15vw, 2.875rem);
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  color: #C60000;
}

.customer__contact--inner .en a span {
  font-size: .5em;
  color: #000;
}

.customer__contact--inner .imp--default :not(span) {
  color: #000;
}

.customer__contact--inner div.en.sp {
  display: none;
}

.kaimyou__process--inner {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  padding: 30px 5%;
  border: 1px solid #efeddf;
  border-radius: 15px;
}

.kaimyou__process--txt {
  width: 510px;
  margin-right: 50px;
}

.kaimyou__process--txt h5 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 15px;
}

.arrow-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  .sub__inner--container-article-ttl {
    font-size: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
    margin-bottom: 10px;
  }

  .sub__inner--container-box:not(:last-child) {
    margin-bottom: 50px;
  }

  .customer__contact--outer {
    flex-direction: column;
  }

  .customer__contact--inner {
    width: 100%;
  }

  .kaimyou__process--inner {
    background-color: #efeddf;
  }

  .customer__contact--inner:first-child {
    margin-right: 0;
    margin-bottom: 30px;
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #000;
  }

  .customer__contact--inner h5 {
    font-size: 22px;
  }

  .customer__contact--inner div.en.pc {
    display: none;
  }

  .customer__contact--inner div.en.sp {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .customer__contact--inner div.en.sp a {
    width: 420px;
    height: 80px;
    background-color: #fff;
    border: 4px solid #DAD7CB;
    border-radius: 15px;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Noto Sans JP', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #006d11;
  }

  .customer__contact--inner div.en.sp a::before {
    content: '\e0b0';
    font-family: 'Material Icons';
    margin-right: 5px;
  }

  .kaimyou__process--inner {
    padding: 20px;
  }

  .kaimyou__process--txt {
    margin-right: 20px;
  }
}

@media screen and (max-width: 667px) {
  .kaimyou__process--txt {
    margin-right: 0;
    width: 100%;
  }

  .kaimyou__process--img {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .customer__contact--outer {
    padding: 6% 4%;
  }

  .customer__contact--inner div.en.sp a {
    width: 100%;
  }

  .arrow-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
  }

  .arrow-horizontal img {
    width: 30px;
  }

  .kaimyou__process--txt h5 {
    font-size: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
  }
}

@media screen and (max-width: 426px) {
  .customer__contact h4 {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .customer__contact--inner div.en.sp a {
    font-size: clamp(25px, 6vw, 31px);
  }

  .customer__contact--inner h5 {
    font-size: clamp(1.125rem, 0.37rem + 3.77vw, 1.375rem);
    line-height: 1;
    margin-bottom: 15px;
    text-align: center;
  }
}

/* sub.omairi -------------------------------------------------*/
.sub__inner--container-article table {
  width: 100%;
  border-collapse: collapse;
}

.sub__inner--container-article table tr {
  border-bottom: solid 2px white;
}

.sub__inner--container-article table tr:last-child {
  border-bottom: none;
}

.sub__inner--container-article table th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #006d11;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.sub__inner--container-article table th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #006d11;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.sub__inner--container-article table td {
  text-align: left;
  width: 70%;
  text-align: left;
  background-color: #eee;
  padding: 15px 0;
  padding-left: 40px;
}






/* about -------------------------------------------------*/
section.about {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.about__container {
  padding: 0 20px;
}

.about__container > div {
  display: flex;
  justify-content: space-between;
}

.about__container > div:nth-child(1) {
  margin-bottom: 40px;
}

.about__container > div p {
  width: 460px;
}

.about__container > div .sn {
  display: none;
}

.about__container > div .tn {
  display: none;
}

@media screen and (max-width: 768px) {
  section.about {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .about__container {
    padding: 0 10px;
  }

  .about__container > div img {
    max-width: 100%;
  }

  .about__container > div:nth-child(1) img:nth-child(1) {
    padding-left: 20px;
  }
  
  .about__container > div:nth-child(2) img:nth-child(1) {
    padding-right: 20px;
  }

  .about__container > div .tn {
    display: block;
  }
}

@media screen and (max-width: 568px) {
  section.about {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about__container > div:nth-child(1) {
    margin-bottom: 0;
  }

  .about__container > div {
    flex-direction: column;
  }
  
  .about__container > div img {
    width: 100%;
  }

  .about__container > div p {
    width: 100%;
  }
  
  .about__container > div:nth-child(1) div {
    margin-bottom: 20px;
  }

  .about__container > div:nth-child(1) p {
    margin-bottom: 20px;
  }
  
  .about__container > div:nth-child(2) div {
    margin-bottom: 20px;
  }

  .about__container > div .sn {
    display: block;
  }

  .about__container > div .pn {
    display: none;
  }

  .about__container > div .tn {
    display: none;
  }

  .about__container > div:nth-child(1) img:nth-child(1) {
    padding-left: 0;
  }
  
  .about__container > div:nth-child(2) img:nth-child(1) {
    padding-right: 0;
  }
}



/* bosho -------------------------------------------------*/
section.bosho {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.bosho__container {
  padding: 0 20px;
}

.bosho__container li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.bosho__container .bosho-inner-img img {
  border-radius: 10px;
}

.bosho__container .bosho-inner-body {
  width: 600px;
  margin-left: 40px;
}

.bosho__container .bosho-inner-body h4.sn {
  display: none;
}

.bosho__container .bosho-inner-body h4.pn {
  font-size: 1.8em;
  line-height: 1em;
  margin-bottom: 20px;
  font-weight: normal;
  display: flex;
  align-items: center;
}

.bosho-inner-body-icon {
  font-size: .5em;
  padding: 5px 20px;
  background: #006d11;
  color: #fff;
  margin-right: 12px;
  border-radius: 50px;
  line-height: 1.6em;
}

.bosho__container .bosho-inner-body p {
  width: 600px;
  /* line-height: 1.9em; */
  margin-bottom: 15px;
  padding-bottom: 15px;
  background-image: linear-gradient(to left, #000, #000 2px, transparent 2px, transparent 8px);
  background-size: 8px 2px;
  background-position: right bottom;
  background-repeat: repeat-x;
}

.bosho__container h4.sn {
  display: none;
}

.bosho-price {
  display: flex;
  align-items: center;
}

.bosho-price div:nth-child(1) {
  font-size: 2.2em;
  line-height: 1em;
  font-weight: bold;
  color: #006d11;
  margin-right: 20px;
  display: flex;
  align-items: baseline;
}

.bosho-price span {
  font-size: .6em;
  font-weight: normal;
  color: #000;
}

.bosho-price-l1 {
  margin-right: 10px;
}

.bosho-price-l2 {
  margin-left: 5px;
}

.bosho-price div:nth-child(2) {
  font-size: .7em;
  line-height: 1.6em; 
}

.bosho-price-caption {
  display: none;
}

@media screen and (max-width: 768px) {
  section.bosho {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .bosho__container {
    padding: 0 10px;
  }
  
  .bosho__container .bosho-inner-img img {
    width: 100%;
  }

  .bosho__container .bosho-inner-body {
    max-width: 300px;
    margin-left: 20px;
  }

  .bosho__container .bosho-inner-body p {
    max-width: 280px;
  }

  .bosho__container .bosho-inner-body h4.pn {
    flex-direction: column;
    align-items: flex-start;
  }

  .bosho-inner-body-icon {
    margin-bottom: 5px;
  }

  .bosho-price {
    flex-direction: column;
    align-items: flex-start;    
  }

  .bosho-price div:nth-child(1) {
    font-size: 2.6em;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 568px) {
  .bosho__container li {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 40px;
  }
  
  .bosho__container .bosho-inner-img {
    margin-bottom: 15px;
  }
  
  .bosho__container .bosho-inner-img img {
    height: 180px;
    object-fit: cover;
  }

  .bosho__container .bosho-inner-body {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
  }
  
  .bosho__container h4.sn {
    font-size: 1.4em;
    line-height: 1.4em;
    margin-bottom: 10px;
    font-weight: normal;
    display: flex;
    align-items: center;
  }
  
  .bosho__container .bosho-inner-body h4.pn {
    display: none;
  }
  
  .bosho__container .bosho-inner-body p {
    width: 100%;
    max-width: 100%;
    background: none;
    padding: 0;
    order: 2
  }
  
  .bosho__container .bosho-inner-body p span {
    display: none;
  }
  
  .bosho-inner-body-icon {
    font-size: .5em;
    padding: 5px 20px;
    background: #006d11;
    color: #fff;
    margin-right: 12px;
    border-radius: 50px;
    line-height: 1.6em;
  }
  
  .bosho-price {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    order: 1
  }
  
  .bosho-price .pn {
    display: none;
  }

  .bosho-inner-body-icon {
    margin-bottom: 0;
  }
  
  .bosho-price-caption {
    order: 3;
    font-size: .7em;
    line-height: 1.6em; 
  }

  .bosho-price div:nth-child(1) {
    font-size: 1.9em;
    margin-right: 0;
    margin-bottom: 15px;
  }
}