@charset "utf-8";
/* all
-------------------------------------------------------------------*/
html,
body{
	background: #FFFFFF;
	color: #282828;
	font-family:'Noto Sans JP',"游ゴシック","Yu Gothic Medium" ,"游ゴシック体", "Yu Gothic", YuGothic , 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size:16px;
	line-height:1.4;
	font-weight: 400;
}
html .goti,
html form *{
	font-family:"游ゴシック", 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium" ,"游ゴシック体", "Yu Gothic", YuGothic , 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
html .min,
html .min form *{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Times New Roman", "HG明朝B", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
html .roboto,
html .roboto form *{
	font-family: "Roboto", sans-serif;
}
html .corm{
  font-family: "Cormorant Infant", serif;
}
body {
	width: 100%;
	font-size: 100%;
	text-align: center;
	min-width:1200px;
}
main{
	width:100%;
	overflow: hidden;
}
.sitewrap {
	width: 1200px;
	min-width: 1200px;
	margin: 0 auto;
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.relative{
	position: relative;
	z-index: 0;
}
@media screen and (max-width:1240px) {
	body,
	.sitewrap {
		width: 100%;
		min-width:0;
	}	
	.sitewrap > *{
		padding-left:2%;
		padding-right:2%;
	}
}
@media screen and (max-width:767px) {
	html {
		font-size:14px;
	}
	main{
		margin-top: 60px;
	}
	.sitewrap > *{
		padding-left:15px;
		padding-right:15px;
	}
}
/* header
-------------------------------------------------------------------*/
@media screen and (min-width: 1100px) {
	.home .drop_menu #NavWrap li>*:not(.drop_area){
		color: #ffffff;
	}
	.home header#fix_menu.fixedMenu .drop_menu #NavWrap li:not(.btn_contact)>*:not(.drop_area){
		color: #000000;
	}
	.home .drop_menu #NavWrap li.btn_contact a span::before{
		background: #282828;
	}
	.home .drop_menu #NavWrap li.btn_contact a{
		border: 1px solid #ffffff;
		background: #ffffff;
		color: #282828;
	}
	.home .drop_menu #NavWrap li>*>span::before {
		background: var(--white);
	}
	@media (any-hover: hover) {
		.home .drop_menu #NavWrap li a:hover{
			color: #ffffff;
		}
		.home header#fix_menu.fixedMenu .drop_menu #NavWrap li a:hover{
			color: #000000;
		}
	}
}
header#fix_menu {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	transition: 0.3s;
	background: #fff;
	color: #fff;
}
.home header#fix_menu {
	background: none;
	color: #fff;
}
header#fix_menu.fixedMenu {
	background: #fff;
	color: #000000;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
.menu_top #site_ttl {
	float: left;
	transition: opacity 0.3s;
	background: #fff;
	padding: 1.25em 1.5em;
	border-radius: 0 0 0.5em 0;
}
.drop_menu #NavWrap{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 1.25em;
	padding: 1em 2em 0 0;
}
.drop_menu #NavWrap ul {
	margin: 0 8em 0 0;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 2em;
}
.drop_menu #NavWrap li{
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 0;
}
.drop_menu #NavWrap li::marker{
	content: none;
}
.drop_menu #NavWrap li>*:not(.drop_area) {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 3em;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	padding: 0.25em 1em;
	margin-bottom: 0;
	transition: background 0.3s, opacity 0.3s, color 0s;
	color: #000;
}

.drop_menu #NavWrap li>*>span {
	position: relative;
	z-index: 10;
}
.drop_menu #NavWrap li>*>span::before {
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 100%;
	height: 2px;
	background: var(--main_color);
	left: 0;
	bottom: -0.25em;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s;
}

.drop_menu #NavWrap li.link_sub{
	display: none;
}
.drop_menu #NavWrap li.btn_contact a{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color: #282828;
	border-radius: 3em;
	padding: 0em 1.5em;
	transition: border 0.3s , background 0.3s , color 0.3s;
	border: 1px solid var(--main_color);
	color: var(--main_color) ;
}
.drop_menu #NavWrap li.btn_contact a span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 1.2em;
  background: var(--main_color);
  mask: url(../img/common/icon_mail.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 18px;
  height: 15px;
  transform: translateY(-44%);
  transition: background 0.3s;
}
header#fix_menu.fixedMenu .drop_menu #NavWrap li>*>span::before {
	background: var(--main_color);
}
.drop_menu #NavWrap li.btn_contact a span{
	padding-left: 1.5em;
}
.drop_menu #switch {
	position: absolute;
	z-index: -100;
	width: 0;
	opacity: 0;
}
header#fix_menu.fixedMenu .drop_menu #NavWrap li.btn_contact a{
	border: 1px solid var(--main_color);
	color: var(--main_color) ;
}

header#fix_menu.fixedMenu .drop_menu #NavWrap li>*>span::before {
	background: var(--main_color);
}
header .gtranslate_wrapper{
	position: fixed;
	margin: auto;
	height: fit-content;
	width: fit-content;
	inset: 1.25em 1em auto auto;
}
header .gt_float_switcher .gt-selected .gt-current-lang{
	max-width: 110px;
	padding: 0.5em 0.25em;
}
header .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code{
	font-size: 1.125rem;
}

@media (any-hover: hover) {
	.menu_top #site_ttl:hover {
		opacity: 0.75;
	}
	.drop_menu #NavWrap li>*:hover>span::before,
	.drop_menu #NavWrap li.drop_wrap:has(> *:hover) span::before {
		transform: scaleX(1);
		transform-origin: left;
	}
	.drop_menu #NavWrap li a:hover{
		color: #000;
	}
	.drop_menu #NavWrap li.btn_contact a:hover{
		border: 1px solid #ffffff;
		background: var(--main_color);
		color: #fff;
	}
	.drop_menu #NavWrap li.btn_contact a:hover span::before{
	  background: #ffffff;
	}
	header#fix_menu.fixedMenu .drop_menu #NavWrap li.btn_contact a:hover{
		border: 1px solid var(--main_color);
		color: #fff;
	}
	header#fix_menu.fixedMenu .drop_menu #NavWrap li.btn_contact a:hover span::before {
		background: #fff;
	}
}
@media screen and (max-width: 1100px) {
	header#fix_menu {
		background: #fff;
	}
	.drop_menu #switch~label::after{
		position:absolute;
		inset:0;
		left: auto;
		z-index:-10;
		display:inline-block;
		content:"";
		width: 100vw;
		height: 100vh;
		opacity:0;
		visibility:hidden;
	}
	.drop_menu #switch:checked~label::after{
		opacity:1;
		visibility:visible;
	}
	.drop_menu #switch~label {
		--item_color: var(--main_color);
		--item_subcolor: #fff;
		position: fixed;
		z-index: 900;
		top: 0;
		right: 0;
		display: block;
		width: 80px;
		height: 78px;
		background: var(--item_subcolor);
		padding: 12px;
		cursor: pointer;
		box-sizing: border-box;
		transition: 0.4s transform, right 0.4s;
	}
	.drop_menu #switch~label b {
		position: relative;
		z-index: 2;
		width: 100%;
		height: 100%;
		display: block;
		margin-bottom: 0;
	}
	.drop_menu #switch~label span {
		position: absolute;
		top: 55%;
		left: 0;
		right: 0;
		display: block;
		width: 40px;
		height: 2px;
		background: #282828;
		margin: auto;
		translate: 0 -50%;
		cursor: -webkit-grabbing;
		transition: 0.2s transform, 0.5s background;
	}
	.drop_menu #switch~label span::before,
	.drop_menu #switch~label span::after {
		position: absolute;
		content: "";
		display: block;
		width: 40px;
		height: 2px;
		background: #282828;
		margin-top: 0;
	}
	.drop_menu #switch~label span::before {
		top: -12px;
	}
	.drop_menu #switch~label span::after {
		top: 12px;
	}
	.drop_menu #switch:checked~label {
		right: 300px;
		background: var(--main_color);
	}
	.drop_menu #switch:checked~label span {
		transform: rotate(-45deg);
	}
	.drop_menu #switch:checked~label span::before {
		top: 0;
		background: #fff;
	}
	.drop_menu #switch:checked~label span::after {
		transform: rotate(270deg);
		top: 0;
		background: #fff;
	}
	.drop_menu #NavWrap {
		position: fixed;
		z-index: 800;
		top: 0;
		right: -300px;
		justify-content: flex-end;
		align-items: flex-start;
		flex-direction: column-reverse;
		flex-wrap: nowrap;
		width: 300px;
		height: 100%;
		font-size: 1rem;
		background: #fff;
		padding: 0;
		overflow-y: auto;
		overflow-x: visible;
		overscroll-behavior: contain;
		visibility: hidden;
		box-sizing: border-box;
		transition: all 0.4s;
	}
	.drop_menu #switch:checked~#NavWrap {
		right: 0;
		visibility: visible;
		box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
	}
	main:has(.drop_menu #switch:checked~#NavWrap){
		pointer-events: none;
	}
	.drop_menu #NavWrap::-webkit-scrollbar {
		height: 10px;
		width: 10px;
	}
	.drop_menu #NavWrap::-webkit-scrollbar-track {
		border-radius: 10px;
		background: #d8d4d4;
	}
	.drop_menu #NavWrap::-webkit-scrollbar-thumb {
		border-radius: 10px;
		background: #848484;
	}
	.drop_menu #NavWrap::after {
		display: none;
	}
	.drop_menu #NavWrap >*{
		width:100%;
	}
	.drop_menu #NavWrap ul {
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
		order: 2;
		margin: 0 0 1em;
	}
	.drop_menu #NavWrap li {
		width: 100%;
	}
	.drop_menu #NavWrap li>*:not(.drop_area) {
		align-items: flex-start;
		width: 100%;
		min-height: 3em;
		padding: 1.25em 1em;
	}
	.drop_menu #NavWrap li{
		border-bottom: 1px solid #aaa;
		color: #282828;
		font-size: 1rem;
	}
	.drop_menu #NavWrap li.link_sub{
		display: block;
		font-size: 0.875rem;
		color: #505050;
	}
	.drop_menu #NavWrap li.btn_contact{
		margin-top: 2em;
		border-bottom: none;
	}
	.drop_menu #NavWrap li.btn_contact a{
		margin: auto;
		width: 80%;
		background: var(--main_color);
		color: #fff;
		border: 1px solid var(--main_color) !important;
		padding: 1em;
	}
	header#fix_menu.fixedMenu .drop_menu #NavWrap li.btn_contact a{
		color: var(--white) ;
	}
	.drop_menu #NavWrap li.btn_contact a span::before,
	header#fix_menu.fixedMenu .drop_menu #NavWrap li.btn_contact a span::before {
		background: var(--white);
	}
	header .gtranslate_wrapper{
		inset: 1.25em 6em auto auto;
	}
}
@media screen and (max-width: 767px) {
	header .menu_top #site_ttl {
		height:60px;
		padding-left: 1em;
	}
	header .menu_top #site_ttl img {
		object-fit:contain;
		object-position:left center;
		max-width:inherit;
		width:100%;
		height:100%;
	}
	.drop_menu #switch~label {
		width: 50px;
		height: 60px;
		padding: 6px;
	}
	.drop_menu #switch~label span ,
	.drop_menu #switch~label span::before,
	.drop_menu #switch~label span::after {
		width: 30px;
	}
	.drop_menu #switch~label span::before {
		top: -8px;
	}
	.drop_menu #switch~label span::after {
		top: 8px;
	}
	.drop_menu #switch:checked~label {
		right: calc(100% - 60px);
	}
	.drop_menu #NavWrap {
		right: calc(-100% + 60px);
		width: calc(100% - 60px);
	}
	header .gtranslate_wrapper{
		/* height: 33px; */
		/* width: 99px; */
		inset: 1em 4em auto auto;
	}
	header .gt_float_switcher{
		font-size: 1.125rem;
	}
	header .gt_float_switcher .gt-selected .gt-current-lang{
		padding: 4px 2px;
	}
	header .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code{
		font-size: 1rem;
	}
	header .gt_float_switcher img{
		width: 26px;
		margin: 0;
	}

}
/* page_link
-------------------------------------------------------------------*/
.page_link{
	position: absolute;
	height: 0;
	z-index: -10;
	display: block;
	margin-top: -120px;
	padding-top: 120px;
	cursor: auto;
}
@media screen and (max-width:767px) {
	.page_link{
		margin-top: -80px;
		padding-top: 80px;
	}
}
/* fixed_menu
-------------------------------------------------------------------*/
.sp_fixed_menu{
	display:none;
}
@media screen and (max-width:767px) {
	.sp_fixed_menu{
		position:fixed;
		bottom:0;
		left:0;
		right:0;
		display:flex;
		justify-content:space-between;
		align-items:stretch;
		z-index:100;
		background-color: #004ea2;
		color: #fff;
		width: 100%;
		height: 60px;
	}
	.sp_fixed_menu > *{
		width:100%;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
		padding:0.35em 0.25em;
		font-size: 4.5vw;
		text-align: left;
		text-decoration: none;
	}
	.sp_fixed_menu > *:hover{
		text-decoration:none;
	}
	.sp_fixed_menu a p{
		margin-left: 40px;
		margin-bottom: 0;
	}
	.sp_fixed_menu a::before{
		position:absolute;
		content:"";
		width: 22px;
		height: 22px;
		background-image: url(../img/common/head_icon6_wh.png);
		background-size:contain;
		top: 0;
		bottom: 0;
		left: 56px;
		right: auto;
		margin:auto;
	}
}
/* contents
-------------------------------------------------------------------*/
.opening-animation {
	position: fixed;
	z-index: 2000;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 1;
	overflow: auto;
	overscroll-behavior: contain;
  }
  .opening-animation.is-actived,
  .opening-animation.is-actived::before {
	display: none;
  }
  .opening-animation.is-active {
	animation: opening-animation_bg 1s 3s forwards;
  }
  .opening-animation::before {
	position: fixed;
	content: "";
	width: 100vw;
	height: 100vh;
	background: #e1e1e2;
  }
  .opening-animation::-webkit-scrollbar {
	height: 0;
	width: 0;
  }
  .opening-animation .opening-animation_inner {
	min-height: calc(100% + 1px);
	width: 100%;
  }
  .opening-animation .opening-animation_logo {
	position: sticky;
	z-index: 2000;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
  }
  .opening-animation.is-active .opening-animation_logo {
	opacity: 1;
	animation: opening-animation 2s forwards;
  }
  .opening-animation svg {
	fill: #fff;
	width: 25vw;
  }
  @media screen and (max-width:767px) {
	.opening-animation svg {
	  width: 70vw;
	} 
  }
/* footer
-------------------------------------------------------------------*/
#top_link{
	position: fixed;
	z-index: 980;
	bottom: 46px;
	right: 2%;
}
#top_link a{
	text-decoration: none;
	transition: opacity 0.3s;
}
#top_link em{
	position: absolute;
	font-weight: 600;
	margin: auto;
	height: fit-content;
	letter-spacing: -0.5px;
	inset: 0 auto 0 -5em;
	filter: drop-shadow(2px 2px 4px rgb(255 255 255 / 80%));
}
#top_link span{
	z-index: 500;
	background: #ffffff;
	border: 1px solid;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	filter: drop-shadow(2px 2px 4px rgb(255 255 255 / 20%));
}
@media (any-hover: hover) {
	#top_link a:hover{
		opacity: .7;
		color: unset;
	}
}
footer a{
	text-decoration:none !important;
	display: block;
	transition: opacity 0.3s;
	color: #282828 !important;
}
footer .foot_inner {
	border-top: 1px solid #b3b3b3;
	padding-block: 6em 2em;
	display: flex;
	justify-content: space-between;
	font-weight: 500;
}
footer .foot_main{
	width: 45%;
}
footer .foot_main .foot_logo{
	margin-bottom: 2em;
	transition: opacity 0.3s;
}
footer .foot_main .foot_address{
	line-height: 2;
	margin-bottom: 3em;
	word-break: auto-phrase;
}
footer .foot_main .foot_link{
	display: flex;
	font-size: 0.875rem;
	margin-bottom: 1em;
}
footer .foot_main .foot_link a + a{
	padding-left: 3em;
	margin-left: 3em;
	border-left: 1px solid;
}
footer .foot_sub{
	width: 50%;
}
footer .foot_sub .link_area{
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 3em;
	padding: 0;
}
footer .foot_sub .link_area li{
	margin: 0;
}
footer .foot_sub .link_area a{
	margin-bottom: 1em;
}
footer a span{
	position: relative;
	z-index: 0;
}
footer a span::after{
	position: absolute;
	content: "";
	display:inline-block;
	inset: auto 0 -2px;
	width: 100%;
	height: 1px;
	background: #005ab7;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
}
footer .foot_sub .link_area .link_sub{
	font-size: 0.875rem;
	font-weight: 400;
}
@media (any-hover: hover) {
	footer .foot_main .foot_logo:hover{
		opacity: 0.7;
	}
	footer  a:hover span::after{
	    transform: scale(1, 1);
	}
}
footer .foot_design{
	position: relative;
	z-index: 0;
	background: url(../img/common/bg_footer.jpg) no-repeat;
	background-position: top center;
	min-height: 47.5em;
	background-size: cover;
}
footer .foot_design .foot_design_text{
	position: absolute;
	z-index: 0;
	margin: auto;
	padding-inline: 3em;
	inset: 17% 0 auto;
}
footer .foot_design .foot_design_txt{
	position: absolute;
	z-index: 0;
	margin: auto;
	padding-inline: 0em;
	inset: 16% 0 auto;
	font-weight: 600;
	font-size: min(5vw , 4em);
}
footer .foot_design .foot_design_txt span{
	color: #005ab7;
}
@media screen and (max-width: 1600px) {
	footer .foot_design{
		min-height: 42em;
	}
}
@media screen and (max-width: 767px){
	#top_link{
		bottom: 1em;
	}
	#top_link em{
		display: none;
	}
	#top_link span{
		width: 50px;
		height: 50px;
		font-size: 1.25em;
	}
	footer .foot_inner {
		padding-block: 4em;
	}
	footer .foot_main{
		width: 100%;
	}
	footer .foot_main .foot_logo{
		margin-bottom: 1em;
		width: 179px;
	}
	footer .foot_main .foot_link{
		font-size: 1rem;
	}
	footer .foot_main .foot_link a + a{
		padding-left: 1em;
		margin-left: 1em;
	}
	footer .foot_sub{
		display: none;
	}
	footer .foot_design{
		min-height: 20em;
	}
	footer .foot_design .foot_design_text{
		padding-inline: 1.5em;
	}
	footer .foot_design .foot_design_txt{
		inset: 18% 0 auto;
		font-size: min(5vw , 4em);
	}
}



