@charset "utf-8";
/* ===================================================
	Base CSS
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

.arial {
    font-family: Arial, sans-serif;
    font-style: normal;
}

:root {
	--break: 1920;
}
@media(min-width: 768px) and (max-width: 1599px) {
    :root {
		--break: 1599;
    }
}
@media(min-width: 768px) and (max-width: 1299px) {
    :root {
		--break: 1299;
    }
}
@media(max-width:767px) {
        :root {
		--break: 750;
    }
}
@media(max-width:600px) {
        :root {
		--break: 580;
    }
}
@media(max-width:480px) {
        :root {
		--break: 480;
    }
}

html {
	scroll-behavior: smooth;
}
body {
	min-height: 100vh; background: #fff; color: #000;
	font-size: clamp(1rem,1.45vw,0.94rem); line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	-webkit-text-size-adjust: 100%; position: relative;
	font-feature-settings: "palt"; letter-spacing: 0.1em;
}

header,
nav,
footer,
section,
h1,
h2,
h3,
h4,
h5,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
span,
em,
strong,
img,
a { box-sizing: border-box; }
a { color: #000; text-decoration: none; transition: opacity 0.5s ease; }
h1,
h2,
h3,
h4,
h5 { font-weight: 500; }

#lineup-font-size-sampler { bottom: 0; left: 0;}
iframe[name="google_conversion_frame"] { position: absolute; bottom: 0; left: 0;}

.ofi { object-fit: cover;}
.v_rl{ writing-mode: vertical-rl; font-feature-settings: "palt" 0;}
.sp, .tab { display: none;}
.inner { width: 1536px; max-width: 90%; margin: 0 auto; }
.inner_lg { width: 1300px; max-width: 90%; margin: 0 auto; }

@media screen and (hover: hover) and (min-width: 769px) {
	a:hover { opacity: 0.7; }
}
@media screen and (min-width: 769px) {
	.tel-link { pointer-events: none; }
}
@media screen and (max-width: 960px) {
	.tab { display: block;}
}
@media screen and (max-width: 768px) {
	.sp { display: block;}
	.pc { display: none !important;}
}
@media screen and (max-width: 420px) {
	body { font-size: min(4.26vw,1rem); }
}


/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 1.66rem;
}
header h1 {
	width: min(23.4vw, 300px);
	line-height: 1;
}

.section-title {
	font-size: 2.16rem;
	letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
	header {
		padding: 0.8rem;
	}
	header h1 {
		width: 33vw;
	}
	.section-title {
		font-size: 1.6rem;
	}
}


/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
.main-visual {
    position: relative;
    width: 100%;
}
.main-visual .ofi {
    width: 100%;
}

/* 右下の丸いボタン */
.cv-button {
	position: fixed;
    right: 5%;
    bottom: 10%;
	z-index: 11;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
	background: #ffffd7;
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1.5;
    box-shadow: 4px 4px 8px -4px rgba(0,0,0,0.4);
    border: 5px solid #fff;
    transition: transform 0.3s ease, border-color 0.3s;
	font-feature-settings: normal;
}
.cv-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(90deg, #ffcc00 0%, #fff700 100%);
}
.cv-button:hover {
    transform: scale(1.05);
	opacity: 1;
	border-color: #ffffd7;
	background: #ffffd7;
}
.cv-button:hover span {
	background: transparent;
}

@media (max-width: 768px) {
    .cv-button {
		right: 2%;
		bottom: 1rem;
		border-width: 4px;
        width: min(35vw,140px);
        height: min(35vw,140px);
        /* width: clamp(80px,20vw,120px);
        height: clamp(80px,20vw,120px); */
        /* font-size: min(12px,2.5vw); */
		font-size: 0.9rem;
    }
}

/* ---------------------------------------------------
	.solution-section
------------------------------------------------------ */
.solution-section {
	padding-top: 80px;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
}
.grid-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.grid-item p { position: absolute; z-index: 1; text-align: center; width: 100%; padding: 1.33rem 3%; font-size: 1.05rem; line-height: 1.65; }
.grid-item .sm { font-size: 0.8rem; }
.grid-item img { width: 100%; object-position: top center; }

.item1 { grid-column: span 3; }
.item2 { grid-column: span 3; }
.item3 { grid-column: span 2; color: #000; }
.item4 { grid-column: span 2; }
.item5 { grid-column: span 2; }

/* 中部コピー */
.middle-copy {
    text-align: center;
    margin: 40px 0 60px;
}
.main-title {
    font-size: 1.6rem;
	letter-spacing: 0.15em;
	line-height: 1.8;
}
.main-title span {
	font-size: 2.16rem;
}

/* 役割分担エリア */
.comparison-area {
    background-color: #fffadc;
    padding: 60px 0 80px;
}
.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}
.comparison-header h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
	letter-spacing: 0.12em;
}
.comparison-header h3 span {
	font-size: 2.16rem;
}
.comparison-header p {
    line-height: 1.8;
}

.comparison-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.role-card {
    width: 340px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.role-label {
	position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
	width: max-content;
    padding: 15px 3rem;
    border-radius: 30px;
    font-size: 1.15rem;
}
.yellow { background-color: #fac300; }
.gray { background-color: #dcdcdc; }

.role-content {
	display: flex;
	flex-direction: column;
	gap: 5px 0;
	height: 100%;
}
.role-item {
	flex-grow: 1;
	align-content: center;
	line-height: 1.3;
    padding: 20px 10px;
	font-size: 1.25rem;
	background-color: #fff;
}
.role-item:nth-child(1) {
	padding-top: 50px;
}
.role-item .note { font-size: 1rem;}

.cross-icon {
	align-self: center;
	text-align: center;
	width: 6rem;
    font-size: 2rem;
	font-weight: 100;
    color: #333;
}

@media (min-width: 769px) {
	.grid-item img { min-height: 230px;}
}
@media (max-width: 768px) {
	.solution-section { padding-top: 8vw; }
	.comparison-area { padding: 7vw 0 9vw; }
	.comparison-header h3 span { font-size: 1.6rem; }
	.main-title { font-size: 1.2rem; }
	.main-title span { font-size: 1.6rem; }
	.middle-copy { margin: 30px 0 40px; }
    .comparison-flex { flex-direction: column; gap: 10px; }
    .image-grid { grid-template-columns: 1fr; }
    .item1, .item2, .item3, .item4, .item5 { grid-column: span 1; }
    .cross-icon { margin-bottom: 30px; }
	.role-card { width: 100%; }
}
@media (max-width: 600px) {
	.comparison-header p { text-align: left; }
}


/* ---------------------------------------------------
	.message-section
------------------------------------------------------ */
.message-section {
    padding: 80px 0;
    line-height: 1.8;
}
.message-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}
.message-body {
	margin-top: 1rem;
}
.message-body p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}
.signature {
    margin-top: 40px;
}
.signature .name {
    font-size: 2.16rem;
    letter-spacing: 0.1em;
}
.message-text-column {
    width: 50%;
}
.message-image-column {
    width: 50%;
	padding-top: 1rem;
}
.main-img img {
    width: 100%;
}
.sub-imgs {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}
.sub-imgs img {
    width: calc(50% - 2.5px);
}

.profile-flex {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}
.treatment-img { width: 50%; }
.treatment-img img { width: 100%; }

.profile-info { width: 50%; }
.profile-heading {
    text-align: center;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.profile-list {
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 30px;
}
.profile-list li { margin-bottom: 8px; }

.about-box {
	display: flex;
	justify-content: center;
    border: 2px solid #ddd;
    padding: 55px 30px;
    position: relative;
    margin-top: 80px;
}
.about-title-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
	width: min(100%,300px);
    background: #fff;
	padding: 12px 2.5rem;
    border: 2px solid #ddd;
    border-radius: 30px;
	font-size: 1.15rem;
	text-align: center;
}

@media (min-width: 769px) {
	.profile-info { margin-top: -1rem; }
}
@media (max-width: 768px) {
	.message-section {
		padding: 9vw 0;
	}
    .message-flex, .profile-flex {
        flex-direction: column;
    }
	.message-flex {
		gap: 30px;
		margin-bottom: 30px;
	}
    .message-image-column, .message-text-column, .treatment-img, .profile-info {
        width: 100%;
    }
	.signature .name {
		font-size: 1.6rem;
	}
	.about-title-tag {
		width: min(100%,260px);
	}
}


/* ---------------------------------------------------
	.job-description-section
------------------------------------------------------ */
.job-description-section {
    background-color: #fffadc;
    padding: 80px 0;
}
.job-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.job-images {
	display: flex;
	flex-direction: column;
	gap: 5px 0;
    width: 48%;
}
.img-top img {
    width: 100%;
}
.img-bottom-flex {
    display: flex;
    gap: 5px;
}
.img-small {
    width: 50%;
}

.job-content {
    width: 48%;
}
.job-content .text-block {
	margin-top: 1rem;
}
.text-block p {
    line-height: 1.8;
}
.business-detail-box {
	display: flex;
	justify-content: center;
    margin-top: 50px;
    border: 2px solid #fac300;
    padding: 40px 5%;
    position: relative;
    background-color: #fff;
}
.business-detail-box .box-title {
	position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    width: min(100%, 300px);
    padding: 12px 2.5rem;
    border: 2px solid #fac300;
    border-radius: 30px;
    font-size: 1.15rem;
	background-color: #fff;
    text-align: center;
}
.business-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.25rem;
}
.business-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    font-weight: bold;
}
.list-sub {
    font-size: 0.9rem;
    display: block;
}

@media (max-width: 850px) {
	.job-description-section {
		padding: 8vw 0;
	}
    .job-flex {
        flex-direction: column-reverse;
    }
    .job-images, .job-content {
        width: 100%;
    }
    .img-small img {
        height: auto;
    }
	.business-detail-box .box-title {
		width: min(100%,260px);
	}
}


/* ---------------------------------------------------
	.requirements-section
------------------------------------------------------ */
.requirements-section {
    padding: 80px 0 0;
}
.requirements-section .inner {
	width: 1280px;
	max-width: 88%;
}
.main-heading {
    text-align: center;
    font-size: 2.16rem;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}
.requirements-frame {
    border: 2px solid #fac300;
    position: relative;
    padding: 40px 5%;
    background-color: #fff;
}
.persona-label {
    position: absolute;
    top: -60px;
    right: -4%;
    width: clamp(100px, 11.7vw, 150px);
    height: clamp(100px, 11.7vw, 150px);
    background-color: #fac300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	font-size: min(1.27vw, 1rem);
    line-height: 1.8;
    z-index: 10;
}
.persona-label.left {
	right: auto;
	left: -4%;
}
.requirements-flex {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.req-box {
    width: 45%;
}
.req-box .note {
	margin-top: 1.5rem;
}
.required::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-left: 3px dotted #fac300;
    transform: translateX(-50%);
}
.req-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.underline-yellow {
    position: relative;
	border-bottom: 2px solid #fac300;;
    padding: 0 1rem 10px;
	letter-spacing: 0.2em;
}
.req-list {
    list-style: none;
    padding: 0;
}
.req-list li {
	margin-bottom: 0.25rem;
}
.req-list.dots li {
	position: relative;
	padding-left: 1rem;
	line-height: 1.6;
}
.req-list.dots li::before {
	content: '・';
    position: absolute;
    left: 0;
    font-weight: bold;
}
.small-text {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
	.requirements-section {
		padding: 8vw 0 0;
	}
	.main-heading {
		font-size: 1.6rem;
	}
    .requirements-frame {
        padding: 8vw 5% 5vw;
    }
    .requirements-flex {
        flex-direction: column;
        gap: 30px;
    }
    .req-box {
        width: 100%;
    }
    .required::after {
        display: none;
    }
    .persona-label {
		width: clamp(80px, 20vw, 120px);
		height: clamp(80px, 20vw, 120px);
		font-size: min(12px, 2.5vw);
        top: -35px;
    }
}


/* ---------------------------------------------------
	.schedule-section
------------------------------------------------------ */
.schedule-section {
    padding: 80px 0 0;
    background-color: #fff;
    color: #333;
}
.schedule-section .inner {
	max-width: 100%;
}
.schedule-grid {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.schedule-item {
    width: 25%;
}
.schedule-img {
    width: 100%;
    margin-bottom: 20px;
}
.schedule-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.schedule-content {
	padding: 0 2rem;
    text-align: center;
}
.time {
    margin-bottom: 5px;
}
.step-title {
    margin-bottom: 15px;
}
.desc {
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
}
.desc .note {
    font-size: 0.7rem;
}

@media (max-width: 900px) {
	.schedule-section {
		padding: 8vw 0 0;
	}
    .schedule-grid {
        flex-wrap: wrap;
    }
    .schedule-item {
        width: 47%;
        margin-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .schedule-item {
        width: 100%; /* スマホで1列 */
    }
}


/* ---------------------------------------------------
	.facility-section
------------------------------------------------------ */
.facility-section {
    padding: 80px 0;
    background-color: #fff;
}
.facility-section .section-title {
	margin-bottom: 30px;
	text-align: center;
}
.facility-flex {
	position: relative;
    display: flex;
    justify-content: space-between;
    gap: 40px;
	padding-bottom: min(9.3vw, 120px);
}

.slider-container {
    width: 60%;
}
.main-slider,
.main-slider img {
    width: 100%;
	height: 100%;
}

.thumb-slider {
	position: absolute;
	bottom: 0;
    width: 100%;
}
.thumb-slider .swiper-slide {
    width: calc(10% - 8px);
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
}
.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
}
.thumb-slider img {
    width: 100%;
}

.equipment-box {
    width: 35%;
    border: 2px solid #fac300;
    padding: 30px 4%;
}
.equipment-box .underline-yellow {
	width: min(100%, 8rem);
	margin-bottom: 20px;
}
.equipment-list {
    list-style: none;
    line-height: 2;
	font-size: 0.85rem;
}

.sub-list {
    list-style: none;
    padding-left: 15px;
}

@media (max-width: 900px) {
	.facility-section {
		padding: 6vw 0 10vw;
	}
    .facility-flex {
        flex-direction: column;
		padding-bottom: 0;
    }
    .slider-container, .equipment-box {
        width: 100%;
    }
	.thumb-slider {
		position: static;
		margin-top: 20px;
	}
	.thumb-slider .swiper-wrapper {
		flex-wrap: wrap;
		gap: 5px;
	}
    .thumb-slider .swiper-slide {
        width: calc(20% - 4.5px) !important;
		margin-right: 0 !important;
    }
}


/* ---------------------------------------------------
	.merit-section
------------------------------------------------------ */
.merit-section {
    background-color: #fffadc;
    padding: 80px 0;
}
.merit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.merit-title {
    font-size: 2.16rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.merit-list {
    list-style: none;
    padding: 0;
}
.merit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.merit-list .num {
    font-size: 1.5rem;
    min-width: 2rem;
	margin-top: -0.5rem;
}
.merit-list p {
	width: calc(100% - 2rem);
}
.merit-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.circle-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.circle {
    width: min(19.5vw,250px);
    height: min(19.5vw,250px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.3rem;
}
.circle.gray { background-color: #ddd; }
.circle.yellow { background-color: #fac300; }
.cross {
    font-size: 2rem;
}
.merit-img img {
    width: 100%;
}

@media (max-width: 900px) {
	.merit-section {
		padding: 8vw 0;
	}
    .merit-grid {
        grid-template-columns: 1fr;
    }
    .merit-title {
        font-size: 1.6rem;
        text-align: center;
    }
	.merit-list li {
		font-size: 1rem;
	}
    .circle-area {
        order: -1;
        margin-bottom: 20px;
    }
    .circle {
        width: min(35vw,140px);
        height: min(35vw,140px);
        font-size: 0.9rem;
    }
}


/* ---------------------------------------------------
	.voice-section
------------------------------------------------------ */
.voice-section {
    padding: 100px 0;
    background-color: #fff;
}
.voice-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.voice-item+.voice-item {
	margin-top: 80px;
}
.voice-item.reverse {
    flex-direction: row-reverse;
}
.voice-images {
    width: 45%;
    position: relative;
}
.label-circle {
    position: absolute;
    top: -25px;
    right: -25px;
    width: min(10vw, 130px);
    height: min(10vw, 130px);
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.15rem;
	letter-spacing: 0.12em;
    z-index: 2;
}
.reverse .label-circle {
    right: auto;
    left: -25px;
}

.img-main img {
    width: 100%;
    margin-bottom: 5px;
}

.img-sub-flex {
    display: flex;
    gap: 5px;
}

.img-sub-flex img {
    width: calc(50% - 2.5px);
}
.voice-content {
    width: 48%;
}
.name-area {
    display: flex;
    align-items: baseline;
    gap: 0 2rem;
    margin-bottom: 20px;
}
.name { font-size: 2.16rem; }
.en-name { font-size: 1.4rem; letter-spacing: 0.3em; }
.catch-phrase {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.body-text {
    line-height: 1.8;
    margin-bottom: 30px;
}
.history {
    margin-top: 40px;
}
.history-label {
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.history ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}
.history li {
	margin-bottom: 8px;
}

@media (max-width: 850px) {
    .voice-item, .voice-item.reverse {
        flex-direction: column;
    }
    .voice-images, .voice-content {
        width: 100%;
    }
    .voice-images {
        margin-bottom: 30px;
    }
    .label-circle {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
	.voice-section {
		padding: 11vw 0;
	}
	.voice-item+.voice-item {
		margin-top: 8vw;
	}
	.name-area {
		flex-wrap: wrap;
	}
	.en-name {
		font-size: 1.1rem;
	}
    .label-circle {
		right: -4%;
    }
    .label-circle.left {
		left: -4%;
    }
}


/* ---------------------------------------------------
	.recruitment-flow-section
------------------------------------------------------ */
.recruitment-flow-section {
    background-color: #fffadc;
    padding: 80px 0;
}
.recruitment-flow-section .inner {
    width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.recruitment-flow-section .section-title {
	margin-bottom: 40px;
	text-align: center;
}
.flow-grid {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.flow-card {
    position: relative;
    width: 33.3%;
    background-color: #fff;
    padding: 50px 5% 40px;
}
.flow-card:nth-child(1) {
	z-index: 3;
}
.flow-card:nth-child(2) {
	z-index: 2;
}
.flow-card::before {
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translateY(-50%);
	content: '';
	display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #fac300;
}
.flow-card:last-child::before {
	content: none;
}
.step-num {
    position: absolute;
    top: -20px;
    left: -15px;
    width: 70px;
    height: 70px;
    background-color: #fffadc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.flow-card .req-title {
	margin-bottom: 15px;
	padding: 0 0 10px;
}
.step-text {
    line-height: 1.8;
}
.step-text .note {
	display: block;
	margin-top: 0.5rem;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .flow-grid {
        flex-direction: column;
    }
    .flow-card {
        width: 100%;
        min-height: auto;
    }
    .flow-card::before {
		transform: rotate(90deg);
        top: auto;
        bottom: -15px;
        right: 50%;
    }
}
@media (max-width: 768px) {
    .recruitment-flow-section {
		padding-top: 9vw;
	}
}


/* ---------------------------------------------------
	.contact-section
------------------------------------------------------ */
.contact-section {
    padding: 80px 0 100px;
}
.contact-section .inner {
    width: 700px;
}
.contact-section .section-title {
	margin-bottom: 20px;
    text-align: center;
}
.contact-info {
    border-bottom: 2px solid #fac300;
}
.contact-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    position: relative;
	letter-spacing: 0.15em;
}
.contact-row+.contact-row {
	border-top: 2px solid #fac300;
}
.contact-label {
    width: 30%;
}
.contact-value {
    width: 70%;
}
.contact-value .arial {
    font-size: 1.3rem;
	font-weight: 600;
}
.email-note {
    font-size: 0.95rem;
}
.email-note span {
	display: inline-block;
	line-height: 0;
	vertical-align: middle;
	padding: 0 3px;
}

@media (max-width: 768px) {
	.contact-section {
		padding: 8vw 0 10vw;
	}
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-label {
        width: 100%;
        margin-bottom: 15px;
        font-size: 1rem;
    }
    .contact-value {
        width: 100%;
    }
    .contact-value.arial-text,
    .email {
        font-size: 1.4rem;
    }
}


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
.footer-section {
    background-color: #fffde6;
    padding-top: 80px;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.logo-text { font-size: 1.8rem; font-weight: bold; }
.footer-main-flex {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-visual { width: 55%; }
.footer-visual img { width: 100%; height: 100%; }
.footer-info { width: 45%; }
.hp-link-btn {
    display: block;
	background: linear-gradient(90deg, #ffcc00 0%, #fff700 100%);
    text-align: center;
    padding: 15px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
}
.info-content {
	padding: 5px 0 10px;
	letter-spacing: 0.12em;
}
.info-content p {
	padding: 10px 0;
}
.info-content .arial {
	font-size: 1.6rem;
	font-weight: 600;
}
.info-content .address {
	border-top: 2px solid #fac300;
	
}
.access-thumbnails {
    display: flex;
    gap: 5px;
}
.thumb-item { width: 50%; position: relative; }
.thumb-item img { width: 100%; display: block; }
.thumb-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 15px;
	line-height: 1.35;
}
.thumb-caption .lg {
	font-size: 1.4rem;
	vertical-align: sub;
}
.thumb-caption .sm {
	font-size: 0.75rem;
}
.footer-detail-flex {
    display: flex;
    gap: 30px;
    padding-bottom: 80px;
}
.schedule-table-area { width: 55%; }
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.schedule-table th,
.schedule-table td {
	vertical-align: middle;
}
.schedule-table th:last-child,
.schedule-table td:last-child {
	padding-right: 1.5rem;
}
.schedule-table th {
	padding: 10px 0;
	border-bottom: 2px solid #fac300;
	font-weight: 500;
}
.schedule-table td { padding: 15px 5px; border-bottom: 2px solid #fac300; }
.time-slot { width: 30%; }
.schedule-note { margin-top: 10px; }
.google-map { width: 45%; }
.map_wrap {
	position: relative;
    z-index: 1;
}
.map_wrap .btn {
	position: absolute;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(250 / var(--break) * 100vw);
	height: calc(50 / var(--break) * 100vw);
	padding-left: 0.75rem;
    font-size: 110%;
    left: 1.5rem;
    top: 1.5rem;
	color: #1a2d3c;
    background: url(../../img/icn_map.svg) no-repeat left calc(20 / var(--break) * 100vw) center / calc(13 / var(--break) * 100vw) auto, #fbc500;
    border: 2px solid #fff;
}
.map_wrap .btn::after {
	content: "";
    width: calc(12 / var(--break) * 100vw);
    height: calc(12 / var(--break) * 100vw);
    background: #1a2d3c;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    margin: auto;
    position: absolute;
    bottom: calc(8 / var(--break) * 100vw);
    right: calc(8 / var(--break) * 100vw);
}
.map_wrap .google_map {
	position: relative;
    width: 100%;
	height: 300px;
    overflow: hidden;
}
.map_wrap .google_map iframe {
	width: 100%;
	margin-top: calc(-150 / var(--break) * 100vw);
    height: calc(100% + calc(150 / var(--break) * 100vw));
}
.footer-white-bottom {
    padding: 50px 0 80px;
	font-size: 0.9rem;
	background-color: #fff;
    text-align: center;
}
.ai-notice { margin-bottom: 2.5rem; font-weight: 400; }

@media (min-width: 769px) {
	.hp-link-btn:hover {
		opacity: 1;
		box-shadow: none;
		background: #fffadc;
	}
}
@media (max-width: 800px) {
	.footer-section {
		padding-top: 9vw;
	}
    .footer-main-flex, .footer-detail-flex { flex-direction: column; }
    .footer-visual, .footer-info, .schedule-table-area, .google-map { width: 100%; }
	.footer-detail-flex { padding-bottom: 10vw; }
	.schedule-table { letter-spacing: 0.04em; }
}
@media (max-width: 768px) {
	.map_wrap .btn {
		left: 10px;
		top: 10px;
		width: calc(330 / var(--break) * 100vw);
		height: calc(75 / var(--break) * 100vw);
		font-size: 100%;
		background-size: 11px;
	}
	.google_map iframe {
		margin-top: calc(-200 / var(--break) * 100vw);
		height: calc(100% + calc(200 / var(--break) * 100vw));
	}
	.footer-white-bottom {
		padding: 40px 0 min(40vw,160px);
	}
    .schedule-table th:last-child,
    .schedule-table td:last-child {
        padding-right: 0.5rem;
    }
    .time-slot { width: 35%; }
	.copyright { font-size: min(3.8vw,15px); }
}
