/* CSS Document */

body {
	min-width: 1080px;
	max-width: 1920px;
	margin: auto;
}
.inner {
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}


.more a {
	text-align: center;
	background: #fff;
	border: 1px solid #999;
	width: 210px;
	border-radius: 40px;
	display: inline-block;
	padding: 8px 10px 10px;
	box-sizing: border-box;
	position: relative;
}
.more a::after {
	content: url("../img/arrow.svg");
	width: 15px;
	line-height: 1;
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	right: 35px;
	transition: all .4s;
}
.more a:hover {
	color: #fff;
	background: #004973;
	border-color: #004973;
	opacity: 1;
}
.more a:hover::after {
	content: url("../img/arrow_wht.svg");
	right: 25px;
}

.contactBtn a {
	text-align: center;
	color: #fff;
	background: #004973;
	width: 210px;
	border-radius: 40px;
	display: inline-block;
	padding: 8px 10px 10px;
	box-sizing: border-box;
	position: relative;
}
.contactBtn.wht a {
	color: #333;
	background: #fff;
}
.contactBtn a::after {
	content: url("../img/arrow_wht.svg");
	width: 15px;
	line-height: 1;
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	right: 35px;
	transition: all .4s;
}
.contactBtn.wht a::after {
	content: url("../img/arrow.svg");
}
.contactBtn a:hover {
	background: #333;
	opacity: 1;
}
.contactBtn.wht a:hover {
	background: #fff;
	opacity: .8;
}
.contactBtn a:hover::after {
	right: 25px;
}



#header {
  width: 100%;
  max-width: 1920px;
  background: rgba(255,255,255,.95);
  position: fixed;
  z-index: 999;
}
#header .inner {
	display: flex;
	justify-content: space-between;
  align-items: center;
	position: relative;
	padding: 5px 20px;
	max-width: 1340px;
}
#header h1 {
	/*width: 60px;*/
	width: 130px;
	flex-shrink: 0;
}

#header .global {
}
#header .global nav {
	display: flex;
  flex-direction: row-reverse;
	gap: 40px;
	z-index: 999;
	transition: transform 0.3s ease-out;
}
#header .global nav.scrolling {
	/*transform: translateY(-120px);*/ /* スクロール中は少し隠す */
}
#header .global nav ul {
	display: flex;
  align-items: flex-end;
}
#header .global nav ul.nav1 {
	gap: 30px;
}
#header .global nav ul.nav2 {
	font-family: 'Outfit';
	letter-spacing: 1px;
	word-break: keep-all;
	gap: 20px;
}
#header .global nav ul li {
}
#header .global nav ul li.tel {
	width: 180px;
}
#header .global nav ul.nav2 li a {
	position: relative;
	padding: 5px;
}
#header .global nav ul.nav2 li a:hover,
#header .global nav ul.nav2 li.current a{
	color: #004973;
}
#header .global nav ul.nav2 li a::after,
#header .global nav ul.nav2 li.current a::after{
	content: '';
	border-bottom: 4px solid transparent;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
	transition: all .4s;
}
#header .global nav ul.nav2 li a:hover::after,
#header .global nav ul.nav2 li.current a::after{
	border-color: #004973;
  width: 20px;
}


#header nav.popmenu {
	display: none;
	width: 40px;
	position: absolute;
	top: 20px;
	right: 20px;
}
#header nav.popmenu label.menuBtn {
	display: block;
	width: 40px;
	height: 40px;
	position: fixed;
	z-index: 99;
}
#header nav.popmenu label.menuBtn:before {
	content: url("../img/menu.svg");
}
#header nav.popmenu input:checked ~ .menuBtn:before {
	content: url("../img/menu_close.svg");
	z-index: 99;
	position: relative;
}
#header nav.popmenu input:checked ~ .menuBtn {
	color: #fff;
}
#header nav.popmenu label.menuBtn:hover {
	cursor: pointer;
	color: #fff;
}
#header nav.popmenu .menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 0;
	width: 0;
	overflow: hidden;
	transition: all .4s;
	cursor: auto;
	z-index: 9;
	opacity: 0;
	background: rgba(0, 67, 106, 0.98);
}
#header nav.popmenu .menu .menuInner {
	padding: 40px;
}
#header nav.popmenu input {
	display: none;
}
#header nav.popmenu input:checked ~ .menu {
	box-sizing: border-box;
	height: 100vh;
	width: 100vw;
	opacity: 1;
	overflow: scroll;
}
#header nav.popmenu .menu .close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 3em;
	line-height: 1em;
	cursor: pointer;
}
#header nav.popmenu .menu .close:hover {
	color: #666;
}


.breadcrumbs {
	padding: 10px;
}
.breadcrumbs ul {
	font-size: 85%;
	line-height: 1.4em;
	letter-spacing: 0;
}
.breadcrumbs li {
	display: inline;
	word-break: break-all;
}
.breadcrumbs li a {
}
.breadcrumbs li:not(:last-of-type):after{
	content: '>';
	margin: 0 5px; 
}




#main {
  padding: 140px 0 100px;
  overflow: clip;
  position: relative;
  background: linear-gradient(to bottom, transparent 3000px, #f2f2f2 3000px);
  opacity: 0;
  animation: fade 4.4s ease forwards;
}
#main::before {
	content: '';
	width: 4000px;
	height: 4000px;
	background: #f2f2f2;
	border-radius: 100%;
	position: absolute;
	top: 190px;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, 400px);
  filter: blur(40px);
  opacity: 0;
  animation: circleBg 4.4s ease forwards;
}
@keyframes fade {
  to {
    opacity: 1;
  }
}
@keyframes circleBg {
  to {
    transform: translate(-62%, 0);
    filter: blur(0);
    opacity: 1;
  }
}
#main #fv {
}
#main #fv h2 {
	font-size: 120%;
	letter-spacing: 2px;
	display: flex;
	flex-direction: column;
}
#main #fv h2 strong {
	font-family: 'Outfit';
  font-size: 340%;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 10px;
  position: relative;
}
#main #fv h3 {
	font-size: 200%;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 5%;
  text-align: center;
  margin: 40px 0 0;
}






#footer {
	padding: 80px 0;
	box-sizing: border-box;
}
#footer .inner {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	position: relative;
}
#footer nav {
	font-size: 95%;
	font-weight: 500;
	display: flex;
	gap: 80px;
}
#footer nav ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
#footer nav ul li a span {
	font-family: 'Outfit';
	letter-spacing: 1px;
}
#footer nav ul li a:hover {
	color: #004973;
}
#footer .info {
	display: flex;
	gap: 140px;
}
#footer .info address {
	display: flex;
  flex-direction: column;
	gap: 10px;
}
#footer .info address h2 {
	font-size: 160%;
	font-weight: 600;
	display: flex;
	gap: 5px;
}
#footer .info address h2 em {
	font-size: 120%;
	font-weight: 800;
}
#footer .info address p span {
	font-family: 'Outfit';
}
#footer .info address .tel strong,
#footer .info address .fax strong {
	font-weight: 600;
	letter-spacing: 1px;
	margin-left: 5px;
}
#footer .info address .tel strong {
	font-size: 180%;
}
#footer .info address .tel small {
	display: block;
	margin-left: 33px;
	line-height: 1.2em;
}
#footer .info address .fax strong {
	font-size: 130%;
}
#footer .info .contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#footer .info .contact h3 {
	font-size: 110%;
	display: flex;
	flex-direction: column;
}
#footer .info .contact h3 em {
	font-family: 'Outfit';
	font-size: 150%;
  letter-spacing: 3px;
}
#footer .info .contact .contactBtn {
	margin-top: 5px;
}
#footer .inner > small {
	font-family: 'Outfit';
  font-size: 90%;
  letter-spacing: 1.4px;
  display: block;
  position: absolute;
  top: 100%;
  left: 20px;
}



#footer .topBtnBox {
	width: 60px;
	position: absolute;
	bottom: 0;
	right: 0;
}
#footer .topBtnBox #topBtn {
	font-size: 11px;
	text-align: center;
	color: #fff;
	width: 60px;
	height: 60px;
	background: rgba(40, 40, 40, .4);
	mix-blend-mode: multiply;
}
#footer .topBtnBox #topBtn::after {
	content: '';
	width: 5px;
	height: 25px;
	border: solid rgba(255,255,255,.8);
	border-width: 3px 0 0 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%) skewY(45deg);
}
#footer .topBtnBox #topBtn:hover {
	opacity: 0.8;
	cursor: pointer;
}





@media screen and (max-width: 480px) {

	body {
		min-width: initial;
		font-size: 14px; font-size: 1.4rem;
	}
	.inner { width: auto;}
	
	
	
	#header {
		background: none;
    position: relative;
	}
	#header .inner {
		padding: 15px !important;
	}
	#header h1 {
		width: 50px !important;
	}
	#header .global {
		display: none !important;
	}
	#header nav.popmenu {
		display: block;
	}
	#header nav.popmenu .menu .menuInner {
		padding: 80px 30px 20px;
	}
	#header nav.popmenu .menu .menuInner ul.nav2 li {
		border-bottom: 1px solid #ccc;
	}
	#header nav.popmenu .menu .menuInner ul.nav2 li a {
		color: #fff;
		display: block;
    padding: 15px;
	}
	#header nav.popmenu .menu .menuInner ul.nav1 {
		margin: 60px 0 0;
		display: flex;
    flex-direction: column;
		align-items: center;
    gap: 10px;
	}
	#header nav.popmenu .menu .menuInner ul.nav1 .tel {
		width: 200px;
	}
	
	
	
	#main {
    padding: 20px 0 40px;
    background: linear-gradient(to bottom, transparent 1000px, #f2f2f2 1000px);
	}
	#main::before {
    width: 2000px;
    height: 2000px;
    top: 40px;
  }
  #main #fv h2 {
    font-size: 120%;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
  }
	#main #fv h2 strong {
    font-size: 200%;
    letter-spacing: 5px;
  }
  #main #fv h3 {
    font-size: 180%;
  }

  
	#footer {
		padding: 50px 0 10px;
	}
	#footer .inner {
		flex-direction: column;
	}
	#footer nav {
		display: none;
	}
	#footer .info {
		flex-direction: column;
		gap: 20px;
	}
	#footer .info address {
		gap: 5px;
	}
	#footer .info address h2 {
		/*justify-content: center;*/
	}
	#footer .info .contact {
		display: none;
	}
	#footer .inner > small {
		font-size: 80%;
		letter-spacing: 0.4px;
		position: static;
    margin: 20px 0 0;
	}
	
	
	
}


