@charset "utf-8";
/* CSS Document */
* {
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: .12rem;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
.pc-br {
	display: inline;
}
@media screen and (min-width:992px) {
	.sp-br {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.pc-br {
		display: none;
	}
}
p {
	font-size: 18px;
	line-height: 1.5;
}
@media screen and (max-width:768px) {
	p {
		font-size: 16px;
		line-height: 1.6;
	}
}
h1 {
	text-align: center;
	margin: 0 12%;
}
@media screen and (max-width:768px) {
	h1 {
		margin: 20% .75rem;
	}
}
h2 {
	text-align: center;
	color: #393A7F;
	font-size: 40px;
	font-weight: 700;
	position: relative;
	margin: 0 auto 84px;
}
h2::after {
	position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-40%);
    content: "";
    width: 40px;
    height: 6px;
	border-radius: 6px;
    background: #393A7F;
}
@media screen and (max-width:768px) {
	h2 {
		font-size: 28px;
		position: relative;
		margin: 0 auto 55px;
	}
	h2::after {
		position: absolute;
	    bottom: -15px;
	    left: 50%;
	    transform: translateX(-40%);
	    content: "";
	    width: 40px;
	    height: 4px;
		border-radius: 4px;
	    background: #393A7F;
	}
}
h3 {
	text-align: center;
	font-size: 32px;
	color: #393A7F;
	font-weight: 700;
	padding: 15px 70px;
	position: relative;
	margin-bottom: 50px;
}
h3::before {
	content: url("../images/brackets-open-pc.png");
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
}
h3::after {
	content: url("../images/brackets-close-pc.png");
	position: absolute;
	bottom: 0;
	right: 0;
	height: 40px;
}
@media screen and (max-width:768px) {
	h3 {
		font-size: 24px;
		letter-spacing: .075rem;
		padding: 20px;
		position: relative;
	}
	h3::before {
		position: absolute;
		content: url("../images/brackets-open-sp.png");
		top: 0;
		left: 0;
	}
	h3::after {
		position: absolute;
		content: url("../images/brackets-close-sp.png");
		bottom: 0;
		right: 0;
	}
}
.content {
	margin: -50px auto 0;
	padding: 150px 0;
	width: 100%;
	max-width: 1100px;
}
@media screen and (max-width:768px) {
	.content {
		width: auto;
		margin: -60px 15px;
		padding: 120px 0;
	}
}
header nav {
	width: 100%;
    height: 120px;
    box-sizing: border-box;
    padding: 40px;
    z-index: 100;
    position: fixed;
	display: flex;
	justify-content: space-between;
}
header nav a {
	color: #393A7F;
	font-size: 26px;
	font-weight: 700;
	text-decoration: none;
}
header nav ul {
	display: flex;
	column-gap: 50px;
}
header nav li {
	list-style: none;
}
header .menu-btn {
	display: none;
}
@media screen and (max-width:1200px) {
	header nav {
		height: 90px;
		padding: 30px;
	}
	header nav ul {
		column-gap: 20px;
	}
	header nav a {
		font-size: 20px;
	}
	header nav a img {
		height: 30px;
	}
}
@media screen and (max-width:890px){
	header nav {
		height: 60px;
		padding: 15px;
	}
	header nav .logo {
		height: 30px;
	}
	header nav .logo img {
		height: 100%;
	}
	header nav ul {
		display: none;
	}
	header .menu-btn {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 200;
	}
	header .openbtn {
		position: relative;
		width: 60px;
		height: 60px;
		cursor: pointer;
		z-index: 200;
	}
	header .openbtn span {
		display: inline-block;
		transition: all .5s;
		position: absolute;
		left: 15px;
		height: 2px;
		width: 30px;
		border-radius: 2px;
		background: #393A7F;
	}
	header .openbtn span:nth-of-type(1)  {
		top: 21px;
	}
	header .openbtn span:nth-of-type(2)  {
		top: 29px;
	}
	header .openbtn span:nth-of-type(3)  {
		top: 37px;
	}
	header .openbtn.active span:nth-of-type(1) {
		top: 19px;
		left: 19px;
		transform: translate(-4px,10px)rotate(-45deg);
	}
	header .openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	header .openbtn.active span:nth-of-type(3) {
		top: 41px;
		left: 19px;
		transform: translate(-3px,-12px)rotate(45deg);
	}
	header nav.opened {
		display: block;
		background: #fff;
		height: 100vh;
		width: 100vw;
		z-index: 99;
	}
	header nav.opened ul {
		display: flex;
		flex-direction: column;
		row-gap: 40px;
		padding-top: 120px;
		text-align: center;
	}
}
.main-visual {
	background: #F5F3D9;
	background: url("../images/main-pc.png") center;
	background-size: cover;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
}
.main-visual .main-title {
	width: 50%;
}
.main-visual .main-title img {
	width: 100%;
}
@media screen and (max-width:768px) {
	.main-visual .main-title {
    	width: 55%;
    	margin: 20px 15px 0;
	}
}
@media screen and (max-width:475px) {
	.main-visual {
		background: url("../images/main-sp.png") center;
		background-size: cover;
		align-items: flex-start;
	}
	.main-visual .main-title {
		width: 100%;
		margin: 20px 40px 0;
	}
}
.l-greeting img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.l-greeting img {
		width: 100%;
	}
}
.l-greeting .c-greeting .c-greeting-inner {
	display: grid;
	grid-template-columns:2fr 3fr;
	gap: 40px;
}
.l-greeting .c-greeting .c-greeting-inner .message {
	display: grid;
	gap: 40px;
}
.text-right {
	text-align: right;
}
@media screen and (max-width:768px) {
	.l-greeting .c-greeting .c-greeting-inner {
		grid-template-columns:1fr;
	}
	.l-greeting .c-greeting .c-greeting-inner .message {
		gap: 30px;
	}
}
.l-main {
	/*background-color: #F5F3D9;*/
	background: linear-gradient(180deg,#F5F3D9 0%, #F5F3D9 90%, #ffffff 90%, #ffffff 100%);
	padding-bottom: 5rem;
}
.l-main-inner {
	background-image: url("../images/gaiyou-top-pc.png"),url("../images/gaiyou-bottom-pc.png");
	background-size: contain,contain;
	background-repeat: no-repeat,no-repeat;
	background-position: top center,bottom center;
	position: relative;
}
.l-main-inner .tray-man {
	position: absolute;
    top: -4%;
    left: 50%;
    transform: translateX(-45%);
}
@media screen and (max-width:768px) {
	.l-main-inner .tray-man {
		position: absolute;
    	top: -0.75%;
    	left: 50%;
    	transform: translateX(-40%);
	}
	.l-main-inner .tray-man img {
		width: 80%;
	}
}
.l-main .background-images {
	position: absolute;
	bottom: -10%;
	left: 0;
}
.l-main .background-images img {
	width: 100%;
}
.l-main .section-wrap {
	display: grid;
	gap: 40px;
	margin-bottom: 15rem;
}
@media screen and (max-width:768px) {
	.l-main {
		background: linear-gradient(180deg,#F5F3D9 0%, #F5F3D9 98%, #ffffff 98%, #ffffff 100%);
		padding-bottom: 0;
	}
	.l-main-inner {
		background-image: url("../images/gaiyou-top-sp.png"),url("../images/gaiyou-bottom-sp.png");
		background-size: contain,contain;
		background-repeat: no-repeat,no-repeat;
		background-position: top center,bottom center;
	}
	.l-main .section-wrap {
		margin-bottom: 4rem;
	}
}
.l-main .section {
	max-width: 1100px;
	height: 240px;
	border: 3px solid;
	background: #fff;
	display: flex;
	justify-content: space-between;
}
.l-main .section:nth-of-type(even) {
	flex-direction:row-reverse;
}
@media screen and (max-width:768px) {
	.l-main .section {
		width: auto;
		height: auto;
		flex-direction: column;
	}
	.l-main .section:nth-child(even) {
		flex-direction: column;
	}
	.l-main .section img {
		width: 100%;
	}
	
}
.l-main .section .text-box {
	display: flex;
	align-items: center;
	margin: 40px;
}
.l-main .section.sec-1 {
	border-color: #C6191E;
}
.l-main .section.sec-2 {
	border-color: #F39B2B;
}
.l-main .section.sec-3 {
	border-color: #3E8DB6;
}
.l-main .section.sec-4 {
	border-color: #243491;
}
.l-main .section.sec-5 {
	border-color: #7DB828;
}
.l-main .section.sec-6 {
	border-color: #328986;
}
.l-main .section .strong {
	font-weight: 700;
	color: #BB1A0F;
}
.l-access .content {
	text-align: center;	
}
.l-access .c_layout {
	padding-top: 0;
}
.l-access img {
	width: 800px;
}
@media screen and (max-width:992px) {
	.l-access img {
		width: 100%;
	}
}
.l-appendix {
	background: linear-gradient(180deg,#ffffff 0%, #ffffff 2%, #F5F3D9 2%, #F5F3D9 100%);
}
.l-appendix-inner {
	background-image: url("../images/appendix-top-pc.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}
@media screen and (max-width:768px) {
	.l-appendix-inner{
		background-image: url("../images/appendix-top-sp.png");
	}	
}
.l-appendix h2 {
	font-size: 32px;
}
.l-appendix .movie-inner {
	margin: 0 auto;
	width: 640px;
	aspect-ratio: 16 / 9;
}
.l-appendix .movie-inner iframe {
	width: 100%;
    height: 100%;
}
.l-appendix .c-smts {
	text-align: center;
	padding: 0 0 60px;
}
.l-appendix .c-smts img {
	width: 500px;
}
@media screen and (max-width:768px) {
	.l-appendix h2 {
		font-size: 18px;
	}
	.l-appendix .movie-inner {
		width: 100%;
        aspect-ratio: 16 / 9;
	}
	.l-appendix .c-smts img {
		width: 285px;
	}
}
.l-sns h2 {
	font-size: 32px;
}
.l-sns .l-sns-inner {
	display: flex;
	justify-content: space-evenly;
}
.l-sns .l-sns-inner .c-sns {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.l-sns .l-sns-inner .c-sns .link {
	height: 132px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.l-sns .l-sns-inner .c-sns .sns-text {
	background: url("../images/brackets-pc.png");
	width: 162px;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #393A7F;
	text-align: center;
	font-weight: 700;
}
@media screen and (max-width:768px) {
	.l-sns {
		margin-bottom: 0;
		padding-bottom: 60px;
	}
	.l-sns h2 {
		font-size: 18px;
	}
	.l-sns .l-sns-inner {
		flex-direction: column;
		row-gap: 30px;
	}
	.l-sns .l-sns-inner .c-sns {
		flex-direction: row;
	}
	.l-sns .l-sns-inner .c-sns .link {
		width: 75px;
		height: 75px;
		margin-right: 30px;
		margin-bottom: 0;
	}
	.l-sns .l-sns-inner .c-sns .link a img {
		width: 100%;
	}
	.l-sns .l-sns-inner .c-sns .sns-text {
		font-size: 24px;
		font-weight: 700;
		padding: 20px;
		background: none;
		width: 240px;
		height: 40px;
		position: relative;
	}
	.l-sns .l-sns-inner .c-sns .sns-text::before {
		position: absolute;
		content: url("../images/brackets-open-sp.png");
		top: 0;
		left: 0;
	}
	.l-sns .l-sns-inner .c-sns .sns-text::after {
		position: absolute;
		content: url("../images/brackets-close-sp.png");
		bottom: 0;
		right: 0;
	}
}
footer {
	background: #555;
}
footer .copy {
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	letter-spacing: .085rem;
}
@media screen and (max-width:768px) {
	footer .copy {
		padding: 10px;
		font-size: 10px;
	}
}
/*スクロールで表示*/
nav.view {
	background: #fff;
}