@charset "UTF-8";
/*reset----------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}

/*custom*/
a {
	text-decoration: none;
}

/*common------------------------------------------------------------------*/
html, body {
  color: #1e110f;
  background: #f4f4f4;
  font-size: 100%;
  line-height: 1.6;
  letter-spacing: .2em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  scroll-behavior: smooth;
}
img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
a {
  color: #1e110f;
}
a:hover {
  opacity: .9;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
#container,main,section {
	position: relative;
}
main {
	padding: 10vh 0 0;
	z-index: 2;
	background: linear-gradient(115deg, transparent 0%, transparent 27%, #1b364b 27%, #1b364b 100%);
}
section .sec-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 50px;
}
h2 {
	font-size: 2.3rem;
	font-weight: 900;
}
h2 small {
	font-size: .5em;
}
@media screen and (max-width: 768px) {
.pc {
  display: none;
}
.sp {
  display: block;
}
img {
	width: 100%;
	max-width: auto;
	height: auto;
}
main {
	padding: 1vh 0 0;
	background: linear-gradient(118deg, transparent 0%, transparent 11%, #ebebeb 11%, #ebebeb 23%, transparent 23%, transparent 100%);
}
section .sec-inner {
	padding: 0 20px;
}
h2 {
	font-size: 1.26rem;
}
}


/*scrollAnim------------------------------------------------------------------*/
.mark {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.scrollAnim {
	-webkit-backface-visibility:hidden;
    backface-visibility:hidden;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
    -webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	will-change: animation, transform, opacity;
}

/*common_anim*/
.fade-scroll {
	opacity: 0;
	transform: translate(0, 30%);
}
.fade-scroll.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
@-webkit-keyframes anim {
    0% { opacity: 0; transform: translate(0, 30%); }
    100% { opacity: 1; transform: translate(0, 0); }
}
@keyframes anim {
    0% { opacity: 0; transform: translate(0, 30%);}
    100% { opacity: 1; transform: translate(0, 0); }
}

/*common_b_anim*/
.fade-scroll-b {
	opacity: 0;
	transform: translate(-50%, 30%);
}
.fade-scroll-b.scrollAnim {
	-webkit-animation-name: anim-b;
	animation-name: anim-b;
}
@-webkit-keyframes anim-b {
    0% { opacity: 0; transform: translate(-50%, 30%);}
    100% { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes anim-b {
    0% { opacity: 0; transform: translate(-50%, 30%);}
    100% { opacity: 1; transform: translate(-50%, 0); }
}

/*common_fadeinOnly*/
.fadein {
	opacity: 0;
	z-index: 1;
	-webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}
.fadein.scrollAnim {
	-webkit-animation-name: fadein;
	animation-name: fadein;
}
@-webkit-keyframes fadein {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadein {
    0% { opacity: 0; }
    100% { opacity: 1; }
}



/*cv------------------------------------------------------------------*/
.cv {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 20px;
	margin: auto;
	z-index: 5;
	filter: drop-shadow(0 0 9px rgba(0,0,0,.3));
	transition: .5s;
}
.cv.hide {
	filter: drop-shadow(0 0 9px rgba(0,0,0,0));
}
.cv .cv-area {
	position: relative;
    bottom: 0;
    left: calc(45% - 70px);
    transform: translate(-50%, 0);
    background-color: #fff;
    padding: 20px;
    width: calc(35% - 40px);
    transition: .5s;
}
.cv.hide .cv-area {
	transform: translate(-50%, calc(100% + 20px));
}
.cv .cv-area ul {
	display: flex;
	gap: 0 20px;
	width: 100%;
	justify-content: space-between;
}
.cv .cv-area ul li {
	flex-basis: calc(100% - 20px);
	max-width: calc(100% - 20px);
}
.cv .cv-area ul li a {
	display: flex;
    padding: 0.8rem 2rem 0.8rem 2rem;
    background: url(../img/cv_arrow.svg) calc(100% - 1rem) center no-repeat #081026;
    background-size: 10px auto;
    color: #fff;
    border: 1px #1e110f solid;
    text-align: center;
    font-weight: 900;
    font-size: 1.5rem;
    height: 100%;
    justify-content: center;
    line-height: 1.4;
    align-items: center;
}
.cv .cv-area ul li a small {
	font-size: .6em;
	margin: .2rem 0 0 .4rem;
	letter-spacing: .1rem;
}
.cv .coupon {
	position: absolute;
	bottom: 0;
	right: 0;
	transition-delay: .1s;
	transition-duration: 1s;
}
.cv.hide .coupon {
	transform: translateX(100%);
}

@media screen and (max-width: 820px) {
.cv {
	bottom: 10px;
}
.cv .cv-area {
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 10px;
    width: calc(100% - 20px);
}
.cv.hide .cv-area {
	transform: translate(-50%, calc(100% + 10px));
}
.cv .cv-area ul {
	display: flex;
	gap: 0 10px;
	width: 100%;
	justify-content: space-between;
}
.cv .cv-area ul li {
	flex-basis: calc(100% - 10px);
	max-width: calc(100% - 10px);
}
.cv .cv-area ul li a {
	display: flex;
    flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: .5rem 1rem .5rem .5rem;
	background: url("../img/cv_arrow.svg") calc(100% - .5rem) center no-repeat #081026;
	background-size: 8px auto;
	font-size: 1.1rem;
	letter-spacing: .1rem;
	line-height: 1.4;
}
.cv .cv-area ul li a small {
	font-size: .8em;
	display: block;
}
.cv .coupon {
	bottom: auto;
	top: calc(-100% - 20px);
	right: 0;
}
.cv .coupon img {
	width: auto;
	height: 90px;
}
}



/*FV------------------------------------------------------------------*/
#fv {
	position: relative;
	height: 90vh;
	background-size: contain;
	z-index: 1;
}
#fv::before {
	position: absolute;
    top: 0;
    left: -93%;
    display: block;
    content: "";
    width: 200%;
    height: 100%;
    background-color: #081026;
    transform: rotate(-58deg);
    z-index: -1;
}
#fv .logo {
	position: absolute;
	top: 3%;
	left: 0;
}
#fv h1 {
	position: absolute;
	top: 45%;
	left: 5%;
	transform: translate(0,-50%);
	z-index: 1;
}
#fv h1 img {
	width: 36vw;
	height: auto;
}


@media screen and (max-width: 820px) {
#fv {
	position: relative;
    height: 35vh;
    background-size: auto 100%;
    z-index: 1;
	overflow: hidden;
}
#fv::before {
	position: absolute;
    top: -250px;
    left: auto;
    right: 48vw;
    height: 100px;
    width: 1200px;
    transform: rotate(-60deg);
}
#fv .logo {
	position: relative;
    top: 3vh;
	left: 0;
}
#fv .logo {
	width: 20vw;
}
#fv h1 {
	position: relative;
    top: 7vh;
    left: 5%;
    transform: translate(0,0);
    z-index: 1;
}
#fv h1 img {
	width: 63vw;
	height: auto;
}
}


/*scroll mark-----------*/
.scroll {
	position: absolute;
	top: -25vh;
	left: 50px;
	padding: 5rem 0 0;
}
.scroll::before {
	display: block;
    content: "scroll";
    position: absolute;
    writing-mode: vertical-rl;
    top: 0;
    left: -5px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: .1rem;
}
.scroll-bar {
	position: absolute;
	top: 4.2rem;
	left: 5px;
	width: 1.5px;
	height: 90vh;
	z-index: 1;
	overflow: hidden;
}
.scroll-bar::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #1e110f;
	animation: 2s ease-in-out 0s infinite reverse both running;
	animation-name: scroll-mark;
}

@-webkit-keyframes scroll-mark {
	from { top: 100%; }
	to { top: -100%; }
}
@keyframes scroll-mark {
	from { top: 100%; }
	to { top: -100%; }
}


@media screen and (max-width: 768px) {
.scroll {
	position: absolute;
	top: -36vh;
	left: 3%;
	padding: 5rem 0 0;
}
.scroll::before {
    position: absolute;
    top: 0;
    left: -5px;
    font-size: .8rem;
}
.scroll-bar {
	position: absolute;
	top: 3rem;
	left: 1px;
	width: 1px;
	height: 60vh;
}
.scroll-bar::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #1e110f;
	animation: 2s ease-in-out 0s infinite reverse both running;
	animation-name: scroll-mark;
}
}

/*section movie------------------------------------------------------------------*/
#movie {
	position: relative;
}
#movie .sec-inner {
	padding: 0 70px;
}
#movie h2 {
	display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto 3rem;
    padding: 0 22rem 0 0;
    left: 50%;
    transform: translate(-50%, 30%);
	opacity: 0;
	will-change: animation, transform, opacity;
}
#movie h2.scrollAnim {
	-webkit-animation-name: anim-b;
	animation-name: anim-b;
}
#movie h2::after {
	display: block;
    content: "";
    height: 1.5px;
    width: 100%;
    position: absolute;
    left: calc(100% - 20.5rem);
    bottom: 0.3rem;
    background-color: #081026;
}
#movie video {
	width: 85%;
	margin: auto;
}
@media screen and (max-width: 768px) {
#movie {
	padding: 5% 0 5%;
}
#movie .sec-inner {
	padding: 0 20px;
}
#movie h2 {
	display: block;
    margin: 0 auto 8%;
    padding: 0;
	width: 95%;
	left: auto;
	transform: translate(0);
}
#movie h2.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
#movie h2::after {
	display: none;
}
#movie video {
	width: 100%;
	margin: auto;
}
}



/*section advantages------------------------------------------------------------------*/
#advantages {
	padding: 14% 0 7%;
	background-image: url("/ase/scenes.svg");
	background-size: 30%;
	background-position: -200% top;
	background-repeat:  no-repeat;
	opacity: 0;
}
#advantages.scrollAnim {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: advan-txt;
	animation-name: advan-txt;
}
@-webkit-keyframes advan-txt {
    0% { opacity: 0; background-position: -100% top; }
    100% { opacity: 1; background-position: 0% top; }
}
@keyframes advan-txt {
    0% { opacity: 0; background-position: -100% top; }
    100% { opacity: 1; background-position: 0% top; }
}
#advantages h2 {
	text-align: right;
	margin: 0 0 7%;
	opacity: 0;
	transform: translate(0,30%)
}
#advantages h2.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
#advantages .merit {
	position: relative;
    margin: 0 0 8%;
    padding: 0 0 3%;
    display: flex;
    background: url(../img/deco_line.svg) 130% bottom no-repeat;
    background-size: auto 27%;
}
#advantages .merit:nth-child(odd) {
	flex-direction: row-reverse;
	background: url(../img/deco_line2.svg) -30% bottom no-repeat;
	background-size: auto 27%;
}
#advantages .merit .img {
	flex-basis: 85%;
}
#advantages .merit img {
	width: 100%;
	height: auto;
}
#advantages .merit dl.txt {
	position: absolute;
	bottom: 57%;
    left: 73%;
	flex-basis: 15%;
	transform: translate(-50%, 30%);
	opacity: 0;
	white-space: nowrap;
    padding: 15px;
    background-color: #FFFFFF;
    width: 100%;

}
#advantages .merit dl.txt.scrollAnim {
	-webkit-animation-name: anim-b;
	animation-name: anim-b;
}
#advantages .merit:nth-child(odd) dl.txt {
	right: auto;
	left: 30%;
}
#advantages .merit dl.txt dt {
	font-size: 1.7rem;
	font-weight: 700;
	color: #081026;
	margin: 0 0 10px;
	padding: 5px 0 0;
}
#advantages .merit dl.txt dt::before {
	display: block;
	content: "1";
	color: rgba(0,0,0,0);
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 87px;
	background: url("../img/1.svg") top left no-repeat;
	background-size: contain;
}
#advantages .merit:nth-of-type(2) dl.txt dt::before {
	content: "2";
	width: 49px;
	background: url("../img/2.svg") top left no-repeat;
	background-size: contain;
}
#advantages .merit:nth-of-type(3) dl.txt dt::before {
	content: "3";
	width: 49px;
	background: url("../img/3.svg") top left no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
#advantages {
    background-size: 60% auto;
	background-position: center -100%;
	background-repeat:  no-repeat;
	opacity: 0;
}
#advantages.scrollAnim {
	-webkit-animation-name: advan-txt-sp;
	animation-name: advan-txt-sp;
}
#advantages h2 {
	text-align: center;
	margin: 0 0 7%;
    padding-top: 30px;
}
#advantages .merit {
	position: relative;
    margin: 0 0 0%;
    padding: 0 0 3%;
    display: flex;
	flex-direction: column;
    background-size: auto 27%;
}
#advantages .merit:nth-child(odd) {
	flex-direction: column;
	background-size: auto 27%;
}
#advantages .merit .img {
	flex-basis: 100%;
}
#advantages .merit dl.txt {
	position: relative;
	bottom: auto;
    left: auto;
    transform: translate(0,30%);
	flex-basis: auto;
	padding: 0 35px;
	margin: -12% 0 0;
	white-space: normal;
	opacity: 0;
}
#advantages .merit dl.txt.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
#advantages .merit:nth-child(odd) dl.txt {
	right: auto;
	left: auto;
	text-align: right;
}
#advantages .merit dl.txt dt {
	font-size: 1.3rem;
	margin: 0 0 15px;
	padding: 60px 0 0;
}
#advantages .merit dl.txt dt::before {
	top: 0;
	left: 35px;
	width: 18px;
    height: 50px;
}
#advantages .merit:nth-of-type(2) dl.txt dt::before {
	width: 38px;
    right: 35px;
    left: auto;
}
#advantages .merit:nth-of-type(3) dl.txt dt::before {
	width: 38px;
}
}
@-webkit-keyframes advan-txt-sp {
    0% { opacity: 0; background-position: center 5%; }
    100% { opacity: 1; background-position: center 0%; }
}
@keyframes advan-txt-sp {
    0% { opacity: 0; background-position: center 5%; }
    100% { opacity: 1; background-position: center 0%; }
}

/*section facility-----------------------------------------*/
#facility {
	position: relative;
	padding: 9% 0 3%;
	background-color: #fff;
}
#facility::before {
	display: block;
	content: "";
	position: absolute;
	top: -3%;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/section3_bg.png") top left no-repeat;
	background-size: 50% auto;
}
#facility .overflow {
	overflow: hidden;
	padding: 0 0 200px;
}
#facility .facility {
	background-image: url("../img/deco_facility.svg");
	background-position: 200% 21%;
	background-size: auto 80px;
	background-repeat: no-repeat;
	opacity: 0;
}
#facility .facility.scrollAnim {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fac-anim;
	animation-name: fac-anim;
}
@-webkit-keyframes fac-anim {
    0% { opacity: 0; background-position: 200% 21%; }
    100% { opacity: 1; background-position: 100% 21%; }
}
@keyframes fac-anim {
    0% { opacity: 0; background-position: 200% 21%; }
    100% { opacity: 1; background-position: 100% 21%; }
}
#facility h2 {
	text-align: right;
	margin: 0 0 15%;
}
#facility .room h2 {
	text-align: left;
	color: #fff;
	margin: 0 0 2%;
}
#facility h2 span {
	color: #081026;
}
#facility .swiper {
	/* overflow: visible!important; */
	/*0908追加*/
	overflow-y: visible!important;
	overflow-x: hidden;
	padding-bottom: 30px;
	margin-bottom: -30px;
}
#facility .swiper--wrapper {
	width: 100%;
	height: 100%;
}
#facility .swiper-slide {
	color: #1e110f;
	height: auto!important;
	padding: 20px 20px 30px;
	background-color: #fff;
	border: 1px solid #707070;
}
#facility .swiper-slide figure img {
	width: 100%;
	height: auto;
	margin: auto;
}
#facility .swiper-slide figcaption {
	padding: 5px;
}
#facility .swiper-slide figcaption dl dt {
	color: #081026;
	font-weight: 900;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.4;
	padding: 1.2rem 0;
}
#facility .swiper-slide figcaption dl dd {
	font-size: .9rem;
	line-height: 1.8;
}
#facility .swiper-slide figcaption dl dd small.caution {
	display: block;
	margin: .8rem 0 0;
}
#facility .swiper-scrollbar {
	background: #f4f4f4!important;
	border-radius: 0!important;
	/* bottom: -30px !important; */
	left: 0!important;
}
#facility .swiper-scrollbar-drag {
	background: #081026!important;
	border-radius: 0!important;
}
#facility .room {
	position: relative;
	margin: 10% 0 0;
	z-index: 1;
}
#facility .room.scrollAnim {
	opacity: 1;
}
#facility .room::before {
	display: block;
	content: "";
	width: 50%;
	height: 80px;
	position: absolute;
	top: -4px;
	right: 0;
	background-image: url(../img/deco_room.svg);
	background-position: 100% top;
    background-size: auto 80px;
	background-repeat: no-repeat;
	z-index: 2;
}
#facility .room.scrollAnim::before {
	opacity: 1;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: room-anim;
	animation-name: room-anim;
}
@-webkit-keyframes room-anim {
    0% { background-position: 200% top; }
    100% { background-position: 100% top; }
}
@keyframes room-anim {
    0% { background-position: 200% top; }
    100% { background-position: 100% top; }
}

#facility .mark .sec-inner {
	/*0908追加*/
	margin: 0 0 0 auto;
	padding-right:0 ;
	max-width: 1200px;
}
#facility .room .sec-inner {
	position: relative;
	z-index: 1;
	/*0908追加*/
	margin: 0 0 0 auto;
	padding-right:0 ;
	max-width: 1200px;
}
#facility .room .sec-inner::after {
	display: block;
	content: "";
	width: calc(100vw + 40px);
	height: calc(100% + 160px);
	position: absolute;
	top: 20px;
	bottom: 0;
	left: -40px;
	margin: auto;
	z-index: -1;
	background-color: #081026;
}
#facility .room .swiper-scrollbar {
	background: rgba(255,255,255,.4)!important;
}
#facility .room .swiper-scrollbar-drag {
	background: #000!important;
}


@media screen and (max-width: 768px) {
#facility {
	position: relative;
	padding: 34% 0 0;
}
#facility::before {
	top: -20px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/sp/section3_bg_sp.png") top left no-repeat;
	background-size: 75% auto;
}
#facility .overflow {
	padding: 0;
}
#facility .facility {
	background-image: url(../img/deco_facility.svg);
	background-position: 200% 17%;
    background-size: 60% auto;
	background-repeat: no-repeat;
}
#facility .facility.scrollAnim {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fac-anim-sp;
	animation-name: fac-anim-sp;
}
#facility h2 {
	margin: 0 0 20%;
}
#facility .room h2 {
	margin: 0 0 5%;
}
#facility h2 span {
	display: block;
}
#facility .swiper-slide {
	padding: 15px 15px 30px;
}
#facility .swiper-slide figure img {
	width: 100%;
	height: auto;
	margin: auto;
}
#facility .swiper-slide figcaption {
	padding: 0;
}
#facility .swiper-slide figcaption dl dt {
	font-size: 1rem;
	padding: 1.2rem 0;
	letter-spacing: .1rem;
}
#facility .swiper-slide figcaption dl dd {
	font-size: .9rem;
	line-height: 1.6;
}
#facility .swiper-slide figcaption dl dd small.caution {
	display: block;
}
#facility .room {
	margin: calc(15% + 30px) 0 0;
	background-image: url(../img/deco_room.svg);
	background-position: 200% 11%;
    background-size: 50% auto;
	background-repeat: no-repeat;
	background-color: #081026;
	padding: 13% 0 calc(20% + 30px);
}
#facility .room.scrollAnim {
	-webkit-animation-name: room-anim-sp;
	animation-name: room-anim-sp;
}
#facility .room::before {
	display: none;
}
#facility .room .sec-inner::after {
	display: none;
}
}
@-webkit-keyframes fac-anim-sp {
    0% { opacity: 0; background-position: 200% 17%; }
    100% { opacity: 1; background-position: 100% 17%; }
}
@keyframes fac-anim-sp {
    0% { opacity: 0; background-position: 200% 17%; }
    100% { opacity: 1; background-position: 100% 17%; }
}
@-webkit-keyframes room-anim-sp {
    0% { background-position: 200% 11%; }
    100% { background-position: 100% 11%; }
}
@keyframes room-anim-sp {
    0% { background-position: 200% 11%; }
    100% { background-position: 100% 11%; }
}



/*section usecase----------------------------------------*/
#usecase {
	padding: 8rem 0;
	background: url("/ase/price.svg")  no-repeat #f4f4f4;
	background-size: 300px auto;
    
	background-position: 25% top;
    
}
#usecase .sec-inner {
	position: relative;
}
#usecase .sec-inner::before {
	display: block;
	content: "";
	position: absolute;
	bottom: -3%;
	left: -1%;
	width: 2px;
	height: 92%;
	background-color: #081026;
}
#usecase h2 {
	margin: 0 0 4.3rem;
	color: #081026;
}
#usecase h2 small {
	font-size: 1.7rem;
	color: #1e110f;
}
#usecase .case {
	padding: 50px;
	background-color: #fff;
	display: flex;
	gap: 0 100px;
	align-items: center;
	margin: 0 0 40px;
	opacity: 0;
	transform: translate(0, 30%);
}
#usecase .case.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
#usecase .case dl {
	flex-basis: 50%;
}
#usecase .case .img {
	flex-basis: 50%;
}
#usecase .case dl dt {
	position: relative;
	font-size: 1.5rem;
	font-weight: 900;
	padding: 10px 0 0;
	margin: 0 0 30px;
}
#usecase .case dl dt::before {
	display: block;
	content: "1";
	color: rgba(0,0,0,0);
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 40px;
	background: url("../img/1.svg") top left no-repeat;
	background-size: contain;
}
#usecase .case:nth-of-type(2) dl dt::before {
	content: "2";
	width: 30px;
	background: url("../img/2.svg") top left no-repeat;
	background-size: contain;
}
#usecase .case:nth-of-type(3) dl dt::before {
	content: "3";
	width: 30px;
	background: url("../img/3.svg") top left no-repeat;
	background-size: contain;
}
#usecase .case dl dd {
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
#usecase {
	padding: 10% 0;
	/*background: url("../img/deco_usecase.svg") left 32px no-repeat #f4f4f4;
	background-size: 10% auto;*/
	background: url("/ase/price_w.svg") , url("/ase/price_w.svg") , #f4f4f4;
	background-position: center 12px, calc(50% + 40px) center;
	background-repeat: no-repeat;
	background-size: 46% auto;
}
#usecase .sec-inner::before {
	display: none;
}
#usecase h2 {
	margin: 0 0 12%;
	text-align: center;
	line-height: 1.4;
}
#usecase h2 small {
	font-size: 1.1rem;
}
#usecase .case {
	padding: 25px 25px 35px;
	display: flex;
	flex-direction: column-reverse;
	gap: 25px 0;
	align-items: center;
	margin: 0 0 25px;
}
#usecase .case dl {
	flex-basis: 100%;
}
#usecase .case .img {
	flex-basis: 100%;
}
#usecase .case dl dt {
	font-size: 1.2rem;
	padding: 0 0 0 0px;
	margin: 0 0 18px;
	letter-spacing: .1rem;
}
#usecase .case dl dt::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
    margin: auto;
	width: 15px;
	height: 40px;
}
#usecase .case:nth-of-type(2) dl dt::before,
#usecase .case:nth-of-type(3) dl dt::before {
	width: 28px;
	height: 36px;
}
#usecase .case dl dd {
	line-height: 1.8;
}
}



@media screen and (max-width: 768px) {
#ADVANTAGES {
	padding: 20% 0;
	background: url("../img/sp/deco_usecase_sp.svg") , url("../img/sp/section6_bg_sp.svg") , #fffff;
	background-position: center 12px, calc(50% + 40px) center;
	background-repeat: no-repeat;
	background-size: 65% auto, auto 85%,auto;
}
#ADVANTAGES .sec-inner::before {
	display: none;
}
#ADVANTAGES h2 {
	margin: 0 0 12%;
	text-align: center;
	line-height: 1.4;
}
#ADVANTAGES h2 small {
	font-size: 1.1rem;
}
#ADVANTAGES .case {
	padding: 25px 25px 35px;
	display: flex;
	flex-direction: column-reverse;
	gap: 25px 0;
	align-items: center;
	margin: 0 0 25px;
}
#ADVANTAGES .case dl {
	flex-basis: 100%;
}
#ADVANTAGES .case .img {
	flex-basis: 100%;
}
#ADVANTAGES .case dl dt {
	font-size: 1.2rem;
	padding: 0 0 0 40px;
	margin: 0 0 18px;
	letter-spacing: .1rem;
}
#ADVANTAGES .case dl dt::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
    margin: auto;
	width: 15px;
	height: 40px;
}
#ADVANTAGES .case:nth-of-type(2) dl dt::before,
#ADVANTAGES .case:nth-of-type(3) dl dt::before {
	width: 28px;
	height: 36px;
}
#ADVANTAGES .case dl dd {
	line-height: 1.8;
}
}



/*section food----------------------------------------*/
#food {
	overflow: hidden;
	background-image: url("../img/deco_food.svg") ,url("../img/section5_bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: auto 78px,cover;
	padding: 8rem 0 6rem;
}
#food h2 {
	display: inline-block;
	position: relative;
    left: 50%;
    transform: translate( -50%, 0);
    color: #fff;
    text-align: center;
    line-height: 1.4;
    margin: 0 auto 1rem;
}
#food .badge {
	position: absolute;
    top: -50%;
    left: -50%;
}
#food h2 small {
	font-size: 1.7rem;
}
#food p.caution {
    font-size: 1rem;
    color: #fff;
    margin: 0 auto 3rem;
    text-align: center;
    letter-spacing: .1em;
}
#food .infinite-slider .swiper-slide {
	background-color: #fff;
	height: auto!important;
}
#food .infinite-slider .swiper-slide figure img {
	width: 100%;
	height: auto;
}
#food .infinite-slider .swiper-slide figure figcaption {
	padding: 20px;
}
#food .infinite-slider .swiper-slide figure figcaption dl dt {
	text-align: center;
	font-weight: 900;
	font-size: 1.1rem;
	margin: 0 0 .5rem;
	line-height: 1.4;
}
#food .infinite-slider .swiper-slide figure figcaption dl dd.price {
	text-align: center;
	font-weight: 900;
	color: #081026;
	margin: 0 0 .7rem;
	letter-spacing: .1em;
}
#food .infinite-slider .swiper-slide figure figcaption dl dd.detail {
	text-align: left;
	font-size: .7rem;
	color: #5b5b5b;
	line-height: 1.4;
	letter-spacing: .05em;
}
#food .infinite-slider .swiper-slide figure figcaption dl dd.detail small {
	font-size: .6rem;
}

@media screen and (max-width: 768px) {
#food {
	background-image: url("../img/deco_food.svg") ,url("../img/section5_bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 50% auto,cover;
	padding: 20% 0;
}
#food h2 {
	display: inline-block;
	position: relative;
    left: 50%;
    transform: translate( -50%, 0);
    color: #fff;
    text-align: center;
    line-height: 1.4;
    margin: 0 auto 4%;
}
#food p.caution {
    font-size: .8rem;
    margin: 0 auto 6%;
    line-height: 1.4;
}
#food .badge {
	position: absolute;
    top: -70%;
    left: auto;
    right: -50px;
    width: 80px;
}
#food h2 small {
	font-size: 1.1rem;
}
#food .infinite-slider .swiper-slide figure figcaption {
	padding: 20px;
}
#food .infinite-slider .swiper-slide figure figcaption dl dt {
	font-size: 1rem;
	margin: 0 0 .5rem;
}
#food .infinite-slider .swiper-slide figure figcaption dl dd.price {
	margin: 0 0 .7rem;
}
#food .infinite-slider .swiper-slide figure figcaption dl dd.detail {
	font-size: .9rem;
	line-height: 1.4;
}
#food .infinite-slider .swiper-slide figure figcaption dl dd.detail small {
	font-size: .6em;
}
}


/*section step----------------------------------------*/
#step {
	padding: 2.3rem 0 8.7rem;
    background: url("") calc(50% + 2rem) calc(50% - 8rem) no-repeat #f4f4f4;
    background-size: auto calc(100% + 200px);
}
#step h2 {
	display: inline-flex;
	width: auto;
	justify-content: center;
	position: relative;
	border-bottom: 1.5px solid #1a1512;
	left: 50%;
    transform: translate( -50%, 0);
	margin: 0 0 2rem;
	white-space: nowrap;
}
#step h2 img {
	margin: 3px 0 0 5px;
}
#step .step-col {
	padding: 0 0 4rem;
	background: url("../img/step_arrow.svg") center bottom no-repeat;
	background-size: auto 1.5rem;
	margin: 2rem 0 0;
	transform: translate(0, 30%);
	opacity: 0;
}
#step .step-col:last-child {
	padding: 0;
	background: unset;
}
#step .step-col.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
#step .step-col .ttl {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	position: relative;
	left: 50%;
    transform: translate( -50%, 0);
	gap: 0 40px;
	font-size: 2rem;
	color: #081026;
	font-weight: 900;
	align-items: center;
	margin: 0 0 .5rem;
}
#step .step-col .inner-box {
	display: flex;
	border-radius: 20px;
	border: 1px solid #081026;
	background-color: #fff;
	padding: 30px;
	gap: 0 35px;
	align-items: center;
}
#step .step-col .inner-box .img {
	flex-basis: 40%;
}
#step .step-col .inner-box dl.txt {
	flex-basis: 60%;
	letter-spacing: .15em;
}
#step .step-col .inner-box dl.txt dt {
	padding:.1rem 2rem .1rem .5rem;
	background: linear-gradient(110deg, #081026 0%, #081026 calc(100% - 1.5rem), transparent calc(100% - 1.5rem), transparent 100%);
	color: #fff;
	font-weight: 500;
	display: inline-block;
	margin: 0 0 .6rem;
}
#step .step-col .inner-box dl.txt dd {
	margin: 0 0 1rem;
	padding: 0 0 0 .2rem;
}
#step .step-col .inner-box dl.txt dd:last-child {
	margin: 0;
}
#step .step-col .inner-box dl.txt dd > dl {
	margin: .5rem 0 0;
}
#step .step-col .inner-box dl.txt dd > dl dt {
	padding: 0;
	background: unset;
	color: #1a1512;
	font-weight: 300;
	margin: 0 0 .2rem;
}
#step .step-col .inner-box dl.txt .caution {
	font-size: .8rem;
	color: #7f7f7f;
	line-height: 1.4;
	margin: .5rem 0 0;
}

@media screen and (max-width: 768px) {
#step {
	padding: 30% 0;
    background: #f4f4f4;
}
#step h2 {
	margin: 0;
	border-bottom: 1px solid #1a1512;
}
#step h2 img {
	width: auto;
	height: 1.8rem;
	margin: 0 0 0 5px;
}
#step .step-col {
	padding: 0 0 2.5rem;
	background: url("../img/step_arrow.svg") center bottom no-repeat;
	background-size: auto 1.2rem;
	margin: 3rem 0 0;
}
#step .step-col .ttl {
	gap: 0 15px;
	font-size: 1.3rem;
	margin: 0 0 .7rem;
}
#step .step-col .ttl img {
	width: auto;
	height: 1.6rem;
}
#step .step-col .inner-box {
	display: flex;
	flex-direction: column;
	padding: 20px 20px 30px;
	gap: 20px 0;
	align-items: center;
}
#step .step-col .inner-box .img {
	flex-basis: 40%;
}
#step .step-col .inner-box dl.txt {
	flex-basis: 60%;
	letter-spacing: .15em;
}
#step .step-col .inner-box dl.txt dt {
	font-size: .9rem;
	letter-spacing: .1rem;
}
#step .step-col .inner-box dl.txt dd {
	margin: 0 0 1rem;
	padding: 0 0 0 .2rem;
	letter-spacing: .1rem;
}
#step .step-col .inner-box dl.txt dd:last-child {
	margin: 0;
}
#step .step-col .inner-box dl.txt dd > dl {
	margin: .5rem 0 0;
}
#step .step-col .inner-box dl.txt dd > dl dt {
	font-size: 1rem;
}
#step .step-col .inner-box dl.txt .caution {
	font-size: .8rem;
	color: #7f7f7f;
	line-height: 1.4;
	margin: .5rem 0 0;
}
}


/*section voice----------------------------------------*/
#voice {
	padding: 9.3rem 0 8.7rem;
    background: url("") calc(50% + 2rem) calc(50% - 8rem) no-repeat #f4f4f4;
    background-size: auto calc(100% + 200px);
}
#voice h2 {
	display: inline-flex;
	width: auto;
	justify-content: center;
	position: relative;
	border-bottom: 1.5px solid #1a1512;
	left: 50%;
    transform: translate( -50%, 0);
	margin: 0 0 2rem;
	white-space: nowrap;
}
#voice h2 img {
	margin: 3px 0 0 5px;
}
#voice .voice-col {
	padding: 0 0 4rem;
	background: url("../img/voice_arrow.svg") center bottom no-repeat;
	background-size: auto 1.5rem;
	margin: 2rem 0 0;
	transform: translate(0, 30%);
	opacity: 0;
}
#voice .voice-col:last-child {
	padding: 0;
	background: unset;
}
#voice .voice-col.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
#voice .voice-col .ttl {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	position: relative;
	left: 50%;
    transform: translate( -50%, 0);
	gap: 0 40px;
	font-size: 2rem;
	color: #081026;
	font-weight: 900;
	align-items: center;
	margin: 0 0 .5rem;
}
#voice .voice-col .inner-box {
	display: flex;
	border-radius: 20px;
	border: 1px solid #081026;
	background-color: #fff;
	padding: 30px;
	gap: 0 35px;
	align-items: center;
}
#voice .voice-col .inner-box .img {
	flex-basis: 40%;
}
#voice .voice-col .inner-box dl.txt {
	flex-basis: 60%;
	letter-spacing: .15em;
}
#voice .voice-col .inner-box dl.txt dt {
	padding:.1rem 2rem .1rem .5rem;
	background: linear-gradient(110deg, #081026 0%, #081026 calc(100% - 1.5rem), transparent calc(100% - 1.5rem), transparent 100%);
	color: #fff;
	font-weight: 500;
	display: inline-block;
	margin: 0 0 .6rem;
}
#voice .voice-col .inner-box dl.txt dd {
	margin: 0 0 1rem;
	padding: 0 0 0 .2rem;
}
#voice .voice-col .inner-box dl.txt dd:last-child {
	margin: 0;
}
#voice .voice-col .inner-box dl.txt dd > dl {
	margin: .5rem 0 0;
}
#voice .voice-col .inner-box dl.txt dd > dl dt {
	padding: 0;
	background: unset;
	color: #1a1512;
	font-weight: 300;
	margin: 0 0 .2rem;
}
#voice .voice-col .inner-box dl.txt .caution {
	font-size: .8rem;
	color: #7f7f7f;
	line-height: 1.4;
	margin: .5rem 0 0;
}

@media screen and (max-width: 768px) {
#voice {
	padding: 30% 0;
    background: #f4f4f4;
}
#voice h2 {
	margin: 0;
	border-bottom: 1px solid #1a1512;
}
#voice h2 img {
	width: auto;
	height: 1.8rem;
	margin: 0 0 0 5px;
}
#voice .voice-col {
	padding: 0 0 2.5rem;
	background: url("../img/voice_arrow.svg") center bottom no-repeat;
	background-size: auto 1.2rem;
	margin: 3rem 0 0;
}
#voice .voice-col .ttl {
	gap: 0 15px;
	font-size: 1.3rem;
	margin: 0 0 .7rem;
}
#voice .voice-col .ttl img {
	width: auto;
	height: 1.6rem;
}
#voice .voice-col .inner-box {
	display: flex;
	flex-direction: column;
	padding: 20px 20px 30px;
	gap: 20px 0;
	align-items: center;
}
#voice .voice-col .inner-box .img {
	flex-basis: 40%;
}
#voice .voice-col .inner-box dl.txt {
	flex-basis: 60%;
	letter-spacing: .15em;
}
#voice .voice-col .inner-box dl.txt dt {
	font-size: .9rem;
	letter-spacing: .1rem;
}
#voice .voice-col .inner-box dl.txt dd {
	margin: 0 0 1rem;
	padding: 0 0 0 .2rem;
	letter-spacing: .1rem;
}
#voice .voice-col .inner-box dl.txt dd:last-child {
	margin: 0;
}
#voice .voice-col .inner-box dl.txt dd > dl {
	margin: .5rem 0 0;
}
#voice .voice-col .inner-box dl.txt dd > dl dt {
	font-size: 1rem;
}
#voice .voice-col .inner-box dl.txt .caution {
	font-size: .8rem;
	color: #7f7f7f;
	line-height: 1.4;
	margin: .5rem 0 0;
}
}



/*section adv----------------------------------------*/
#adv {
	padding: 9.3rem 0 8.7rem;
    background: url("") calc(50% + 2rem) calc(50% - 8rem) no-repeat #f4f4f4;
    background-size: auto calc(100% + 200px);
}
#adv h2 {
	display: inline-flex;
	width: auto;
	justify-content: center;
	position: relative;
	border-bottom: 1.5px solid #1a1512;
	left: 50%;
    transform: translate( -50%, 0);
	margin: 0 0 2rem;
	white-space: nowrap;
}
#adv h2 img {
	margin: 3px 0 0 5px;
}
#adv .adv-col {
	padding: 0 0 4rem;
	background: url("../img/adv_arrow.svg") center bottom no-repeat;
	background-size: auto 1.5rem;
	margin: 2rem 0 0;
	transform: translate(0, 30%);
	opacity: 0;
}
#adv .adv-col:last-child {
	padding: 0;
	background: unset;
}
#adv .adv-col.scrollAnim {
	-webkit-animation-name: anim;
	animation-name: anim;
}
#adv .adv-col .ttl {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	position: relative;
	left: 50%;
    transform: translate( -50%, 0);
	gap: 0 40px;
	font-size: 2rem;
	color: #081026;
	font-weight: 900;
	align-items: center;
	margin: 0 0 .5rem;
}
#adv .adv-col .inner-box {
	display: flex;
	border-radius: 20px;
	border: 1px solid #081026;
	background-color: #fff;
	padding: 30px;
	gap: 0 35px;
	align-items: center;
}
#adv .adv-col .inner-box .img {
	flex-basis: 40%;
}
#adv .adv-col .inner-box dl.txt {
	flex-basis: 60%;
	letter-spacing: .15em;
}
#adv .adv-col .inner-box dl.txt dt {
	padding:.1rem 2rem .1rem .5rem;
	background: linear-gradient(110deg, #081026 0%, #081026 calc(100% - 1.5rem), transparent calc(100% - 1.5rem), transparent 100%);
	color: #fff;
	font-weight: 500;
	display: inline-block;
	margin: 0 0 .6rem;
}
#adv .adv-col .inner-box dl.txt dd {
	margin: 0 0 1rem;
	padding: 0 0 0 .2rem;
}
#adv .adv-col .inner-box dl.txt dd:last-child {
	margin: 0;
}
#adv .adv-col .inner-box dl.txt dd > dl {
	margin: .5rem 0 0;
}
#adv .adv-col .inner-box dl.txt dd > dl dt {
	padding: 0;
	background: unset;
	color: #1a1512;
	font-weight: 300;
	margin: 0 0 .2rem;
}
#adv .adv-col .inner-box dl.txt .caution {
	font-size: .8rem;
	color: #7f7f7f;
	line-height: 1.4;
	margin: .5rem 0 0;
}

@media screen and (max-width: 768px) {
#adv {
	padding: 30% 0;
    background: #f4f4f4;
}
#adv h2 {
	margin: 0;
	border-bottom: 1px solid #1a1512;
}
#adv h2 img {
	width: auto;
	height: 1.8rem;
	margin: 0 0 0 5px;
}
#adv .adv-col {
	padding: 0 0 2.5rem;
	background: url("../img/adv_arrow.svg") center bottom no-repeat;
	background-size: auto 1.2rem;
	margin: 3rem 0 0;
}
#adv .adv-col .ttl {
	gap: 0 15px;
	font-size: 1.3rem;
	margin: 0 0 .7rem;
}
#adv .adv-col .ttl img {
	width: auto;
	height: 1.6rem;
}
#adv .adv-col .inner-box {
	display: flex;
	flex-direction: column;
	padding: 20px 20px 30px;
	gap: 20px 0;
	align-items: center;
}
#adv .adv-col .inner-box .img {
	flex-basis: 40%;
}
#adv .adv-col .inner-box dl.txt {
	flex-basis: 60%;
	letter-spacing: .15em;
}
#adv .adv-col .inner-box dl.txt dt {
	font-size: .9rem;
	letter-spacing: .1rem;
}
#adv .adv-col .inner-box dl.txt dd {
	margin: 0 0 1rem;
	padding: 0 0 0 .2rem;
	letter-spacing: .1rem;
}
#adv .adv-col .inner-box dl.txt dd:last-child {
	margin: 0;
}
#adv .adv-col .inner-box dl.txt dd > dl {
	margin: .5rem 0 0;
}
#adv .adv-col .inner-box dl.txt dd > dl dt {
	font-size: 1rem;
}
#adv .adv-col .inner-box dl.txt .caution {
	font-size: .8rem;
	color: #7f7f7f;
	line-height: 1.4;
	margin: .5rem 0 0;
}
}


/*section search----------------------------------------*/
#search {
	padding: 11% 0 8%;
	background: linear-gradient(110deg, transparent 0%, transparent 52%, #081026 52%, #081026 100%),url("../img/section7_bg.jpg") ,#ffffff;
	background-position: center center,left center;
	background-repeat: no-repeat;
	background-size: auto,60% auto,auto;
}
#search .sec-inner {
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#search .sec-inner .inner {
	display: flex;
    flex-direction: column;
    align-items: center;
	color: #fff;
	text-align: center;
	margin: 0 1rem;
}
#search .sec-inner .inner h2 {
	margin: 0 0 1.1rem;
	font-weight: 700;
}
#search .sec-inner .inner a {
	display: inline-block;
	padding: 1.2rem 0;
	width: 100%;
	background-color: #1a1512;
	border: 1px solid #fff;
	color: #fff;
	font-size: 1.5rem;
	margin: 2rem 0 0;
	
}
@media screen and (max-width: 768px) {
#search {
	padding: 48% 0 0;
	background: url("../img/section7_bg.jpg") top center no-repeat #1a1512;
	background-size: 130% auto;
}
#search .sec-inner {
	padding: 25% 20px 12%;
    align-items: center;
	background: linear-gradient(162deg, transparent 0%, transparent 29%, #081026 29%, #081026 100%);
}
#search .sec-inner .inner {
	width: 100%;
	align-items: flex-end;
	text-align: right;
	margin: 0 1rem;
}
#search .sec-inner .inner a {
	display: inline-block;
	padding: 1.2rem 0;
	width: 100%;
	font-size: 1.3rem;
	margin: 1.5rem 0 0;
	text-align: center;
	
}
}

/*footer----------------------------------------*/
footer {
	background-color: #232323;
	color: #fff;
}
footer .inner {
	max-width: 1100px;
	padding: 0 50px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
    align-items: center;
	letter-spacing: .1em;
}
footer .inner .logo {
	flex-basis: 40%;
}
footer .inner p {
	text-align: right;
	flex-basis: 60%;
	font-size: .9rem;
	padding: 2rem 0;
}
footer .inner p span {
	display: block;
	font-size: .7rem;
	margin: 1rem 0 0;
}
@media screen and (max-width: 768px) {
footer .inner {
	padding: 0 20px;
	letter-spacing: .1em;
	gap: 0 10px;
}
footer .inner .logo {
	flex-basis: 30%;
}
footer .inner p {
	flex-basis: 70%;
	font-size: .6rem;
	padding: 2rem 0;
}
footer .inner p span {
	font-size: .48rem;
	letter-spacing: .1em;
	margin: .5rem 0 0;
}
}




.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #081026;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #aaa;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  background-color: white;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}




.contact .sec8 {
  background-color: #fff;
  position: relative;
}
.contact .sec8_inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 2500px) {
  .contact .sec8_inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8_inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8_inner {
    max-width: 90%;
  }
}
.contact .sec8_inner h2 {
  letter-spacing: 0.2em;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #1c4387;
}
@media screen and (min-width: 2500px) {
  .contact .sec8_inner h2 {
    font-size: 54px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8_inner h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8_inner h2 {
    font-size: 28px;
    line-height: 1.5;
    text-align: left;
  }
}
.contact .sec8_inner p:nth-of-type(1) {
  margin-top: 70px;
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (min-width: 2500px) {
  .contact .sec8_inner p:nth-of-type(1) {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8_inner p:nth-of-type(1) {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8_inner p:nth-of-type(1) {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8_inner p:nth-of-type(1) {
    text-align: left;
  }
}
.contact .sec8_inner p:nth-of-type(2) {
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (min-width: 2500px) {
  .contact .sec8_inner p:nth-of-type(2) {
    font-size: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8_inner p:nth-of-type(2) {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8_inner p:nth-of-type(2) {
    font-size: 10px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8_inner p:nth-of-type(2) {
    line-height: 2;
    text-align: left;
  }
}
.contact .sec8 .contact_wrap {
  margin-top: 100px;
  padding-left: 90px;
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap {
    padding: 0;
  }
}
.contact .sec8 .contact_wrap .contact_box_item {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item {
    flex-wrap: wrap;
    border-bottom: 1px solid #1c4387;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item .nn {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item .nn {
    margin-bottom: 20px;
  }
}
.contact .sec8 .contact_wrap .contact_box_item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item:not(:first-child) {
    margin-top: 20px;
  }
}
.contact .sec8 .contact_wrap .contact_box_item:last-of-type div:nth-of-type(1) {
  align-self: flex-start;
  padding-top: 10px;
}
.contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(1) {
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  font-weight: bold;
  width: 140px;
  margin-right: 100px;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(1) {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(1) {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(1) {
    font-size: 12px;
  }
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(1) {
    width: 250px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
  }
}
.contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(2) {
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: normal;
  font-weight: bold;
  width: 40px;
  height: 20px;
  margin-right: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(2) {
    font-size: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(2) {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(2) {
    font-size: 10px;
  }
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(2) {
    width: 60px;
    height: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(2) {
    position: absolute;
    top: 5px;
    right: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(2) {
    position: absolute;
    top: 5px;
    right: 0;
    margin-right: 0;
  }
}
.contact .sec8 .contact_wrap .contact_box_item .required {
  background: #1c4387;
  color: #fff;
}
.contact .sec8 .contact_wrap .contact_box_item div:nth-of-type(3) {
  width: fit-content;
}
.contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field {
  position: relative;
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field {
    font-size: 12px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field {
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field {
    line-height: 1;
  }
}
.contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field input {
  display: none;
}
.contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field-text {

  width: 100%;
  padding: 0 20px;
  padding-left: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field-text {
    padding: 0;
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item .mwform-radio-field-text {
    padding: 0;
    padding-left: 30px;
  }
}
.contact .sec8 .contact_wrap .contact_box_item input[type=radio] + .mwform-radio-field-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #1c4387;
}
.contact .sec8 .contact_wrap .contact_box_item input[type=radio] + .mwform-radio-field-text:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 6px;
  border-radius: 50%;
  background: #1c4387;
  transition: 0.4s opacity;
  opacity: 0;
}
.contact .sec8 .contact_wrap .contact_box_item input[type=radio]:checked + .mwform-radio-field-text:after {
  opacity: 1;
}
.contact .sec8 .contact_wrap .contact_box_item .contact_text {
  width: 700px;
  height: 55px;
  border: 1px solid #1c4387;
  padding-left: 30px;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item .contact_text {
    height: 80px;
    width: 1000px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item .contact_text {
    width: 100%;
    border: 0;
    background: #dbe6f8;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item .contact_text {
    width: 100%;
  }
}
.contact .sec8 .contact_wrap .contact_box_item .contact_text::placeholder {
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  font-weight: normal;
  opacity: 0.5;
  line-height: 1;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item .contact_text::placeholder {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item .contact_text::placeholder {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item .contact_text::placeholder {
    font-size: 12px;
  }
}
.contact .sec8 .contact_wrap .contact_box_item .contact_text:focus {
  border: 1px solid #1c4387;
  outline: 0;
}
.contact .sec8 .contact_wrap .contact_box_item textarea {
  width: 700px;
  height: 200px;
  border: 1px solid #1c4387;
  padding-left: 30px;
  padding-top: 20px;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item textarea {
    width: 1000px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item textarea {
    width: 100%;
    border: 0;
    background: #dbe6f8;
  }
}
.contact .sec8 .contact_wrap .contact_box_item textarea::placeholder {
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  font-weight: normal;
  opacity: 0.5;
  line-height: 0;
  padding-top: 10px;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .contact_box_item textarea::placeholder {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item textarea::placeholder {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item textarea::placeholder {
    font-size: 12px;
  }
}
.contact .sec8 .contact_wrap .contact_box_item textarea:focus {
  border: 1px solid #1c4387;
  outline: 0;
}
.contact .sec8 .contact_wrap .contact_box_item .error {
  position: absolute;
  bottom: -20px;
  right: 0;
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .contact_box_item .error {
    left: 0;
    right: auto;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .contact_box_item .error {
    left: 0;
    right: auto;
  }
}
.contact .sec8 .contact_wrap .contact_box_item .error:nth-of-type(2) {
  display: none;
}
.contact .sec8 .contact_wrap .btn_last {
  display: block;
  background: #1c4387;
  color: #fff;
  padding: 15px 0;
  width: 250px;
  margin: 80px auto 0;
  border: none;
}
.contact .sec8 .contact_wrap .btn_last:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .btn_last {
    width: 50%;
    border-radius: 0;
  }
}
.contact .sec8 .contact_wrap input[type=submit] {
  appearance: none;
}
.contact .sec8 .contact_wrap .mw_wp_form_confirm {
  width: fit-content;
  margin: auto;
}
.contact .sec8 .contact_wrap .mw_wp_form_confirm .required {
  display: none;
}
.contact .sec8 .contact_wrap .mw_wp_form_complete {
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (min-width: 2500px) {
  .contact .sec8 .contact_wrap .mw_wp_form_complete {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact .sec8 .contact_wrap .mw_wp_form_complete {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact .sec8 .contact_wrap .mw_wp_form_complete {
    font-size: 12px;
  }
}



