/* ----------------------------------------
  Setting
-------------------------------------------*/
*, *::before, *::after{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
* { min-height: 0vw; min-height: 0; }/* clamp関数対策 */
hr{ display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
audio,canvas,img,video{ vertical-align: middle; }
fieldset{ border: 0; margin: 0; padding: 0; }
textarea{ resize: vertical; }
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; }
table,div,ul,ol,li,dl,dt,dd{ list-style: none; margin: 0; padding: 0; }
table{ border-collapse:collapse; border-spacing:0; }
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section{ display:block; }
address{ font-style: normal; }
nav ul,li{ list-style:none; }
img{ max-width: 100%; height: auto; margin: 0; padding: 0; border:0; outline: none; border-style: none; vertical-align: bottom; line-height: 0; }
img,iframe,object{ max-width:100%; }  /* モダンブラウザ用 */
img[src$=".svg"]{  width: 100%; }    /* SVG IE対策 */


:root{
  --font-black: rgba(51,51,51);
  --font-black-rgb: 51,51,51;
  --green: rgba(0,185,190);
  --green-rgb: 0,185,190;
  --orange: rgba(255,135,85);
  --orange-rgb: 255,135,85;
  
  --hover: 0.5;
  --font-en: "Marcellus", serif;
  --page-width: min(84%,1200px);
  --sec-margin: min(25%,250px);
  --page-sec-margin: min(15%,200px);
}

@media screen and (max-width: 650px){
  :root{
  }
}

a,
a:visited,
a:hover,
a:active{
  color: var(--font-black);
  -webkit-tap-highlight-color: transparent rgba(0,0,0,0);
  -moz-tap-highlight-color: transparent rgba(0,0,0,0);
  -ms-tap-highlight-color: transparent rgba(0,0,0,0);
  -o-tap-highlight-color: transparent rgba(0,0,0,0);
  tap-highlight-color: transparent rgba(0,0,0,0);
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-transform: translateZ(0);
}
a:hover{
  color: var(--main-color);
  text-decoration: none;
}
a img:hover{
  opacity: var(--hover);
}
a img{ 
  text-decoration: none;
  outline: none;
}
a img::before,a img::after{
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
a img,a img::before,a img::after{
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
svg{
  fill: currentColor;
}
.pc{ display: block; }
.sp{ display: none; }

@media screen and (max-width: 650px){
  .pc{ display: none; }
  .sp{ display: block; }
}

/* ----------------------------------------
  Common
-------------------------------------------*/

html,body{
  height: 100% !important;
}
html{
  font-size: 18px;
  line-height: 2.2;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
body{
  color: var(--font-black);
  background-color: #f2f2f2;
  font-family: "Noto Sans JP",sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  word-wrap: break-word;
  font-size: clamp(13px,2vw,18px);
  letter-spacing: 0.025em;
}

#wrapper{
  position: relative;
  overflow: hidden;
  width: 100%;
}
#main{
  position: relative;
  width: 100%;
  z-index: 1;  /*important*/
}
/* fade */
.fade{
  opacity: 0;
  transform: translateY(10px);/* 下にずれる幅 */
  transition: opacity 1.1s, transform 1.0s;
}
.fade.active{
  opacity: 1;
  transform: translateY(0px);
}

/* more-btn */
.morebtn a{
  font-family: var(--font-en);
  display: block;
  width: 100%;
  height: 70px;
  line-height: 70px;
  border-radius: 35px;
  padding: 0 30px;
  font-size: clamp(13px,2vw,18px);
  border: 1px solid var(--font-black);
  background: url(../img/common/ic_morebtn_wh.svg) 90% center no-repeat;
  background-size: 30px;
}
.morebtn a:hover{
  color: #fff;
  background-color: var(--font-black);
}

/* scroll text */
.autoscroll{
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.autoscroll__loop{
  display: flex;
  width: 100%;
}
.autoscroll__text{
  flex: 0 0 auto;
  overflow: hidden;
  white-space: nowrap;
  font-size: clamp(60px,10vw,110px);
  width: clamp(1060px,170vw,1890px);
  background: linear-gradient(90deg, #00b9be 0%, #dadab6 50%, #ffa47e 70%, #dadab6 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.autoscroll__text:nth-child(odd){
  animation: autoscroll 70s -35s linear infinite;
}
.autoscroll__text:nth-child(even){
  animation: autoscroll2 70s linear infinite;
}
@keyframes autoscroll{
  0%{
    transform: translateX(100%);
  }to{
    transform: translateX(-100%);
  }
}
@keyframes autoscroll2{
  0%{
    transform: translateX(0);
  }to{
    transform: translateX(-200%);
  }
}

/* title */
.en{
  font-family: var(--font-en);
}
.h2_tit .en{
  line-height: 1;
  font-size: clamp(33px,5.07vw,72px);
  letter-spacing: 0.025em;
  padding-bottom: 20px;
}
.h2_tit h2{
  font-size: clamp(14px,2.15vw,20px);
  font-weight: normal;
  letter-spacing: 0.1em;
  
}
.h2_tit h2 span{
  color: var(--green);
  font-size: 60%;
  padding-right: 4px;
}

@media screen and (max-width: 650px){  
  
  .morebtn a{
    width: 100%;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
  }
  .morebtn a,
  .morebtn a:hover{
    background-size: 26px;
  }
  .en{
    font-family: var(--font-en);
  }
  .h2_tit .en{
    padding-bottom: 10px;
  }
}


/* ----------------------------------------
  Main Header
-------------------------------------------*/

.g_nav{
  position: relative;
  width: 100%;
  height: 130px;
  z-index: 200;
}
.g_nav.fixed{
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
	height: 80px;
  background-color: #fff;
	transition: all 0.5s;
}
.g_nav.fixed .g_nav__in{
	transition: all 1s;
}
.g_nav__in{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.g_nav__in h1{
  margin-right: auto;
}
.g_nav__in h1 a{
  position: relative;
  display: block;
  z-index: 1000;
  margin-left: 4%;
  height: clamp(50px,7.69vw,78px);
}
.g_nav__in h1 a img{
  width: auto;
  height: 100%;
}
.g_nav.fixed .g_nav__in h1 a{
	height: clamp(50px,7.69vw,62px);
}

/* g_nav */
.g_nav__list{
  display: flex;
  padding-right: clamp(240px,25vw,280px);
}
.g_nav.fixed .g_nav__list{
  padding-right: clamp(200px,20.8vw,240px);
}
.g_nav__list > li{
  position: relative;
  margin-left: 4.6%;
  font-weight: bold;
  font-size: clamp(12px,1.5vw,18px);
}
.g_nav__list li a{
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;  /*改行禁止*/
}
.g_nav__list li a:hover{
  color: var(--green);
}
.g_nav__list li.current > a{
  color: var(--green);
}
.g_nav__list:hover li{
  visibility: visible; /* 下層メニューを表示 */
}
/* ドロップダウン */
.drop_menu{
  display: block;
}
.drop_menu .drop_menu__list{
  position: absolute;
  overflow: hidden;
  top: 50px;
  left: -50%;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.05);
  padding: 16px 24px;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all .2s;
}
.drop_menu:hover > .drop_menu__list,
.drop_menu:active > .drop_menu__list{
  visibility: visible;
  opacity: 1;
}
.drop_menu .drop_menu__list li{
  font-size: clamp(12px,1.5vw,14px);
  line-height: 2;
  text-align: left;
  font-weight: normal;
}
.drop_menu .drop_menu__list li a{
  overflow: hidden;
  width: 100%;
}
.drop_menu .drop_menu__list li a::before{
  content: "●";
  font-size: 50%;
  vertical-align: 20%;
  padding-right: 4px;
  color: #ddd;
}
.drop_menu .drop_menu__list li.outlink a::after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 4px;
  background: url(../img/common/ic_outlink.svg) no-repeat right center;
}

.drawer_nav_wrap{
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.drawer_nav_wrap .main_nav_area{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
	margin-top: 120px;
}
#main_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
#main_nav a:hover{
  opacity: var(--hover);
}
#main_nav dl{
  width: 30%;
}
#main_nav dl dt div{
	padding: 4% 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: clamp(13px,2vw,15px);
}
#main_nav dl dt div .en{
	color: var(--green);
	font-size: clamp(20px,3vw,30px);
}
#main_nav dl dt div .gr{
	color: var(--green);
	font-size: 60%;
	padding: 0 4px 0 10px;
}
#main_nav dl dd{
	font-size: clamp(12px,1.84vw,14px);
	line-height: 2.5;
}
#main_nav dl dd:last-of-type{
  padding-bottom: 30px;
}
#main_nav dl dd.outlink a::after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 4px;
  background: url(../img/common/ic_outlink.svg) no-repeat right center;
}
#main_nav dl .nav_rec{
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 30px;
}
#main_nav dl .nav_rec a{
	display: flex;
	align-items: center;
	padding-left: 8%;
	width: 100%;
	height: clamp(100px,15.38vw,220px);
	background: url(../img/common/nav_rec_bg.jpg) no-repeat center / cover;
	transition: transform .35s ease;
}
#main_nav dl .nav_rec a:hover{
	opacity: 1;
	transform: scale(1.05);
	background: url(../img/common/nav_rec_bg.jpg) no-repeat center / cover rgba(0,0,0,0.4);
	background-blend-mode:darken;
}
#main_nav dl .nav_rec a,
#main_nav dl .nav_rec a .en{
	line-height: 1.75;
	color: #fff;
	width: 100%;
}
#main_nav dl .nav_rec a .gr{
	padding-left: 0;
}
#main_nav dl dd .cr_s{
	font-size: 30%;
	padding-right: 4px;
	vertical-align: middle;
}

@media screen and (max-width: 960px){
  .g_nav__list{
    display: none;
  }
}
@media screen and (max-width: 650px){
  
  .g_nav{
    height: 80px;
  }
  /* g_nav */
  .g_nav__list{
    display: none;
  }
  .drawer_nav_wrap{
    height: 100%;
  }
  .drawer_nav_wrap .main_nav_area{
		display: block;
		width: 100%;
		height: 100%;/*メニュー画面内スクロール*/
		overflow: auto;/*メニュー画面内スクロール*/
    margin: 0 auto;
    padding: 80px 0 0;
	}
	#main_nav dl{
		width: 100%;
	}
  #main_nav dl section{
    border-bottom: 1px solid #ccc;
  }
  #main_nav dl section:last-child{
    border-bottom: none;
  }
	#main_nav dl dt + dt{
		border-top: 1px solid #ccc;
	}
	#main_nav dl dt div{
		padding: 2% 0;
	}
	#main_nav dl dd:last-of-type{
		padding-bottom: 5%;
	}
	#main_nav dl .nav_rec{
		border: none;
		border-radius: 10px;
		margin: 5% auto;
	}
	#main_nav dl .nav_rec a{
		height: 140px;
		background-position: center 20%;
	}
	#main_nav dl .nav_rec a:hover{
		background-position: center 20%;
	}
}


/* ----------------------------------------
  f-contact
-------------------------------------------*/

.f_contact{
  width: 94%;
  margin: 0 auto;
  padding: min(10%,150px) 0;
  text-align: left;
  color: #fff;
}
.f_contact__bg{
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  z-index: 0;
}
.f_contact__bg:after{
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all .35s ease-out;
  background: url(../img/common/bg_f_contact.jpg) no-repeat center / cover rgba(0,0,0,0.4);
  background-blend-mode:darken;
}
.f_contact__bg:hover:after{
  opacity: 1;
  transform: scale(1.05);
  background-color: rgba(0,0,0,0.5);
}
.f_contact__bg a{
  position: relative;
  overflow: hidden;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: left;
  color: #fff;
  padding: 10% 8%;
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: space-between;
}
.f_contact__bg a > div{
  width: 50%;
}
.f_contact__bg a .h2_tit{
  padding-bottom: 10%;
}
.f_contact__bg a .h2_tit .en{
  padding-bottom: 10px;
}
.f_contact__bg a .text{
  font-size: clamp(12px,1.84vw,18px);
}
.f_contact__bg a .morebtn{
  font-size: clamp(14px,2.15vw,18px);
  text-align: left;
}
.f_contact__bg a > div .morebtn{
  font-family: var(--font-en);
  margin: 0 0 0 auto;
  display: block;
  width: clamp(200px,30.769vw,260px);
  height: 70px;
  line-height: 70px;
  border-radius: 35px;
  padding: 0 30px;
  color: #fff;
  border: 1px solid #fff;
  background: url(../img/common/ic_morebtn_wh.svg) 90% center no-repeat;
  background-size: 30px;
  transition: all 0.2s ease;
}
.f_contact__bg a:hover > div .morebtn{
  background: url(../img/common/ic_morebtn_bl.svg) 90% center no-repeat;
  background-size: 30px;
  color: var(--font-black);
  background-color: #fff;
}

@media screen and (max-width: 650px){
  
  .f_contact__bg{
    border-radius: 20px;
  }
  .f_contact__bg a{
    padding: 12% 8%;
    flex-wrap: wrap;
    text-align: center;
  }
  .f_contact__bg a > div{
    width: 100%;
  }
  .f_contact__bg a .h2_tit{
    padding-bottom: 5%;
  }
  .f_contact__bg a > div .morebtn{
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    margin: 10% auto 0;
  }
  .f_contact__bg a > div .morebtn,
  .f_contact__bg a:hover > div .morebtn{
    width: min(180px,50%);
    background-size: 26px;
  }
}


/* ----------------------------------------
  Footer
-------------------------------------------*/

#footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto;
  text-align: left;
}
#footer .footer_info{
  width: 34%;
  overflow: hidden;
}
.footer_info .logo{
  width: min(330px,100%);
  height: auto;
}
.footer_info address{
  font-size: clamp(11px,1.69vw,13px);
  width: 100%;
  padding: 1vw 0 0 1vw;
}
#footer .footer_nav{
  width: 64%;
  display: flex;
  flex-basis: auto;
  justify-content: space-between;
}
.footer_nav dl{
  line-height: 1.5;
}
.footer_nav a:hover{
  opacity: var(--hover);
}
.footer_nav dl:nth-child(1),
.footer_nav dl:nth-child(3){
  width: 22%;
}
.footer_nav dl:nth-child(2){
  width: 30%;
}
.footer_nav dl:nth-child(4){
  width: 28%;
}
.footer_nav dl dt,
.footer_nav dl dd{
  padding-bottom: 22px;
}
.footer_nav dl dt{
  font-size: clamp(13px,2vw,17px);
}
.footer_nav dl dt::before{
  content: '●';
  padding-right: 1px;
  color: #fff;
}
.footer_nav dl dd{
  font-size: clamp(11px,1.69vw,13px);
  padding-left: 14px;
}
.footer_nav dl dd.outlink a::after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 4px;
  background: url(../img/common/ic_outlink.svg) no-repeat right center;
}
.copyright{
  width: 100%;
  padding: 10% 0 8%;
  text-align: center;
  font-family: var(--font-en);
  font-size: clamp(12px,1.84vw,20px);
  letter-spacing: 0.05em;
}
.f_text .autoscroll{
  line-height: 1.5;
  padding: 2% 0;
}

@media screen and (max-width: 650px){
  
  #footer .footer_info{
    width: 100%;
    padding-bottom: 10%;
    text-align: center;
  }
  .footer_info .logo{
    width: clamp(280px,43vw,80%);
    margin: 0 auto;
  }
  .footer_info address{
    font-size: clamp(11px,1.69vw,13px);
    padding: 0;
  }
  #footer .footer_nav{
    width: var(--page-width);
    margin: 0 auto;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10% 0;
  }
  .footer_nav dl:nth-child(1),
  .footer_nav dl:nth-child(2),
  .footer_nav dl:nth-child(3),
  .footer_nav dl:nth-child(4){
    width: 50%;
  }
  .footer_nav dl dt,
  .footer_nav dl dd{
    padding-bottom: 18px;
  }
  .footer_nav dd:last-child{
    padding-bottom: 30px;
  }
  .footer_nav dl dt{
    font-weight: bold;
  }
}