/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

a{
  color: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

pre {
  white-space: pre-wrap;
}

/* common
---------------------------------------------------------------------------- */
/* common
---------------------------------------------------------------------------- */
html {
  scroll-padding-top: 80px; 
  scroll-behavior: smooth;
}

/* color */
.color01 {
  color: #EDED70;
}
.color02 {
  color: #FF7F3F;
}
.color03{
  color: #F2A57B;
}
.bgcol01 {
  background: #EDED70;
}

.bgcol02 {
  background: #F7F7EE;
}

.strong {
  font-weight: bold;
}

.semibold {
  font-weight: 600;
}

.letter-spacing0 {
  letter-spacing: 0 !important;
}

.c-line-yellow {
  background: linear-gradient(transparent 75%, #EDED70 75%);
  padding-right: 0.3rem;
  padding-bottom: 0rem;
  box-sizing: border-box;
}
.c-line-pink {
  background: linear-gradient(transparent 75%, #FF8C7266 75%);
  padding-right: 0.3rem;
  padding-bottom: 0;
  box-sizing: border-box;
}
/* title */
.c-title {
  position: relative;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.7rem;
}
.c-title .small {
  display: block;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
}
.c-title:before {
  position: absolute;
  top: -4.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  content: "";
  width: 2px;
  height: 3.5rem;
  background: #EDED70;
}

/* txt */
.c-lead-txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: -0.15px;
  font-weight: 500;
}

/* hover */
@media screen and (min-width: 768px) {
  .c-hover {
    display: block;
    transition: opacity 0.4s;
  }
  .c-hover:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

/* c-links-wrap */
.c-links-wrap .links {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.15px;
  font-weight: 700;
  border-bottom: 1px solid #5A4335;
}
.c-links-wrap .links:after {
  position: absolute;
  right: -1.5rem;
  top: 0.9rem;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 5px;
  width: 5px;
  border-color: #5A4335;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-links-wrap .links:after {
    height: 0.6rem;
    width: 0.6rem;
  }
}

/* c-button */
.c-button {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  min-width: 26rem;
  min-height: 5rem;
  margin: 0 auto 2.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: -0.156px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  border-radius: 3rem;
  background: #5A4335;
}
.c-button.arrow::after {
  border-color: #fff;
}
/* breadcrumb
---------------------------------------------------------------------------- */
.breadcrumb_wrap {
  padding: 2rem 0 2rem 0;
}
.breadcrumb_wrap .breadcrumb__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 2rem;
}
.breadcrumb_wrap .breadcrumb__list .breadcrumb__item {
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.7px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumb_wrap .breadcrumb__list .breadcrumb__item a {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.7px;
  font-weight: 500;
}
.breadcrumb_wrap .breadcrumb__list .breadcrumb__item:not(:last-of-type):after {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  height: 0.8rem;
  width: 0.8rem;
  border-color: #5A4335;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .breadcrumb_wrap{
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .breadcrumb_wrap .breadcrumb__list .breadcrumb__item a,
  .breadcrumb_wrap .breadcrumb__list .breadcrumb__item{
    white-space: nowrap;
    font-size: 1.2rem;
  }
  .breadcrumb_wrap .breadcrumb__list .breadcrumb__item:not(:last-of-type):after {
    height: 0.4rem;
    width: 0.4rem;
  }
}

/* CTA */
/* cta_wrap
---------------------------------------------------------------------------- */
.cta_wrap .l-inner {
  max-width: 775px;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}
.cta_wrap .l-inner a{
  display: block;
  margin: 0 auto;
  max-width: 500px;
}
/* form
---------------------------------------------------------------------------- */
.form_style .input-label {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: nowrap;
  gap: 0 0.7rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .form_style .input-label {
    gap: 0 0.1rem;
    align-items: start;
    margin-bottom: 1rem;
  }
}
.form_style .input-label .txt {
  width: auto;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.281px;
  font-weight: 500;
  text-align: left;
}
.form_style .contact__inner{
  padding: 0;
}
.form_style .ico__required {
  position: relative;
  top: 0.6rem;
  display: block;
  width: 4.3rem;
  font-size: 1.1rem!important;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0.3rem 0 0.4rem;
  border-radius: 1rem;
  background: #D50000;
}
.form_style .input-wrap .input-cnts .radio-input {
  position: relative;
}
.form_style .input-wrap .input-cnts .radio-input input[type=radio] {
  position: absolute;
  width: 1px;
  visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
}
.form_style .input-wrap .input-cnts .radio-input .label {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.544;
  letter-spacing: -0.281px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  padding: 1.1rem 0 1.1rem 4.8rem;
  border-radius: 0.9rem;
  box-sizing: border-box;
}
.form_style .input-wrap .input-cnts .radio-input .label:before, .form_style .input-wrap .input-cnts .radio-input .label:after {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  border-radius: 100%;
}
.form_style .input-wrap .input-cnts .radio-input .label:before {
  display: none;
  left: 2rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #5A4335;
}
.form_style .input-wrap .input-cnts .radio-input .label:after {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #BFB7B0;
}
.form_style .input-wrap .input-cnts .radio-input input[type=radio]:checked + .label:before {
  display: block;
}
.form_style .input-wrap .input-cnts .radio-input + .radio-input {
  margin-top: 1rem;
}
.form_style .btn_wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 1rem;
}
.form_style .btn_wrap .form_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  max-width: 26rem;
  height: 5rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: -0.156px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  border-radius: 50px!important;
  color: #fff;
  background: #5A4335;
  border: none;
  outline: none;
}
.form_style .btn_wrap .form_btn.submit01{
  padding: 15px 5px;
}
.form_style .btn_wrap .form_btn:hover{
  cursor: pointer;
}
.form_style .btn_wrap .form_btn:after {
  position: absolute;
  right: 1.8rem;
  top: 50%;
  margin-top: -2px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 5px;
  width: 5px;
  border-color: #fff;
  transform: rotate(-45deg);
  transform: rotate(-45deg) translateY(-50%);
}
.form_style .btn_wrap .form_btn.d-none{
  display: none;
}
.form_style .btn_wrap .arrow-left:has(.form_btn.d-none) {
    display: none;
}
@media screen and (max-width: 767px) {
  .form_style .btn_wrap .form_btn:after {
    height: 0.85rem;
    width: 0.85rem;
  }
}
.form_style .btn_wrap .form_btn.-back:after {
  margin-top: -0.8rem;
  right: auto;
  left: 1.7rem;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 1.7rem;
  width: 1.7rem;
  border-color: #fff;
  transform: rotate(135deg);
  transform: rotate(135deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .form_style .btn_wrap .form_btn.-back:after {
    height: 0.85rem;
    width: 0.85rem;
  }
}
.form_style .step:nth-of-type(1) .btn_wrap .form_btn {
  width: 100%;
}

.form_style .carousel.custom-form-carousel input[type=radio] + span:before{
  position: relative;
}
.form_style .carousel.custom-form-carousel input[type=radio] + span{
  display: flex;
  align-items: center;
  gap: 10px;
}
.form_style .carousel.custom-form-carousel input[type=radio] + span:before{
  width: 30px;
  height: 30px;
  margin: 0;
  border: 1px solid #5A4335;
  background: #fff;
  font-weight: 500;
  flex-shrink: 0;
}
.form_style .carousel.custom-form-carousel .contact__radio label:has(input[type=radio]:checked){
  background:#fff;
  color: inherit;
}
.form_style .carousel.custom-form-carousel input[type=radio]:checked + span:after{
  border-color: #5A4335;
  right: auto;
  left: 5px;
  border:none;
  background: #5a4335;
  border-radius: 50%;
  width:20px;
  height: 20px;
  margin:0;
  transform: translate(0, -50%);
  top: 50%;
}
@media screen and (max-width: 767px) {
  .form_style .carousel.custom-form-carousel input[type=radio]:checked + span:after{
    left: 4px;
  }
}
.form_style .carousel.custom-form-carousel .contact__select{
  height: auto;
}
/* section
---------------------------------------------------------------------------- */
.section h2 {
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.07px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  word-break: initial;
  padding-left: 1rem;
  border-left: 0.6rem solid #EDED70;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
}
.section h3 {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1.7727272727;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  word-break: initial;
  background: rgba(237, 237, 112, 0.5);
  margin-bottom: 2.5rem;
  box-sizing: border-box;
}
.section h4 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  word-break: initial;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #EDED70;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
}
.section p {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.15px;
  font-weight: 500;
  word-break: initial;
  margin-bottom: 2.5rem;
}
.section a {
  text-decoration: underline;
}
.section figcaption,
.section .wp-caption-text,
.section .wp-element-caption {
  display: block;
  margin-top: 0.8rem !important;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.15px;
  font-weight: 500;
}
.section b {
  font-weight: 700;
}
.section strong {
  font-weight: 900;
  color: #B5860E;
}
.section em, .section i {
  font-style: italic;
}
.section ul, .section ol {
  margin-bottom: 2.5rem;
}
.section ul li, .section ol li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: -0.439px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  word-break: initial;
  padding-left: 3rem;
  box-sizing: border-box;
}
.section ul li + li, .section ol li + li {
  margin-top: 0.6rem;
}
.section ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: url("../images/common/ico_check_y.svg") no-repeat center center;
  background-size: 100% auto;
  width: 1.9rem;
  height: 2.7rem;
}
.section ol {
  counter-reset: number 0;
}
.section ol li:before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: number 1;
  content: counter(number);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.312px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  opacity: 0.5;
}
.section dl {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
}
.section dl dt, .section dl dd {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: -0.312px;
  font-weight: 500;
  word-break: initial;
}
.section dl dd {
  flex: 1;
}
.section table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
}
.section table th, .section table td {
  border: 1px solid #BFB7B0;
  box-sizing: border-box;
}
.section table thead th {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  background: #F7F7EE;
}
.section table tbody th {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  padding: 1.5rem 1rem;
  background: #F7F7EE;
}
.section table tbody td {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  padding: 1.5rem 1rem;
  background: #fff;
}
.section div {
  margin-bottom: 2.5rem;
}
.section .wp-block-image {
  margin-bottom: 2.5rem;
}
.section .wp-block-image img {
  border-radius: 0.8rem;
  overflow: hidden;
}
.section .youtube,
.section .is-type-video {
  width: 36rem;
  aspect-ratio: 16/9;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .section .youtube,
  .section .is-type-video {
    width: 100%;
    margin-bottom: 1.4rem;
  }
}
.section .youtube div,
.section .is-type-video div {
  width: 100%;
  height: 100%;
}
.section iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.section .aligncenter {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .section .aligncenter {
    width: 100%;
  }
}
.section .alignright {
  float: right;
  margin: 0.5em 0 2.4rem 1em;
}
@media screen and (max-width: 767px) {
  .section .alignright {
    width: 100%;
    float: none;
    margin: 0 0 2.4rem 0;
  }
}
.section .alignleft {
  float: left;
  margin: 0.5em 1em 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .section .alignleft {
    width: 100%;
    float: none;
    margin: 0 0 2.4rem 0;
  }
}

/* layout
-----------------------------------------------------------------------------*/
.min {
  font-family: "Shippori Mincho", serif!important;
}

/* base
---------------------------------------------------------------------------- */
html {
  font-size: 0.6944444444vw;
}
@media screen and (min-width: 1441px) {
  html {
    font-size: 62.5%!important;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw!important;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #5A4335;
  font-size: 1.5rem;
  /*	min-width: 1280px;*/
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

a {
  text-decoration: none;
  color: #5A4335;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}

img {
  width: 100%;
  height: auto;
}

* {
  word-break: break-all;
}

input,
textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
}

/*------------- .l-pagebody -------------*/
.main_cnts {
  width: 100%;
  overflow: hidden;
}

.l-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 1441px) {
  .l-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    width: 100%;
    max-width: inherit;
    padding: 0;
    box-sizing: border-box;
  }
}

.l-inner {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: inherit;
    box-sizing: border-box;
    padding: 0 20px;
  }
}

/*------------- .l-footer -------------*/
.l-footer {
  padding: 5rem 0 10rem 0;
  background: #071722;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 8rem 0 14rem;
  }
}
.l-footer .f-logo {
  width: 14.3rem;
  margin: 0 auto 1rem auto;
}
@media screen and (min-width: 768px) {
  .l-footer .f-logo {
    width: 28.6rem;
  }
}
.l-footer .f-logo__txt {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .l-footer .f-logo__txt {
    font-size: 1.6rem;
    line-height: 1.625;
    font-weight: 400;
    margin-bottom: 8rem;
  }
}
.l-footer .f-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  flex-direction: column;
  gap: 2.5rem 0;
}
.l-footer hr{
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .l-footer .f-nav {
    justify-content: center;
    flex-direction: row;
    gap: 2rem 5rem;
  }
}
.l-footer .f-nav__items {
  text-align: center;
}
.l-footer .f-nav__items a {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .l-footer .f-nav__items a {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    font-weight: 400;
  }
}
.l-footer .copy {
  margin-top: 5rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-footer .copy {
    margin-top: 8rem;
    font-size: 1.4rem;
    line-height: 1.8571428571;
    font-weight: 400;
  }
}
.l-footer .f-nav .f-nav__items a{
  font-size: 1.4rem;
}
.l-footer .f-nav.bottom .f-nav__items a{
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .l-footer .f-nav{
    align-items:start;
  }
  .l-footer .f-nav.bottom{
    gap: 1.5rem 0;
  }
}
/* pagetop
---------------------------------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 4rem;
  bottom: 6.5rem;
  z-index: 998;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 6rem;
    right: 1.5rem;
  }
}

/*------------- .l-header -------------*/
.l-header {
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
}
.l-header .header__inner .h-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  flex-direction: column;
  width: 100%;
  height: 3rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.312px;
  font-weight: 700;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .l-header .header__inner .h-title {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: -0.312px;
    font-weight: 700;
    height: 4rem;
  }
}
.l-header .nav-btn {
  position: absolute;
  right: 2rem;
  top: 5rem;
  z-index: 999;
  cursor: pointer;
}
.l-header .nav-btn__inner {
  width: 2.2rem;
  height: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-header .nav-btn{
    right: 4rem;
    top: 8rem;
  }  
  .l-header .nav-btn__inner {
    width: 3rem;
    height: 1rem;
  }
}
.l-header .nav-btn__inner .nav-border {
  width: 100%;
  height: 1px;
  background: #364153;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .l-header .nav-btn__inner .nav-border {
    height: 2px;
  }
}
.l-header .nav-btn.active .nav-border:nth-of-type(1) {
  transform: rotate(30deg);
}
.l-header .nav-btn.active .nav-border:nth-of-type(2) {
  position: absolute;
  transform: rotate(-30deg);
}
.l-header .nav__wrapper {
  position: fixed;
  width: 80%;
  height: 100dvh;
  left: 0;
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  transform: translateX(-100%);
  padding: 6rem 2rem 5rem 2rem;
  box-sizing: border-box;
  transition: 0.4s;
  z-index: 998;
}
@media screen and (min-width: 768px) {
  .l-header .nav__wrapper {
    width: 50%;
    padding: 12rem 12rem 4rem 10rem;
  }
}
.l-header .nav__wrapper .nav__inner .g-menu__items {
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 500;
}
.l-header .nav__wrapper .nav__inner .g-menu__items a{
  display: block;
  padding: 1.8rem 0;
}
.l-header .nav__wrapper .nav__inner .g-menu__items:not(:last-child) {
  border-bottom: 1px dashed #D5D501;
}
@media screen and (min-width: 768px) {
  .l-header .nav__wrapper .nav__inner .g-menu__items {
    font-size: 1.8rem;
    line-height: 1.1666666667;
    font-weight: 500;
  }
}

.l-header .nav__wrapper.open {
  transform: translateX(0);
}

/* 2. 400px以上スクロールした時の準備状態 */
/* 一旦画面の上に隠して、fixed（固定）に切り替える */
.header__scroll.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: #fff; /* 背景色がないと透けるので指定 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 60px;
  transform: translateY(-100%);
  opacity: 0;
}
.header__scroll .logo-img img{
  margin-top: 5px;
  height: 35px;
  width: auto;
  display: block;
  max-width:150px;
}
@media screen and (min-width: 768px) {
  .header__scroll .logo-img img{
    height: 40px;
  }
}

/* 3. スライドダウンして表示される状態 */
.header__scroll{
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__scroll.is-slide-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* layout
-----------------------------------------------------------------------------*/
/* module
---------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
  .sp-only{
    display: none!important;
  }
}
@media screen and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
  .sp-only{
    display: block!important;
  }
}

.sec-application .carousel.custom-form-carousel .dt-single{
  margin: 0;
}
.sec-application .contact__form dt{
  margin: 0;
}
.sec-application .flex .flex-item .date-title{
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sec-application .application_wrap .application-box .box-ttl:has(+.flex){
    margin-bottom: 0;
  }
  .sec-application .application_wrap .application-box{
    padding: 1.5rem 2rem 2rem
  }
  .form_style .btn_wrap{
    margin-top: 1rem;
  }
}
.carousel.custom-form-carousel .contact__select select{
  color: #333;
}
.f_nav{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 190px;
  text-align: center;
  z-index: 990;
transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;}
.f_nav.is-show {
  transform: translateY(0);
  opacity: 1;
}  
.f_nav a{
  display: block;
  margin: auto auto  0;
  height: 100%;
}
.f_nav a img{
  max-height: 100%;
  width: auto;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .f_nav{
    height: 120px;
  }
}
#video-choose-launcher{
  bottom: 150px!important;
  transform: translateY(100%)!important;
  opacity: 0!important;
  transition: transform 0.4s ease, opacity 0.4s ease!important;
}
#video-choose-launcher.is-show {
  transform: translateY(0)!important;
  opacity: 1!important;
}  
@media screen and (max-width: 767px) {
  #video-choose-launcher{
    bottom: 100px!important;
  }
}
