@charset "UTF-8";
body {
	--max-width: 900px;
  --c-base: #E9F1F3;
	--c-light: #CEE8EB;
  --c-main: #007974;
  --c-accent: #66A5A5;
  --ff-main: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --ff-mincho: '游明朝', YuMincho, 'Yu Mincho', serif;
  --ff-en: 'Cormorant Garamond', serif;
}
body.userAgent-sp{
	overflow-x: hidden;
}
/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none){
	body {font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans",sans-serif;}
}
a{
	display: inline-block;
	color: inherit;
	font-weight: inherit;
}
a:hover{
	cursor: pointer;
}
img, svg{
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}
select{
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
a.h-opacity, .h-opacity a{
  transition: all .3s;
}
a.h-opacity:hover,
.h-opacity a:hover{
  opacity: .7;
}

.ff-mincho{ font-family: var(--ff-mincho); }
.ff-en{ font-family: var(--ff-en); }
.ff-lato{ font-family: 'Lato', sans-serif; font-weight: 700; }
.center{ text-align: center !important; }
.ta-l{ text-align: left !important; }
.ta-r{ text-align: right !important; }
.ta-justify{ text-justify: inter-ideograph; text-align: justify; text-align-last: left; }
.bold{ font-weight: bold !important; }
.thin{ font-weight: 100 !important; }
.nowrap{ white-space: nowrap; }
.kerning{ font-feature-settings: "palt"; }

.overflow-ellipsis{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.under{ border-bottom: 1px solid #888; }
.img-cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img-contain{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.clearfix::after{
  content: "";
  display: block;
  clear: both;
}
.d-ib{ display: inline-block !important; }
.d-f{ display: flex !important; }
.justify-center{ display: flex; justify-content: center; }
.hidden{ display: none !important; }

body.userAgent-pc a[href^="tel:"]{
	pointer-events: none;
}

/* PC */
@media (min-width: 900px){
	.tab{ display: none !important; }
	.sp{ display: none !important; }
	.tab-sp{ display: none !important; }

	.pc_pl-0{ padding: 0 !important; }
	.pc_pr-0{ padding: 0 !important; }
}
/* TAB */
@media screen and (max-width: 899px) and (min-width: 481px) {
	.pc{ display: none !important; }
	.sp{ display: none !important; }
	.pc-sp{ display: none !important; }

	.tab_pl-0{ padding: 0 !important; }
	.tab_pr-0{ padding: 0 !important; }
}
/* SP */
@media screen and (max-width: 480px) {
	.pc{ display: none !important; }
	.tab{ display: none !important; }
	.pc-tab{ display: none !important; }

	.sp-pl-0{ padding: 0 !important; }
	.sp-pr-0{ padding: 0 !important; }

	.sp_fs-14{ font-size: 14px !important; }
	.sp_fs-16{ font-size: 16px !important; }
	.sp_fs-18{ font-size: 18px !important; }
}

/* 共通 */
.cntInner,
.cmnInner{
	width: 100%;
	margin: 0 auto;
}
.cmnInner{

}
.cmnBtn-pulse{
  display: flex;
	align-items: center;
	justify-content: center;
  width: 300px;
  height: 60px;
  padding: 10px;
  border: 1px solid var(--c-accent);
  border-radius: 100px;
  user-select: none;
	color: var(--c-accent);
	font-size: 15px;
  text-align: center;
  letter-spacing: .075em;
}
.cmnBtn-pulse:hover{
  animation: pulse 1s;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--c-accent); }
  100% { box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0); }
}
.js-inview{
	opacity: 0;
	transition: opacity 1s ease-out, transform 1s ease-out;
	transition-delay: .5s;
}
.js-inview.td-3{
	transition-delay: .3s;
}
.js-inview.fadeup{
	transform: translateY(30px);
}
.js-inview.fadeinLeft{
	transform: translateX(-20px);
}
.js-inview.inview{
	transform: none !important;
	opacity: 1 !important;
}
/* TAB */
@media screen and (max-width: 899px) {
  .cmnBtn-pulse{
    font-size: 14px;
    width: 270px;
    height: 50px;
  }
}

/* トップへ戻るボタン */
#topReturn{
	position: fixed;
	top: auto;
	bottom: 50px;
	right: 101px;
	z-index: 100;
}
/* TAB */
@media screen and (max-width: 899px){
	#topReturn{
		width: 55px;
		bottom: 86px;
		right: 10px;
	}
}
/* ヘッダー */
#header * {
  box-sizing: border-box;
}
#header {
  box-sizing: border-box;
  width: 100%;
	font-family: var(--ff-main);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
}
#header .cntInner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 150px;	
	padding-left: 35px;
	padding-right: 20px;
	max-width: 1759px;
	margin: 0 auto;
	transition: height .3s;
}
#header.scrolled .cntInner{
	height: 100px;
}
#headerNav{
	display: flex;
	max-width: 1177px;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	letter-spacing: 0.075em;
	padding-top: 10px;
	font-weight: bold;
}
#headerNav-main{
	display: flex;
	max-width: 945px;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	margin-right: 20px;
}
#headerNav-main > .item{
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	text-align: center;
}
#headerNav-main > .item+.item{
	margin-left: 10px;
}
#headerNav-main > .item > a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
#headerNav-main > .item > a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 20px;
	height: 5px;
	background: var(--c-main);
	transform: translateX(-50%);
	transition: .3s;
	opacity: 0;
}
#headerNav-main > .item:hover > a::after{
	opacity: 1;
}
#headerNav-main .cntChild{
	position: fixed;
	top: 150px;
	left: 0;
	display: none;
	width: 100%;
	padding: 50px 70px 50px 20px;
	background: #E7EBEA;
	opacity: .95;
	transition: top .3s;
	z-index: 99;
	text-align: left;
}
#header.scrolled #headerNav-main .cntChild{
	top: 100px;
}
#headerNav-main > .item:hover .cntChild{
	display: block;
}
#headerNav-main .cntChild .inner{
	display: flex;
	align-items: center;
	gap: 0 3.34%;
	max-width: 1496px;
	margin: 0 auto;
}
#headerNav-main .cntChild .title{
	position: relative;
	flex-shrink: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 500px;
	padding: 0 10px 0 1vw;
	font-size: 28px;
}
#headerNav-main .cntChild .title::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 1px;
	height: 200px;
	background: #fff;
	transform: translateY(-50%);
	color: var(--c-main);
}
#headerNav-main .cntChild .title > *{
	display: block;
	width: 310px;
}
#headerNav-main .cntChild .title .en{
	font-size: 16px;
}
#headerNav-main .cntChild .right{
	display: flex;
	align-items: center;
	gap: 4.16vw;
	width: 100%;
}
#headerNav-main .cntChild .img{
	width: 300px;
	height: 200px;
}
#headerNav-main .cntChild .list li{
	position: relative;
	padding-left: 21px;
}
#headerNav-main .cntChild .list li + li{
	margin-top: 35px;
}
#headerNav-main .cntChild .list li::before{
	content: "－ ";
	position: absolute;
	top: 0;
	left: 0;
}
#headerNav-main > .item .en{
	font-family: var(--ff-en);
	font-size: 12px;
	color: var(--c-main);
	margin-top: 5px;
}
#headerNav-lang{
	width: 164px;
	display: flex;
	justify-content: space-between;
	color: var(--c-main);
	font-size: 18px;
}
#headerNav-lang .item{
	position: relative;
}
#headerNav-lang .item+.item::before{
	content: "/";
	position: absolute;
	left: -26px;
}

#headerLogo{
	padding-right: 30px;
}

#nav {
  box-sizing: border-box;
  width: 100%;
	font-family: var(--ff-main);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}
#nav * {
  box-sizing: border-box;
}
/* PC */
@media screen and (min-width: 1321px) {
	#nav{
		display: none !important;
	}
}
@media screen and (max-width: 1320px) {
	#header .cntInner{
		height: 140px;
	}
	#headerNav{
		justify-content: flex-end;
	}
	#headerNav-main{
		display: none;
	}
	#navBtn{
		display: block !important;
	}
}
/* SP */
@media screen and (max-width: 480px) {
	#header .cntInner{
		padding: 0 15px;
	}
	#header .cntInner, #header.scrolled .cntInner{
		height: 80px;
	}
	#headerLogo{
		padding-right: 20px;
	}
}

#navBtn{
	position: relative;
	display: none;
	width: 50px;
	height: 38px;
	margin-left: 53px;
	cursor: pointer;
}
#navBtn span{
	position: absolute;
	left: 10px;
	display: inline-block;
	width: 30px;
	height: 3px;
	background: #292929;
	transition: all .3s;
}
#navBtn span:nth-of-type(1){
	top: 10px;
}
#navBtn span:nth-of-type(2){
	bottom: 10px;
}
#navBtn.active span:nth-of-type(1){
	transform: translateY(7px) rotate(45deg);
}
#navBtn.active span:nth-of-type(2){
	transform: translateY(-7px) rotate(-45deg);
}
#nav{
	position: fixed;
	top: 140px;
	left: 0;
	display: none;
	width: 100%;
	max-height: calc(100% - 140px);
	padding: 80px 30px 108px;
	background: #E7EBEA;
	z-index: 99;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#nav::-webkit-scrollbar{
	display: none;
}
#nav.scrolled{
	top: 100px;
	max-height: calc(100% - 100px);
}
#nav .cntInner{
	max-width: 484px;
	margin: 0 auto;
}
#nav .cntList{
	font-size: 22px;
	font-weight: bold;
}
#nav .cntList .item + .item{
	margin-top: 1em;
}
#nav .cntList a{
	display: block;
}
#nav .cntList .en{
	color: var(--c-main);
	font-family: var(--ff-en);
	font-size: 16px;
}
#nav .cntChild{
	margin: 15px 0 30px;
	padding-left: 44px;
}
#nav .cntChild li{
	position: relative;
	margin-top: 1em;
	padding-left: 18px;
	font-size: 18px;
}
#nav .cntChild li::before{
	content: "－ ";
	position: absolute;
	top: 0;
	left: 0;
}
/* TAB */
@media screen and (max-width: 899px) {
	#navBtn{
		margin-left: 6.79vw;
	}
	#nav .cntList{
		font-size: 17px;
	}
	#nav .cntList .en{
		font-size: 12px;
	}
	#headerNav-lang{
		width: 124px;
		font-size: 14px;
	}
	#headerNav-lang .item+.item::before{
		left: -20px;
	}
	
}
/* SP */
@media screen and (max-width: 480px) {
	#navBtn{
		width: 40px;
    height: 32px;
		margin-left: 15px;
	}
	#navBtn span{
		left: 5px;
    width: 30px;
		height: 2px;
	}
	#nav{
		padding: 30px 20px 50px;
	}
	#nav, #nav.scrolled{
		top: 80px;
		height: calc(100% - 80px);
	}
	#nav .cntChild{
		padding-left: 20px;
	}
	#navBtn.active span:nth-of-type(1){
		transform: translateY(5px) rotate(45deg);
	}
	#navBtn.active span:nth-of-type(2){
		transform: translateY(-5px) rotate(-45deg);
	}
}

/* フッター */
#footer * {
  box-sizing: border-box;
}
#footer{
  box-sizing: border-box;
  width: 100%;
	font-family: var(--ff-main);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  -webkit-text-size-adjust: 100%;
	background: #F7F7F7;
	padding-bottom: 56px;
}
#footer .cntInner{
	display: flex;
	max-width: 1614px;
	justify-content: space-between;
	align-items: center;
	padding: 129px 20px 64px;
}
#footerLogo{
	padding-left: 3.37%;
	padding-right: 50px;
}
#footerNav{
	max-width: 953px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-weight: 600;
}
#footerNav .cntList .txt{
	letter-spacing: 0.075em;
	line-height: 3.125;
}
#footerNav .cntList+.cntList{
	border-left: 1px solid #E5E2E2;
	padding-left: 48px;
}
#footerNav .cntListInner{
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(3, auto);
	gap: 0 30px;
}
#footerNav .cntListInner .txt{
	font-size: 15px;
}
#footerNav .cntListInner .txt::before{
	content: "- ";
}
#sidebar{
	position: fixed;
	height: 100%;
  min-height: 500px;
	width: 50px;
	top: 0;
	right: 0;
	background: #E2F4F4;
	display: flex;
	justify-content: center;
	align-items: center;
  z-index: 100;
}
#sidebar .icons{
	max-height: 674px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 0;
}
#copyright{
	display: block;
	text-align: center;
	letter-spacing: .05em;
	font-size: 11px;
}
@media screen and (max-width: 1320px) {
	#footer .cntInner{
		flex-direction: column;
		padding-top: 80px;
	}
	#footerLogo{
		padding-left: 0;
		margin-bottom: 50px;
	}
}
/* TAB */
@media screen and (max-width: 899px){
	#footer{
		background: #fff;
		padding-bottom: 90px;
	}
	#footer .cntInner{
		padding: 0 20px 0;
	}
  #ftbar{
    position: fixed;
    height: 50px;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  #ftbar .icons{
    display: flex;
    height: 100%;
  }
  #ftbar .icon{
    height: 100%;
    background: #E2F4F4;
    width: calc((100% - 12px)/3);
    display: flex;
    justify-content: center;
    align-items: center;
		padding: 0 10px;
  }
  #ftbar .icon+.icon{
    margin-left: 4px;
  }
  #ftbar .icon img{
    width: 21px;
  }
  #ftbar .text{
    margin-left: 13px;
    font-size: 14px;
    letter-spacing: 0.074em;
    color: var(--c-accent);
  }
	#copyright{
		letter-spacing: .1em;
		font-size: 12px;
	}
}
/* SP */
@media screen and (max-width: 480px) {
  #ftbar .text{
		margin-left: 8px;
    font-size: 2.56vw;
	}
	#ftbar .icon img{
		width: 15px;
	}
}

/*パンくずリスト*/
#breadcrumbs{
	margin: 20px 0;
}
#breadcrumbs li{
	margin-right: 10px;
}
#breadcrumbs li + li::before{
	content: ">";
	display: inline-block;
}