@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a {
  cursor: pointer;
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
}

/*==========================================================
# color
===========================================================*/
/*==========================================================
# font
===========================================================*/
/*==========================================================
# layout
===========================================================*/
/*==========================================================
# mixin
===========================================================*/
/*==========================================================
# add
===========================================================*/

.reason{
	background-color: #D4145A;
	height: 100vh;
/*    overflow: hidden; */
	display:flex;
}

.reason_left { 
  width:50%;
  flex: 0 0 50%;       
  box-sizing: border-box;
  padding: 40px;
  /* 左はスクロールさせない */
      overflow: hidden;
}
.reason_left img{
	width:80%;
	margin:0 0 15px;
}


.reason_right{
      flex: 0 0 50%;       /* 横幅50%で固定 */
      box-sizing: border-box;
      padding: 40px;
      overflow-y: auto;    /* ここだけ縦スクロール */
	  width:50%;
}
.reason_right img{
	width:100%;
	margin:0 0 15px;

}



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

.reason{
	height: auto;
	display:block;
	text-align: center;
	margin:0 auto;
}

.reason_left { 
  width:100%;
  padding: 40px;
}
.reason_left img{
	width:90%;
	margin:0 auto 15px;
}


.reason_right{
  width:100%;
  padding: 10px;
}
.reason_right img{
	width:100%;
	margin:0 auto 15px;
	}
}


.film{
	background-color: #D4145A;
	margin:0;
	padding: 30px;
}

.film_inner{
	background-color: #FFF;
	margin:0 auto;
	width:100%;
	border-radius: 10px;
}

.film_inner img{
	width: 80%;	
 	text-align: left;
	margin: 30px 0 0 100px;
}

.film_lr{
	width:100%;
	display:flex;
}

.film_left{
	width:50%;
}
.film_right{
	width:40%;
	aspect-ratio: 16 / 9;
	margin:30px 0;
}
.film_right iframe{
	width:100%;
	height:100%;
}




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

.film{
	padding: 10px;
	width:100%;
}

.film_inner{
	background-color: #FFF;
	margin:0 auto;
	width:95%;
	border-radius: 10px;
}

.film_inner img{
	width: 90%;	
 	text-align: left;
	margin: 20px 0 0 5%;
}

.film_lr{
	width:100%;
	display:block;
/*	margin:0 0 30px;*/
	padding-bottom:20px;
}

.film_left{
	width:100%;
}
.film_right{
	width:90%;
	margin:30px auto;
	}
}


.faq{
	background-color: #FFF;
	margin:0;
	padding: 30px;
}

.faq_inner{
	background-color: #F0F0F0;
	margin:0 auto;
	width:100%;
	border-radius: 10px;
	text-align:center;
}
.faq_inner img{
	width:70%;
	margin:30px 0;
}


@media screen and (max-width: 768px) {	
.faq{
	padding: 30px 10px;
}

.faq_inner{
	margin:0 auto;
	width:95%;
	border-radius: 10px;
	text-align:center;
}
.faq_inner img{
	width:95%;
	margin:10px auto;
}
	
}
	

.cta{
  position: relative;
}
.cta_btn{
  position: absolute;
  right: 42%;
  bottom: 20%;
  width: 20%;
}

@media screen and (max-width: 768px) {	
.cta_btn{
  position: absolute;
  right: 20%;
  bottom: 20%;
  width: 60%;
}
}


/*==========================================================
# common
===========================================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.557vw;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 29.297vw;
  }
}

body {
  background-color: #fff;
  color: #3C3200;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 1.042vw;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

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

/*==========================================================
# common
===========================================================*/
.inner {
  max-width: 78.125vw;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    max-width: 79.948vw;
  }
}

.orange {
  color: #E18301;
}

.gold {
  color: #B4A352;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #F5F3EE));
  background: linear-gradient(transparent 70%, #F5F3EE 30%);
}

/* header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 4;
  background-color: #fff;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: 80%;
  height: 5vw;
}
@media screen and (max-width: 768px) {
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 100%;
    height: auto;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
/*  width: 15%;*/
}
@media screen and (max-width: 768px) {
  .header__left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 94%;
    height: 13.672vw;
    margin: 0 auto;
  }
}

.header__logo {
  width: 20vw;   /* 15.951vw → 20vw くらいに   
	width: 15.951vw;*/
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 38.411vw;
  }
}

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

.logo__link {
  display: inline-block;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .logo__link:hover {
    opacity: 0.7;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .header__right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    background-color: #3C3200;
/*    padding: 2.865vw 0;*/
    padding:0;
  }
}

.nav {
  height: 100%;
}

.nav__list {
  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;
  height: 100%;
}

.nav__item {
  height: 100%;
}
.nav__item:not(:first-child) {
  margin-left: 3.451vw;
}
@media screen and (max-width: 768px) {
  .nav__item:not(:first-child) {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav__item:not(:first-child) .nav__item-link {
    border-left: 0.13vw solid #fff;
  }
}

.nav__item-link {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-weight: 600;
  font-size: 1.042vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E18301;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .nav__item-link {
    font-size: 3.125vw;
    color: #fff;
    text-align: center;
    width: 29.948vw;
    display: inline-block;
  }
}
@media (hover: hover) and (pointer: fine) {
  .nav__item-link:hover {
    opacity: 0.7;
  }
}

.header__btn {
  width: 20.768vw;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 47.135vw;
  }
}

.cta-link,
.fix__btn-link,
.fv__cta-link,
.header__btn-link {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .cta-link:hover,
  .fix__btn-link:hover,
  .fv__cta-link:hover,
  .header__btn-link:hover {
    -webkit-transform: translateY(0.2vw);
            transform: translateY(0.2vw);
  }
}

.fix__btn {
  position: fixed;
  bottom: 5.859vw;
  right: 0;
  z-index: 4;
  width: 4.297vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(50px) scale(0.8);
          transform: translateX(50px) scale(0.8);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .fix__btn {
    width: 15.833vw;
  }
}
.fix__btn.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
}
@media screen and (max-width: 768px) {
  .fix__btn {
    width: 15.833vw;
  }
}

/* fv
-----------------------------------------------------------*/
.fv {
  width: 100%;
	margin-top:70px;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 30px;
  }
}

.bg-btn{
	margin:0;
	padding:0;
	background-color: #483105;
	text-align:center;
}

.bg-btn a{
	width:33%;
	margin:0 auto 60px;
}

.bg-btn img{
	width:80%;
}

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

.bg-btn a{
	width:80%;
	margin:0 auto 60px;
}
.bg-btn img{
	width:100%;
}
}

.fv__contents {
  position: relative;
  width: 100%;
}

.fv__bg {
  width: 100%;
  margin-top: 4.557vw;
}
@media screen and (max-width: 768px) {
  .fv__bg {
    margin-top: 0;
  }
}

.fv__content {
  position: absolute;
  left: 34%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .fv__content {
    left: 51%;
    top: 98%;
  }
}

.fv__title {
  font-size: 3.451vw;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 7.552vw;
  }
}
.white{	background-color: white;}

.fv__subtitles {
  margin-top: 0.651vw;
}
@media screen and (max-width: 768px) {
  .fv__subtitles {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.fv__subtitle {
  font-size: 1.823vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .fv__subtitle {
    font-size: 4.036vw;
    white-space: nowrap;
  }
}

.fv__catches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.302vw;
  gap: 1.302vw;
}
@media screen and (max-width: 768px) {
  .fv__catches {
    margin-top: 2.3vw;
  }
}

.fv__catch {
  width: 15.43vw;
}
.fv__catch:nth-child(2) {
  width: 16.927vw;
}
@media screen and (max-width: 768px) {
  .fv__catch:nth-child(2) {
    width: 47vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__catch {
    width: 42.578vw;
  }
}

.fv__cta {
  width: 27.148vw;
  margin: 1.628vw auto 0;
}
@media screen and (max-width: 768px) {
  .fv__cta {
    width: 77.474vw;
    margin-top: 4.948vw;
  }
}

.fv__notes {
  text-align: center;
  margin-top: 0.651vw;
  font-size: 1.042vw;
}
@media screen and (max-width: 768px) {
  .fv__notes {
    font-size: 2.604vw;
  }
}

.fv__notes-small {
  display: block;
  white-space: nowrap;
  font-size: 0.911vw;
}
@media screen and (max-width: 768px) {
  .fv__notes-small {
    font-size: 2.083vw;
  }
}


.fv__under {
  background: linear-gradient(transparent 75%, #F6B63C 75%);
}


.fv__small {
  font-size: 3.451vw;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .fv__small {
    font-size: 6.352vw;
    line-height: 1.4;
  }
}
/* sec01
-----------------------------------------------------------*/
.sec01 {
  margin-top: 4.557vw;
}
@media screen and (max-width: 768px) {
  .sec01 {
    margin-top: 50.26vw;
  }
}

/* sec01-2
-----------------------------------------------------------*/
.sec01-2 {
  margin-top: 0vw;
}
@media screen and (max-width: 768px) {
  .sec01-2 {
    margin-top: 57.26vw;
  }
}

.splide1 {
  background-color: #F5F3EE;
  padding: 4.036vw 0 2.279vw;
  border-radius: 1.302vw;
}
.splide1 .splide__slide {
  margin: 0 1.302vw;
  max-width: 34.115vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .splide1 .splide__slide {
    max-width: 55vw;
  }
}
.splide1 .splide__slide img {
  height: auto;
  width: 100%;
  margin: 0 1.302vw;
}

.sec01__titles {
  margin-top: 2.083vw;
}
@media screen and (max-width: 768px) {
  .sec01__titles {
    margin-top: 4.083vw;
  }
}

.sec01__title {
  margin: 0 auto;
  width: 39.648vw;
}
@media screen and (max-width: 768px) {
  .sec01__title {
    width: 79.557vw;
    max-width: 90%;
  }
}

/* sec02
-----------------------------------------------------------*/
.sec02 {
  background-color: #3C3200;
  border-radius: 1.302vw;
  padding-bottom: 4.557vw;
  margin-top: 4.557vw;
}
@media screen and (max-width: 768px) {
  .sec02 {
    margin-top: 5vw;
    padding-bottom: 14.323vw;
  }
}

.sec02__contents {
  padding-top: 3.255vw;
}
@media screen and (max-width: 768px) {
  .sec02__contents {
    padding-top: 4.688vw;
  }
}

.sec02__titles {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding: 0 9.766vw;
}
.sec02__titles::before, .sec02__titles::after {
  position: absolute;
  content: "";
  width: 6.51vw;
  height: 0.065vw;
  background-color: #F5F3EE;
  bottom: 15%;
}
.sec02__titles::before {
  right: 0;
}
.sec02__titles::after {
  left: 0;
}
@media screen and (max-width: 768px) {
  .sec02__titles {
    padding: 0 14.766vw;
  }
}

.sec02__title {
  font-size: 2.865vw;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec02__title {
    font-size: 6.25vw;
  }
}

.sec02__title-small {
  font-size: 2.604vw;
}
@media screen and (max-width: 768px) {
  .sec02__title-small {
    font-size: 4.948vw;
  }
}

.sec02__flex {
  margin-top: 3.906vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.93vw;
}
@media screen and (max-width: 768px) {
  .sec02__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 84.635vw;
    gap: 0;
  }
}

.sec02__img {
  width: 18.229vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec02__img {
    left: -6%;
    width: 31.12vw;
  }
}

.sec02__list {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.781vw;
  padding-bottom: 1.823vw;
}
@media screen and (max-width: 768px) {
  .sec02__list {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

.sec02__item {
  background-color: #F5F3EE;
  padding: 0.326vw 0 0.651vw 1.953vw;
  border-radius: 1.302vw;
  width: 35.156vw;
  font-size: 1.563vw;
  position: relative;
}
.sec02__item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -3%;
  width: 1.628vw;
  height: 2.93vw;
  background-color: #F5F3EE;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
@media screen and (max-width: 768px) {
  .sec02__item::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sec02__item {
    text-align: center;
    padding: 2.604vw 3.255vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    font-size: 3.385vw;
    z-index: 0;
  }
  .sec02__item:nth-child(1) {
    left: 12%;
    top: 8%;
  }
  .sec02__item:nth-child(2) {
    right: 17%;
    top: 30%;
  }
  .sec02__item:nth-child(3) {
    left: 5%;
    top: 62%;
  }
  .sec02__item:nth-child(4) {
    right: 3%;
    top: 96%;
  }
}

.sec02__item-large {
  font-size: 1.693vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec02__item-large {
    font-size: 3.385vw;
  }
}

.sec02__bottom {
  text-align: center;
  background-color: #B4AE93;
  border-radius: 1.302vw;
  width: 65.104vw;
  padding: 0.977vw 0;
  margin: -4.557vw auto 0;
  position: relative;
  z-index: 1;
}
.sec02__bottom::after {
  position: absolute;
  content: "";
  bottom: -1.953vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2.93vw solid transparent;
  border-right: 2.93vw solid transparent;
  border-top: 3.255vw solid #B4AE93;
}
@media screen and (max-width: 768px) {
  .sec02__bottom {
    width: 79.948vw;
    margin-top: -14.323vw;
  }
}

.sec02__bottom-text {
  font-size: 2.083vw;
  color: #F5F3EE;
}
@media screen and (max-width: 768px) {
  .sec02__bottom-text {
    font-size: 5.208vw;
  }
}

.bold {
  font-weight: 700;
}

.sec02__bottom-large {
  font-size: 2.604vw;
}
@media screen and (max-width: 768px) {
  .sec02__bottom-large {
    font-size: 6.38vw;
  }
}

.sec02__bottom-small {
  font-size: 2.214vw;
}
@media screen and (max-width: 768px) {
  .sec02__bottom-small {
    font-size: 4.688vw;
  }
}

/* sec03
-----------------------------------------------------------*/
.sec03 {
  background-color: #F5F3EE;
  margin-top: -4.557vw;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sec03 {
    margin-top: -16.667vw;
  }
}

.sec03__contents {
  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;
  gap: 1.302vw;
  background-color: #fff;
  padding-top: 5.859vw;
  position: relative;
  max-width: 78.125vw;
  margin: 0 auto;
}
.sec03__contents::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 39.063vw solid transparent;
  border-right: 39.063vw solid transparent;
  border-top: 4.557vw solid #fff;
}
@media screen and (max-width: 768px) {
  .sec03__contents::after {
    border-left: 45.573vw solid transparent;
    border-right: 45.573vw solid transparent;
    border-top: 6.51vw solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .sec03__contents {
    padding: 23.229vw 0 5.208vw;
    width: 100%;
    max-width: 100%;
  }
}

.sec03__titles {
  margin-top: 9.766vw;
  position: relative;
}
.sec03__titles::before {
  position: absolute;
  content: "";
  top: -6.51vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/sec03_icon.svg) no-repeat center center/contain;
  width: 4.557vw;
  height: 4.557vw;
}
@media screen and (max-width: 768px) {
  .sec03__titles::before {
    top: -10.938vw;
    width: 9.115vw;
    height: 9.115vw;
  }
}

.sec03__title {
  font-size: 2.734vw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec03__title {
    font-size: 5.729vw;
  }
}

.sec03__title-orange {
  color: #E08404; /* フォールバック色 */
  background: -webkit-gradient(linear, left top, right top, from(#E08404), to(#FCB713));
  background: linear-gradient(to right, #E08404, #FCB713);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec03__graph {
  width: 47.917vw;
  margin-top: 1.953vw;
}
@media screen and (max-width: 768px) {
  .sec03__graph {
    width: 73.438vw;
    margin-top: 5.99vw;
  }
}

.sec03__main {
  width: 65.104vw;
  margin-top: 3.255vw;
}
@media screen and (max-width: 768px) {
  .sec03__main {
    width: 79.948vw;
  }
}

.sec03__bottom {
  width: 34.31vw;
}
@media screen and (max-width: 768px) {
  .sec03__bottom {
    width: 68.62vw;
  }
}

/* cta
-----------------------------------------------------------*/
.sec-cta {
  background: -webkit-gradient(linear, left top, right top, from(#E08404), to(#FCB713));
  background: linear-gradient(to right, #E08404, #FCB713);
  padding: 7.422vw 0 3.255vw;
}
@media screen and (max-width: 768px) {
  .sec-cta {
    padding: 9.375vw 0 5.208vw;
  }
}

.u-sec-cta {
  padding: 3.906vw 0;
}
@media screen and (max-width: 768px) {
  .u-sec-cta {
    padding: 5.859vw 0;
  }
}

.sec-cta02 {
  margin-top: -5.208vw;
}
@media screen and (max-width: 768px) {
  .sec-cta02 {
    margin-top: -5.859vw;
  }
}

.cta__contents {
  background-color: #fff;
  width: 53.06vw;
  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;
  margin: 0 auto;
  padding: 2.604vw;
}
@media screen and (max-width: 768px) {
  .cta__contents {
    width: 89.583vw;
    padding: 2.604vw 5.208vw 5.208vw;
  }
}


.cta__contents2 {
  background-color: #fff;
  width: 53.06vw;
  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;
  margin: 0 auto;
  padding: 0 0 2.604vw 0;
}
@media screen and (max-width: 768px) {
  .cta__contents2 {
    width: 89.583vw;
    padding: 0 0 5.208vw 0;
  }
}

.cta__leads {
  border-radius: 0.651vw;
  padding: 0.651vw 1.302vw 1.953vw;
  background: url(../img/cta_fukidashi.svg) no-repeat center center/contain;
  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;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta__leads {
    background: url(../img/cta_fukidashi-sp.svg) no-repeat center center/contain;
    padding: 0.651vw 7.813vw 4.167vw;
  }
}
.cta__leads::after {
  position: absolute;
  content: "";
  top: 40%;
  right: -4.883vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/cta_img.png) no-repeat center center/contain;
  width: 6.12vw;
  height: 9.18vw;
}
@media screen and (max-width: 768px) {
  .cta__leads::after {
    right: -9.115vw;
    width: 10.677vw;
    height: 17.188vw;
  }
}

.cta__lead {
  font-size: 1.953vw;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta__lead {
    font-size: 4.427vw;
    text-align: center;
    line-height: 1.5em;
  }
}

.cta__titles {
  font-weight: 800;
  font-style: oblique 15deg;
}

.cta__title {
  font-size: 2.995vw;
  letter-spacing: 0.05em;
}

.cta__title2 {
  font-size: 2.595vw;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 6.51vw;
  }  
  .cta__title2 {
    font-size: 6.01vw;
  }
}

.cta__title-small {
  font-size: 2.344vw;
}
@media screen and (max-width: 768px) {
  .cta__title-small {
    font-size: 5.208vw;
  }
}

.cta__list {
  margin-top: 1.953vw;
  background-color: #F5F3EE;
  border-radius: 1.302vw;
  padding: 1.302vw;
  gap: 1.953vw;
}

.cta__item {
  font-size: 1.563vw;
  font-weight: 700;
  position: relative;
  padding-left: 2.279vw;
}
.cta__item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/check.svg) no-repeat center center/contain;
  width: 1.628vw;
  height: 1.628vw;
}
@media screen and (max-width: 768px) {
  .cta__item::after {
    width: 3.255vw;
    height: 3.255vw;
  }
}
@media screen and (max-width: 768px) {
  .cta__item {
    font-size: 3.385vw;
    padding-left: 5.729vw;
  }
}

.cta {
  margin: 1.953vw auto 0;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-btn {
  width: 36.458vw;
}
@media screen and (max-width: 768px) {
  .cta-btn {
    width: 79.427vw;
  }
}

.notes {
  text-align: center;
  font-size: 1.302vw;
  margin-top: 0.326vw;
}
@media screen and (max-width: 768px) {
  .notes {
    font-size: 2.604vw;
  }
}

.notes-small {
  display: inline-block;
  font-size: 1.042vw;
}
@media screen and (max-width: 768px) {
  .notes-small {
    font-size: 2.083vw;
  }
}

/* price
-----------------------------------------------------------*/
.sec04 {
  padding: 2.604vw 0;
}
@media screen and (max-width: 768px) {
  .sec04 {
    padding: 5.859vw 0;
  }
}

.sec04__contents {
  background-color: #F5F3EE;
  border-radius: 1.302vw;
  width: 78.125vw;
  padding: 1.628vw 0 2.604vw;
  margin: 0 auto;
  max-width: 90%;
}
@media screen and (max-width: 768px) {
  .sec04__contents {
    width: 89.844vw;
    padding: 3.906vw 0;
  }
}

.sec04__leads {
  width: 36.589vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec04__leads {
    width: 100%;
  }
}

.sec04__table {
  width: 53.06vw;
  margin: 1.302vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec04__table {
    width: 79.948vw;
    margin-top: 0;
  }
}

/* sec05
-----------------------------------------------------------*/
.sec05 {
  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;
  padding: 4.883vw 0 3.581vw;
}
@media screen and (max-width: 768px) {
  .sec05 {
    padding: 7.813vw 0 13.021vw;
  }
}

.sec05__main {
  width: 59.049vw;
}
@media screen and (max-width: 768px) {
  .sec05__main {
    width: 79.948vw;
  }
}

.sec05__box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.302vw;
  margin-top: 1.953vw;
}
@media screen and (max-width: 768px) {
  .sec05__box-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
    gap: 2.604vw;
  }
}

.sec05__box {
  width: 26.953vw;
  background-color: #F5F3EE;
  border-radius: 0.651vw;
  padding: 1.2vw;
}
.sec05__box:nth-child(1) .sec05__box-title {
  color: #B4A352;
}
.sec05__box:nth-child(1) .sec05__box-title {
  border: #B4A352 solid 0.13vw;
}
.sec05__box:nth-child(2) .sec05__box-title {
  border: #3C3200 solid 0.13vw;
}
@media screen and (max-width: 768px) {
  .sec05__box {
    width: 39.109vw;
  }
}
@media screen and (max-width: 768px) {
  .sec05__box {
    padding: 3.125vw;
  }
}

.sec05__box-title {
  font-size: 1.693vw;
  font-weight: 700;
  text-align: center;
  border-radius: 0.651vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sec05__box-title {
    font-size: 3.385vw;
  }
}

.sec05__box-text {
  margin-top: 0.977vw;
  font-size: 1.432vw;
}
@media screen and (max-width: 768px) {
  .sec05__box-text {
    font-size: 2.865vw;
  }
}

/* sec06
-----------------------------------------------------------*/
.sec06 {
  background-color: #F5F3EE;
  padding: 3.255vw 0;
  position: relative;
}
.sec06::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 5vw solid #F5F3EE;
}
@media screen and (max-width: 768px) {
  .sec06::after {
    border-left: 45.573vw solid transparent;
    border-right: 45.573vw solid transparent;
    border-top: 6.51vw solid #F5F3EE;
  }
}
@media screen and (max-width: 768px) {
  .sec06 {
    padding: 7.031vw 0 0;
  }
}

.sec06__titles {
  width: 64.779vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec06__titles {
    width: 79.818vw;
  }
}

.sec06__bottom {
  width: 65.104vw;
  margin: 1.302vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec06__bottom {
    width: 89.844vw;
  }
}

/* sec07
-----------------------------------------------------------*/
.sec07 {
  margin-top: 7.813vw;
}
@media screen and (max-width: 768px) {
  .sec07 {
    margin-top: 11.719vw;
  }
}

.sec07__titles {
  position: relative;
  z-index: 1;
}

.sec07__title {
  text-align: center;
  font-size: 3.255vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .sec07__title {
    font-size: 6.25vw;
  }
}

.sec07__title-small {
  font-size: 2.865vw;
}
@media screen and (max-width: 768px) {
  .sec07__title-small {
    font-size: 5.859vw;
  }
}

.sec07__title-box {
  color: #E18301;
  font-size: 2.734vw;
  background-color: #F5F3EE;
  padding: 0.326vw 0.977vw;
}
@media screen and (max-width: 768px) {
  .sec07__title-box {
    font-size: 5.469vw;
  }
}

.sec07__contents {
  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;
  gap: 3.255vw;
  background-color: #F5F3EE;
  margin-top: 5.208vw;
  padding-bottom: 3.255vw;
}
@media screen and (max-width: 768px) {
  .sec07__contents {
    margin-top: 15.208vw;
    gap: 5.599vw;
  }
}

.sec07__box1 {
  width: 59.896vw;
  margin-top: -1.953vw;
}
@media screen and (max-width: 768px) {
  .sec07__box1 {
    width: 85%;
  }
}

.sec07__box2 {
  width: 59.896vw;
}
@media screen and (max-width: 768px) {
  .sec07__box2 {
    width: 85%;
  }
}

/* sec08
-----------------------------------------------------------*/
.sec08 {
  padding: 5.208vw 0;
}
@media screen and (max-width: 768px) {
  .sec08 {
    padding: 11.328vw 0;
  }
}

.sec08__titles {
  text-align: center;
  color: #1A1A1A;
  letter-spacing: 0.1em;
}

.sec08__title {
  font-size: 2.474vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec08__title {
    font-size: 4.948vw;
  }
}

.sec08__title-large {
  font-size: 3.255vw;
}
@media screen and (max-width: 768px) {
  .sec08__title-large {
    font-size: 6.51vw;
  }
}

.sec08__fukidashi {
  background-color: #E18301;
  padding: 0.521vw 1.953vw;
  border-radius: 2.604vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5.6vw auto 0;
  position: relative;
  z-index: 1;
}
.sec08__fukidashi::after {
  position: absolute;
  content: "";
  bottom: -0.977vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.953vw solid transparent;
  border-right: 1.953vw solid transparent;
  border-top: 1.823vw solid #E18301;
}
@media screen and (max-width: 768px) {
  .sec08__fukidashi::after {
    bottom: -1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .sec08__fukidashi {
    margin-top: 11.068vw;
    border-radius: 3.906vw;
  }
}

.sec08__fukidashi-text {
  color: #fff;
  font-size: 2.083vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec08__fukidashi-text {
    font-size: 4.167vw;
  }
}

.sec08__img {
  width: 42.578vw;
  margin: 1.953vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec08__img {
    margin: 6.12vw auto 0;
    width: 79.948vw;
  }
}

.sec08__leads {
  text-align: center;
  margin-top: 2.604vw;
}

.sec08__lead {
  font-size: 2.995vw;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.1em;
}

.sec08__texts {
  background-color: #F5F3EE;
  width: 59.896vw;
  margin: 1.953vw auto 0;
  padding: 1.302vw;
  border-radius: 0.651vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec08__texts {
    width: 100%;
    padding: 3.906vw;
  }
}

.sec08__text {
  color: #1A1A1A;
  font-size: 1.693vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec08__text {
    font-size: 3.385vw;
  }
}

.sec08__leads01 {
  text-align: center;
  margin-top: 1.553vw;
  letter-spacing: 0.1em;
}

.sec08__leads02 {
  text-align: center;
  margin-top: 5.208vw;
}

.sec08__lead01 {
  font-size: 2.865vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec08__lead01 {
    font-size: 6.51vw;
    letter-spacing: 0.01em;
  }
}

.sec08__lead01-small {
  font-size: 2.604vw;
}
@media screen and (max-width: 768px) {
  .sec08__lead01-small {
    font-size: 5.99vw;
  }
}

.sec08__lead02 {
  font-size: 2.865vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec08__lead02 {
    font-size: 5.469vw;
  }
}

.sec08__graph {
  width: 35.677vw;
  margin: 3.906vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec08__graph {
    margin-top: 4.557vw;
    width: 71.354vw;
  }
}

.sec08__lead03 {
  font-size: 2.865vw;
  font-weight: 700;
  text-align: center;
  margin-top: 3.906vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec08__lead03 {
    font-size: 5.729vw;
  }
}

.sec08__lead03-small {
  font-size: 2.734vw;
}
@media screen and (max-width: 768px) {
  .sec08__lead03-small {
    font-size: 5.729vw;
  }
}

.sec08__leads04 {
  width: 37.565vw;
  margin: 3.906vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec08__leads04 {
    margin-top: 5.599vw;
    width: 75.26vw;
  }
}

.splide2 {
  width: 66.104vw;
  margin: 3.255vw auto 0;
}
@media screen and (max-width: 768px) {
  .splide2 {
    width: 100%;
    margin-top: 5vw;
  }
}
.splide2 .splide__slide {
  margin: 0 0.6vw;
}
@media screen and (max-width: 768px) {
  .splide2 .splide__slide {
    margin: 0 2vw;
  }
}
.splide2 .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.splide2 .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 36.458vw;
  background: #000;
  overflow: hidden;
  -webkit-box-shadow: 0 0.26vw 0.521vw rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.26vw 0.521vw rgba(0, 0, 0, 0.1);
  height: 12.417vw;
}
@media screen and (max-width: 768px) {
  .splide2 .video-wrapper {
    height: 38.714vw;
    max-width: 71.458vw;
  }
}
.splide2 .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 矢印のクリック範囲など */
.button {
  background-color: transparent; /* ボタンの背景を透明にする */
  height: 3.255vw;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 3.255vw;
}

/* 矢印共通のスタイル */
.button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 2.344vw;
  margin: auto;
  position: absolute;
  top: 0;
  width: 2.344vw;
}

/* 前の矢印 */
.prev::before {
  background: url(../img/arrow-right.svg) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -4.102vw;
}

/* 次の矢印 */
.next::before {
  background: url(../img/arrow-right.svg) no-repeat center center/contain;
  right: -4.102vw;
}

/* 次のスライドが無い場合の矢印 */
/* ページネーションのスタイル */
.your-class-page {
  background-color: #D9D9D9;
  height: 0.521vw;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 0.521vw;
}
@media screen and (max-width: 768px) {
  .your-class-page {
    width: 1.953vw;
    height: 1.953vw;
  }
}

/* 現在表示されているページネーションのスタイル */
.your-class-page.is-active {
  background-color: #E18301;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ページネーションの位置 */
.your-class-pagination {
  bottom: -1.628vw;
}
@media screen and (max-width: 768px) {
  .your-class-pagination {
    bottom: -5.208vw;
  }
}

/* ページネーション間の余白 */
.your-class-pagination li {
  margin-left: 0.391vw;
  margin-right: 0.391vw;
}

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

.splide__slide iframe {
  pointer-events: auto;
}

.splide__track {
  -ms-touch-action: pan-y pinch-zoom;
      touch-action: pan-y pinch-zoom;
}

.youtube__titles {
  margin-top: 8.073vw;
}
@media screen and (max-width: 768px) {
  .youtube__titles {
    margin-top: 13.021vw;
  }
}

.youtube__title {
  background: -webkit-gradient(linear, left top, right top, from(#E08404), to(#FCB713));
  background: linear-gradient(to right, #E08404, #FCB713);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.604vw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .youtube__title {
    font-size: 4.948vw;
  }
}

/* sec09
-----------------------------------------------------------*/
.sec09 {
  padding: 3.906vw 0 0;
}
.sec09__leads {
  background: url(../img/cta_fukidashi.svg) no-repeat center center/contain;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.326vw 1.302vw 1.302vw;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec09__leads {
    padding: 2.326vw 1.302vw 4.302vw;
  }
}

.sec09__lead {
  color: #fff;
  font-size: 1.823vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec09__lead {
    font-size: 4.167vw;
  }
}

.sec09__titles {
  text-align: center;
}

.sec09__title {
  font-size: 2.865vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec09__title {
    font-size: 7.031vw;
  }
}

.sec09__title-small {
  font-size: 2.474vw;
}
@media screen and (max-width: 768px) {
  .sec09__title-small {
    font-size: 5.469vw;
  }
}

.sec09__list {
  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;
  margin: 1.953vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec09__list {
    margin: 3.906vw auto 0;
  }
}
.pc_wrapper{
  padding: 6.51vw 0 3.255vw;
  width: 53.385vw;
  margin:0 auto;
}

.sec09__item {
  padding: 6.51vw 0 3.255vw;
  width: 100%;
  position: relative;
}
.sec09__item::before {
  position: absolute;
  content: "";
  top: 2.604vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9.766vw;
  height: 2.344vw;
}
@media screen and (max-width: 768px) {
  .sec09__item::before {
    width: 23.438vw;
    height: 5.208vw;
    top: 5vw;
  }
}
.sec09__item:nth-child(even) {
  background-color: #F5F3EE;
}
.sec09__item:nth-child(even) .sec09__texts {
  padding: 0 1.693vw 0 0;
}
@media screen and (max-width: 768px) {
  .sec09__item:nth-child(even) .sec09__texts {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec09__item:nth-child(even) .sec09__item-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.sec09__item:nth-child(1)::before {
  background: url(../img/point1.svg) no-repeat center center/contain;
}
.sec09__item:nth-child(2)::before {
  background: url(../img/point2.svg) no-repeat center center/contain;
}
.sec09__item:nth-child(3)::before {
  background: url(../img/point3.svg) no-repeat center center/contain;
}
.sec09__item:nth-child(4)::before {
  background: url(../img/point4.svg) no-repeat center center/contain;
}
.sec09__item:nth-child(5)::before {
  background: url(../img/point5.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .sec09__item {
    padding: 13.021vw 0 7vw;
  }
}

.sec09__item-title {
  font-size: 2.018vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec09__item-title {
    font-size: 5.208vw;
  }
}

.sec09__item-container {
  width: 53.385vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.628vw;
  margin: 1.628vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec09__item-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 79.948vw;
  }
}

.sec09__img {
  width: 23.763vw;
}
@media screen and (max-width: 768px) {
  .sec09__img {
    width: 100%;
  }
}

.sec09__texts {
  width: calc(100% - 23.763vw);
  padding-left: 1.693vw;
}
@media screen and (max-width: 768px) {
  .sec09__texts {
    width: 100%;
    margin-top: 2.604vw;
    padding-left: 0;
  }
}

.sec09__text {
  font-size: 1.302vw;
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  .sec09__text {
    font-size: 3.646vw;
  }
}


.sec09__map {
  width: 45.763vw;
  margin:10px auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec09__map {
    width: 100%;
  }
}

/* sec10
-----------------------------------------------------------*/
.sec10__contents {
  position: relative;
}

.sec10__content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec10__content {
    top: 47%;
  }
}

.sec10__title {
  width: 41.211vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec10__title {
    width: 100%;
  }
}

.sec10__img {
  width: 29.883vw;
  margin: 0.977vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec10__img {
    width: 84.766vw;
    margin-top: 7.813vw;
  }
}

.sec10__main {
  margin-top: 0.977vw;
  width: 40.365vw;
}
@media screen and (max-width: 768px) {
  .sec10__main {
    width: 84.635vw;
    margin: 7.813vw auto 0;
  }
}

/* sec11
-----------------------------------------------------------*/
.sec11 {
  padding: 3.255vw 0;
}

.sec11__titles {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 5.664vw;
  position: relative;
}
.sec11__titles::before, .sec11__titles::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.906vw;
  height: 0.065vw;
  background-color: #3C3200;
}
@media screen and (max-width: 768px) {
  .sec11__titles::before, .sec11__titles::after {
    width: 7.813vw;
    height: 0.13vw;
  }
}
.sec11__titles::before {
  left: 0;
}
.sec11__titles::after {
  right: 0;
}
@media screen and (max-width: 768px) {
  .sec11__titles {
    padding: 0 15vw;
  }
}

.sec11__title {
  font-size: 2.865vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec11__title {
    font-size: 7.031vw;
  }
}

.sec11__top-title {
  font-size: 2.344vw;
  font-weight: 700;
  text-align: center;
  margin-top: 3.06vw;
}
@media screen and (max-width: 768px) {
  .sec11__top-title {
    line-height: 2.25em;
    margin-top: 3.906vw;
    font-size: 4.688vw;
  }
}

.sec11__title-box {
  margin: 0 0.651vw;
  color: #B4A352;
  border: 0.13vw solid #B4A352;
  border-radius: 0.651vw;
  padding: 0.326vw 0.651vw;
}
@media screen and (max-width: 768px) {
  .sec11__title-box {
    font-size: 5.729vw;
  }
}

.sec11__attention {
  margin: 0.651vw auto 0;
  width: 15.495vw;
}
@media screen and (max-width: 768px) {
  .sec11__attention {
    width: 39.453vw;
  }
}

.sec11__contents {
  border: 0.195vw solid #B4A352;
  width: 65.104vw;
  margin: 2.148vw auto 0;
  border-radius: 0.651vw;
  padding: 2.083vw;
}
@media screen and (max-width: 768px) {
  .sec11__contents {
    width: 85.938vw;
  }
}

.sec11__contents-title {
  margin: -3.906vw auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #B4A352;
  color: #fff;
  font-weight: 700;
  padding: 0.326vw 1.628vw;
  font-size: 2.018vw;
  border-radius: 0.651vw;
  position: relative;
  z-index: 1;
}
.sec11__contents-title::after {
  position: absolute;
  content: "";
  bottom: -1.237vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.977vw solid transparent;
  border-right: 0.977vw solid transparent;
  border-top: 1.302vw solid #B4A352;
}
@media screen and (max-width: 768px) {
  .sec11__contents-title {
    font-size: 5.208vw;
  }
}

.sec11__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.734vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.302vw;
}
@media screen and (max-width: 768px) {
  .sec11__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.167vw;
  }
}

.sec11__contents-bottom {
  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;
  gap: 0.781vw;
  margin-top: 1.628vw;
}

.sec11__box {
  background-color: #F5F3EE;
  padding: 1.042vw;
  border-radius: 0.651vw;
}
.sec11__box:first-child .sec11__box-titles {
  border: 0.13vw solid #B4A352;
  color: #B4A352;
}

.sec11__box-titles {
  background-color: #fff;
  border: 0.13vw solid #3C3200;
  border-radius: 0.651vw;
}
@media screen and (max-width: 768px) {
  .sec11__box-titles {
    padding: 0.651vw;
  }
}

.sec11__box-title {
  font-size: 1.432vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec11__box-title {
    font-size: 3.385vw;
  }
}

.sec11__box-texts {
  margin-top: 0.977vw;
}

.sec11__box-text {
  font-size: 1.172vw;
}
@media screen and (max-width: 768px) {
  .sec11__box-text {
    font-size: 3.125vw;
  }
}

/* sec12
-----------------------------------------------------------*/
.sec12__titles {
  width: 56.185vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec12__titles {
    width: 79.948vw;
  }
}

.sec12__title {
  width: 100%;
}

.sec12__main {
  width: 59.31vw;
  margin: -2.604vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec12__main {
    width: 79.948vw;
  }
}

.sec12__bottom {
  margin-top: 3.451vw;
}

.sec12__bottom-titles {
  background-color: #F5F3EE;
  border-radius: 0.651vw;
  padding: 0.326vw 1.953vw;
  border-radius: 0.651vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.sec12__bottom-titles::after {
  position: absolute;
  content: "";
  bottom: -1.237vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.977vw solid transparent;
  border-right: 0.977vw solid transparent;
  border-top: 1.302vw solid #F5F3EE;
}

.sec12__bottom-title {
  font-size: 2.083vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec12__bottom-title {
    font-size: 5.859vw;
  }
}

.sec12__bottom-img {
  width: 65.104vw;
  margin: 1.302vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec12__bottom-img {
    width: 79.948vw;
  }
}

/* sec13
-----------------------------------------------------------*/
.sec13 {
  padding: 6.51vw 0 2.474vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec13 {
    padding: 14vw 0;
  }
}

.sec13__titles {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.sec13__title {
  color: #E08404; /* フォールバック色 */
  background: -webkit-gradient(linear, left top, right top, from(#E08404), to(#FCB713));
  background: linear-gradient(to right, #E08404, #FCB713);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.865vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec13__title {
    font-size: 7.031vw;
  }
}

.sec13__list {
  margin-top: 3.906vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.107vw;
}
@media screen and (max-width: 768px) {
  .sec13__list {
    width: 87.24vw;
    margin: 7.813vw auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.859vw;
  }
}

.sec13__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1.497vw;
  width: 64.453vw;
  margin: 0 auto;
  padding: 1.953vw 1.302vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec13__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 3.906vw;
    gap: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec13__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.sec13__item:nth-child(odd)::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #F5F3EE;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec13__item:nth-child(odd)::after {
    height: 80%;
    top: 20%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    right: 0;
    margin-left: calc(50% - 42vw);
    border-radius: 0 2.604vw 2.604vw 0;
  }
}
.sec13__item:nth-child(1)::after, .sec13__item:nth-child(5)::after {
  right: 0;
  margin-left: calc(50% - 42vw);
  border-radius: 0 1.302vw 1.302vw 0;
}
@media screen and (max-width: 768px) {
  .sec13__item:nth-child(1)::after, .sec13__item:nth-child(5)::after {
    left: 0;
    margin-right: calc(50% - 42vw);
    margin-left: 0;
    border-radius: 2.604vw 0 0 2.604vw;
  }
}
@media screen and (max-width: 768px) {
  .sec13__item:nth-child(even)::after {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #F5F3EE;
    width: 100vw;
    height: 100%;
    z-index: -1;
    height: 80%;
    top: 20%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    right: 0;
    margin-left: calc(50% - 50vw);
    border-radius: 0 2.604vw 2.604vw 0;
  }
}
.sec13__item:nth-child(3)::after {
  left: 0;
  margin-right: calc(50% - 42vw);
  border-radius: 1.302vw 0 0 1.302vw;
}
@media screen and (max-width: 768px) {
  .sec13__item:nth-child(3)::after {
    margin-left: 0;
  }
}

.sec13__img {
  width: 25.716vw;
}
@media screen and (max-width: 768px) {
  .sec13__img {
    width: 100%;
  }
}

.sec13__data {
  width: 27.669vw;
}
@media screen and (max-width: 768px) {
  .sec13__data {
    width: 100%;
  }
}

/* sec14
-----------------------------------------------------------*/
.sec14 {
  padding: 1.953vw 0 3.581vw;
}
@media screen and (max-width: 768px) {
  .sec14 {
    padding-bottom: 14.974vw;
    padding: 6vw 0 15vw;
  }
}

.sec14__title {
  color: #B4A352;
  font-size: 2.865vw;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec14__title {
    font-size: 7.031vw;
  }
}

.sec14__img {
  width: 65.039vw;
  margin: 4.362vw auto 0;
}
@media screen and (max-width: 768px) {
  .sec14__img {
    width: 79.167vw;
    margin-right: 15%;
    margin-top: 7.5vw;
  }
}

/* sec15
-----------------------------------------------------------*/
.sec15 {
  background-color: #F5F3EE;
}

.sec15 {
  padding: 4.427vw 0;
}
@media screen and (max-width: 768px) {
  .sec15 {
    padding: 11.198vw 0;
  }
}

.sec15__title {
  font-size: 2.865vw;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec15__title {
    font-size: 7.031vw;
  }
}

.icon {
  border-radius: 50%;
  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;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.icon::after,
.icon::before {
  content: "";
  background-color: #1A1A1A;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.195vw;
}
.icon::before {
  width: 2.148vw;
  height: 0.195vw;
}
@media screen and (max-width: 768px) {
  .icon::before {
    width: 4.948vw;
    height: 0.391vw;
  }
}

.icon::after {
  position: absolute;
  height: 2.148vw;
  width: 0.195vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .icon::after {
    width: 0.391vw;
    height: 4.948vw;
  }
}

.faq__item.active .icon::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.faq__item.active .faq__answer {
  max-height: 65vw;
}

.answer__content {
  margin-top: 1.302vw;
  padding: 1.953vw 1.302vw;
  color: #000;
  line-height: 1.7;
  font-size: 1.563vw;
  -webkit-transform: translateY(-0.651vw);
          transform: translateY(-0.651vw);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
  border-top: 0.13vw solid #E18301;
}
.answer__content::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.977vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/a.svg) no-repeat center center/contain;
  width: 3.516vw;
  height: 3.516vw;
}
@media screen and (max-width: 768px) {
  .answer__content::before {
    width: 7.031vw;
    height: 7.031vw;
    left: 2.083vw;
  }
}
@media screen and (max-width: 768px) {
  .answer__content {
    font-size: 3.646vw;
    padding: 4.427vw;
  }
}

.faq__item.active .answer__content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* sec-area
-----------------------------------------------------------*/
.title {
  cursor: pointer;
  position: relative;
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
}

#area_sec {
  background-color: #3c3200;
  padding: 7.81vw 0;
  margin: 0 auto;
}

#area_sec .accordion-area {
  margin: 0 auto;
  width: 89.583vw;
}

@media screen and (min-width: 768px) {
  #area_sec .accordion-area {
    width: 65.104vw;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #area_sec {
    background-color: #3c3200;
    padding-bottom: 5vw;
  }
}
.area_title {
  font-size: 7.03vw;
  color: #fff;
  margin: 0 auto 10.41vw;
  text-align: center;
}

.area_subtitle {
  margin: 7.8vw auto 5.2vw;
  text-align: center;
}

.area_subtitle img {
  height: 5.99vw;
  width: auto;
}

@media screen and (min-width: 768px) {
  .area_title {
    font-size: 3.2vw;
    margin: 0 auto 3.41vw;
  }
  .area_subtitle {
    margin: 3.8vw auto 2.2vw;
    text-align: center;
  }
  .area_subtitle img {
    height: 3.38vw;
    width: auto;
  }
}
#area_sec .accordion-area li {
  background-color: #fff;
}

.area_pref {
  background-color: #b4a352;
  color: #fff;
  font-size: 3.12vw;
  padding: 2.6vw 4.56vw;
  font-weight: bold;
}

#area_sec .accordion-area li {
  border-bottom: 0.13vw #fff solid;
}

#area_sec .accordion-area li:last-child {
  border-bottom: none;
}

.area_shop_title {
  color: #b4a352;
  font-size: 3.12vw;
  padding: 2.6vw 4.56vw;
  font-weight: bold;
}

.area_shop_detail {
  padding: 2.6vw 4.17vw;
  line-height: 1.75;
  font-size: 2.86vw;
  letter-spacing: 0.1vw;
}

.area_shop_detail iframe {
  width: 100%;
  height: 58vw;
  border-radius: 1.3vw;
}

.base_btn {
  margin-top: 2.6vw;
}
.base_btn .cta-btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .area_pref,
  .area_shop_title {
    font-size: 1.2vw;
    padding: 3% 3% 3%;
  }
  .area_shop_detail {
    padding: 1.3vw 4.17vw;
    line-height: 1.75;
    font-size: 1.2vw;
    letter-spacing: 0.1;
  }
  .area_shop_detail iframe {
    height: initial;
    aspect-ratio: 16/9;
  }
  .base_btn {
    margin: auto;
    margin-top: 1.3vw;
    width: 36.458vw;
  }
}
/*アイコンの矢印*/
#area_sec .title::before {
  position: absolute;
  content: "";
  width: 2.6vw;
  height: 2.6vw;
  border: 0;
  border-bottom: #fff 2px solid;
  border-right: #fff 2px solid;
  right: 4.17vw;
  top: 2.8vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#area_sec .area_shop_title.title::before {
  border-bottom: #b4a352 2px solid;
  border-right: #b4a352 2px solid;
}

/*　closeというクラスがついたら形状変化　*/
#area_sec .title.close::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  bottom: 2.8vw;
  top: initial;
}

@media screen and (min-width: 768px) {
  #area_sec .title::before {
    width: 1.3vw;
    height: 1.3vw;
    top: 1.8vw;
  }
  #area_sec .title.close::before {
    bottom: 1.8vw;
    top: initial;
  }
}
/* sec16
-----------------------------------------------------------*/
.sec16 {
  background-color: #F5F3EE;
  padding: 3.516vw 0 1.953vw;
}
@media screen and (max-width: 768px) {
  .sec16 {
    padding: 10.417vw 0 4.688vw;
  }
}

.sec16__contents {
  width: 49.74vw;
  background-color: #fff;
  border-radius: 0.651vw;
  margin: 0 auto;
  padding: 3.581vw 0;
  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;
}
@media screen and (max-width: 768px) {
  .sec16__contents {
    width: 79.557vw;
    padding: 6.771vw 0;
  }
}

.sec16__logos {
  width: 17.643vw;
}
@media screen and (max-width: 768px) {
  .sec16__logos {
    width: 58.984vw;
  }
}

.sec16__title {
  font-size: 1.042vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec16__title {
    font-size: 3.646vw;
  }
}

.sec16__titles {
  margin-top: 2.148vw;
  background-color: #F5F3EE;
  padding: 0 0.651vw;
  border-radius: 2.279vw;
}
@media screen and (max-width: 768px) {
  .sec16__titles {
    margin-top: 8.594vw;
    padding: 0.651vw 2.604vw;
    border-radius: 9.115vw;
  }
}

.sec16__company {
  margin-top: 0.651vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec16__company {
    font-size: 3.646vw;
    margin-top: 1.953vw;
  }
}

.sec16__address {
  margin-top: 2.604vw;
  font-size: 0.911vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec16__address {
    font-size: 3.125vw;
  }
}

.notes-small {
  display: block;
}

.footer {
  background-color: #3C3200;
  padding: 0.391vw 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 1.563vw 0;
  }
}

.copyright {
  color: #fff;
  font-size: 0.781vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 2.344vw;
  }
}