@charset "utf-8";

/*====================================================================================

		basic layout

====================================================================================*/

body {
	color: var(--base_black);
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 500;
	font-size: 15px;
	font-feature-settings: "palt";
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body * {
	box-sizing: border-box;
}

.en {
	font-family: "Lato", serif;
}

.serif {
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	image-rendering: -webkit-optimize-contrast;		/* for chrome */
	transition: all 0.3s;
}

a {
	color: var(--base_black);
	border: none;
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	/*filter: brightness(110%);*/
}

a.pc_not_tel {
	pointer-events: none;
	cursor: default; 
}

em {
	font-style: normal;
	font-weight: bold;
}

.pc_none {
	display: none;
}

.sp_none {
	display: inline;
}

img.sp {
	display: none;
}


@media screen and (max-width: 768px){
	.sp_none {
		display: none;
	}
	
	.pc_none {
		display: inline;
	}
	
	img {
		max-width: 100%;
		width: auto;
	}
	
	img.pc {
		display: none;
	}
	
	img.sp {
		display: inline;
	}
	
	a.pc_not_tel {
		pointer-events: auto;
		cursor: pointer;
	}
}



/*------------------ clearfix layout ---------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*
*:after {
	content: "";
	display:block;
	clear:both;
}
*/



/*------------------ fadein layout ---------------------*/
.fadein {
	opacity : 0;
	transform: translateY(80px);
	transition: all 1s;
}



/*------------------ set variable ---------------------*/
:root {
	--base_blue: #006C7B;
	--base_black: #111;
	--light_blue: #ECF0F3;
}

/*
hoge {
	color: var(--color_blue);
}
*/



/*------------------ accordion icon ---------------------*/

.trigger::before,
.trigger::after {
	content: "";
	width: 22px;
	height: 2px;
	background-color: #48BAC9;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.trigger::after {
	transform: translateY(-50%) rotate(90deg);
}

.trigger.is-active::before {
	transform: translateY(-50%) rotate(180deg);
}

.trigger.is-active::after {
	transform: translateY(-50%) rotate(360deg);
}

.trigger:hover {
	color: var(--base_blue);
	cursor: pointer;
}


@media screen and (max-width: 768px){
	.trigger::before,
	.trigger::after {
		content: "";
		width: 20px;
		height: 2px;
		top: 2vh;
		transform: translateY(0);
	}
	
	.trigger::after {
		transform: translateY(0) rotate(90deg);
	}
	
	.trigger.is-active::before {
		transform: translateY(0) rotate(180deg);
	}
	
	.trigger.is-active::after {
		transform: translateY(0) rotate(360deg);
	}
}





/*====================================================================================

		header layout

====================================================================================*/

header {
	position: relative;
}

header .wrapper {
	width: 100%;
	height: 90px;
	margin: 0 auto;
	padding: 20px 18px 0 35px;
	/*background-color: #fff;*/
	background-color: rgba(250,250,242,0.9);
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 min(30px, 3vw);
	position: fixed;
	top: 0;
	z-index: 1000;
}

header .logo {
	display: flex;
	flex-flow: column wrap;
	justify-content: flex-start;
	gap: 5px 0;
	flex-shrink: 0;
}

header .logo h1 a {
	display: flex;
	align-items: center;
	gap: 0 12px;
}

header .logo h1 a span {
	padding: 5px 10px 6px;
	border: solid 1px var(--base_blue);
	border-radius: 4px;
	display: inline-block;
	color: var(--base_blue);
	font-size: min(12px, 1.2vw);
	font-weight: 700;
	line-height: 1.0;
}

header .logo a:hover {
	opacity: 0.8;
}

header .logo p {
	width: 167px;
	height: 18.5px;
}

header .logo p a {
	height: 18.5px;
	display: block;
}


@media screen and (max-width: 768px){
	header .wrapper {
		height: 75px;
		padding: 0;
		justify-content: stretch;
		align-items: center;
		gap: 0 3vw;
	}
	
	header .logo {
		width: calc(100% - 145px);
		padding: 0 0 0 20px;
		display: flex;
		flex-flow: column wrap;
		justify-content: flex-start;
		gap: 1px 0;
		flex-shrink: 1;
	}
	
	header .logo h1 a {
		flex-flow: column wrap;
		align-items: flex-start;
		gap: 0;
	}
	
	header .logo h1 a img {
		width: 80%;
	}
	
	header .logo h1 a span {
		margin-left: 8vw;
		padding: 3px 8px 3px;
		font-size: 2.5vw;
	}
	
	header .logo a:hover {
		opacity: 1;
	}
	
	header .logo p {
		width: 60%;
		max-width: 167px;
		max-height: 17px;
	}
	
	header .logo p a {
		max-height: 17px;
		display: inline-block;
	}
}



/*===============================================================

		header nav layout

===============================================================*/

header .drawer_button {
	display: none;
}

header .nav_sp {
	display: none;
}

header .nav_pc nav {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px min(60px, 4vw);
}

header .nav_pc nav ul {
	display: flex;
	justify-content: flex-end;
	gap: 0 min(30px, 2vw);
	line-height: 1.4;
}

header .nav_pc nav ul li {
	text-align: center;
}

header .nav_pc nav ul li a {
	display: block;
	position: relative;
	font-size: min(14px, 1.4vw);
	font-weight: 700;
}

header .nav_pc nav ul li a::before {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--base_blue);
	position: absolute;
	left: 0;
	bottom: -5px;
	margin: auto;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}

header .nav_pc nav ul li a:hover::before {
	transform: scale(1, 1);
}

header .nav_pc nav ul li a span {
	display: block;
	color: var(--base_blue);
}


header nav .nav_btn {
	display: flex;
	justify-content: flex-end;
	gap: 0 8px;
	line-height: 1.0;
}

header nav .nav_btn a {
	width: 120px;
	height: 46px;
	background: linear-gradient(45deg, #006C7B 0%,#0094A8 80%);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #fff;
	font-size: min(14px, 1.4vw);
	font-weight: 700;
	transition: all 0.3s;
}
header nav .nav_btn a:first-of-type {
	width: 146px;
	background: rgba(250,250,242,0.9);
    border: 1px solid var(--base_blue);
	color: var(--base_blue);
	font-size: min(13px, 1.3vw);
}
header nav .nav_btn a:first-of-type br{
    display: none;
}

header nav .nav_btn a:hover {
	opacity: 0.8;
}


@media screen and (max-width: 1100px){
	header .nav_pc nav ul {
		gap: 0 min(20px, 1.4vw);
	}
	
	header .nav_pc nav ul li a {
		font-size: min(14px, 1.3vw);
	}
	
	header .nav_pc nav .nav_btn a {
		width: auto;
		padding: 0 1em;
		font-size: min(14px, 1.3vw);
	}
    header nav .nav_btn a:first-of-type {
        width: auto;
        padding: 0 0.5em;
        text-align: center;
    }
    header nav .nav_btn a:first-of-type br{
        display: block;
    }

}


@media screen and (max-width: 768px){
	header .nav_pc {
		display: none;
	}
	
	header .nav_sp {
		display: block;
	}
    
    /* nav_btn */
    header .nav_sp .nav_btn{
        padding: 0 60px 0 0;
	}
	
	/* .drawer_button */
	header .drawer_button {
		width: 50px;
		height: 50px;
		padding: 0;
		display: block;
		background: #F5F5F5;
		border: none;
		border-radius: 6px;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		right: 5px;
		top: 12.5px;
		z-index: 1001;
		text-align: center;
		outline: none;
	}
	
	header .drawer_button.active {
		background: #F5F5F5;
	}
	
	header .drawer_button.active .drawer_close {
		display: block;
	}
	
	
	/* .drawer_bar */
	header .drawer_bar {
		display: block;
		width: 25px;
		height: 2px;
		margin: 6px auto;
		background: #111;
		transition: all 0.2s;
		transform-origin: 50% 50%;
		position: relative;
	}
	
	header .drawer_button.active .drawer_bar {
		width: 25px;
		background: var(--base_blue);
	}
	
	header .drawer_button.active .drawer_bar1 {
		top: 8px;
		transform: rotate(45deg);
	}
	
	header .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}
	
	header .drawer_button.active .drawer_bar3 {
		top: -8px;
		transform: rotate(-45deg);
	}
	
	
	/* .drawer_nav_wrapper */
	header .drawer_nav_wrapper {
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		
		box-sizing: border-box;
		background-color: rgba(250,250,242,0.9);
		display: block;
		transform: none;
		
		transition: opacity 0.2s ease-in-out;
		/*transform: translateX(110%);*/
		opacity: 0;
		position: fixed;
		top: 75px;
		right: 0;
		z-index: 1000;
		pointer-events: none;
		overflow-x: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	
	header .drawer_nav_wrapper.open {
		height: calc(100% - 60px);
		opacity: 1;
		pointer-events: auto;
	}
	
	header ul {
		transition: all 0.2s;
		transform: translateX(110%);
	}
	
	header .drawer_nav_wrapper.open ul {
		transform: translate(0);
	}
	
	
	/* ul.drawer_nav */
	header ul.drawer_nav {
		width: 100%;
		margin: 0 0 0 auto;
		padding: 3vh 8vw;
		background-color: transparent;
		display: flex;
		flex-wrap: wrap;
		gap: 4vh 0;
	}
	
	header ul.drawer_nav li {
		width: 100%;
		line-height: 1.0;
	}
	
	header ul.drawer_nav li dl dt {
		margin: 0 0 2vh;
		font-size: 6vw;
		font-weight: 700;
	}
	
	header ul.drawer_nav li dl dd:not(:last-child) {
		margin: 0 0 2vh;
	}
	
	header ul.drawer_nav li dl dd a {
		padding: 0 0 0 20px;
		display: block;
		position: relative;
		font-size: 3.4vw;
		font-weight: 700;
	}
	
	header ul.drawer_nav li dl dd a::after {
		content: "";
		width: 14px;
		height: 14px;
		background: url("../img/icon_arrow01.svg") left top / 100% auto no-repeat;
		position: absolute;
		left: 0;
		top: calc(50% - 7px);
	}
	
	header ul.drawer_nav li.privacy a {
		display: block;
		font-size: 3.0vw;
		font-weight: 500;
	}
	
	header ul.drawer_nav li.entry a {
		padding: 4vh 5vw;
		background: url("../img/nav_sp_bg02.svg") right 8% top 50% / 4vw auto no-repeat,
					url("../img/nav_sp_bg01.png") right -22% top / auto 100% no-repeat #fff;
		border-radius: 14px;
		box-shadow: 0 4px 18px rgba(0,0,0,0.25);
		display: block;
		color: var(--base_blue);
		font-size: 3.4vw;
		font-weight: 700;
		line-height: 1.2;
	}
	
	header ul.drawer_nav li.entry a span {
		display: block;
		font-size: 8vw;
	}
	
	
	
	header .nav_sp .nav_btn a {
		width: 70px;
		height: 50px;
		background: linear-gradient(45deg, #006C7B 0%,#0094A8 80%);
		border-radius: 6px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		color: #fff;
		font-size: 3.3vw;
		font-weight: 700;
		line-height: 1.0;
	}
}





/*====================================================================================

		#contents layout

====================================================================================*/

#contents {
	margin: 90px 0 0;
}

#contents section .inner,
#contents div .inner {
	max-width: 1240px;
	margin-inline: auto;
	padding: 0 20px;
	position: relative;
}

#contents h2 {
	margin: 0 0 40px;
	color: var(--base_blue);
	font-size: min(16px, 1.6vw);
	font-weight: 700;
	line-height: 1.0;
}

#contents h2 span {
	margin: 0 0 10px;
	display: block;
	color: var(--base_black);
	font-size: min(80px, 8vw);
	font-weight: 700;
}


@media screen and (max-width: 768px){
	#contents {
		margin: 75px 0 0;
	}
	
	#contents.open {
		filter: blur(3px);
		overflow: hidden;
	}
	
	#contents section .inner,
	#contents div .inner {
		max-width: inherit;
		padding: 0 5vw;
	}
	
	#contents h2 {
		margin: 0 0 4vh;
		font-size: 3.8vw;
	}
	
	#contents h2 span {
		margin: 0 0 5px;
		font-size: 12vw;
	}
}



/*===============================================================

		.main_img layout

===============================================================*/

#contents .main_img {
	width: 100%;
	height: calc(20vh - 90px);
}

#contents .main_img .wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left:0;
	top: 0;
}

#contents .main_img .inner {
	width: 100%;
	max-width: inherit;
	height: 100%;
	padding: 0;
	background: url("../img/main_bg.png") center top / 100% auto no-repeat;
	display: block;
	position: fixed;
	top: 0;
}


@media screen and (max-width: 768px){
	#contents .main_img {
		height: 20vh;
	}
	
	#contents .main_img .inner {
		background: url("../img/sp/main_bg.png") center top / 100% auto no-repeat;
	}
}



/*===============================================================

		#contents .detail layout

===============================================================*/

#contents .detail {
	position: relative;
	z-index: 2;
}

#contents .detail .heading {
	width: 500px;
	padding: 40px 0 40px 30px;
	background-color: #fff;
	border-radius: 0 50px 0 0;
	position: relative;
	z-index: 1;
}

#contents .detail .heading::before {
	content: "";
	position: absolute;
	top: 0;
	left: -9999px;
	bottom: 0;
	right: 0;
	background-color: #fff;
	border-radius: 0 50px 0 0;
	z-index: -1;
}

#contents .detail .heading .corner {
	width: 50px;
	height: 50px;
	display: block;
	position: absolute;
	right: 0px;
	bottom: 0;
	z-index: 1;
	transform: translateX(100%);
}

#contents .detail .heading .corner::before {
	width: 200%;
	height: 200%;
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
	
	content: '';
	background: transparent;
	border-radius: 50%;
	box-shadow: -50px 50px 0 0 white;
	transform: translate(0, -50%);
}

#contents .detail .inner h2 {
	margin: 0;
}

#contents .detail .inner h2 span {
	font-size: min(60px, 6vw);
}


#contents .detail .wrapper {
	padding: 0 0 40px;
	background-color: #fff;
	border-radius: 0 50px 0 0;
	position: relative;
	z-index: 1;
}


@media screen and (max-width: 768px){
	#contents .detail .inner {
		padding: 0 8vw;
	}
	
	#contents .detail .heading {
		width: 95%;
		padding: 4vh 0 1vh;
		background-color: #fff;
		border-radius: 0 20px 0 0;
		position: relative;
		z-index: 1;
	}
	
	#contents .detail .heading::before {
		border-radius: 0 20px 0 0;
	}
	
	#contents .detail .heading .corner {
		width: 20px;
		height: 20px;
	}
	
	#contents .detail .heading .corner::before {
		box-shadow: -20px 20px 0 0 white;
	}
	
	#contents .detail .inner h2 span {
		font-size: 10vw;
	}
	
	
	#contents .detail .wrapper {
		padding: 0 0 40px;
		border-radius: 0;
	}
}




/*====================================================================================

		link effect, .circle .arrow layout

====================================================================================*/

.link {
	font-size: min(16px, 1.6vw);
}

.link a {
	display: flex;
	align-items: center;
	gap: 0 15px;
}

.link a:hover {
	color: var(--base_blue);
}


.circle {
	width: 30px;
	height: 30px;
	background-color: var(--base_black);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.circle .arrow {
	width: 12px;
	height: 8px;
	color: #fff;
}

a:hover .circle {
	transform: translateX(5px);
}


.circle_02 {
	width: 30px;
	height: 30px;
	background-color: #fff;
	border: solid 1px #C2DCDF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.circle_02 .arrow_02 {
	width: 12px;
	height: 8px;
	color: var(--base_blue);
}


.circle_02 {
	width: 30px;
	height: 30px;
	background-color: #fff;
	border: solid 1px #C2DCDF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}


@media screen and (max-width: 768px){
	.link {
		font-size: 3.8vw;
	}
	
	.link a {
		gap: 0 10px;
	}
	
	.link a:hover {
		color: var(--base_black);
	}
	
	.circle {
		width: 22px;
		height: 22px;
	}
	
	.circle .arrow {
		width: 9px;
		height: 6px;
	}
	
	a:hover .circle {
		transform: translateX(0);
	}
}



/*===============================================================

		#contents .btn_01 layout

===============================================================*/

#contents .btn_01 {
	width: 260px;
	margin-inline: auto;
	line-height: 1.0;
}

#contents .btn_01 a {
	padding: 12px 12px 12px 25px;
	background: #fff;
	border: solid 1px var(--base_black);
	border-radius: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--base_black);
	font-size: 16px;
	font-weight: 700;
}

#contents .btn_01 a:hover {
	opacity: 0.8;
}

#contents .btn_01 a .circle {
	width: 38px;
	height: 38px;
}


@media screen and (max-width: 768px){
	#contents .btn_01 {
		width: 90%;
		margin-inline: auto;
		line-height: 1.0;
	}
	
	#contents .btn_01 a {
		padding: 10px 10px 10px 20px;
		font-size: 3.8vw;
	}
	
	#contents .btn_01 a:hover {
		opacity: 1;
	}
	
	#contents .btn_01 a .circle {
		width: 38px;
		height: 38px;
	}
	
	#contents .btn_01 a .circle .arrow {
		width: 12px;
		height: 8px;
	}
}



/*===============================================================

		#contents .info layout

===============================================================*/

#contents .info {
	padding: 210px 0 160px;
	background-color: #fff;
	overflow: hidden;
}

#contents .info .inner {
	max-width: 1120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

#contents .info .inner::after {
	content: "";
	width: 160px;
	height: 149px;
	background: url("../../img/recruit/bg04.png") left bottom / 100% auto no-repeat;
	border-radius: 12px;
	position: absolute;
	right: -58px;
	top: -100px;
	z-index: 1;
}

#contents .info .inner .box {
	width: 39.352%;
	max-width: 425px;
}

#contents .info .inner .box h3 {
	margin: 0 0 30px;
}

#contents .info .inner .box ul li {
	width: 324px;
	margin: 0 0 10px;
}

#contents .info .inner .box ul li .btn_01 {
	width: 100%;
}


#contents .info .inner p.img {
	width: 52.917%;
	max-width: 571.5px;
	position: relative;
	z-index: 2;
}

#contents .info .inner p.img img {
	border-radius: 12px;
}


@media screen and (max-width: 768px){
	#contents .info {
		padding: 14vh 0 8vh;
	}
	
	#contents .info .inner {
		max-width: inherit;
		padding: 0 8vw;
		flex-flow: row wrap;
		gap: 5vw 0;
	}
	
	#contents .info .inner::after {
		width: 20vw;
		height: 18.7vw;
		right: -9px;
		top: -13vw;
	}
	
	#contents .info .inner .box {
		width: 100%;
		max-width: inherit;
		order: 1;
	}
	
	#contents .info .inner .box ul li {
		width: auto;
	}
	
	#contents .info .inner p.img {
		width: 100%;
		max-width: inherit;
		order: 0;
	}
}



/*===============================================================

		#contents .conclusion layout

===============================================================*/

#contents .conclusion {
	padding: 40px 0 280px;
	background: url("../img/conclusion_bg.png") center bottom / cover no-repeat #fff;
}

#contents .conclusion .inner p.catch {
	margin: 0 0 60px;
	text-align: center;
	color: var(--base_black);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.5;
}

#contents .conclusion .inner p.catch em {
	color: var(--base_blue);
}

#contents .conclusion .inner .btn_entry {
	width: 660px;
	margin-inline: auto;
	border-radius: 30px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.25);
	overflow: hidden;
}

#contents .conclusion .inner .btn_entry a {
	height: 186px;
	padding: 0 70px;
	background: url("../img/btn_entry_bg01.png") right -12% center / auto 120% no-repeat #fff;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--base_blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.5s;
}

#contents .conclusion .inner .btn_entry a:hover {
	color: #fff;
}

#contents .conclusion .inner .btn_entry a::before {
	content: "";
	width: 110%;
	height: 100%;
	/*background: url("../img/btn_entry_bg02.png") right 0% center / auto 120% no-repeat #0094A8;*/
	background: url("../img/btn_entry_bg02.png") right 0% center / auto 120% no-repeat;
	position: absolute;
	left: -110%;
	top: 0;
	z-index: 1;
	transition: all 0.5s;
}

#contents .conclusion .inner .btn_entry a:hover::before {
	left: 0%;
}

#contents .conclusion .inner .btn_entry a .txt {
	position: relative;
	z-index: 3;
}

#contents .conclusion .inner .btn_entry a .txt span {
	display: block;
	font-size: 60px;
}

#contents .conclusion .inner .btn_entry a .icon {
	position: relative;
	z-index: 3;
}

#contents .conclusion .inner .btn_entry a .icon svg path {
	transition: all 0.4s;
}

#contents .conclusion .inner .btn_entry a:hover .icon svg path {
	stroke: #fff;
}


@media screen and (min-width: 1600px){
	#contents .conclusion {
		background: url("../img/conclusion_bg.png") center top / cover no-repeat #fff;
	}
}


@media screen and (max-width: 768px){
	#contents .conclusion {
		padding: 2vh 0 30vh;
		background: url("../../img/recruit/sp/bg05.png") center bottom / 100% auto no-repeat #fff;
	}
	
	#contents .conclusion .inner p.catch {
		margin: 0 0 6vh;
		font-size: 6.5vw;
	}
	
	#contents .conclusion .inner .btn_entry {
		width: auto;
		margin-inline: 0;
		border-radius: 14px;
	}
	
	#contents .conclusion .inner .btn_entry a {
		height: auto;
		padding: 3vh 8vw;
		background: url("../img/nav_sp_bg02.svg") right 10% top 50% / 4vw auto no-repeat,
					url("../img/nav_sp_bg01.png") right -12% top / auto 100% no-repeat #fff;
		display: block;
		color: var(--base_blue);
		font-size: 3.4vw;
		font-weight: 700;
		line-height: 1.2;
	}
	
	#contents .conclusion .inner .btn_entry a:hover {
		color: var(--base_blue);
	}
	
	#contents .conclusion .inner .btn_entry a::before {
		display: none;
	}
	
	#contents .conclusion .inner .btn_entry a .txt {
		position: relative;
		z-index: 3;
	}
	
	#contents .conclusion .inner .btn_entry a .txt span {
		font-size: 12vw;
	}
	
	#contents .conclusion .inner .btn_entry a .icon {
		display: none;
	}
}





/*====================================================================================

		footer layout

====================================================================================*/

footer {
	background: #F5F5F5;
	position: relative;
}


@media screen and (max-width: 768px){
	footer {
		background: var(--light_blue);
	}
	
	footer.open {
		filter: blur(3px);
		overflow: hidden;
	}
}



/*===============================================================

		footer .footer_contents layout

===============================================================*/

footer .footer_contents {
	max-width: 1320px;
	margin-inline: auto;
	padding: 80px 20px 40px;
}

footer .footer_contents .line_01 {
	margin: 0 0 45px;
	display: flex;
	justify-content: space-between;
	gap: 0 min(60px, 6.0vw);
}

footer .footer_contents .line_02 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

footer .footer_contents .f_main {
	flex-shrink: 0;
}

footer .footer_contents .f_logo a {
	display: flex;
	align-items: flex-start;
	gap: 0 12px;
}

footer .footer_contents .f_logo a span {
	margin: 17px 0 0;
	padding: 5px 10px 6px;
	border: solid 1px var(--base_blue);
	border-radius: 4px;
	display: inline-block;
	color: var(--base_blue);
	font-size: min(12px, 1.2vw);
	font-weight: 700;
	line-height: 1.0;
}

footer .footer_contents .f_logo a:hover {
	opacity: 0.8;
}

footer .footer_contents .f_btn {
	width: 100%;
	max-width: 350px;
	margin: 30px 0 0;
}

footer .footer_contents .f_btn a {
	width: 100%;
	height: 74px;
	padding: 0 30px;
	background: linear-gradient(to bottom, #008294 0%,#006c7b 60%);
	border: solid 1px var(--base_blue);
	border-radius: 6px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

footer .footer_contents .f_btn a:hover {
	opacity: 0.8;
}

footer .footer_contents .f_btn a .box {
	display: flex;
	align-items: center;
	gap: 0 8px;
}

footer .footer_contents .f_btn a .circle_02 {
	width: 38px;
	height: 38px;
}

footer .footer_contents .f_btn a:hover .circle_02 {
	transform: translateX(5px);
}

footer .footer_contents .f_btn a img {
	width: 24px;
}


footer .footer_contents ul.f_nav {
	/*display: grid;
	grid-template-columns: repeat(5, 1fr);*/
	display: flex;
	flex-flow: row wrap;
	gap: 0 min(30px, 3vw);
	line-height: 1.0;
}

footer .footer_contents ul.f_nav li dl dt {
	margin: 0 0 25px;
	font-size: min(24px, 2.4vw);
	font-weight: 700;
	line-height: 1.0;
}

footer .footer_contents ul.f_nav li dl dd {
	margin: 0 0 15px;
	font-size: min(14px, 1.4vw);
	font-weight: 700;
	line-height: 1.0;
}

footer .footer_contents ul.f_nav li dl dd a {
	display: flex;
	align-items: center;
	gap: 0 5px;
}

footer .footer_contents ul.f_nav li dl dd a:hover {
	color: var(--base_blue);
}

footer .footer_contents ul.f_sub_nav li:first-child {
	margin: 0 0 15px;
}

footer .footer_contents ul.f_sub_nav li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 10px;
	font-size: min(16px, 1.6vw);
	font-weight: 700;
	line-height: 1.0;
}

footer .footer_contents ul.f_sub_nav li a:hover {
	color: var(--base_blue);
}

footer .footer_contents ul.f_sub_nav li:first-child a:hover img {
	transform: translateX(3px);
}

footer .footer_contents ul.f_sub_nav li:last-child a:hover img {
	transform: translateY(-3px);
}


footer .footer_contents p {
	font-size: 13px;
}

footer .footer_contents p a:hover {
	color: var(--base_blue);
}


@media screen and (max-width: 768px){
	footer .footer_contents {
		max-width: inherit;
		margin-inline: 0;
		padding: 7vh 8vw 2vh;
	}
	
	footer .footer_contents .line_01 {
		margin: 0 0 4vh;
		display: block;
	}
	
	footer .footer_contents .line_02 {
		flex-flow: row wrap;
		gap: 4vw 0;
	}
	
	footer .footer_contents .f_main {
		margin: 0 0 5vh;
	}
	
	footer .footer_contents .f_logo {
		width: auto;
		margin: 0 0 4vh;
	}
	
	footer .footer_contents .f_logo a {
		display: flex;
		align-items: flex-start;
		gap: 0 10px;
	}
	
	footer .footer_contents .f_logo a img {
		width: 73%;
	}
	
	footer .footer_contents .f_logo a span {
		margin: 3% 0 0;
		padding: 4px 9px 5px;
		font-size: 2.8vw;
	}
	
	footer .footer_contents .f_logo a:hover {
		opacity: 1;
	}
	
	footer .footer_contents .f_btn {
		width: 100%;
		max-width: inherit;
		margin: 0 0 5vh;
	}
	
	footer .footer_contents .f_btn a {
		width: 100%;
		height: 60px;
		padding: 0 15px;
		font-size: 4vw;
	}
	
	footer .footer_contents .f_btn a:hover {
		opacity: 1;
	}
	
	footer .footer_contents .f_btn a .box {
		display: flex;
		align-items: center;
		gap: 0 15px;
	}
	
	footer .footer_contents .f_btn a .circle_02 {
		width: 9vw;
		height: 9vw;
	}
	
	footer .footer_contents .f_btn a:hover .circle_02 {
		transform: translateX(0);
	}
	
	footer .footer_contents .f_btn a img {
		width: 6vw;
	}
	
	
	footer .footer_contents ul.f_nav {
		margin: 0;
		display: flex;
		flex-flow: row wrap;
		gap: 3vh 0;
		line-height: 1.0;
	}
	
	footer .footer_contents ul.f_nav li {
		width: 100%;
	}
	
	footer .footer_contents ul.f_nav li dl {
		display: flex;
		flex-flow: row wrap;
		gap: 3vw 4vw;
	}
	
	footer .footer_contents ul.f_nav li dl dt {
		width: 100%;
		margin: 0;
		font-size: 6vw;
	}
	
	footer .footer_contents ul.f_nav li dl dd {
		margin: 0;
		font-size: 3.6vw;
	}
	
	footer .footer_contents ul.f_nav li dl dd a:hover {
		color: var(--base_black);
	}
	
	
	footer .footer_contents ul.f_sub_nav {
		width: 100%;
		margin: 0 0 4vw;
		text-align: right;
		order: 0;
	}
	
	footer .footer_contents ul.f_sub_nav li:first-child {
		margin: 0 0 3vw;
	}
	
	footer .footer_contents ul.f_sub_nav li a {
		justify-content: flex-end;
		font-size: 4vw;
	}
	
	footer .footer_contents ul.f_sub_nav li a:hover {
		color: var(--base_black);
	}
	
	footer .footer_contents ul.f_sub_nav li:first-child a:hover img {
		transform: translateX(0);
	}
	
	footer .footer_contents ul.f_sub_nav li:last-child a:hover img {
		transform: translateY(0);
	}
	
	footer .footer_contents .line_02 p {
		width: 100%;
		margin: 0 0 4vw;
		font-size: 3.4vw;
		order: 1;
	}
	
	footer .footer_contents .line_02 p a:hover {
		color: var(--base_black);
	}
}



/*===============================================================

		footer .ex_link layout

===============================================================*/

footer .ex_link {
	padding: 20px;
	background-color: #fff;
}

footer .ex_link .inner {
	max-width: 1240px;
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .ex_link .inner ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: 10px 40px;
}

footer .ex_link .inner ul li:first-child {
	width: 364px;
}

footer .ex_link .inner ul li:last-child {
	width: 131px;
}

footer .ex_link .inner p.copy {
	margin-right: 40px;
	color: #999;
	font-size: 12px;
}


@media screen and (max-width: 768px){
	footer .ex_link {
		padding: 8vw;
	}
	
	footer .ex_link .inner {
		max-width: inherit;
		margin-inline: 0;
		display: block;
	}
	
	footer .ex_link .inner ul {
		margin: 0 0 8vh;
		gap: 16px;
	}
	
	footer .ex_link .inner ul li:first-child {
		width: 100%;
		max-width: 364px;
	}
	
	footer .ex_link .inner ul li:last-child {
		width: 40%;
		max-width: 131px;
	}
	
	footer .ex_link .inner p.copy {
		font-size: 3.0vw;
	}
}
