@charset "UTF-8";

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	color: #000000;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	position: relative;
	-webkit-text-size-adjust: 100%;
	min-width: 320px;
	display: flex;
	flex-direction: column;
}

body.is-open {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: #464646;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
}

a,
button {
	transition: all .6s ease 0s;
}

p a,
label a {
	color: #014BB1;
}

a:hover,
button:hover {
	opacity: .7;
}

strong,
em {
	font-style: normal;
	font-weight: 300
}

ul,
li {
	list-style: none;
	word-wrap: break-word;
}

p {
	text-align: justify;
	word-wrap: break-word;
}

img {
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}

.l-main {
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	overflow: hidden;
}

@media (min-width: 800px) {
	.l-main {
		height: 100vh;
		display: grid;
		grid-template-columns: 1fr min(500px, 35vw) 1fr;
	}
}

.l-contents {
	height: 100%;
	overflow: auto;
	scroll-behavior: smooth;
	/*IE(Internet Explorer)・Microsoft Edgeへの対応*/
	-ms-overflow-style: none;
	/*Firefoxへの対応*/
	scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.l-contents::-webkit-scrollbar .l-sidebar-left::-webkit-scrollbar,
.l-sidebar-right::-webkit-scrollbar {
	display: none;
}

.l-sidebar-left,
.l-sidebar-right {
	overflow: auto;
	/*IE(Internet Explorer)・Microsoft Edgeへの対応*/
	-ms-overflow-style: none;
	/*Firefoxへの対応*/
	scrollbar-width: none;
}

.l-sidebar-left {
	text-align: right;
	background: url(../img/bg_left.png) no-repeat bottom;
	background-size: cover;
	background-color: #E3E877;
	padding: 47px 0 50px;
}

.l-sidebar-right {
	background: url(../img/bg_right.png) no-repeat bottom;
	background-size: cover;
	background-color: #E3E877;
	padding: 66px 20px 50px min(9%, 60px);
}

.l-sidebar-right__inr {
	max-width: 476px;
}

@media (max-width: 799px) {
	.l-sidebar-left {

	}

	.l-sidebar-right {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		z-index: 2001;
		overflow: auto;
		transform: translateX(-100%);
		transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
		padding: 66px 5% 50px;
		transition: transform 0.3s, -webkit-transform 0.3s;
	}

	.is-open .l-sidebar-right {
		transform: translateX(0);
	}

	.l-sidebar-right__inr {
		margin: 0 auto;
	}
}

.c-btn {
	display: block;
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
}

.c-btn img {
	display: block;
	width: 100%;
	height: auto;
}


.c-hamburger {
	display: block;
	position: fixed;
	z-index: 2002;
	top: 0;
	right: 0;
	cursor: pointer;
	width: 74px;
	height: 61px;
	background-color: rgba(0, 0, 0, 0.3);
	transition: top 0.3s;
}

@media screen and (min-width: 800px) {
	.c-hamburger {
		display: none;
	}
}

.c-hamburger .c-hamburger__btn {
	position: relative;
	height: 100%;
}

.c-hamburger__inr {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	justify-content: center;
	gap: 8px;
}

.c-hamburger span {
	display: block;
	width: 36px;
	height: 4px;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	background: #F5DE6F;
	border-radius: 3px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.c-hamburger span:nth-child(1) {
	-webkit-animation: click-header-sp-bar-1-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
	animation: click-header-sp-bar-1-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.c-hamburger span:nth-child(2) {
	-webkit-animation: click-header-sp-bar-2-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
	animation: click-header-sp-bar-2-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.c-hamburger span:nth-child(3) {
	-webkit-animation: click-header-sp-bar-3-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
	animation: click-header-sp-bar-3-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.is-open .c-hamburger span:nth-child(1) {
	position: absolute;
	margin-top: -10px;
	-webkit-animation: click-header-sp-bar-1-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
	animation: click-header-sp-bar-1-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.is-open .c-hamburger span:nth-child(2) {
	-webkit-animation: click-header-sp-bar-2-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
	animation: click-header-sp-bar-2-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.is-open .c-hamburger span:nth-child(3) {
	position: absolute;
	margin-top: 9px;
	-webkit-animation: click-header-sp-bar-3-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
	animation: click-header-sp-bar-3-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

@-webkit-keyframes click-header-sp-bar-1-close {
	0% {
		-webkit-transform: translateY(5px) rotate(45deg);
		transform: translateY(5px) rotate(45deg);
	}

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

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

@keyframes click-header-sp-bar-1-close {
	0% {
		-webkit-transform: translateY(5px) rotate(45deg);
		transform: translateY(5px) rotate(45deg);
	}

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

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

@-webkit-keyframes click-header-sp-bar-2-close {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes click-header-sp-bar-2-close {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes click-header-sp-bar-3-close {
	0% {
		-webkit-transform: translateY(-5px) rotate(-45deg);
		transform: translateY(-5px) rotate(-45deg);
	}

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

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

@keyframes click-header-sp-bar-3-close {
	0% {
		-webkit-transform: translateY(-5px) rotate(-45deg);
		transform: translateY(-5px) rotate(-45deg);
	}

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

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

@-webkit-keyframes click-header-sp-bar-1-open {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

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

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

@keyframes click-header-sp-bar-1-open {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

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

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

@-webkit-keyframes click-header-sp-bar-2-open {
	0% {
		opacity: 1;
	}

	80% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@keyframes click-header-sp-bar-2-open {
	0% {
		opacity: 1;
	}

	80% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes click-header-sp-bar-3-open {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

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

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

@keyframes click-header-sp-bar-3-open {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

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

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

@-webkit-keyframes opacity {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

@keyframes opacity {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

.u-relative {
	position: relative;
}

.u-mb5 {
	margin-bottom: 5px;
}

.u-mb10 {
	margin-bottom: 10px;
}

.u-mb15 {
	margin-bottom: 15px;
}

.u-mb20 {
	margin-bottom: 20px;
}

.u-mb25 {
	margin-bottom: 25px;
}

.u-mb30 {
	margin-bottom: 30px;
}

.u-mb35 {
	margin-bottom: 35px;
}

.u-mb40 {
	margin-bottom: 40px;
}

.u-mb45 {
	margin-bottom: 45px;
}

.u-mb50 {
	margin-bottom: 50px;
}

.u-mb55 {
	margin-bottom: 55px;
}

.u-mb60 {
	margin-bottom: 60px;
}

.u-mb65 {
	margin-bottom: 65px;
}

.u-mb70 {
	margin-bottom: 70px;
}

.u-mb75 {
	margin-bottom: 75px;
}

.u-mb80 {
	margin-bottom: 80px;
}

.u-mb85 {
	margin-bottom: 85px;
}

.u-mb90 {
	margin-bottom: 90px;
}

.u-mb95 {
	margin-bottom: 95px;
}

.u-mb100 {
	margin-bottom: 100px;
}

.u-nav a {
	display: block;
}

@media (min-width: 800px) {
	.u-nav {
		height: 250px;
	}
}

.l-sidebar-right .c-btn {
    bottom: 17%;
    width: 90%;
}

.l-sidebar-right .c-btn:last-of-type {
    bottom: 4%;
    width: 90%;
}

.p-main01 {
	padding-top: 61px;
	background-color: #F5DE6F;
	padding-bottom: 18%;
}

.p-main01 .c-btn {
	bottom: 7.5%;
	width: 90%;
}

.p-main01 .c-btn:last-of-type {
	bottom: 2%;
	width: 90%;
}

@media (min-width: 800px) {
	.p-main01 {
		padding-top: 0;
	}
}

.p-main02 .u-relative {
	padding-bottom: 18%;
}

.p-main02 .c-btn {
	bottom: 9%;
	width: 90%;
}

.p-main02 .c-btn:last-of-type {
	bottom: 2%;
	width: 90%;
}

#main03 {
	background-color: #F5DE6F;
	padding-bottom: 18%;
}

.p-main03 .c-btn {
	bottom: 4.3%;
	width: 90%;
}

.p-main03 .c-btn:last-of-type {
	bottom: 1%;
	width: 90%;
}