@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: #222123;
}

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;
}

* {
  -webkit-box-sizing: border-box;
          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: #222123;
  font-size: 1.6rem;
  line-height: 2;
  word-break: break-word;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

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

@media (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .pc2_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 p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.txt_base p + p {
  padding-top: 12px;
}

.more_btn div, .more_btn a {
  position: relative;
  padding-bottom: 6px;
  padding-right: 24px;
  color: #222123;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  border-bottom: 1px solid #f3f3f3;
  display: inline-block;
}
.more_btn div::before, .more_btn a::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 5px;
  background: url(../img/common/arrow-01.svg) no-repeat 0 0/contain;
  bottom: 11px;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more_btn div:hover::before, .more_btn a:hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.more_btn div.red::before, .more_btn a.red::before {
  background: url(../img/common/arrow-01-red.svg) no-repeat 0 0/contain;
}
.more_btn div.white::before, .more_btn a.white::before {
  background: url(../img/common/arrow-01-white.svg) no-repeat 0 0/contain;
}
.more_btn div.large::before, .more_btn a.large::before {
  width: 60px;
  height: 10px;
  background: url(../img/common/arrow-02.svg) no-repeat 0 0/contain;
}
@media (max-width: 768px) {
  .more_btn div.large::before, .more_btn a.large::before {
    width: 30px;
    height: 5px;
  }
}

.tel_link a {
  color: #222123;
}

.gmap {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .gmap {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
  }
}
.gmap iframe {
  width: 100%;
  height: 398px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (max-width: 768px) {
  .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

/*
.cat {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  span {
    padding: 5px 10px;
    color: $white;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    background: $primary;
    display: inline-block;
  }
}
*/
/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
  max-width: 1200px;
  width: 96%;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width {
    width: calc(100% - 40px);
  }
}

section.sec {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  section.sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/*
main,
.footer {
  h2.ttl {
    position: relative;
    margin: 0 auto 60px;
    width: fit-content;
    color: $primary;
    font-size: clamp(3rem, 2.35vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    &::before {
      position: absolute;
      content: '';
      width: 64px;
      height: 24px;
      background: url(../img/common/deco-01-blue.svg) no-repeat 0 0 / contain;
      top: -44px;
      left: calc(50% - 32px);
    }
    &.white {
      color: $white;
      &::before {
        background: url(../img/common/deco-01-white.svg) no-repeat 0 0 / contain;
      }
    }
  }
}
*/
/*=============================================*/
/*  top_fv_block     */
/*=============================================*/
.top_fv_block {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top_fv_block {
    height: inherit;
    aspect-ratio: 1500/1590;
  }
}
.top_fv_block .fv_img {
  position: absolute;
  inset: 0;
}
.top_fv_block .fv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 820px) {
  .top_fv_block .fv_img img {
    height: auto;
    -o-object-fit: inherit;
       object-fit: inherit;
  }
}
.top_fv_block .fv_scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (max-width: 820px) {
  .top_fv_block .fv_scroll {
    bottom: 30px;
  }
}
.top_fv_block .fv_scroll span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  font-size: 1rem;
}
.top_fv_block .fv_scroll img {
  width: 20px;
  height: 20px;
}

/*=============================================*/
/*  top_works_block     */
/*=============================================*/
.top_works_block {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .top_works_block {
    padding-top: 60px;
  }
}
.top_works_block h2 {
  position: absolute;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(4rem, 5.8vw, 8rem);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 112px;
  left: 5vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .top_works_block h2 {
    top: 60px;
    left: 0;
  }
}
.top_works_block #top_works_slider {
  position: relative;
  top: 50px;
  width: 100%;
  overflow: visible;
  padding: 0 200px 100px;
}
@media (max-width: 820px) {
  .top_works_block #top_works_slider {
    top: 25px;
    padding: 0 40px 50px;
  }
}
.top_works_block #top_works_slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_works_block #top_works_slider .swiper-slide {
  width: calc((100% - 60px) / 3);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 368/278;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top_works_block #top_works_slider .swiper-slide {
    width: 80%;
  }
}
.top_works_block #top_works_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-filter 0.5s ease var(--overlay-delay, 0s);
  transition: -webkit-filter 0.5s ease var(--overlay-delay, 0s);
  transition: filter 0.5s ease var(--overlay-delay, 0s);
  transition: filter 0.5s ease var(--overlay-delay, 0s), -webkit-filter 0.5s ease var(--overlay-delay, 0s);
}
.top_works_block #top_works_slider .swiper-slide::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(27%, #ffffff));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 27%);
  z-index: 2;
  opacity: var(--overlay-opacity, 0);
  background: var(--overlay-bg, none);
  -webkit-transition: opacity 0.5s ease var(--overlay-delay, 0s), background 0.5s ease var(--overlay-delay, 0s);
  transition: opacity 0.5s ease var(--overlay-delay, 0s), background 0.5s ease var(--overlay-delay, 0s);
}

/*=============================================*/
/*  top     */
/*=============================================*/
main.top .sec {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  main.top .sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
main.top .sec .h2box {
  margin-bottom: 60px;
}
main.top .sec .h2box h2 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(4rem, 5.8vw, 8rem);
  line-height: 1;
}
main.top .sec .h2box p {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

/*=============================================*/
/*  top_who_block     */
/*=============================================*/
.top_who_block {
  position: relative;
}
.top_who_block .top_who_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}
@media (max-width: 820px) {
  .top_who_block .top_who_inner {
    gap: 0 20px;
  }
}
@media (max-width: 480px) {
  .top_who_block .top_who_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_who_block .who_01 {
  position: relative;
  width: 27%;
  max-width: 318px;
}
@media (max-width: 480px) {
  .top_who_block .who_01 {
    width: 100%;
    height: 180px;
    max-width: auto;
    max-width: initial;
  }
}
.top_who_block .who_01 .img01 {
  position: absolute;
  width: 100%;
  aspect-ratio: 318/227;
  top: 0;
  left: 0;
}
@media (max-width: 480px) {
  .top_who_block .who_01 .img01 {
    width: 40%;
  }
}
.top_who_block .who_01 .img03 {
  position: absolute;
  width: 100%;
  max-width: 227px;
  aspect-ratio: 227/318;
  bottom: 94px;
  left: 2.6vw;
}
@media (max-width: 480px) {
  .top_who_block .who_01 .img03 {
    width: 30%;
    left: auto;
    bottom: auto;
    top: 30px;
    right: 3.852vw;
  }
}
.top_who_block .who_txt {
  padding: 310px 10px 284px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 480px) {
  .top_who_block .who_txt {
    padding: 30px 10px;
  }
}
.top_who_block .who_txt .more_btn {
  margin-top: 40px;
  text-align: right;
}
.top_who_block .who_02 {
  position: relative;
  width: 27%;
  max-width: 318px;
}
@media (max-width: 480px) {
  .top_who_block .who_02 {
    width: 100%;
    height: 200px;
    max-width: auto;
    max-width: initial;
  }
}
.top_who_block .who_02 .img02 {
  position: absolute;
  width: 100%;
  max-width: 227px;
  aspect-ratio: 227/318;
  top: 58px;
  right: 3.852vw;
}
@media (max-width: 480px) {
  .top_who_block .who_02 .img02 {
    width: 30%;
    top: 0;
    right: auto;
    left: 2.6vw;
  }
}
.top_who_block .who_02 .img04 {
  position: absolute;
  width: 100%;
  aspect-ratio: 318/227;
  bottom: 0;
  right: 0;
}
@media (max-width: 480px) {
  .top_who_block .who_02 .img04 {
    width: 40%;
  }
}

/*=============================================*/
/*  top_philosophy_block     */
/*=============================================*/
.top_philosophy_block .main_width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .top_philosophy_block .main_width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.top_philosophy_block .txt_base {
  width: 51%;
  max-width: 600px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .top_philosophy_block .txt_base {
    width: 100%;
    max-width: inherit;
  }
}
@media (min-width: 769px) {
  .top_philosophy_block .txt_base p {
    padding-right: 40px;
  }
}
.top_philosophy_block .txt_base .more_btn {
  margin-top: 40px;
  text-align: right;
}
@media (min-width: 769px) {
  .top_philosophy_block .txt_base .more_btn {
    margin-right: 40px;
  }
}
.top_philosophy_block .img {
  width: 44%;
  max-width: 520px;
}
@media (max-width: 768px) {
  .top_philosophy_block .img {
    margin: 0 auto 20px;
    width: 100%;
  }
}

/*=============================================*/
/*  top_what_block     */
/*=============================================*/
.top_what_block {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  background: url(../img/top/what-bg.jpg) no-repeat center center/100% auto;
}
@media (max-width: 1300px) {
  .top_what_block {
    background: url(../img/top/what-bg.jpg) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .top_what_block {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
.top_what_block .main_width .h2box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top_what_block .main_width ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .top_what_block .main_width ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px 0;
  }
}
.top_what_block .main_width ul a {
  display: block;
}
@media (max-width: 768px) {
  .top_what_block .main_width ul a {
    margin: 0 auto 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.top_what_block .main_width ul a .img {
  margin-bottom: 20px;
  width: 100%;
  max-width: 372px;
}
.top_what_block .main_width ul a .img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_what_block .main_width ul a p {
  color: #222123;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.top_what_block .main_width ul a:hover .img img {
  -webkit-transform: translate(1px, 1px);
          transform: translate(1px, 1px);
}
.top_what_block .main_width .more_btn {
  margin-top: 40px;
  text-align: right;
}
@media (min-width: 769px) {
  .top_what_block .main_width .more_btn {
    margin-right: 40px;
  }
}

/*=============================================*/
/*  top_aboutus_block     */
/*=============================================*/
.top_aboutus_block .top_aboutus_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .top_aboutus_block .top_aboutus_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_aboutus_block .top_aboutus_box {
  width: 50%;
}
@media (max-width: 1024px) {
  .top_aboutus_block .top_aboutus_box {
    width: 100%;
  }
}
.top_aboutus_block .top_aboutus_box a {
  padding: 70px 80px 45px;
  background: url(../img/top/aboutus-01.png) no-repeat 0 0/100% auto;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .top_aboutus_block .top_aboutus_box a {
    padding: 35px 40px 22px;
    background: url(../img/top/aboutus-01.png) no-repeat center 0/cover;
  }
}
@media (max-width: 480px) {
  .top_aboutus_block .top_aboutus_box a {
    padding: 35px 20px 22px;
  }
}
.top_aboutus_block .top_aboutus_box a .more_btn div {
  color: #FFF;
}
.top_aboutus_block .top_aboutus_box a:hover {
  opacity: 0.8;
}
.top_aboutus_block .top_aboutus_box a:hover .more_btn div::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.top_aboutus_block .top_aboutus_box.box02 a {
  background: url(../img/top/aboutus-02.png) no-repeat 0 0/100% auto;
}
@media (max-width: 1024px) {
  .top_aboutus_block .top_aboutus_box.box02 a {
    background: url(../img/top/aboutus-02.png) no-repeat center 0/cover;
  }
}
.top_aboutus_block .top_aboutus_box h3 {
  margin-bottom: 30px;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
.top_aboutus_block .top_aboutus_box h3 span {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}
.top_aboutus_block .top_aboutus_box .txt_base {
  color: #FFF;
}
.top_aboutus_block .top_aboutus_box .txt_base p {
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.top_aboutus_block .top_aboutus_box .more_btn {
  margin-top: 40px;
  text-align: right;
}
@media (min-width: 769px) {
  .top_aboutus_block .top_aboutus_box .more_btn {
    margin-right: 40px;
  }
}
.top_aboutus_block .top_aboutus_box .more_btn a {
  color: #FFF;
}

/*=============================================*/
/*  swiper-wrapper     */
/*=============================================*/
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.swiper-slide a {
  display: block;
  /*
      .img {
        width: auto;
        max-width: 100%;
        margin-bottom: 20px;
        overflow: hidden;
        img {
          object-fit: cover;
          @include animate03;
        }
      }
      &:hover {
        opacity: .9;
        .img {
          img {
            transform: scale(1.1);
          }
        }
      }
  */
}

/*
.top_swiper-controls {
  margin-top: 40px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  .swiper-pagination {
    position: static;
    width: auto;
    .swiper-pagination-bullet {
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, .3);
      &-active {
        background: $white;
      }
    }
  }
  .swiper-button-prev,
  .swiper-button-next {
    position: static;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
    width: 45px;
    height: 45px;
    &::after {
      content: none;
    }
  }
  .swiper-button-prev {
    background: url(../img/common/arrow-01-left.svg) no-repeat 0 0 / contain;
  }
  .swiper-button-next {
    background: url(../img/common/arrow-01-right.svg) no-repeat 0 0 / contain;
  }
}
*/
/*=============================================*/
/*  form_block     */
/*=============================================*/
.form_block p.lead {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.form_block dl {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
@media (max-width: 768px) {
  .form_block dl {
    padding: 18px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
  }
}
.form_block dl.row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form_block dl.row dt {
  padding-top: 20px;
}
.form_block dl.row dd:first-of-type {
  padding-top: 20px;
}
@media (max-width: 768px) {
  .form_block dl.row dd:first-of-type {
    padding-top: 24px;
  }
}
.form_block dl dt {
  width: 28%;
  max-width: 200px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .form_block dl dt {
    margin-right: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.5rem;
  }
}
.form_block dl dd:first-of-type {
  width: 70px;
}
.form_block dl dd:first-of-type span {
  width: 42px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.form_block dl dd:first-of-type span.required {
  background: #000;
}
.form_block dl dd {
  width: 532px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .form_block dl dd {
    width: 100%;
    font-size: 1.5rem;
  }
}
.form_block ::-webkit-input-placeholder {
  color: #ADADAD;
}
.form_block ::-moz-placeholder {
  color: #ADADAD;
}
.form_block :-ms-input-placeholder {
  color: #ADADAD;
}
.form_block ::-ms-input-placeholder {
  color: #ADADAD;
}
.form_block ::placeholder {
  color: #ADADAD;
}
.form_block input[type=text],
.form_block input[type=email],
.form_block input[type=tel],
.form_block textarea,
.form_block select {
  padding: 17px 20px;
  width: 100%;
  font-size: 1.8rem;
  background: #FFF;
  border: 1px solid #E6E6E6;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .form_block input[type=text],
  .form_block input[type=email],
  .form_block input[type=tel],
  .form_block textarea,
  .form_block select {
    padding: 16px 20px;
    font-size: 1.5rem;
  }
}
.form_block input.short {
  margin-bottom: 15px;
  width: 108px;
}
.form_block textarea {
  min-height: 260px;
}
.form_block .select_wrap {
  position: relative;
}
.form_block .select_wrap:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #003A91 transparent transparent transparent;
  right: 10px;
  top: calc(50% - 5px);
  pointer-events: none;
}
.form_block {
  /*
    .privacy_txt {
      margin-top: 70px;
      font-size: 1.4rem;
      font-weight: 500;
      @include lslh_10_15;
      text-align: center;
      @include breakpoint__max (device_sp) {
        margin-top: 35px;
      }
    }
  */
}
.form_block .agree_wrap {
  margin: 40px auto 70px;
  width: 470px;
}
@media (max-width: 768px) {
  .form_block .agree_wrap {
    width: 100%;
  }
}
.form_block .agree_wrap > div {
  margin-bottom: 20px;
}
.form_block .agree_wrap > div a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_block .agree_wrap > div a:hover {
  text-decoration: none;
}
.form_block {
  /*
    .privacy {
      margin: 40px auto 50px;
      padding: 25px 16px 25px 25px;
      width: 94%;
      max-width: 560px;
      height: 237px;
      background: $white;
      @include breakpoint__max (device_sp) {
        padding: 20px 10px 20px 20px;
        width: 100%;
      }
      .privacy_inner {
        padding-right: 20px;
        height: 100%;
        overflow-y: scroll;
  //      scrollbar-color: $primary_light #fff;
        .ttl {
          margin-bottom: 10px;
          font-size: 1.17em;
          font-weight: 700;
          letter-spacing: 0.06em;
        }
        p {
          font-size: 1.3rem;
          @include lslh_5_15;
          &.sign {
            text-align: right;
          }
        }
        dl {
          width: 100%;
          display: flex;
          flex-direction: column;
          gap: 10px 0;
          dt {
            width: 100%;
            max-width: inherit;
            font-size: 1.3rem;
            font-weight: 500;
            @include lslh_5_15;
          }
          dd {
            width: 100%;
            max-width: inherit;
            font-size: 1.3rem;
            font-weight: 400;
            @include lslh_5_15;
          }
        }
      }
    }
    */
}
.form_block .submit--container {
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 40px;
}
@media (max-width: 768px) {
  .form_block .submit--container {
    gap: 0 20px;
  }
}
.form_block .submit--container .form_btn {
  position: relative;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_block .submit--container .form_btn:after {
  content: none;
}
.form_block .submit--container .form_btn:hover {
  opacity: 0.7;
}
.form_block .submit--container .submit {
  position: relative;
  display: inline-block;
  min-width: 420px;
  padding: 1em 2.5em;
  color: #FFF;
  background: #000;
  cursor: pointer;
}
@media (max-width: 768px) {
  .form_block .submit--container .submit {
    min-width: 160px;
    font-size: 1.6rem;
  }
}
.form_block.confirm p.lead {
  margin-bottom: 40px;
}
.form_block.confirm dl.row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_block.confirm dl.row dt {
  padding-top: 0;
}
.form_block.confirm dl.row dd:first-of-type {
  padding-top: 0;
}
.form_block.confirm .submit--container {
  margin-top: 50px;
  display: block;
}
.form_block.confirm .submit--container p {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 40px;
}
@media (max-width: 768px) {
  .form_block.confirm .submit--container p {
    gap: 0 20px;
  }
}
.form_block.confirm .submit--container p br {
  display: none;
}
.form_block.confirm .submit--container .back_btn {
  position: relative;
  margin: 0;
  display: inline-block;
  min-width: 420px;
  padding: 1em 2.5em;
  color: #333;
  background: #E6E6E6;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .form_block.confirm .submit--container .back_btn {
    min-width: 160px;
    font-size: 1.6rem;
  }
}
.form_block.confirm .submit--container .back_btn:hover {
  opacity: 0.7;
}
.form_block.confirm .submit--container .submit {
  margin: 0;
}
.form_block.thanks h3 {
  margin-bottom: 50px;
  text-align: center;
}
.form_block.thanks .submit--container {
  margin-top: 50px;
}
.form_block.thanks .submit--container .back_link a {
  position: relative;
  margin: 0;
  display: inline-block;
  min-width: 420px;
  padding: 1em 2.5em;
  color: #FFF;
  background: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .form_block.thanks .submit--container .back_link a {
    min-width: 160px;
    font-size: 1.6rem;
  }
}
.form_block.thanks .submit--container .back_link a:hover {
  opacity: 0.7;
}

/*=============================================*/
/*  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 100%;
  width: 23px;
  height: 23px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: #E6E6E6;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  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;
  display: inline-block;
}
.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 52%;
  left: -1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  background: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .wpcf7-acceptance .wpcf7-list-item-label::before {
    top: 14px;
  }
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 52%;
  left: -1.2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent url(../img/common/ico-check.svg) no-repeat center center/contain;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
@media (max-width: 768px) {
  .wpcf7-acceptance .wpcf7-list-item-label::after {
    top: 14px;
  }
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/*
  .mwform-checkbox-field {
    margin: 50px auto;
    width: fit-content;
    label {
      input[type="checkbox"] {
        width: 30px;
        height: 30px;
        color: $primary;
        background: $white;
        border: 1px solid $primary_light;
      }
      span {
        font-weight: 500;
        @include lslh_10_15;
      }
    }
  }

  .mwform-radio-field {
    @include flex_wrap;
    justify-content: flex-start;
    gap: 10px 30px;
    @include breakpoint__max (device_sp) {
      flex-direction: column;
    }
    label {
      display: flex;
      align-items: center;
      gap: 0 10px;
      input[type="radio"] {
        width: 20px;
        height: 20px;
        background: $gray;
        border: none;
        border-radius: 50%;
        &:checked {
          position: relative;
          &::after {
            position: absolute;
            content: '';
            width: 12px;
            height: 12px;
            background: $primary;
            border-radius: 50%;
            top: 4px;
            left: 4px;
          }
          & + span {
            color: $primary;
          }
        }
      }
    }
  }
*/
/* submit */
.wpcf7-submit {
  margin: 0 auto;
  display: inline-block;
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
  padding-top: 5px;
}

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

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

.wpcf7-submit:not(:disabled):hover {
  opacity: 0.7;
}