@charset "utf-8";

@font-face {
	font-family: "";
	src: url("../font/") format("truetype");
}

.pc_only {
	display: none;
}

.pc_only_2 {
	display: none;
}

.pc_only_3 {
	display: none;
}

.sp_only {
	display: inherit;
}

.sp_only_2 {
	display: inherit;
}

.sp_only_3 {
	display: inherit;
}

@media screen and (min-width: 768px) {
    .pc_only{
		display: inherit;
	}

	.sp_only{
		display: none;
	}
}

@media screen and (min-width: 1280px) {
	.pc_only_2 {
		display: inherit;
	}

	.sp_only_2{
		display: none;
	}
}

@media screen and (min-width: 1440px) {
	.pc_only_3 {
		display: inherit;
	}

	.sp_only_3 {
		display: none;
	}
}

html {
	/* scroll-padding-top: 120px; */
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	font-family: "Noto Serif SC", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: #2A2A2A;
}

main {
	overflow: hidden;
}

table {
	border-collapse: collapse;
}

th,
td {
	border: 1px solid #000;
	padding: 1em 0.5em;
}

th {
	vertical-align: baseline;
}

img {
	width: 100%;
}

a :hover{
	cursor: pointer;
}

.en {
	font-family: "Alex Brush", cursive;
}

.inversion_x {
	transform: scale(-1, 1);
}

.inversion_y {
	transform: scale(1, -1);
}

@media screen and (min-width: 768px) {

}

@media screen and (min-width: 1280px) {
	
}

@media screen and (min-width: 1440px) {
	
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 72px;
	background-color: #fff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	z-index: 100;
}

.header_inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	width: 100%;
	height: 100%;
}

.header_logo {
	width: 55%;
	height: auto;
	margin-left: 2.5%;
}

.header_logo img {
    max-width: 100%;
    max-height: 100%;
}

.header_link img {
	display: block;
    max-width: 100%;
    max-height: 100%;
}

@media screen and (min-width: 768px) {
	.header {
		height: auto;
		padding: 0;
	}

	.header_inner {
		justify-content: space-between;
		gap: 24px;
		padding: 1.25% 2.5%;
	}

	.header_logo {
		width: 20%;
		margin: 0;
	}

	.header_list_inner {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 12px;
		width: 100%;
		margin: 0 auto 0;
	}

	.header_list_inner li {
		width: max-content;
		margin: 0 auto 0;
	}

	.header_list_inner li a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		font-size: 0.7rem;
		font-weight: 700;
		color: #4F618E;
	}

	.header_list_inner li a span {
		
	}

	.header_list_inner li a span:nth-of-type(1) {
		
	}

	.header_list_inner li a span:nth-of-type(2) {
		font-size: 0.8em;
	}

	.header_contact {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 12px;
		width: 35%;
		height: auto;
	}

	.header_contact a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.header_contact a:nth-of-type(1) {}

	.header_contact a:nth-of-type(2) {}
}

@media screen and (min-width: 1280px) {
	.header_logo {
		width: 25%;
	}

	.header_list_inner {
		gap: 24px;
	}

	.header_list_inner li a {
		font-size: 1rem;
	}

	.header_contact {
		gap: 24px;
	}
}

@media screen and (min-width: 1440px) {
	.header_logo {
		width: 20%;
	}

	.header_list_inner {
		gap: 48px;
	}

	.header_list_inner li a {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {
	.header_inner {
		gap: 72px;
	}

	.header_list_inner {
		gap: 60px;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.section_container {
	position: relative;
	z-index: 1;
}

.heading {
	position: relative;
	margin: 0 auto 0;
	padding: 0;
}

.heading * {
	display: block;
	width: max-content;
	margin: 0 auto 0;
	padding: 0;
	line-height: 1;
	letter-spacing: 0.1em;
}

.heading .back {
	font-size: 1em;
	color: rgba(79, 97, 142, 0.08);
}

.heading .front {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
	width: max-content;
	font-size: 0.4em;
	color: #4F618E;
}

.heading_1 {
	font-size: 4.2rem;
}

.heading_2 {
	font-size: 2.4rem;
}

.text {
	font-size: 1rem;
}

@media screen and (min-width: 768px) {
	.heading_2 {}
}

@media screen and (min-width: 1280px) {
	.heading_2 {
		font-size: 4.8rem;
	}
}

@media screen and (min-width: 1440px) {
	.heading_2 {
		font-size: 6rem;
	}
}

@media screen and (min-width: 1920px) {}

/* ---------------------------------------------------------------------------------------------------- */

@media screen and (min-width: 768px) {
	
}

@media screen and (min-width: 1440px) {
	
}

.mouse_drag_scroll {
	cursor: grab;
}

.mouse_drag_scroll:active {
	cursor: grabbing;
}

@media screen and (min-width: 768px) {
	.mouse_drag_scroll {
		cursor: auto;
	}

	.mouse_drag_scroll:active {
		cursor: auto;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.section_contact {}

.section_contact .section_inner {
    padding: 0;
}

.section_contact .section_inner {}

.section_contact .section_container_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto 0;
}

.section_contact .section_content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	max-width: 1240px;
	margin: 0 auto 0;
}

.section_contact .section_content_2 {
	position: relative;
	width: 100%;
	padding: 7.5% 10%;
	background-image: url(../img/top_contact_bg_sp.png);
	background-size: cover;
	background-position: center;
}

.section_contact .section_content_2::before {
	content: "";
	position: absolute;
	top: -0.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 36px;
	background-color: #4F618E;
}

.section_contact .section_content_2 .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto 0;
	padding: 10% 5%;
	border: 1px #fff solid;
	color: #fff;
}

.section_contact .section_content_2 .box .textarea {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: fit-content;
	margin: 0 auto 0;
}

.section_contact .section_content_2 .box * {
	line-height: 1;
}

.section_contact .section_content_2 .box .textarea .text {
	letter-spacing: 0.1em;
}

.section_contact .section_content_2 .box .textarea .text .big {
	font-size: 1.5em;
}

.section_contact .section_content_2 .box .textarea .link {
	padding: 1em 4em;
	border-radius: 41px;
	background-color: #4F618E;
	letter-spacing: 0.1em;
	color: #fff;
}

.section_contact .section_content_2 .box .img {
	width: 4.8rem;
	height: auto;
}

@media screen and (min-width: 768px) {
	.section_contact {}

	.section_contact .section_inner {}

	.section_contact .section_container_inner {}

	.section_contact .section_content {
		width: 80%;
	}

	.section_contact .section_content_2 {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
		padding: 48px 0;
		background-image: url(../img/top_contact_bg_pc.png);
	}

	.section_contact .section_content_2::before {}

	.section_contact .section_content_2::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 1px;
		height: calc(100% - (48px * 2));
		background-color: #fff;
	}

	.section_contact .section_content_2 .box {
		justify-content: flex-start;
		padding: 0;
		border: 0;
	}

	.section_contact .section_content_2 .box .textarea {}

	.section_contact .section_content_2 .box .textarea .text {}

	.section_contact .section_content_2 .box .textarea .text .big {}

	.section_contact .section_content_2 .box .textarea .link {}

	.section_contact .section_content_2 .box .img {}
}

@media screen and (min-width: 1280px) {
	
}

@media screen and (min-width: 1440px) {
	.section_contact .section_content_2 .box .textarea .text {
		font-size: 1.2rem;
	}

	.section_contact .section_content_2 .box .textarea .link {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.map {
    width: 100%;
}

.map iframe {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.footer {
	background-color: #4F618E;
}

.footer_inner {
	padding: 10% 0;
}

.footer_container_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 80%;
	max-width: 1240px;
	margin: 0 auto 0;
}

.footer_content {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.footer_content_1 {
	display: none;
}

.footer_content_2 {
	align-items: flex-start;
	gap: 24px;
}

.footer_content .content {
	width: max-content;
	max-width: 100%;
}

.footer_content .logo {
	width: 65%;
	margin: 0;
}

.footer_content .logo * {
	max-width: 100%;
	max-height: 100%;
}

.footer_content .text {
	color: #fff;
}

.copyright {
	display: block;
	padding: 5% 5%;
	background-color: #4F618E;
	text-align: center;
	font-size: 1rem;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.footer {
		margin-top: -120px;
	}

	.footer_inner {
		padding: 144px 0 24px;
	}

	.footer_container_inner {}

	.footer_content {
		width: 100%;
	}

	.footer_content_1 {
		display: block;
		padding-bottom: 24px;
		border-bottom: 1px #fff solid;
	}

	.footer_content_2 {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.footer_content .list {
		display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 24px;
        width: max-content;
        margin: 0 auto 0;
	}

	.footer_content .list li {
        width: max-content;
	}

	.footer_content .list li a {
		display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        font-size: 1rem;
		line-height: 1;
        color: #fff;
	}

	.footer_content .content {}

	.footer_content .logo {
		width: 30%;
		max-height: 100%;
	}

	.footer_content .logo * {}

	.footer_content .text {}

	.copyright {
		padding: 2.5% 5%;
	}
}

@media screen and (min-width: 1280px) {
	.footer_content .logo {
		width: 25%;
	}
}

@media screen and (min-width: 1440px) {
	.footer {
		margin-top: -120px;
	}

	.footer_inner {
		padding: 168px 0 48px;
	}

	.footer_container_inner {
		gap: 48px;
	}

	.footer_content_1 {
		padding-bottom: 48px;
	}

	.footer_content .list {
		gap: 48px;
	}

	.footer_content .list li a {
		font-size: 1.2rem;
	}

	.footer_content .text {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {
	.footer_content .list {
		gap: 60px;
	}
}
