@charset "utf-8";
/*common
==============================================*/
:root{
	--color-darkgreen: #0C5F6D;
	--text-color-base:	#1C1F24;
	--text-color-yellow:	#E8C900;
	--text-color-lightblack:	#5A5E65;
	--text-color-lightblack2:	#6F6F6F;
	--text-color-red:	#C43434;
}
html {
	height:100%;
	font-family:"Noto Sans JP", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 62.5%;
	color: var(--text-color-base);
	line-height: 1;
    word-break: auto-phrase
}

@media screen and (min-width:360px){
	html {
		font-size: 73.1%;
	}
}


body {
	width: 100%;
	font-size: 1rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
	vertical-align: bottom;
}
h3{
	line-height: 1.5;
}
p {
	font-size: 1.4rem;
	line-height: 1.7;
	margin-bottom:1em;
    color: var(--text-color-lightblack);
}
p.no_margin_bottom {
	margin-bottom:0;
}
strong{
	font-weight:600;
}

a {
	text-decoration: none;
}
a.orange{color:#da7328;transition: all .4s;}
a.orange:hover{text-decoration:underline;transition: all .4s;}

@media screen and (min-width:960px){
	img {
		width: 100%;
	}

	a:hover {
		opacity: .8;
		cursor: pointer;
	}
}

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

}

@media screen and (min-width:960px){
	.frm_w {
		max-width:1200px;
		margin-left:auto;margin-right:auto;
	}
}

/*PC SP画像切り替えcss*/
.switch {
	visibility: hidden;
}

/*Header
==============================================*/

#header {
	width: 100%;
	padding: 2.01% 0;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	height:60px;
}

.container {
    padding-top: 50px !important;
}


#header .logo {
    width: 60px;
    margin-left: 10px;
}

#header_block{
	display:flex;
	justify-content:space-between;
	align-items: center;
	height:100%;
}


@media screen and (min-width:768px){/*tablet*/
	#header {
		padding: 0 3%;
		height:60px;
	}
	#header_block{
		height:60px;
	}
}
@media screen and (min-width:960px){/*PC*/
	#header {
		height:60px;
		padding: 0;
	}
	#header .logo {

	}
	#header_block{
		height:60px;
	}
	#header .header_contact {
		width: 25%;
		max-width:220px;
		padding-right:20px;
		text-align: right;
		font-size: 1.4rem;
	}
	
	#header .header_contact a {
		color: #21646E;
		border: 2px solid #21646E;
		border-radius: 5px;
		padding: 0.1em 1em;
		transition: all .4s;
	}
	#header .header_contact a:hover{
		background-color: #21646E;
		color: #fff;
		transition: all .4s;
	}
}


/*nav*/
.hamburger-overlay {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: var(--text-color-base);
  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: #fff;
}

.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%;
  height: 100vh;
  background-color: var(--text-color-base);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.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:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.7s; }
.nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.8s; }
.nav-overlay.active .nav-overlay__item:nth-child(9) { transition-delay: 0.9s; }
.nav-overlay.active .nav-overlay__item:nth-child(10) { transition-delay: 1.0s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

/*nav END*/
/*header END*/


/*footer
==============================================*/
#footer {
	width: 100%;
	background:var(--text-color-base);
}

#footer .copyright {
	padding: 3% 0 3%;
	text-align: center;
	color:#9a9fa7;
}
.footer_menu{padding:30px 0;}
.footer_menu li{
	text-align:center;
	font-size:1.2rem;
	margin-bottom:1em;
    padding:0 1.5em;
}
.footer_menu li:not(:last-child){
    border-right:1px solid var(--text-color-yellow);
}
.footer_menu a{
	color:var(--text-color-yellow);
}

.copyright small {
	font-size: 1.03rem;
	text-align: center;
}

@media screen and (min-width:768px){
	#footer .copyright {padding:10px 0 20px;}
	.footer_menu li{
		font-size:1.2rem;
	}
	.fixed_contact {
		position: fixed;
		bottom: 0;
		right: 0;
	}
}



/*トップへ戻るボタン*/
#pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: none;
	width:60px;
	height:85px;
	z-index:4;
}

@media screen and (min-width:768px){
	#pagetop {
		right: 3%;
		bottom: 10px;
	}
}

/*スマホ下部固定お問い合わせ*/
#sp_foot_contact {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background:#fff;
	text-align:center;
	padding:5px 0 5px;
	border-top:1px solid #707070;
}
#sp_foot_contact .footer_contact {
	font-size: 6vw;
	margin:0.5em auto;
}

#sp_foot_contact .footer_contact a {
	color: #FB119D;
	border: 2px solid #FB119D;
	border-radius: 5px;
	padding: 0.2em 1.5em;
	transition: var(--gs-animation-sec);
}
#sp_foot_contact .footer_contact a:hover{
	background-color: #FB119D;
	color: #fff;
	transition: var(--gs-animation-sec);
}

@media screen and (min-width:768px){
	#sp_foot_contact {
		display: none;
	}
}



/*デバイス判別*/
@media screen and (max-width:959px){
	.tablet,
	.pc {
		display: none !important;
	}
	
	.sp {
		display: block !important;
	}
}

@media screen and (min-width:768px){
	.sp {
		display: none !important;
	}
	
	.tablet {
		display: block !important;
	}
}

@media screen and (min-width:960px){
	.sp,
	.tablet {
		display: none !important;
	}
	
	.pc {
		display: block !important;
	}
}

/*------------------------------------------------------------
    margin
------------------------------------------------------------*/
.mt-0	{ margin-top: 0;}
.mt-xs	{ margin-top: 20px;}
.mt-md	{ margin-top: 40px;}
.mt-lg	{ margin-top: 80px;}
.mt-xl	{ margin-top: 160px;}
.mr-0	{ margin-right: 0;}
.mr-xs	{ margin-right: 5px;}
.mr-md	{ margin-right: 20px;}
.mr-lg	{ margin-right: 40px;}
.mr-xl	{ margin-right: 80px;}
.mb-0	{ margin-bottom: 0;}
.mb-1em	{ margin-bottom: 1em;}
.mb-xs	{ margin-bottom: 10px;}
.mb-s	{ margin-bottom: 20px;}
.mb-md	{ margin-bottom: 40px;}
.mb-ml	{ margin-bottom: 60px;}
.mb-lg	{ margin-bottom: 80px;}
.mb-xl	{ margin-bottom: 160px;}
.ml-0	{ margin-left: 0;}
.ml-xs	{ margin-left: 10px;}
.ml-md	{ margin-left: 20px;}
.ml-lg	{ margin-left: 40px;}
.ml-xl	{ margin-left: 80px;}

.pt-0	{padding-top:0;}
.pt-xs10	{padding-top:10px;}
.pt-xs	{padding-top:20px;}
.pt-md	{padding-top:40px;}
.pt-xl	{padding-top:80px;}
.pb-0	{padding-bottom:0px;}
.pb-xs10	{padding-bottom:10px;}
.pb-xs	{padding-bottom:20px;}
.pb-md	{padding-bottom:40px;}
.pb-xl	{padding-bottom:80px;}

/*InView*/
.inview-fadein {
  opacity: 0;
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-done {
  opacity: 1;
}

.inview-fadein-up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-up-done {
  opacity: 1;
  transform: translate(0, 0);
}

.inview-fadein-down {
  opacity: 0;
  transform: translate(0, -10%);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-down-done {
  opacity: 1;
  transform: translate(0, 0);
}

.inview-fadein-left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-left-done {
  opacity: 1;
  transform: translate(0, 0);
}

.inview-fadein-right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-right-done {
  opacity: 1;
  transform: translate(0, 0);
}

/*Delay Timer*/
.ani-delay01 {
  transition-delay: 0.1s;
}

.ani-delay02 {
  transition-delay: 0.2s;
}

.ani-delay03 {
  transition-delay: 0.3s;
}

.ani-delay04 {
  transition-delay: 0.4s;
}

.ani-delay05 {
  transition-delay: 0.5s;
}

.ani-delay06 {
  transition-delay: 0.6s;
}

.ani-delay07 {
  transition-delay: 0.7s;
}

.ani-delay08 {
  transition-delay: 0.8s;
}

.ani-delay09 {
  transition-delay: 0.9s;
}

.ani-delay10 {
  transition-delay: 1s;
}

.ani-delay11 {
  transition-delay: 1.1s;
}

.ani-delay12 {
  transition-delay: 1.2s;
}

.ani-delay13 {
  transition-delay: 1.3s;
}

.ani-delay14 {
  transition-delay: 1.4s;
}

.ani-delay15 {
  transition-delay: 1.5s;
}

.ani-delay16 {
  transition-delay: 1.6s;
}

.ani-delay17 {
  transition-delay: 1.7s;
}

.ani-delay18 {
  transition-delay: 1.8s;
}

.ani-delay19 {
  transition-delay: 1.9s;
}

.ani-delay20 {
  transition-delay: 2s;
}