@charset "utf-8";

/*--------------------------------------------------------------------------
   settings
---------------------------------------------------------------------------*/
:root {
  --dark: #231815;
  --light: #fff;
	--red: #E60044;
	--d_red: #A5212B;
	--orange: #E58B1B;
	--blue: #1975E5;	
	--gray: #EAEAEA;
	--lgray: #F3F3F3;
	--gap: 3.47vw;

	--gra_blue: linear-gradient(180deg, rgb(25, 109, 229) 0%, rgba(25,217,229,1) 100%);
	--gra_blue2: linear-gradient(-45deg, rgb(25, 109, 229) 0%, rgba(25,217,229,1) 100%);
	--gra_lblue: linear-gradient(180deg, rgba(117,182,239,1) 0%, rgba(117,196,239,1) 100%);
	--gra_orange: linear-gradient(180deg, rgba(229,139,27,1) 0%, rgba(239,175,61,1) 100%);
	--gra_lorange: linear-gradient(180deg, rgba(239,185,118,1) 0%, rgba(250,223,154,1) 100%);
	--gra_orange2: linear-gradient(-45deg, rgba(229,139,27,1) 0%, rgba(239,175,61,1) 100%);
	--gra_red: linear-gradient(45deg, rgba(162,2,63,1) 0%, rgba(255,129,79	,1) 100%);
}

/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
  scroll-behavior: smooth;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	color: var(--dark);
	background:  var(--lbase);
	font-family: "M PLUS 1p", sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: .1em;
	-webkit-text-size-adjust: 100%;	
}

/*--------------------------------------------------------------------------
   fonts
---------------------------------------------------------------------------*/
/* .sans-serif{
	font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック体", "Yu Gothic", YuGothic,"メイリオ",Meiryo ,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif;
} */
/* .en{
	font-family: "EB Garamond", serif;
} */

.pic{position: relative;}

.sub{
	font-size: 1.2rem;
	letter-spacing: .3em;
}
.pic .caption {
	transform: rotate(0.05deg);
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 8px 8px;
    font-size: 1.2rem;
	letter-spacing: 1px;
    line-height: 1;
    color: #FFF;
    text-shadow: 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 1px #000;
}
.caption._w{
	color: var(--light);
}
.caption._border{
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,-1px 1px 0 #FFF, 1px -1px 0 #FFF,0px 1px 0 #FFF,  0-1px 0 #FFF,-1px 0 0 #FFF, 1px 0 0 #FFF;
}
.note,
.notes{
	font-size: 1.2rem;
	letter-spacing: .15em;
	transform: rotate(0.05deg);
}
.note a,
.notes a{
	color: var(--blue) !important;
	border-bottom: 1px solid var(--blue);
}


/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: var(--dark);
}

.ophover{
	transition: opacity ease .3s;	
}
.ophover:hover{
	opacity: .7;
}

.phone-link{
  pointer-events: none;  
}


/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;		
}

/*--------------------------------------------------------------------------
   tab
---------------------------------------------------------------------------*/

.tabcontent {
    display: block;
}
.tabcontent.show {
    display: block;
}

@media screen and (max-width: 768px){
	.tabcontent {
    display: none;
}
}



/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.blur,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1.3s;
}
.fade {
	opacity: 0;
	transform: translate(0,0); 
}
.fade01{
	opacity: 0;
	transform: translate(0,50px); 
}
 .fade02 {
	opacity: 0;
	transform: translate(0,-50px); 
}
.fade03 {
	opacity: 0;
	transform: translate(-50px,0); 
}
.fade04 {
	opacity: 0;
	transform: translate(50px,0); 
}
.blur {
  -webkit-filter: blur(14px);
	filter: blur(14px);  
}
.zoom{
  transform: scale(1.1,1.1); 
}
.delay01{
	transition-delay: 0.3s;		
}
.delay02{
	transition-delay: 0.6s;		
}
.delay03{
	transition-delay: 0.9s;		
}
.delay04{
	transition-delay: 1.2s;		
}
.delay05{
	transition-delay: 1.5s;		
}

 .mv {
	opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);
	transform: translate(0,0) scale(1,1); 
}

.moveanime{opacity: 0;}
.moveanime.move {
    animation: zoomIn .5s ease-in-out;
	animation-delay:.5s;
	transform: scale(1);
	opacity: 0;
	animation-fill-mode: forwards;
}
/* zoomIn */
@keyframes zoomIn {
    0% {
		opacity: 0;
		transform: scale(0);
        
    }
    80% {
		opacity: 1;
		transform: scale(1.1);
    }
	100% {
		opacity: 1;
		transform: scale(1.0);
    }
}



/*--------------------------------------------------------------------------
   メッセージテキストアニメ
---------------------------------------------------------------------------*/
.mes_txt_anime span{
	color: transparent;
  display: inline-block;
  position: relative;
}
.mes_txt_anime span::before{
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: var(--gra_red);
}
  .txt_anime.txt_move .mes_txt_anime span {
	animation: textAnime_dark forwards 1.2s 1 ease .7s normal;
  }
    .txt_anime.txt_move .mes_txt_anime.white span {
	animation: textAnime_w forwards 1.2s 1 ease .7s normal;
  }
  .txt_anime.txt_move .mes_txt_anime span::before {
	animation: barAnime forwards 1.2s 1 ease .4s normal;
  }
  @keyframes barAnime{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
  100% {
		left: 100%;
		width: 0;
	}
}
@keyframes textAnime_r{
	0% {
    color: transparent;
  }
	10% {
    color: transparent;
  }
	100% {
    color: var(--dark);
	background-color: none;
  }
}
@keyframes textAnime_dark{
	0% {
    color: transparent;
  }
	10% {
    color: transparent;
  }
	100% {
    color: var(--dark);
	background-color: none;
  }
}
@keyframes textAnime_w{
	0% {
    color: transparent;
  }
	10% {
    color: transparent;
  }
	100% {
    color: var(--light);
	background: none;
  }
}




/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none;	
}
/* box-sizing ---*/	
header, footer, main, section, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, a, span, small, strong, em, input, select, textarea, button {
	box-sizing: border-box;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page{
	overflow: hidden;	
}
.inner{
	max-width: calc(1120px + 6.94vw);
	padding: 0 var(--gap);
	margin-inline: auto;
}
.inner02{
	max-width: calc(1240px + 6.94vw);
	padding: 0 var(--gap);
	margin-inline: auto;	
}
.inner-lq{
	padding: 0 var(--gap);
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}




/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/

.header{
    position: fixed;
    top: 26px; left: 26px;
    z-index: 1000;
    width: 100svw;
}
.header h1{
    position: relative;
    display: inline-flex;
    align-items: center;
	z-index: 10000;
}
.header h1 .members{display: none;}

/* 画像時 */
.header h1 a{
        max-width: 200px;
    width: 13svw;
}
#limited .header h1 a img{
	-webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3)); /* SafariなどのWebkitブラウザ用 */
filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3)); 
}

/* テキスト時 */
/* .header h1 a{
	display: block;
	color: var(--dark);
	font-size: 1.8rem;
	line-height: 1.4;
	transform: rotate(0.05deg);
	font-weight: 900;
	text-shadow: 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 1px #fff;
} */



.header_right{
    position: absolute;
  top: -26px;
  right: 40px;
  z-index: 1000;
  background-color: var(--light);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header_cv{
	position: absolute;
	top: 0;
	right: 128px;
  	z-index: 10000;
	
}
.header_cv ul{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	gap: 0 8px;
}

/* ハンバーガーメニュー */

/* overlay-styles.css */
.hamburger-overlay {
    position: relative;
    z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
	background: var(--light);
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background: var(--gra_blue);
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: var(--dark);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
	box-sizing: border-box;
  max-width: 100%;
  height: 100vh;
  background: url(../../img/common/footer_bg.webp);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
  /* padding: 10% 3% 3%; */
  padding: 7% 3% 3%;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 3%;
}
.menu_wrap{
    display: flex;
    justify-content: space-between;
		align-items: center;
}
.menu_wrap .nav_txt{
    display: flex;
    flex-direction: column;
		gap: 16px;
		width: 60%;
}
.menu_wrap .pic-nav{
	width: 40%;
	transform: translateX(-3vw);
}
.nav_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.nav_list li:first-child{
    flex-basis: 100%;
}
.nav_list li{
    flex-basis: 49%;
    position: relative;
}
.nav_list li.new::after{
    content: 'NEW';
    display: block;
    background: var(--gra_red);
    color: var(--light);
	border: 1px solid var(--light);
    text-align: center;
    font-size: 1.2rem;
	font-weight: 700;
    line-height: 1;
    padding: 2px 4px;
    position: absolute;
    top: 0; right: 0;
    width: fit-content;
    height: 14px;
    padding: 3px 12px;
}
/* .nav_list li.soon::after{
    content: 'COMING SOON';
    display: block;
    background: var(--dark);
    color: var(--light);
	border: 1px solid var(--light);
    text-align: center;
    font-size: 1.2rem;
	font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 0; right: 0;
    width: fit-content;
    height: 14px;
    padding: 4px 12px 0;
} */
 .nav_list li.soon a span.en,
 .nav_list li.soon a span.ja{
	opacity: .2;
 }
 .nav_list li.soon::after{
	content: 'COMING SOON';
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2svw;
	font-weight: 800;
	color: var(--dark);
	text-align: center;
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(255,255,255,.6);
	mix-blend-mode:multiply;
 }
.nav_list li.soon a:hover{
	background: transparent !important;
	border-bottom: 1px solid var(--dark) !important;
}
.nav_list li.soon a:hover span.en,
.nav_list li.soon a:hover span.ja{color: var(--dark);}
.nav_list li a{
    transition: .3s;
    display: block;
	border-bottom: 2px solid var(--dark);
	/* padding: 15px 0 15px 8px; */
	padding: 12px 0 12px 8px;
}
.nav_list li.current a,
.nav_list li a:hover{
	background: var(--light);
	border-bottom: 2px solid var(--blue);
}

.nav_list li a span.en{
    display: block;
    font-size: 2.3rem;
    line-height: 1.3;
    font-weight: 900;
}
.nav_list li a span.ja{
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    padding-top: 1px;
	font-weight: 600;
	transform: rotate(0.05deg);
}
.nav_list li.current a span.en,
.nav_list li.current a span.ja,
.nav_list li a:hover span.en,
.nav_list li a:hover span.ja{color: var(--blue);}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item.delay01 { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item.delay02 { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item.delay03 { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item.delay04{ transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item.delay05{ transition-delay: 0.5s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.header_sub_nav{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.nav-cv-area{
	display: flex;
	align-items: center;
}
.nav-cv-area p{
	width: 100%;
}
.nav-cv-area .btn_wrap{
	display: flex;
	gap: 0 8px;
	justify-content: center;
}
.header_sub_nav_img{
	text-align: center;
	max-width: 200px;
	margin-right: 12px;
}
.header_sub_nav .btn.req a{
	color: var(--light);
	background: var(--gra_orange) !important;
	margin: auto;
}
.header_sub_nav .btn.req a::before, .header_sub_nav .btn.req a::after {
	background-color: var(--light);
}
.header_sub_nav .btn.req a:hover{
	background: var(--gra_orange) !important;
	color: var(--light) !important;
}
.header_sub_nav .btn.req a:hover::before,
.header_sub_nav .btn.req a:hover::after{background-color: var(--light) !important;}


.header_sub_nav .btn.limited a{
	color: var(--light);
	background: var(--gra_blue) !important;
	margin: auto;
}
.header_sub_nav .btn.limited a::before, .header_sub_nav .btn.limited a::after {
	background-color: var(--light);
}
.header_sub_nav .btn.limited a:hover{
	background: var(--gra_blue) !important;
	color: var(--light) !important;
}
.header_sub_nav .btn.limited a:hover::before,
.header_sub_nav .btn.limited a:hover::after{background-color: var(--light) !important;}

.header_sub_nav_txt_top{
	text-align: center;
	font-size: .9rem;
	letter-spacing: 1px;
	font-weight: 500;
	padding-top: 12px;
	padding-bottom: 8px;
	transform: rotate(0.05deg);
}
.header_sub_nav .tel{
	font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    gap: 0 8px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    margin-top: 3px;
}

.header_sub_nav .tel img{
	width: 54px;
}
.header_sub_nav_txt_bottom{
	font-size: 1.0rem;
	line-height: 1.3;
	font-weight: 600;
	padding-top: 8px;
	text-align: center;
	transform: rotate(0.05deg);
}

/* ヘッダーLINE */

.header_line_wrap{
	width: 58%;
	margin: 12px 3% 0 auto;
    border: 2px solid #00A65A;
    border-radius: 12px;
    overflow: hidden;
	display: flex;
}
.header_line_ttl{
	background: #00A65A;
    color: var(--light);
    font-size: 1.7rem;
	line-height: 1.4;
    font-weight: 600;
    transform: rotate(0.05deg);
    padding: 6px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	    flex-basis: 40%;
}
.header_line_contents{
	background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
}
.header_line_contents li:nth-of-type(1){
	flex-basis: 46%;
}
.header_line_contents li:nth-of-type(2){
	flex-basis: 30%;
}
.header_line_contents li:nth-of-type(3){
	flex-basis: 20%;
}
.header_line_contents .addess {
    text-align: center;
    transform: rotate(0.05deg);
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 8px;
    text-align: center;
}

@media screen and (max-width: 1500px){
	.nav-cv-area {justify-content: space-between;}
	    .header_sub_nav {
        justify-content: center;
        gap: 0 16px;
    }
	.header_sub_nav_img{ max-width: 170px;}
	.nav-cv-area .btn_wrap{display: block;}
	.nav-cv-area p{width: 100%;}
	.header_sub_nav .btn.limited{margin-top: 6px;}
	.header_line_ttl{
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 768px){
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.header h1 {
    position: relative;
    top: 16px; left: 16px;
}
   .header_right {
    padding: 12px 12px;
    top: 0; right: 0;
		border-radius: 100vmax;
		background: transparent;
    }
	.header_cv{
		display: none;
	}
	.members .header_cv{
		display: block;
		position: fixed;
		top: 16px; right: 70px;
	}
	.members .header_cv a{
		padding: 4px 8px;
    	min-height: 40px;
		font-size: 1.0rem;
	}
	.members .header_cv a::before,
	.members .header_cv a::after{display: none;}

	/* 画像時 */
    .header h1 a {
    max-width: 130px;
    width: auto;
    }

	 /* テキスト時 */
	/* .header h1 a {
		font-size: 1.3rem;
		line-height: 1.3;
	}
	.members .header h1 a {
		font-size: 1.0rem;
		line-height: 1.3;
	} */

    .menu_wrap .nav_txt{
        flex-basis: 100%;
        width: 100%;
    }
    .nav-overlay {
    height: 100%;
    padding: 25% 7% 80px 5%;
    overflow-y: scroll;
}





.nav-overlay__content {
	max-width: 100%;
	margin-left: auto;
	padding-right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.menu_wrap{
    display: block;
}
.menu_wrap .pic-nav{
	display: none;
}
.menu_wrap .nav_txt{
  gap: 0;
}

.nav_list{
    display: block;
}
.nav_list li{
    flex-basis: 100%;
    position: relative;
}
.nav_list li.new::after{
    font-size: 1.2rem;
    height: 16px;
    
}
.nav_list li.soon::after{
	font-size: 6svw;
}
.nav_list li a{
    transition: .3s;
    display: block;
	border-bottom: 1px solid var(--dark);
	padding: 15px 0 15px 8px;
}

.nav_list li a:hover{
	background: none;
	border-bottom: 2px solid var(--dark);
}

.nav_list li a span.en{
    display: block;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 900;
}
.nav_list li a span.ja{
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    padding-top: 2px;
	font-weight: 900;
}
.nav_list li a:hover span.en,
.nav_list li a:hover span.ja{color: var(--dark);}


.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}
.nav-cv-area{
	display: block;
}
.nav-cv-area .btn_wrap{
	display: block;
}
.nav-cv-area p{width: 100%;}
.header_sub_nav .btn.limited{
	margin-top: 8px;
}
.header_sub_nav{
	position: unset;
	display: block;
	width: 100%;
	max-width: 100%;
	margin: auto;
	padding-top: 30px;
	padding-right: 0;
}
.header_sub_nav_img{
	text-align: center;
	max-width: 240px;
	margin: auto;
	padding-bottom: 24px;
}
.header_sub_nav .btn a{
	color: var(--orange);
	background: var(--light) !important;
	margin: auto;
	        font-size: 2.0rem;
        min-height: 65px;
}
.header_sub_nav .btn a::before, .header_sub_nav .btn a::after {
	background-color: var(--orange);
	width: 12px;
        right: 16px;
        height: 2px;
        transform-origin: calc(100% - 1px) 50%;
}
.header_sub_nav .btn a:hover{
	background: var(--gra_orange) !important;
	color: var(--light) !important;
}
.header_sub_nav .btn a:hover::before,
.header_sub_nav .btn a:hover::after{background-color: var(--light) !important;}
.header_sub_nav_txt_top{
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: 1px;
	font-weight: 600;
	padding-top: 12px;
}
.header_sub_nav .tel a{
	font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    gap: 0 8px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    letter-spacing: 1px;
    margin-top: 3px;
}
.header_sub_nav .tel img{
	width: 60px;
	display: block;
	padding-top: 6px;
}
.header_sub_nav_txt_bottom{
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 600;
	padding-top: 8px;
	text-align: center;
}

.hamburger-overlay{
	position: fixed;
	right: 12px;
	top: 12px;
	z-index: 2000;
	border-radius: 100vmax;
}
.hamburger-overlay.scroll{
	box-shadow: 0 0 10px rgba(0,0,0,.15);
}


/* ヘッダーLINE */

.header_line_wrap{
	width: 100%;
	margin: 16px auto 0;
	display: block;
}
.header_line_ttl{
    font-size: 1.5rem;
	text-align: center;
    padding: 12px 8px;
	display: block;
}
.header_line_contents{
    display: block;
    padding: 16px 16px;
}
.header_line_contents li:nth-of-type(2){
	margin-top: 8px;
}
.header_line_contents .addess {
    font-size: 1.6rem;
}

}


/* members' site -------------------------------------- */




/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/




/* contents_mv
-----------------------------------------------------------------*/

.contents_mv{
  min-height: 750px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  margin-bottom: 96px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 96px;
}
.sub_contents_ttl{
	background: url(../../img/common/bg_dot.svg), var(--gra_orange2);
  margin-top: auto;
  max-width: 70%;
  padding: 32px 50px;
  position: relative;
  top: 80px;
}
.contents_mv h2{
  text-align: left;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--light);
}
.contents_mv .ja{
  text-align: left;
  font-size: 2.4rem;
  line-height: 1;
  padding-top: 8px;
  color: var(--light);
  transform: rotate(0.05deg);
}

.contents_mv2{
  padding: 96px 0 80px;
}
.contents_mv2 h2{
  text-align: center;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
}
.contents_mv2 .ja{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding-top: 16px;
}

@media screen and (max-width: 768px) {
  .contents_mv{
    min-height: 335px;
    margin-bottom: 80px;
  }
  .sub_contents_ttl{
    max-width: 79%;
    padding: 24px 16px;
    position: relative;
    top: 40px;
	background-size: cover;
  }
  .contents_mv{
    padding: 0;
}
.contents_mv2{
    padding: 96px 0 48px;
}
  .contents_mv h2,
  .contents_mv2 h2{
  font-size: 3.2rem;
}
.contents_mv .ja,
.contents_mv2 .ja{
  font-size: 1.3rem;
}
}


/* 共通見出し contents_intro
-----------------------------------------------------------------*/
 
.contents_intro{
	position: relative;
	overflow: hidden;
	padding: 5% 0;
	
}
.contents_intro::before{
	    content: '';
    display: block;
    position: absolute;
    top: 15px;
    right: -59px;
    background-image: url(../../img/common/contents_bg.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100%;
    width: 31%;
    height: 100%;
}
.contents_intro h3{
	margin-bottom: 24px;
}
.contents_intro h3 span{
	display: block;
	text-align: center;
}
.contents_intro h3 span.txt{
	font-size: 2.4rem;
	font-weight: 600;
	transform: rotate(0.05deg);
}
.contents_intro h3 span.img{
	max-width: 530px;
    width: 60%;
	margin: auto;
	padding-top: 24px;
}
.contents_intro p{
	text-align: center;
	font-weight: 600;
	font-size: 2rem;
	line-height: 2;
	padding-top: 8px;
	transform: rotate(0.05deg);
}
.contents_intro .txt{
	transform: rotate(0.05deg);
}
.contents_intro .txt small{
	font-size: 70%;
	vertical-align: 4px;
}
@media screen and (max-width: 768px){
	.contents_intro{
	padding: 6% 0 12%;
	
}
.contents_intro::before{
            top: 1px;
        width: 68%;
}
.contents_intro h3 span.txt{
	font-size: 1.6rem;
}
.contents_intro h3 span.img{
	max-width: 300px;
    width: 82%;
	padding-top: 16px;
}
.contents_intro p{
	font-size: 1.3rem;
}
}

/* 共通テキスト content_txt_wrap
-----------------------------------------------------------------*/

.content_txt_wrap{}
.content_txt_wrap dt{
	font-size: 4.0rem;
	font-weight: 500;
	line-height: 1.3;
	transform: rotate(0.05deg);
	padding-top: 5%;
}
.content_txt_wrap dd{
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	transform: rotate(0.05deg);
	padding-top: 3%;
}

@media screen and (max-width: 768px){
	.content_txt_wrap{}
.content_txt_wrap dt{
	font-size: 2.0rem;
	padding-top: 8%;
}
.content_txt_wrap dd{
	font-size: 1.3rem;
	padding-top: 6%;
}
}


/* ボタン
-----------------------------------------------------------------*/

.btn a{
	text-align: center;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	padding: 12px 24px;
	min-height: 50px;
	position: relative;
	border: 1px solid var(--light);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
	transform: rotate(0.05deg);
	color: var(--light);
}
.btn a::before,
.btn a::after{
	content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 12px;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--light);
  transform-origin: calc(100% - 1px) 50%;
}
.btn a::before{transform: rotate(45deg);}
.btn a::after{transform: rotate(-45deg);}


.btn.req a{
	background: var(--gra_orange);
}
.btn.req a:hover{
	background: var(--dark);
	color: var(--orange);
}
.btn.req a:hover::before,
.btn.req a:hover::after{background-color: var(--orange);}

.btn.limited a{
	background: var(--gra_blue);
	color: var(--light);
}
.btn.limited a::before,
.btn.limited a::after{background-color: var(--light);}
.btn.limited a:hover{
	background: var(--dark);
	color: var(--blue);
}
.btn.limited a:hover::before,
.btn.limited a:hover::after{background-color: var(--blue);}

.btn.white a{
	background: var(--light);
	color: var(--orange);
}
.btn.white a::before,
.btn.white a::after{background-color: var(--orange);}
.btn.white a:hover{
	background: var(--orange);
	color: var(--light);
}
.btn.white a:hover::before,
.btn.white a:hover::after{background-color: var(--light);}


/* 光るボタン */

/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button {
margin: auto;
/* 上下に1emの余白, 左右は中央揃えにするために auto */
text-align: center;	/* 内部のリンクテキストは中央揃え */
display: block;		/* 形状は block */
width: 100%;			/* 横幅は一杯に伸ばす */
max-width: 500px;		/* その中でも最大幅は500pxに制限 */
cursor: pointer;		/* リンクがあれば不要 */
/* ボタンを光らせるために必要 */
position: relative;
/* ボタンの位置を基準にするため relative指定 */
overflow:hidden;		/* ボタンの外の領域は非表示 */
}

/* ------------------------------------
ボタンの外側にボックス作成
（疑似要素「before」を使う）
------------------------------------*/
.shine-button::before {
content: "";			/* 文字は表示しないので中身無しを指定 */
position: absolute;	/* ボタンの位置を基準に絶対値指定する */
display: block;		/* 形式はblock */
background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.9));
/* 背景色は透明から白になるグラデーション */
width: 50px !important;	/* 横幅 */
height: 50px !important;	/* 縦幅 */
top: -60px !important;	/* ボタン左上を基準に上へ60pxの位置 */
left: -60px !important;	/* ボタン左上を基準に左へ60pxの位置 */
/* アニメーションの動作指定 */
animation-name:shine-run;	/* アニメーション名の指定 */
animation-delay:0s;		/* アニメーションの開始時間指定 */
animation-duration: 3s;	/* アニメーション動作時間の指定 */
animation-timing-function: ease-in;
/* アニメーションの動き指定（徐々に早く）*/
animation-iteration-count: infinite;
/* アニメーションの無限繰り返しの指定 */
transform-origin: unset !important;
right: unset !important;
border-radius: 0 !important;
}
/* ------------------------------------
アニメーションのタイミングとボックスの
拡大率、角度、透過率の指定
------------------------------------*/
@keyframes shine-run {
0% {
transform: scale(0) rotate(50deg);
/* アニメ開始時は大きさ0、50度の傾き */
opacity: 0;
/* アニメ開始時は全透過 */
}
40% {
transform: scale(1) rotate(50deg);
/* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
opacity: 1;
/* 透過しない（しっかり表示される）ように1を設定 */
}
100% {
transform: scale(250) rotate(50deg);
/* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
opacity: 0;
/* 全透過になるようにして、徐々に消えるような変化を付ける */
}
}

.header_cv .shine-button::after {
	transform: rotate(0deg);
    border-radius: 0 !important;
    background-color: transparent !important;
    transform-origin: unset !important;
	content: '';
    display: block;
    background-image: url(../../img/common/btn_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
   	right: 10px;
    top: 17px;
    width: 6px;
    height: 100%;
}



/* 下層ページ共通（概要・現地案内図）
-----------------------------------------------------------------*/


.sub_page {
	background: url(../../img/common/bg_dot.svg), var(--gra_orange);
    padding-bottom: 5%;
    color: var(--dark);
}
.sub_page_ttl{
    font-size: 8.8rem;
	line-height: 1;
    line-height: .75;
    font-weight: 900;
    transform: rotate(0.05deg);
    text-align: center;
	padding: 8% 0 0;
	color: var(--light);
}
.sub_page_ttl span{
	font-size: 180%;
    color: var(--red);
}
.sub_page_ttl_ja{
	text-align: center;
	transform: rotate(0.05deg);
	color: var(--light);
	font-size: 2.4rem;
	font-weight: 400;
	padding: 24px 0 3%;
}
@media screen and (max-width: 768px){
	.sub_page {
    padding-bottom: 10%;
}
.sub_page_ttl{
    font-size: 4.0rem;
	padding: 12% 0 0;
}
.sub_page_ttl_ja{
	font-size: 1.6rem;
	padding: 8px 0 8%;
}
}


/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}


/*--------------------------------------------------------------------------
   page-notes
---------------------------------------------------------------------------*/
.page-notes{
	padding: 55px 0;
	line-height: 1.5;
	background: var(--light);
}


/*--------------------------------------------------------------------------
   Cv
---------------------------------------------------------------------------*/



/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
.btn-don{
	position: fixed;
	z-index: 500;
	right: 20px;
	bottom: 30px;
	display: none;
	width: 80px;
}
.footer_cv{
	background-image: url(../../img/common/footer_bg.webp);
	background-position: center left;
	background-size: cover;
	padding: 4% 0;
	position: relative;
	overflow: hidden;
}
.footer_cv::before{
	content: '';
	display: block;
	position: absolute;
	top: -24px; left: -24px;
	background-image: url(../../img/common/footer_bg01.webp);
	background-position: top left;
	background-size: contain;
	background-repeat: no-repeat;
	height: 140%;
	width: 100%;
	max-width: 30%;
}
.footer_cv::after{
	content: '';
	display: block;
	position: absolute;
	bottom: -80px; right: -80px;
	/*background-image: url(../../img/common/footer_bg02.webp);*/
	background-image: url(../../img/top/concept_img02_pc.webp);
	background-position: bottom right;
	background-size: contain;
	background-repeat: no-repeat;
	height: 140%;
	width: 100%;
	max-width: 45%;
}
.footer_ttl{
	text-align: center;
	font-weight: 800;
	font-size: 6.4rem;
	position: relative;
}
.footer_txt{
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	padding-top: 16px;
	position: relative;
	transform: rotate(0.05deg);
}
.btn.footer_btn{
	max-width: 650px;
	margin: auto;
	padding-top: 32px;
	position: relative;
	z-index: 1;
}
.btn.footer_btn a{
	color: var(--light);
	background: var(--gra_orange2);
	font-size: 3.2rem;
	font-weight: 700;
	padding: 16px;
	min-height: 110px;
}
.btn.footer_btn a:hover{
	background: var(--light);
	color: var(--orange);
}
/* .btn.footer_btn a::before,
.btn.footer_btn a::after{
	background-color: var(--orange);
	width: 16px;
	right: 32px;
	height: 4px;
	transform-origin: calc(100% - 2px) 50%;
} */
.btn.footer_btn a:hover::before,
.btn.footer_btn a:hover::after{
	background-color: var(--light);
}
.btn.footer_btn a::before{transform: rotate(0deg);}
.btn.footer_btn a::after{transform: rotate(0deg);}

.btn.footer_btn a::after{
	content: '';
	display: block;
	background-image: url(../../img/common/btn_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 20px;
    top: 42px;
	width: 16px; height: 22px;
	border-radius: 0 !important;
    background-color: transparent !important;
    transform-origin: unset !important;
}
.btn.footer_btn a:hover::after{background-image: url(../../img/common/btn_arrow_orange.svg);}

.footer_tel{
	background-color: var(--light);
	padding: 4% 0 0;
}
.footer_tel_top{
	text-align: center;
	font-weight: 500;
	font-size: 1.4rem;
	transform: rotate(0.05deg);
	padding-bottom: 16px;
}
.footer_tel .tel a{
	font-size: clamp(28px, 5.2svw, 52px);
	font-weight: 700;
    line-height: 1;
    display: flex;
	gap: 0 8px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    letter-spacing: 2px;
	margin: 0 auto;
	transform: rotate(0.05deg);
	width: fit-content;
}
.footer_tel .tel a img{
	display: block;
	padding-bottom: 6px;
}
.footer_tel_bottom{
	text-align: center;
	font-weight: 700;
	font-size: 1.2rem;
	padding-top: 16px;
	transform: rotate(0.05deg);
}

ruby rt{
	font-size: 30%;
	transform: rotate(0.05deg);
}

/* .footer_tel .ruby{
	display: block;
    transform: rotate(0.05deg);
    width: 503px;
    max-width: 58%;
    margin: auto;
    text-align: right;
    letter-spacing: 22px;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 600;
}
.nav-info-area .ruby{
	display: block;
    transform: rotate(0.05deg);
    width: 292px;
    max-width: 100%;
    margin: auto;
    text-align: right;
    letter-spacing: 11px;
    font-size: .9rem;
    line-height: 1;
    font-weight: 600;
} */

.dev{
	padding: 2% 0 2%;
}
.dev ul{
	display: flex;
	justify-content: center;
	gap: 0 6%;
}
.dev .cap{
	text-align: center;
	font-weight: 500;
	font-size: 1.2rem;
	padding-bottom: 5px;
	    transform: rotate(0.05deg);
}

.copylight{
	text-align: center;
	line-height: 1;
	font-size: 1.3rem;
	padding: 16px 0;
	background-color: var(--light);
	transform: rotate(0.05deg);
}
.ft-nav{
	display: none;
}


@media screen and (max-width: 768px){

.btn-don{
	right: 18px;
	bottom: 75px;
	/* width: 80px; */
	width: 60px;
}

footer{
	padding-bottom: 170px;
}

.footer_cv{
	padding: 12% 0 48%;
	background-size: 500%;
}
.footer_cv::before{
	top: -8px; left: unset; right: -8px;
	height: 200%;
	width: 100%;
	max-width: 50%;
}
.footer_cv::after{
	bottom: 0; right: 7%;
	height: 100%;
	width: 100%;
	max-width: 90%;
}
.footer_ttl{
	font-size: 4rem;
	line-height: 1.3;
}
.footer_txt{
	font-size: 1.4rem;
	line-height: 1.5;
	padding-top: 24px;
}
.btn.footer_btn{
	max-width: 100%;
	padding-top: 32px;
}
.btn.footer_btn a{
	font-size: 2.0rem;
	min-height: 80px;
}
/* .btn.footer_btn a::before,
.btn.footer_btn a::after{
	width: 12px;
	right: 16px;
	height: 2px;
	transform-origin: calc(100% - 1px) 50%;
} */

.btn.footer_btn a::after{
	right: 16px;
    top: 29px;
    width: 15px;
    height: 21px;
}

.footer_tel{
	padding: 8% 0 0;
}
.footer_tel_top{
	font-size: 1.1rem;
	line-height: 1.5;
}
.footer_tel .tel a{
	font-size: 3.5rem;
	font-weight: 700;
    line-height: 1;
    display: flex;
	gap: 0 8px;
    flex-wrap: nowrap;
    justify-content: center;
    letter-spacing: 2px;
	margin-top: 3px;
}
.footer_tel .tel a img{width: 46px; padding-bottom: 8px;}
.footer_tel_bottom{
	text-align: center;
	font-weight: 700;
	font-size: 1.0rem;
	padding-top: 16px;
}
/* .footer_tel .ruby{
        width: 100%;
        max-width: 100%;
        letter-spacing: 14px;
        font-size: 1.1rem;
}
.nav-info-area .ruby{
        width: 314px;
        letter-spacing: 12.5px;
} */

.dev{
	padding: 6% 0 2%;
}
.dev ul{
	display: flex;
	justify-content: center;
	gap: 0 6%;
}
.dev li{flex-basis: 40%;}
.dev .cap{
	text-align: center;
	font-weight: 700;
	font-size: 1.0rem;
	padding-bottom: 5px;
}

.copylight{
	text-align: center;
	line-height: 1;
	font-size: 0.9rem;
	letter-spacing: 1px;
	padding: 16px 0;
	background-color: var(--light);
}


.ft-nav{
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 1000;
		transform: translateY(110%);
		display: flex;
		width: 100%;
		transition: .3s;
		        box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1);
	}
	.ft-nav.on{
		transform: translateY(0);
	}
	.ft-nav li{
		width: calc(100% / 3);
	}
	.ft-nav li:nth-child(2),
	.ft-nav li:nth-child(3),
	.ft-nav li:nth-child(4){
		border-left: 1px solid var(--gray);
	}
	.ft-nav a{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 64px;
		line-height: 1;
		background: var(--light);
		padding: 5px;
	}
	.ft-nav a img{
		width: 80px;
	}
	.ft-nav a .ico{
		display: block;
		margin-inline: auto;
	}
	.ft-nav li:nth-child(1) a .ico{
		width: 18px;
		padding: 1px 0;
	}
	.ft-nav li:nth-child(2) a .ico{
		width: 18px;
		padding: 3px 0 0;
	}
	.ft-nav li:nth-child(3) a .ico{
		width: 18px;
		padding: 3px 0 0;
	}
	.ft-nav a .ttl{
		margin-top: 5px;
		font-size: 1.3rem;
		font-weight: bold;
		color: var(--light);
	}

}
@media screen and (max-width: 768px) {
#limited .header_sub_nav{
    height: 530px;
}
    #limited .ft-nav li {
        width: 50%;
    }
    #limited .ft-nav li a img{
        display: block;
        width: 50%;
        margin: auto;
    }
}



























/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  
#Page {
	min-width: 320px;	
}

img{
	width: 100%;
	height: auto;
}

.pc{
	display: none;	
}
.sp{
	display: block;	
}
img.sp,
br.sp{
	display: inline;
}

.phone-link{
  pointer-events: auto;  
}


/*--------------------------------------------------------------------------
   fonts
---------------------------------------------------------------------------*/
	body{
		font-size: 1.4rem;
	}
	.sub{
		font-size: 1rem !important;
	}
	.note,
	.notes{
		font-size: 1.0rem;
	}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
.inner,
.inner02{
	max-width: initial;	
}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
	


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

.content{
	margin-top: 72px;
}



/* 見出し
-----------------------------------------------------------------*/
 


/* ボタン
-----------------------------------------------------------------*/



/*--------------------------------------------------------------------------
   page-notes
---------------------------------------------------------------------------*/
.page-notes{
	padding: 40px 0;
	line-height: 1.5;
}


/*--------------------------------------------------------------------------
   Cv
---------------------------------------------------------------------------*/
	

/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
	

/* members' site -------------------------------------- */

}


/* floating-banner */
.floating{
	display: none;
	position: fixed;
	right: 10px;
  left: none;
  transform: none;
	bottom: 10px;
	z-index: 9999;
	width: 90%;
  max-width: 400px;
}
.floating.none{
	display: none !important;
}
.floating .btn-close{
    width: 30px;
  	margin-bottom: -10px;
    cursor: pointer;
      position: absolute;
      top: 1%;
      right: 1%;
      z-index: 12002;
  }

@media screen and (max-width: 768px) {
  .floating{
    display: block;
    position: fixed;
    right: none;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    z-index: 9999;
    width: 90%;
    max-width: 400px;
  }
.floating .btn-close{
    width: 30px;
  	margin-bottom: -10px;
    cursor: pointer;
      position: absolute;
      bottom: 123px;
      right: 1%;
  }
}



/* youtube埋め込み */

.video-container {
  width: 100%;           /* 親要素の幅いっぱいに広げる */
  max-width: 800px;      /* 最大サイズを制限したい場合 */
  margin: 0 auto;        /* 中央寄せ */
  aspect-ratio: 16 / 9;  /* YouTubeの標準比率を維持 */
}

.video-container iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
    .modaal-inner-wrapper {
		padding: 60px 5px 60px !important;
    }
}


/* SUUMOワッペン設置 */
.header_wappen{
	position: fixed;
	bottom: 134px;
	right: 1%;
	max-width: 130px;
	width: 10%;
	z-index: 500;
	display: none;
}
@media screen and (max-width: 768px) {
	.header_wappen{
		display: block;
	position: fixed;
        bottom: 150px;
        right: 3%;
        max-width: 100%;
        width: 21%;
        z-index: 500;
}
}