/* web font
*/

:root {
	--main-theme-color1: #06ABDD;
	--main-theme-color2: #EF8509;
	--ft-poppin: "Poppins", sans-serif;
	--main-column: 1200px;
	--sub-column: 1000px;
}

* {
	box-sizing: border-box;
	color: #363636;
	font-family: "Zen Kaku Gothic New", sans-serif;
	list-style: none;
	margin: 0;
	padding: 0;
}

body.open {
	overflow: hidden;
}

a {
	text-decoration: none;
}

img {
	height: auto;
	max-width: 100%;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.pc2 {
	display: block;
}

.sp2 {
	display: none;
}

.bold {
	font-weight: 700;
}

@media screen and (max-width: 968px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.pc2 {
		display: none;
	}

	.sp2 {
		display: block;
	}
}

.container {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	min-height: 100vh;
	overflow-x: clip;
	width: 100%;
}

/* cta link */
.cta-linklist {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	gap: 25px;
}

.cta-linklist li {
	border-radius: 50px;
	height: 56px;
	width: 100%;
	max-width: 216px;
}

.entry-link {
	background: var(--main-theme-color1);
}

.contact-link {
	background: var(--main-theme-color2);
}

.cta-linklist li a {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	height: 100%;
	width: 100%;
}

/* header */
.header {
	background: #fff;
	margin: 0 auto;
	padding: 15px 0;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 92%;
}

.header-left {
	width: 230px;
}

.header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: calc(100% - 300px);
}

.header-nav {
	margin-right: 25px;
	width: 450px;
}

.logo {
	color: var(--main-theme-color1);
	font-size: 30px;
	font-weight: 700;
}

.panel {
	overflow: auto;
	background: #fff;
	display: none;
	height: 90%;
	margin: auto;
	padding: 50px;
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	width: 90%;
	z-index: 999;
}

/* hamberger */
.header-menu {
	border: 1px solid #363636;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	position: relative;
	text-align: center;
	width: 56px;
	z-index: 999999;
}

.header-menu span {
	display: block;
}

.header-menu___trigger {
	position: relative;
	width: 30px;
	height: 23px;
	cursor: pointer;
	z-index: 3;
}

.header-menu___trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #545454;
	border-radius: 4px;
}

.header-menu___trigger,
.header-menu___trigger span {
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}

.header-menu___trigger span:nth-of-type(1) {
	top: 0;
}

.header-menu___trigger span:nth-of-type(2) {
	top: 11px;
}

.header-menu___trigger span:nth-of-type(3) {
	bottom: 0;
}

.header-menu___trigger.active span:nth-of-type(1) {
	top: -8px;
}

.header-menu___trigger.active span:nth-of-type(3) {
	bottom: -10px;
}

.header-menu___trigger span:nth-of-type(1) {
	animation: header-menu__bar01 .75s forwards;
}

@keyframes header-menu__bar01 {
	0% {
		transform: translateY(20px) rotate(45deg);
	}

	50% {
		transform: translateY(20px) rotate(0);
	}

	100% {
		transform: translateY(0) rotate(0);
	}
}

.header-menu___trigger span:nth-of-type(2) {
	transition: all .25s .25s;
	opacity: 1;
}

.header-menu___trigger span:nth-of-type(3) {
	animation: header-menu__bar03 .75s forwards;
}

@keyframes header-menu__bar03 {
	0% {
		transform: translateY(-20px) rotate(-45deg);
	}

	50% {
		transform: translateY(-20px) rotate(0);
	}

	100% {
		transform: translateY(0) rotate(0);
	}
}

.header-menu___trigger.active span:nth-of-type(1) {
	animation: active-header-menu__bar01 .75s forwards;
}

@keyframes active-header-menu__bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}

	50% {
		transform: translateY(20px) rotate(0);
	}

	100% {
		transform: translateY(20px) rotate(45deg);
	}
}

.header-menu___trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.header-menu___trigger.active span:nth-of-type(3) {
	animation: active-header-menu__bar03 .75s forwards;
}

.panel .cta-linklist {
	justify-content: center;
}

@keyframes active-header-menu__bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}

	50% {
		transform: translateY(-20px) rotate(0);
	}

	100% {
		transform: translateY(-20px) rotate(-45deg);
	}
}

@media screen and (max-width: 968px) {
	.header-left {
		width: 180px;
	}

	.header-right {
		width: calc(100% - 200px);
	}

	.header-nav {
		margin-right: 20px;
		width: calc(100% - (56px + 20px));
	}

	.header .cta-linklist {
		gap: 15px;
	}
}

@media screen and (max-width: 768px) {
	.header .cta-linklist li {
		height: 46px;
	}

	.header .cta-linklist li a {
		font-size: 14px;
	}
}

@media screen and (max-width: 568px) {
	.header .cta-linklist {
		display: none;
	}

	.panel .cta-linklist {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
	}

	.panel .cta-linklist li {
		width: 100%;
		max-width: none;
	}
}

/* footer */
.footer {
	background: #26446E;
	border-radius: 40px 40px 0 0;
	padding: 65px 0;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 90%;
}

.footer-left {
	width: 330px;
}

.footer-right {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	width: calc(100% - 360px);
}

.footer-logo a {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
}

.footer-text {
	margin: 25px 0 35px;
}

.footer-text p {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.copyright p {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}

.footer-columns {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 45px;
	margin: 0 0 25px;
}

.footer-column__head {
	display: grid;
	gap: 10px;
	margin: 0 0 10px;
}

.footer-column__ttl {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
}

.footer-column ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.footer-column ul li a::before {
	content: "・";
	margin-right: 5px;
}

@media screen and (max-width: 968px) {
	.footer-left {
		margin: 0 0 25px;
		width: 100%;
	}

	.footer-right {
		justify-content: center;
		width: 100%;
	}
}

@media screen and (max-width: 568px) {
	.footer-logo {
		max-width: 200px;
	}

	.footer-columns {
		gap: 25px;
	}

	.footer-column {
		width: 100%;
	}

	.footer .cta-linklist {
		flex-wrap: wrap;
		gap: 15px;
	}

	.footer .cta-linklist li {
		width: 100%;
		max-width: none;
	}
}

.header-nav__pages {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-left: 0;
	margin: 24px auto;
	max-width: 800px;
	text-align: center;
}

.header-nav__pages li {
	list-style: none;
}

.header-nav__pages a {
	color: #26446E;
	font-size: 1.05em;
	text-decoration: none;
	padding: 6px 0;
	display: block;
}
