@charset "UTF-8";
/*=============================================*/
/*Sass import */
/*=============================================*/
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

a:visited,
a:active {
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  margin: auto;
  width: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #000;
  font-size: 1.6rem;
  line-height: 2;
  background: #f8efe3;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}
@media (min-width: 481px) {
  .sp2_only {
    display: none !important;
  }
}
.center {
  margin: auto;
  text-align: center;
  line-height: 180%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.txt_base {
  font-size: 1rem;
}
.txt_base p {
  font-size: clamp(1.6rem, 1.54vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}
.txt_base p + p {
  padding-top: 2em;
}

/*
.btn_more a {
  position: relative;
  margin: 0 auto;
  width: 310px;
  height: 64px;
  color: $white;
  font-size: clamp(1.8rem, 5.15vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  background: $primary;
  border: 2px solid $primary;
//  display: inline-block;
  @include flex_po_center;
  @include animate03;
  @include breakpoint__max (device_1300) {
  }
  @include breakpoint__max (device_sp) {
//    padding: 16px 74px 16px 30px;
  }
  &:hover {
    color: $primary;
    background: $white;
  }
  &.white {
    background: $primary_light;
    border: 2px solid $white;
    &:hover {
      color: $primary;
      background: $white;
    }
  }
  &.arrow {
    width: 31.25vw;
    max-width: 600px;
//    height: 94px;
    aspect-ratio: 600 / 94;
    @include animate03;
    @include breakpoint__max (device_tablet) {
      width: 50vw;
    }
    @include breakpoint__max (device_ios) {
      width: 80vw;
    }
    span {
      position: relative;
      display: block;
      &::after {
        position: absolute;
        content: '';
        width: 32px;
        height: 15px;
        background: url(../img/common/arrow-right.svg) no-repeat 0 0 / contain;
        top: calc(50% - 7px);
        right: -40px;
      }
    }
    &:hover {
      span {
        &::after {
          filter: brightness(0) saturate(100%) invert(12%) sepia(46%) saturate(4678%) hue-rotate(232deg) brightness(98%) contrast(99%);
        }
      }
    }
  }
}
*/
/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
main {
  padding-top: 80px;
}

.bread_crumb_block .row {
  margin: 0;
}

.container {
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1160px;
}

section.sec {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  section.sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
section.sec.bg {
  background: #f8efe3;
}
/********************************************/
/*header*/
/********************************************/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  color: #FFF;
  background: #23ab38;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transform: translate3d(0, 0, 0);
}
@media (max-width: 767px) {
  .header {
    height: 70px;
  }
}
.header .head_wrapper {
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1160px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .h_logo {
  line-height: 77px;
}
.header .h_logo a {
  color: #FFF;
  display: flex;
  align-items: center;
}
.header #sub-nav {
  display: flex;
}
.header #sub-nav li a {
  padding-left: 15px;
  padding-right: 15px;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 77px;
  display: inline-block;
  transition: all 0.3s;
  border-bottom: 3px solid #23ab38;
}
@media (max-width: 1000px) {
  .header #sub-nav li a {
    padding-left: 5px;
    padding-right: 5px;
    line-height: 1.2;
  }
}
.header #sub-nav li a:hover {
  border-bottom: 3px solid #c0392b;
}
@media (max-width: 820px) {
  .header #sub-nav {
    display: none;
  }
}

/********************************************/
/*  ham_menu*/
/********************************************/
@media (min-width: 821px) {
  #ham_menu_trigger,
#ham_nav_wrapper {
    display: none;
  }
}
.header .ham_menu_trigger {
  position: fixed;
  top: 8px;
  right: 11px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header .ham_menu_trigger span {
  width: 28px;
  height: 2px;
  background: #FFF;
  display: block;
}

.header .ham_menu_trigger span + span {
  margin-top: 8px;
}

.ham_menu_trigger.active span {
  background: #FFF;
}

.ham_menu_trigger.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-315deg);
}

.ham_menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-10.5px) rotate(315deg);
}

/********************************************/
/*header > ham_nav_wrapper */
/********************************************/
.header .ham_nav_wrapper {
  position: fixed;
  padding: 25px 5%;
  top: 0;
  right: -150px;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: rgba(35, 171, 56, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9980;
}

.header .ham_nav_wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.header .ham_logo {
  max-width: 210px;
  font-size: 0;
}

.header .ham_main_nav {
  margin-top: 80px;
  color: #FFF;
  /* font-size: clamp(1.8rem, 1.6vw, 2.5rem); */
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.header .ham_main_nav a {
  color: #FFF;
  /* font-size: clamp(1.8rem, 1.6vw, 2.5rem); */
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  transition: all 0.9s;
}

.header .ham_main_nav a:hover {
  opacity: 0.5;
}

.header .ham_main_nav .nav_box {
  border-top: 1px solid #FFF;
}

.header .ham_main_nav .nav_box.nav01 {
  border-top: none;
}

.header .ham_main_nav .nav_box.nav01 ul {
  margin: 30px auto 50px;
  display: flex;
  flex-direction: column;
}

.header .ham_main_nav .nav_box.nav01 ul li {
  padding: 10px 0 10px 15px;
  position: relative;
  border-bottom: 1px solid #fff;
}

.header .ham_main_nav .nav_box.nav01 ul li:first-of-type {
  border-top: 1px solid #fff;
}

.header .ham_main_nav .nav_box.nav01 ul li.animate a {
  position: relative;
  -webkit-animation-name: txt_anime;
  animation-name: txt_anime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

.header .ham_main_nav .nav_box.nav01 ul li .child ul {
  margin: 10px 0 0;
}

.header .ham_main_nav .nav_box.nav01 ul li .child ul li:last-of-type {
  padding: 10px 0 0 15px;
  border-bottom: none;
}

.header .ham_main_nav .nav_box.nav01 .ham_btn {
  display: flex;
  gap: 0 20px;
}

/**********************************************/
/*Footer*/
/**********************************************/
.footer {
  padding-top: 90px;
  color: #FFF;
  background: #23ab38;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer .container {
    flex-direction: column;
    gap: 40px 0;
  }
}
.footer .container .f_content01 {
  width: 40%;
}
@media (max-width: 767px) {
  .footer .container .f_content01 {
    width: 100%;
  }
}
.footer .container .f_content01 .f_logo {
  margin-bottom: 10px;
}
.footer .container .f_content01 .f_info {
  font-size: 1.4rem;
  line-height: 1.8;
}
.footer .container .f_content02 {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer .container .f_content02 {
    width: 100%;
  }
}
@media (max-width: 490px) {
  .footer .container .f_content02 {
    flex-direction: column;
    gap: 20px 0;
  }
}
.footer .container .f_content02 dl {
  width: 33.3333333333%;
}
@media (max-width: 490px) {
  .footer .container .f_content02 dl {
    width: 100%;
  }
}
.footer .container .f_content02 dl dt {
  font-size: 1.6rem;
  font-weight: 700;
}
.footer .container .f_content02 dl dt a {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s;
}
.footer .container .f_content02 dl dt a:hover {
  opacity: 0.7;
}
.footer .container .f_content02 dl dd a {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s;
}
.footer .container .f_content02 dl dd a:hover {
  opacity: 0.7;
}
.footer .copyright {
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 1.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .footer .copyright {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/**********************************************/
/*Parts*/
/**********************************************/
.btn_more a {
  position: relative;
  margin: 0 auto;
  width: 300px;
  height: 54px;
  color: #FFF;
  font-size: clamp(1.8rem, 5.15vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #23ab38;
  border: 2px solid #23ab38;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.btn_more a:hover {
  color: #23ab38;
  background: #FFF;
}
.btn_more a.white {
  background: "";
  border: 2px solid #FFF;
}
.btn_more a.white:hover {
  color: #23ab38;
  background: #FFF;
}
.btn_more a.arrow span {
  position: relative;
  display: block;
}
.btn_more a.arrow span::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 10px;
  background: url(../img/common/arrow-right.svg) no-repeat 0 0/contain;
  top: calc(50% - 4px);
  right: -20px;
  transition: all 0.3s;
}
.btn_more a.arrow:hover span::after {
  filter: brightness(0) saturate(100%) invert(12%) sepia(46%) saturate(4678%) hue-rotate(232deg) brightness(98%) contrast(99%);
  right: -25px;
}

/* modal */
/* -------------------------------------------------------- */
.modal_box {
  position: fixed;
  display: none;
  width: 80%;
  max-width: 818px;
  height: 80%;
  max-height: 616px;
  margin: 0;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  z-index: 7777;
}
.modal_box .modal_in {
  padding: 26px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal_box .modal_in figure {
  max-width: 600px;
}

.modal_inner {
  position: relative;
  padding: 20px 22px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.modal_close {
  position: -webkit-sticky;
  position: sticky;
  width: 39px;
  height: 39px;
  display: block;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}

.modal_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 6666;
}

/**********************************************/
/*home*/
/**********************************************/
.home h2.sec_title {
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .home h2.sec_title {
    margin-bottom: 0;
    font-size: 2.4rem;
  }
}
.home .sec_subtitle {
  margin-bottom: 40px;
  color: #555;
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .home .sec_subtitle {
    margin-bottom: 30px;
  }
}
.home .sec_subtitle span {
  color: #c0392b;
  font-weight: 700;
}
@media (max-width: 767px) {
  .home #strengths,
.home #brands,
.home #services,
.home #company,
.home #contact {
    scroll-margin-top: 70px;
  }
}
.home .sec_hero {
  background: #FFF;
}
.home .sec_hero .slider-wrap {
  position: relative;
}
.home .sec_hero .swiper {
  width: 100%;
}
@media (max-width: 767px) {
  .home .sec_hero .swiper {
    height: auto;
  }
}
.home .sec_hero .swiper .swiper-slide.txtbox {
  display: flex;
  justify-content: space-between;
  gap: 0 80px;
}
@media (max-width: 767px) {
  .home .sec_hero .swiper .swiper-slide.txtbox {
    flex-direction: column;
    gap: 40px 0;
  }
}
.home .sec_hero .swiper .swiper-slide.txtbox .main-img {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.home .sec_hero .swiper .swiper-slide.txtbox .main-img img {
  height: 180px;
}
.home .sec_hero .swiper .swiper-slide.txtbox .slide-text {
  flex: 1;
}
@media (max-width: 767px) {
  .home .sec_hero .swiper .swiper-slide.txtbox .slide-text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .sec_hero .swiper .swiper-slide.txtbox .slide-text .ttl {
  margin-bottom: 24px;
  padding-left: 16px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 1.4;
  border-left: 4px solid #c0392b;
}
@media (max-width: 767px) {
  .home .sec_hero .swiper .swiper-slide.txtbox .slide-text .ttl {
    font-size: 2.8rem;
  }
}
.home .sec_hero .swiper .swiper-slide.txtbox .slide-text p {
  margin-bottom: 12px;
  padding: 12px;
  color: #555;
  font-size: 1.5rem;
  line-height: 1.4;
  background: #fafafa;
  border-left: 2px solid #ccc;
}
.home .sec_hero .swiper .swiper-slide.txtbox .slide-text .btn_more {
  margin-top: 30px;
  display: flex;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .home .sec_hero .swiper .swiper-slide.txtbox .slide-text .btn_more {
    gap: 0 15px;
  }
}
@media (max-width: 376px) {
  .home .sec_hero .swiper .swiper-slide.txtbox .slide-text .btn_more {
    gap: 0 10px;
  }
}
.home .sec_hero .swiper .swiper-slide.txtbox .slide-text .btn_more a {
  margin: 0;
  width: 200px;
  font-size: 1.6rem;
  color: #FFF;
  background: #23ab38;
  border: 1px solid #23ab38;
}
@media (max-width: 400px) {
  .home .sec_hero .swiper .swiper-slide.txtbox .slide-text .btn_more a {
    width: 49%;
    font-size: 1.4rem;
  }
}
.home .sec_hero .swiper .swiper-slide.txtbox .slide-text .btn_more a:hover {
  color: #23ab38;
  background: #FFF;
}
.home .sec_hero .swiper .swiper-slide.txtbox .slide-text .btn_more a:hover span::after {
  filter: brightness(0) saturate(100%) invert(55%) sepia(100%) saturate(586%) hue-rotate(106deg) brightness(90%) contrast(104%);
}
.home .sec_hero .swiper .swiper-slide:not(.txtbox) {
  text-align: center;
  /*
            .img {
              width: 100%;
              height: 100%;
              img {
                width: auto;
                max-width: 100%;
                height: 100%;
                object-fit: cover;
              }
            }
  */
}
.home .sec02 h2 {
  margin: 0 auto 30px;
  padding: 5px 20px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  background: #23ab38;
}
@media (max-width: 767px) {
  .home .sec02 h2 {
    padding: 5px 10px 15px;
    font-size: 1.8rem;
  }
}
@media (max-width: 376px) {
  .home .sec02 h2 {
    font-size: 1.8rem;
  }
}
.home .sec02 h2 span {
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
}
@media (max-width: 767px) {
  .home .sec02 h2 span {
    font-size: 3rem;
  }
}
.home .sec02 .catch {
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 767px) {
  .home .sec02 .catch {
    margin-bottom: 30px;
  }
}
@media (max-width: 376px) {
  .home .sec02 .catch {
    font-size: 1.6rem;
  }
}
.home .sec02 h3 {
  color: #23ab38;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .home .sec02 h3 {
    font-size: 1.4rem;
  }
}
.home .sec02 .strengths {
  margin: 0 auto;
  width: 86%;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media (max-width: 767px) {
  .home .sec02 .strengths {
    width: 100%;
  }
}
.home .sec02 .strengths .strengths_box {
  padding: 24px 30px;
  background: #FFF;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .home .sec02 .strengths .strengths_box {
    padding: 20px;
    width: 100%;
  }
}
.home .sec02 .strengths .strengths_box figure {
  width: 100px;
}
@media (max-width: 767px) {
  .home .sec02 .strengths .strengths_box figure {
    width: 60px;
  }
}
.home .sec02 .strengths .strengths_box .txt {
  flex: 1;
}
.home .sec02 .strengths .strengths_box .txt h3 {
  font-size: 2.4rem;
}
@media (max-width: 490px) {
  .home .sec02 .strengths .strengths_box .txt h3 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.home .sec02 .strengths .strengths_box .txt p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 490px) {
  .home .sec02 .strengths .strengths_box .txt p {
    font-size: 1.6rem;
  }
}
.home .sec02 .processing {
  padding-top: 40px;
}
.home .sec02 .processing h3 {
  padding: 0 20px;
  color: #FFF;
  font-size: 2.4rem;
  text-align: center;
  background: #23ab38;
}
@media (max-width: 490px) {
  .home .sec02 .processing h3 {
    padding: 3px 20px 5px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.home .sec02 .processing .processing_inner {
  padding: 30px;
  background: #fdead4;
  display: flex;
  justify-content: center;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .home .sec02 .processing .processing_inner {
    padding: 16px;
    flex-direction: column;
    gap: 0;
  }
}
.home .sec02 .processing .processing_inner .processing_box {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .home .sec02 .processing .processing_inner .processing_box {
    width: 100%;
    gap: 0 10px;
  }
}
@media (min-width: 768px) {
  .home .sec02 .processing .processing_inner .processing_box:first-of-type {
    justify-content: flex-end;
  }
}
.home .sec02 .processing .processing_inner .processing_box figure {
  width: 120px;
}
@media (max-width: 767px) {
  .home .sec02 .processing .processing_inner .processing_box figure {
    width: 70px;
  }
}
.home .sec02 .processing .processing_inner .processing_box .txt {
  padding-top: 10px;
  padding-bottom: 10px;
  flex: 1;
}
.home .sec02 .processing .processing_inner .processing_box .txt h4 {
  color: #23ab38;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .home .sec02 .processing .processing_inner .processing_box .txt h4 {
    font-size: 2.2rem;
  }
}
.home .sec02 .processing .processing_inner .processing_box .txt p {
  color: #23ab38;
  font-weight: 500;
  line-height: 1.5;
}
.home .sec02 .processing .processing_inner02 {
  margin-bottom: 30px;
  padding: 30px;
  background: #FFF;
}
@media (max-width: 767px) {
  .home .sec02 .processing .processing_inner02 {
    margin-bottom: 0;
    padding: 20px;
  }
}
.home .sec02 .processing .processing_inner02 .sttl {
  color: #23ab38;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .home .sec02 .processing .processing_inner02 .sttl {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: left;
  }
}
.home .sec02 .processing .processing_inner02 p {
  margin: 0 auto;
  width: 78%;
  padding-left: 2em;
  text-indent: -1em;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .home .sec02 .processing .processing_inner02 p {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .home .sec02 .processing .processing_inner02 p {
    padding-left: 1em;
    width: 100%;
    font-size: 1.8rem;
  }
}
.home .sec02 .processing .processing_inner02 p span {
  color: #23ab38;
}
.home .sec03 .brands {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .home .sec03 .brands {
    display: block;
  }
}
@media (max-width: 767px) {
  .home .sec03 .brands .brand_region {
    margin-bottom: 30px;
  }
}
.home .sec03 .brands .brand_region h3 {
  padding: 8px 12px;
  color: #FFF;
  font-weight: 700;
  background: #23ab38;
}
.home .sec03 .brands .brand_region .brand_list {
  padding: 20px;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .home .sec03 .brands .brand_region .brand_list {
    padding: 20px 0;
  }
}
.home .sec03 .brands .brand_region .brand_list a {
  padding: 6px 12px;
  color: #000;
  font-size: 1.4rem;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 20px;
  transition: all 0.3s;
}
.home .sec03 .brands .brand_region .brand_list a:hover {
  background: #ccc;
}
.home .sec03 .note {
  margin-top: 24px;
  margin-bottom: 40px;
  padding: 16px;
  font-size: 1.4rem;
  background: #f8efe3;
  text-align: center;
}
.home .sec03 .brand_box_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .home .sec03 .brand_box_wrap {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
.home .sec03 .brand_box {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.home .sec03 .brand_box figure {
  width: 100%;
  aspect-ratio: 570/380;
}
.home .sec03 .brand_box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .home .sec03 .brand_box figure.none {
    display: none;
  }
}
.home .sec03 .brand_box .txt {
  padding: 20px;
  background: #f5f5f5;
}
.home .sec03 .brand_box .txt h3 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .home .sec03 .brand_box .txt h3 {
    font-size: 2rem;
  }
}
.home .sec03 .brand_box .txt p {
  line-height: 2;
}
@media (max-width: 767px) {
  .home .sec03 .brand_box .txt p {
    line-height: 1.8;
  }
}
.home .sec04 .services {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .home .sec04 .services {
    flex-direction: column;
    gap: 20px 0;
  }
}
.home .sec04 .services .service-item {
  padding: 24px;
  width: 374px;
  background: #FFF;
}
@media (max-width: 767px) {
  .home .sec04 .services .service-item {
    padding: 12px;
    width: 100%;
  }
}
.home .sec04 .services .service-item h3 {
  margin-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.home .sec04 .services .service-item p {
  text-align: center;
}
.home .sec05 .company {
  border-top: 1px solid #23ab38;
  border-left: 1px solid #23ab38;
  border-right: 1px solid #23ab38;
}
.home .sec05 .company dl {
  display: flex;
  background: #FFF;
}
@media (max-width: 767px) {
  .home .sec05 .company dl {
    flex-direction: column;
  }
}
.home .sec05 .company dl dt {
  padding: 16px 20px;
  width: 200px;
  color: #FFF;
  background: #23ab38;
  border-bottom: 1px solid #FFF;
}
@media (max-width: 767px) {
  .home .sec05 .company dl dt {
    padding: 8px 10px;
    width: 100%;
  }
}
.home .sec05 .company dl dd {
  padding: 16px 20px;
  flex: 1;
  border-bottom: 1px solid #23ab38;
}
@media (max-width: 767px) {
  .home .sec05 .company dl dd {
    padding: 8px 10px;
    width: 100%;
  }
}
.home .sec05 .company dl:last-of-type dt {
  border-bottom: 1px solid #23ab38;
}
.home .sec06 .contact {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .home .sec06 .contact {
    flex-direction: column;
    gap: 20px 0;
  }
}
@media (max-width: 490px) {
  .home .sec06 .contact .sec_subtitle p {
    text-align: left;
  }
}
.home .sec06 .contact .contact-item {
  margin: 0 auto;
  padding: 24px;
  width: 374px;
  background: #FFF;
}
@media (max-width: 490px) {
  .home .sec06 .contact .contact-item {
    width: 100%;
  }
}
.home .sec06 .contact .contact-item figure {
  margin: 0 auto 16px;
  width: 60px;
}
.home .sec06 .contact .contact-item h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  text-align: center;
}
.home .sec06 .contact .contact-item p {
  font-size: 1.4rem;
  text-align: center;
}
.home .sec06 .contact .contact-item .btn_more a {
  margin: 30px auto 0;
  width: 200px;
  font-size: 1.6rem;
  color: #FFF;
  background: #23ab38;
  border: 1px solid #23ab38;
}
@media (max-width: 400px) {
  .home .sec06 .contact .contact-item .btn_more a {
    font-size: 1.4rem;
  }
}
.home .sec06 .contact .contact-item .btn_more a:hover {
  color: #23ab38;
  background: #FFF;
}
.home .sec06 .contact .contact-item .btn_more a:hover span::after {
  filter: brightness(0) saturate(100%) invert(55%) sepia(100%) saturate(586%) hue-rotate(106deg) brightness(90%) contrast(104%);
}

/********************************************/
/*Page*/
/********************************************/
.page_block {
  padding: 50px 0 80px;
}

.page_block .size800 {
  max-width: 800px;
  margin: auto;
}

.page_block .logo {
  margin-bottom: 30px;
  text-align: center;
}

.page_block .page_ttl {
  margin-bottom: 1em;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.page_block .center_txt {
  text-align: center;
}

.page_block .center_txt p {
  line-height: 1.7;
}

.page_block .center_txt .btn a {
  color: #fff;
  line-height: 36px;
}

.bread_crumb_block ol {
  padding: 0;
  margin: 0;
}

.bread_crumb_block ol li {
  display: inline-block;
  list-style: none;
}

.bread_crumb_block ol li a span {
  color: #EC4027;
  text-decoration: underline;
}

.bread_crumb_block ol li:after {
  content: "/";
}

.bread_crumb_block ol li:last-child:after {
  content: none;
}

.mw_wp_form.mw_wp_form_confirm .input-field.col.s12 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.mw_wp_form.mw_wp_form_confirm .input-field .prefix {
  position: static;
}

/**********************************************/
/*Contact*/
/**********************************************/
h2.contact {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
}

.contact_form_block {
  /*
    .lead {
      margin-bottom: 80px;
      p {
        line-height: 2;
        span {
          font-weight: 700;
        }
      }
    }
  */
}
.contact_form_block .form_block {
  margin-bottom: 100px;
}
.contact_form_block .form_block dl {
  margin: 0;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block dl {
    flex-wrap: wrap;
    gap: 10px 0;
  }
}
.contact_form_block .form_block dl.row {
  align-items: flex-start;
}
.contact_form_block .form_block dl.row dt {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block dl.row dt {
    padding-top: 0;
  }
}
.contact_form_block .form_block dl.row dd:first-of-type {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block dl.row dd:first-of-type {
    padding-top: 4px;
  }
}
.contact_form_block .form_block dl dt {
  margin: 0;
  width: 28%;
  max-width: 200px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block dl dt {
    margin-right: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.5rem;
  }
}
.contact_form_block .form_block dl dd {
  margin: 0;
  width: 60%;
  font-size: 16px;
  font-weight: 500;
}
.contact_form_block .form_block dl dd:first-of-type {
  width: 70px;
}
.contact_form_block .form_block dl dd:first-of-type span {
  width: 42px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ADADAD;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
.contact_form_block .form_block dl dd:first-of-type span.required {
  background: #D30000;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block dl dd {
    width: 100%;
    font-size: 1.5rem;
  }
}
.contact_form_block .form_block ::-moz-placeholder {
  color: #ADADAD;
}
.contact_form_block .form_block ::placeholder {
  color: #ADADAD;
}
.contact_form_block .form_block input[type=text],
.contact_form_block .form_block input[type=email],
.contact_form_block .form_block input[type=tel],
.contact_form_block .form_block textarea,
.contact_form_block .form_block select {
  margin: 0;
  padding: 0 10px;
  width: 100%;
  font-size: 16px;
  background: #fff;
  border: 2px solid #ADADAD;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block input[type=text],
.contact_form_block .form_block input[type=email],
.contact_form_block .form_block input[type=tel],
.contact_form_block .form_block textarea,
.contact_form_block .form_block select {
    padding: 0 10px;
    font-size: 14px;
  }
}
.contact_form_block .form_block input.short {
  margin-bottom: 15px;
  width: 108px;
}
.contact_form_block .form_block textarea {
  min-height: 260px;
}
.contact_form_block .form_block .submit--container {
  margin-top: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block .submit--container {
    margin-top: 40px;
    gap: 0 20px;
  }
}
.contact_form_block .form_block .submit--container .form_btn {
  position: relative;
  margin: 0;
  transition: all 0.3s;
}
.contact_form_block .form_block .submit--container .form_btn:after {
  content: none;
}
.contact_form_block .form_block .submit--container .form_btn:hover {
  opacity: 0.7;
}
.contact_form_block .form_block .submit--container .submit {
  position: relative;
  display: inline-block;
  min-width: 310px;
  padding: 0.5em 2em;
  color: #fff;
  background: #23ab38;
  border: none;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .contact_form_block .form_block .submit--container .submit {
    min-width: 160px;
  }
}

/*=============================================*/
/*  contact form 7   */
/*=============================================*/
.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-form p {
  margin: 0;
  padding: 0;
  line-height: inherit;
}

/* radio */
.wpcf7-radio.flex {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px 0;
}
.wpcf7-radio.flex .wpcf7-list-item {
  margin: 0;
}
.wpcf7-radio .wpcf7-list-item.first {
  margin: 0;
}
.wpcf7-radio input[type=radio] {
  opacity: 0;
  position: absolute;
}
.wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  background: #fff;
  border: 2px solid #EC4027;
  border-radius: 100%;
  width: 23px;
  height: 23px;
  box-sizing: border-box;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: #EC4027;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* acceptance */
.wpcf7-acceptance .form-acceptance {
  text-align: center;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 52%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid #EC4027;
  background: #FFF;
  cursor: pointer;
  transition: all 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 52%;
  left: -1em;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent url(../img/common/ico-check.svg) no-repeat center center/contain;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* submit */
.wpcf7-submit {
  margin: 0 auto;
  display: inline-block;
}

/* スピナーはレイアウトから外す */
.submit--container .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/* 送信中だけ表示 */
.wpcf7-form.submitting .submit--container .wpcf7-spinner {
  display: block;
}

.wpcf7-submit:not(:disabled):hover {
  opacity: 0.7;
}
/*# sourceMappingURL=style.css.map */