@font-face {
	font-family: 'Zen_Kaku_Gothic_New';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/ZenKakuGothicNew-Medium.woff2") format("woff2"),
		 url("../fonts/ZenKakuGothicNew-Medium.woff") format("woff");
}
@font-face {
	font-family: 'Zen_Kaku_Gothic_New';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/ZenKakuGothicNew-Bold.woff2") format("woff2"),
		 url("../fonts/ZenKakuGothicNew-Bold.woff") format("woff");
}
@font-face {
	font-family: 'Ozwald';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Oswald-Medium.woff2") format("woff2"),
		 url("../fonts/Oswald-Medium.woff") format("woff");
}

/* ==========================================================================
   OC Theme - Base Stylesheet
   ==========================================================================
   This is the main stylesheet for the OC Theme.
   - Blog-specific styles are in oc-blog-style.css
   - Contact-specific styles are in oc-contact-style.css
   ========================================================================== */


/* ==========================================================================
   1. CSS Reset (Minimal Modern Reset)
   ========================================================================== */

*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html:focus-within {
	scroll-behavior: smooth;
}

img, picture {
	max-width: 100%;
	height: auto;
	display: block;
}

input, button, textarea, select {
	font: inherit;
}

table {
	border-collapse: collapse;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


/* ==========================================================================
   2. CSS Custom Properties (Variables)
   ==========================================================================
   Color values come from theme.json via --wp--preset--color--*.
   Blog layout variables are defined here as custom properties.
   ========================================================================== */

/* Blog layout variables are defined in theme.json settings.custom.blog
   and available as --wp--custom--blog--* */


/* ==========================================================================
   3. Base Typography
   ==========================================================================
   Restores sensible defaults for common HTML elements.
   ========================================================================== */

body {
	color: var(--wp--preset--color--text, #262626);
	font-size: 16px;
	font-family: 'Zen_Kaku_Gothic_New', sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
	margin-bottom: 1rem;
}

ul, ol {
	padding-left: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--wp--preset--color--accent, #008DD7);
}

a:hover {
	text-decoration: none;
}


/* ==========================================================================
   4. Theme Component Styles
   ========================================================================== */

/* --- Text Color Utility --- */
.text-primary-color {
	color: var(--wp--preset--color--primary);
}

/* --- Clear Fix --- */
.clear-fix {
	clear: both;
}

/* --- Background Image --- */
.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* --- Text Background Top (Hero Banner) --- */
.text-bg-top {
	z-index: 0;
	height: var(--text-bg-top-height-pc, 22vw);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-cover-bg {
	background-image: var(--header-cover-image);
	background-position: var(--header-cover-position-pc, center 65%);
	background-repeat: no-repeat;
	background-size: var(--header-cover-size-pc, cover);
}

@media screen and (max-width:767px) {
	.text-bg-top {
		height: var(--text-bg-top-height-sp, var(--text-bg-top-height-pc, 22vw));
	}
	.text-bg-top.header-cover-bg {
		min-height: 230px;
	}
	.text-bg-top.header-cover-bg .caption {
		transform: translateY(24px);
	}
	.header-cover-bg {
		background-position: var(--header-cover-position-sp, var(--header-cover-position-pc, center 65%));
		background-size: var(--header-cover-size-sp, var(--header-cover-size-pc, cover));
	}
}

.text-bg-top .caption {
}

.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

/* --- 404 Page --- */
.content-none {
	text-align: center;
	font-size: 20px;
	padding: 80px 10px;
}

.content-none .error-number {
	font-size: 70px;
}

.content-none .content-none-btn {
	margin: 20px auto;
	text-align: center;
}


/* ==========================================================================
   5. OC Button Style
   ========================================================================== */

.site-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 375px;
	height: 73px;
	max-width: 90%;
	border: 1px solid var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
	background-color: transparent;
	transition: all 0.5s;
}


/* ==========================================================================
   6. OC Modal Style
   ========================================================================== */

.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
}

.modal-dialog {
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0;
	top: 25px;
}

.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400;
	border-radius: 50%;
	background: #fff;
}

.round_btn::before,
.round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 22px;
	background: #AA8400;
}

.round_btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* ==========================================================================
   7. Layout Utilities
   ========================================================================== */

/* --- Container --- */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* --- Row / Grid --- */
.row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* --- Columns (Mobile First) --- */
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
	.col-sm-6  { flex: 0 0 50%; max-width: 50%; }
	.col-sm-12 { flex: 0 0 100%; max-width: 100%; }
	.mb-sm-0 { margin-bottom: 0; }
	.mb-sm-3 { margin-bottom: 1rem; }
	.align-items-sm-center { align-items: center; }
}

@media (min-width: 768px) {
	.col-md-1  { flex: 0 0 8.333%; max-width: 8.333%; }
	.col-md-2  { flex: 0 0 16.666%; max-width: 16.666%; }
	.col-md-3  { flex: 0 0 25%; max-width: 25%; }
	.col-md-4  { flex: 0 0 33.333%; max-width: 33.333%; }
	.col-md-5  { flex: 0 0 41.666%; max-width: 41.666%; }
	.col-md-6  { flex: 0 0 50%; max-width: 50%; }
	.col-md-7  { flex: 0 0 58.333%; max-width: 58.333%; }
	.col-md-8  { flex: 0 0 66.666%; max-width: 66.666%; }
	.col-md-9  { flex: 0 0 75%; max-width: 75%; }
	.col-md-10 { flex: 0 0 83.333%; max-width: 83.333%; }
	.col-md-11 { flex: 0 0 91.666%; max-width: 91.666%; }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
	.offset-md-1 { margin-left: 8.333%; }
}

@media (min-width: 992px) {
	.col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
	.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
	.offset-lg-1 { margin-left: 8.333%; }
}


/* ==========================================================================
   8. Display Utilities
   ========================================================================== */

.d-flex   { display: flex; }
.d-block  { display: block; }
.d-none   { display: none; }


/* ==========================================================================
   9. Flexbox Utilities
   ========================================================================== */

.flex-row      { flex-direction: row; }
.flex-column   { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }

.justify-start,   .justify-content-start   { justify-content: flex-start; }
.justify-center,  .justify-content-center  { justify-content: center; }
.justify-end,     .justify-content-end     { justify-content: flex-end; }
.justify-between, .justify-content-between { justify-content: space-between; }

.align-start,  .align-items-start  { align-items: flex-start; }
.align-center, .align-items-center { align-items: center; }
.align-end,    .align-items-end    { align-items: flex-end; }

.align-self-end { align-self: flex-end; }


/* ==========================================================================
   10. Text Utilities
   ========================================================================== */

.text-start  { text-align: left; }
.text-center { text-align: center; }
.text-end    { text-align: right; }

.text-dark { color: var(--wp--preset--color--text); }

.fw-bold   { font-weight: bold; }
.fw-normal { font-weight: normal; }


/* ==========================================================================
   11. Width Utilities
   ========================================================================== */

.w-100 { width: 100%; }


/* ==========================================================================
   11b. Font Size Utilities
   ========================================================================== */

.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }


/* ==========================================================================
   11c. Misc Utilities
   ========================================================================== */


.img-cover-white {
	position: relative;
}
.img-cover-white::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

.more-info-btn-cover {
	display: flex;
	justify-content: center;
}
.more-info-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0.75em 2em;
	border: 1px solid var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
	background-color: transparent;
	transition: all 0.3s;
}
.more-info-btn:hover {
	background-color: var(--wp--preset--color--primary);
	color: #fff;
}


/* ==========================================================================
   12. Margin Utilities
   ==========================================================================
   Scale: 0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem
   ========================================================================== */

/* --- All sides --- */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 3rem; }

/* --- Top --- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* --- Bottom --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* --- Start (Left in LTR) --- */
.ms-0 { margin-left: 0; }
.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }

/* --- End (Right in LTR) --- */
.me-0 { margin-right: 0; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }

/* --- Vertical (Top + Bottom) --- */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

/* --- Horizontal Auto --- */
.mx-auto { margin-left: auto; margin-right: auto; }


/* ==========================================================================
   13. Padding Utilities
   ==========================================================================
   Scale: 0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem
   ========================================================================== */

/* --- All sides --- */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* --- Horizontal (Left + Right) --- */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* --- Vertical (Top + Bottom) --- */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }


/* ==========================================================================
   14. Breadcrumbs
   ========================================================================== */

.bread-crumbs {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 0.75rem;
	margin: 0;
	padding: 10px 1.5rem;
	list-style: none;
}

.bread-crumbs .bc-home-icon {
	margin-right: 3px;
	vertical-align: baseline;
}

.bread-crumbs .bc-link {
	display: inline-flex;
	align-items: center;
	color: var(--wp--preset--color--accent, #0A4B8B);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.bread-crumbs .bc-item {
	display: inline-block;
	color: var(--wp--preset--color--text-muted, #707070);
	font-size: 0.75rem;
	font-weight: 500;
	margin: 0 0.75em 0 0;
}

.bread-crumbs .bc-item:not(.bc-home)::before {
	content: "";
	display: inline-block;
	width: 0.45em;
	height: 0.45em;
	margin: 0 0.75em 0 0;
	border-top: 2px solid var(--wp--preset--color--text-muted, #707070);
	border-right: 2px solid var(--wp--preset--color--text-muted, #707070);
	transform: rotate(45deg) translateY(15%);
}


/* ==========================================================================
   15. Q&A (Questions & Answers)
   ========================================================================== */

.questions-answers {
	width: 100%;
}

.questions-answers .questions-answers-title {
	width: 100%;
	color: var(--wp--preset--color--primary, #233B68);
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1em;
	font-family: "Noto Sans JP", sans-serif;
}

.questions-answers .question-answer {
	width: 100%;
	display: flex;
	position: relative;
	border-bottom: 1px solid #9a8c6c;
}

.questions-answers .question-answer .qa-wrap {
	width: 100%;
	position: relative;
}

.questions-answers .question-answer .control {
	color: var(--wp--preset--color--secondary, #959FB1);
	font-size: 40px;
	font-weight: 500;
	line-height: 60px;
	cursor: pointer;
	font-family: Futura, "Noto Sans JP", sans-serif;
}

.questions-answers .question-answer .control::after {
	content: "+";
}

.questions-answers .question-answer.open .control::after {
	content: "\2013";
}

.questions-answers .question-answer .question {
	display: flex;
	align-items: center;
	color: var(--wp--preset--color--text, #555);
	font-size: 15px;
	font-weight: normal;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
}

.questions-answers .question-answer .question::before {
	content: "Q";
	width: 1em;
	color: var(--wp--preset--color--secondary, #959FB1);
	font-size: 40px;
	font-weight: 500;
	line-height: 60px;
	text-align: center;
	margin-right: 0.5em;
	font-family: Futura, "Noto Sans JP", sans-serif;
}

.questions-answers .question-answer .answer {
	align-items: center;
	max-height: 0;
	color: var(--wp--preset--color--text, #555);
	font-size: 15px;
	font-weight: normal;
	line-height: 2em;
	margin: 0;
	overflow: hidden;
	transition: max-height 0.3s;
	font-family: "Noto Sans JP", sans-serif;
}

.questions-answers .question-answer.open .answer {
	max-height: unset;
}

.questions-answers .question-answer .answer *:first-child::before {
	content: "A";
	width: 1em;
	color: #f19086;
	font-size: 40px;
	font-weight: 500;
	line-height: 60px;
	text-align: center;
	margin-right: 0.5em;
	font-family: Futura, "Noto Sans JP", sans-serif;
}

/* 20260409 kikuzawa */
.package *{
	word-break: break-word;
}
.package a,
.package a img{
    transition: all .3s;
}
.package a:hover{
	opacity: 0.7;
}
.package h2,
.package h3,
.package h4{
	color: #262626;
}
.package p{
	margin-bottom: 30px;
}
.package p:last-child{
	margin-bottom: 0;
}
.package img{
	max-width: 100%;
}
.package figure{
	margin-bottom: 0;
}
.package i{
	font-style: normal;
}
.package table{
	width: 100%;
}
.home dl,
.home dd,
.package dl,
.package dd,
ul.reset,
ol.reset,
#header ul,
#footer ul,
.home ul,
.home ol{
	margin: 0;
	padding: 0;
}
ul.reset li,
ol.reset li,
#header li,
#footer li,
.home li{
	list-style: none;
}
.tb,
.sp{
	display: none;
}
.visually-hidden,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.f1,
.font-zenkakugothicnew {
	font-family: 'Zen_Kaku_Gothic_New', sans-serif;
}
.f2,
.font-ozwald {
	font-family: 'Ozwald', sans-serif;
}
.f3,
.font-tenmincho {
	font-family: ten-mincho, serif;
}
.f4,
.font-futura {
	font-family: Futura, "Futura PT", "Avenir Next", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
}

@media screen and (max-width:820px) {
	.tb{
		display: block;
	}
}

@media screen and (max-width:767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    a[href^="tel:"] {
        pointer-events: auto;
    }
}

/*base*/
#container{
	overflow: hidden;
}
.package{
	margin: 0;
	padding: 0;
	margin-bottom: clamp(50px, calc(-25px + 9.766vw), 100px);
	max-width: 100%;
}
.wrap{
	margin: 0 auto;
	max-width: 1320px;
	padding: 0 20px;
	width: 100%;
}

@media screen and (max-width:767px) {
	.package{
		margin-bottom: 0;
	}
	.wrap{
		padding: 0 15px;
	}
}

/*ヘッダー*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 15px 40px 0;
	color: #fff;
	text-align: right;
	z-index: 8;
}
#header .site_description,
#header .contact .tel,
#header .navigation a{
	color: #262626!important;
    transition: all .3s;
}
.is-scrolled-into #header .site_description,
.is-scrolled-into #header .contact .tel,
.is-scrolled-into #header .navigation a{
	color: #fff!important;
}
#header .site_description{
	margin: 0;
	margin-bottom: 5px;
	padding: 0;
	font-size: 10px;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
#header .flex{
	align-items: center;
	gap: 15px;
}
#header .logo{
	width: 11.5%;
	max-width: 165px;
}
#header .logo > a{
	display: block;
	position: relative;
}
#header .logo > a img{
	display: block;
	width: 100%;
	height: auto;
	transition: opacity .3s ease;
	will-change: opacity;
}
#header .logo > a:after{
	content: '';
	position: absolute;
	inset: 0;
	background: url(../img/aztec_logo_white.webp) no-repeat center;
	background-size: contain;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
	will-change: opacity;
}
.is-scrolled-into #header .logo > a img{
	opacity: 0;
}
.is-scrolled-into #header .logo > a:after{
	opacity: 1;
}
#header .navigation{
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: clamp(15px, calc(-151.071px + 16.741vw), 90px);
}
#header .navigation .menu{
	display: flex;
	gap: clamp(10px, calc(-78.571px + 8.929vw), 50px);
}
#header .navigation .menu a{
    transition: all .3s;
}
#header .navigation .menu a:hover{
	color: #008DD7;
}
#header .navigation .menu>li>a{
	position: relative;
	font-size: clamp(12px, calc(3.143px + 0.893vw), 16px);
	letter-spacing: 0.1em;
}
#header .navigation .menu>li>a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 1px;
	border-bottom: #008dd7 1px dashed;
	opacity: 0;
}
#header .navigation .menu>li>a:hover:before{
	opacity: 1;
}
#header .contact{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
#header .contact .tel{
	padding-left: clamp(25px, calc(2.857px + 2.232vw), 35px);
	font-size: clamp(8px, calc(-0.857px + 0.893vw), 12px);
	text-align: center;
	line-height: 1.2;
	white-space: nowrap;
	background: url(../img/icon-phone.svg) no-repeat 0 0;
	background-size: 16% auto;
    transition: all .3s;
}
#header .contact .tel a{
	font-size: clamp(18px, calc(4.714px + 1.339vw), 24px);
	font-weight: normal;
	letter-spacing: 0.05em;
}
#header .form a{
	display: flex;
	align-items: center;
	padding-left: clamp(30px, calc(-14.286px + 4.464vw), 50px);
	padding-right: clamp(15px, calc(-18.214px + 3.348vw), 30px);
	aspect-ratio: 11 / 2;
	color: #fff!important;
	font-size: clamp(12px, calc(3.143px + 0.893vw), 16px);
	background: #008DD7 url(../img/icon-mail.svg) no-repeat clamp(15px, calc(-7.143px + 2.232vw), 25px) center;
	background-size: clamp(12px, calc(-1.286px + 1.339vw), 18px) auto;
	border-radius: 5px;
    transition: all .3s;
}
#header .form a:hover{
	background-color: #30D2C1;
}
.menu-trigger{
	display: none;
	position: fixed;
	top: 15px;
	right: 40px;
	width: 48px;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	background: #FFFFFF;
	border-radius: 100%;
	z-index: 12;
}
.on .menu-trigger{
	background: #008DD7;
}
.menu-trigger .inr{
	position: relative;
	width: 24px;
	height: 17px;
    transition: all .3s;
}
.menu-trigger span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: #008DD7;
	transition: all .3s;
}
.on .menu-trigger span {
	background: #fff;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 50%;
    transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.on .menu-trigger span:nth-of-type(3),
.on .menu-trigger span:nth-of-type(1) {
	top: 50%;
	bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}
.on .menu-trigger span:nth-of-type(2){
	opacity: 0;
}
.on .menu-trigger span:nth-of-type(3) {
    transform: translateY(-50%) rotate(45deg);
}
.sp-contact a{
	display: none;
	position: fixed;
	top: 15px;
	right: 95px;
	width: 48px;
	aspect-ratio: 1 / 1;
	text-align: center;
	line-height: 48px;
	background: #008DD7;
	border-radius: 100%;
	z-index: 9;
}
.sp-contact a img{
	display: inline-block;
}
.sp-menu{
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	width: 375px;
	color: #262626;
	background: #fff;
    transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	z-index: 10;
}
.sp-menu::-webkit-scrollbar{
	display: none;
}
.on .sp-menu{
	right: 0;
}
.sp-menu .inr{
	padding: 20px 30px;
	padding-top: 10px;
	min-height: 100%;
}
.sp-menu .sp-logo{
	width: 140px;
}
.sp-menu .upper {
	margin-bottom: 25px;
}
.sp-menu li a,
.sp-menu a{
	color: #262626;
}
.sp-menu .menu li{
	padding: 22px 0;
	border-bottom: #c2c2c2 1px solid;
}
.sp-menu .menu a{
	display: block;
	padding-right: 35px;
	text-align: left;
	background: url(../img/arrow10.svg) no-repeat right center;

}
.sp-menu .bottom{
	text-align: center;
}
.sp-menu .privacy{
	margin-bottom: 45px;
}
.sp-menu .tel{
	margin-bottom: 45px;
	line-height: 1.4;
}
.sp-menu .tel a{
	display: inline-block;
	padding-left: 33px;
	color: #008DD7;
	font-size: 32px;
	letter-spacing: 0.05em;
	background: url(../img/icon-phone03.svg) no-repeat 0 center;
}
.sp-menu .tel span{
	display: block;
}
.sp-menu .copyright{
	color: #262626;
	font-size: 12px;
	line-height: 1.35;
}

@media screen and (max-width:990px) {
	#header {
		padding-right: 20px;
	}
	#header .site_description{
		transform: translateY(-0.5em);
	}
	#header .logo{
		margin-top: -5px;
		width: 140px;
}
	#header .navigation{
		display: none;
	}
	.menu-trigger{
		display: flex;
		align-items: center;
		justify-content: center;
		top: 32px;
		right: 20px;
	}
	.sp-contact a{
		display: block;
		top: 32px;
		right: 75px;
	}
	.sp-menu .inr{
		padding-top: 32px;
	}
}

@media screen and (max-width:500px) {
	#header {
		padding: 15px 20px 0 15px;
	}
	.sp-menu{
		width: 100%;
	}
}

/*メインカラム*/
.top-mv {
	position: relative;
}
.top-mv:before{
	content: '';
	position: absolute;
	inset: 0;
	background: url(../img/top-mv-02.png) no-repeat right 0;
	background-size: auto 100%;
}
.top-mv .text{
	position: absolute;
	left: 40px;
	bottom: clamp(-50px, calc(164.286px - 14.881vw), 50px);
	width: 56.9%;
	max-width: 819px;
	mix-blend-mode: color-dodge;
}
.top-mv .image img{
	width: 100%;
}
.top-mv .contact{
	display: flex;
	position: absolute;
	top: 170px;
	right: 40px;
}
.top-mv .contact a{
	display: block;
	position: relative;
	padding-top: 85px;
	width: 160px;
	aspect-ratio: 1 / 1;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
	background: rgba(23,252,227, 0.9);
	border-radius: 5px 0 0 5px;
}
.top-mv .contact a:last-child{
	background: rgba(73,204,182, 0.9);
	border-radius: 0 5px 5px 0;
}
.top-mv .contact a:before{
	content: '';
	position: absolute;
	inset: 0;
	background: url(../img/top-mv-03.png) no-repeat center 0 ;
    transform: translateY(-16px);
	background-size: 150px auto;
}
.top-mv .contact a:last-child:before{
	background: url(../img/top-mv-04.png) no-repeat center 0 ;
    transform: translateY(-24px);
	background-size: 93px auto;
}
.top-mv .contact a:after{
	content: '';
	position: absolute;
	inset: 0;
	background: url(../img/arrow.svg) no-repeat center bottom 13px;
}
.top-mv .contact b{
	display: block;
	font-weight: normal;
	font-size: 18px;
}
.top-news {
	position: relative;
}
.top-news .flex{
	position: absolute;
	top: 0;
	right: 0;
	width: 36%;
	min-width: 520px;
	height: 80px;
	z-index: 2;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
}
.top-news .header{
	width: 80px;
	text-align: center;
	background: #008DD7;
}
.top-news h2{
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	line-height: 80px;
	letter-spacing: 0.1em;
}
.top-news .body{
	flex: 1;
	background: #fff;
}
.top-news a{
	display: flex;
	align-items: center;
	padding: 15px 0;
	color: #262626;
	height: 80px;
}
.top-news .date{
	padding-top: 8px;
	width: 90px;
	height: 100%;
	font-size: 12px;
	text-align: center;
	line-height: 1.2;
	border-right: #d9d9d9 1px solid;
}
.top-news .date b{
	display: block;
	font-weight: normal;
	font-size: 16px;
}
.top-news .p-title{
	flex: 1;
	padding-left: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.top-content h2[data-en]{
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.1em;
}
.top-content h2[data-en]:before{
	content: attr(data-en);
	display: block;
	margin-bottom: 30px;
	font-size: clamp(70px, calc(35.714px + 4.464vw), 100px);
	font-family: 'Ozwald', sans-serif;
	font-weight: normal;
	line-height: 0.8;
	letter-spacing: 0;
	color: #008DD7;
}
.top-content div.wrap .header-s1 {
	padding-top: 60px;
	padding-left: 60px;
	min-height: 130px;
	margin-bottom: clamp(75px, calc(-10.714px + 11.161vw), 150px);
	font-size: clamp(48px, calc(29.714px + 2.381vw), 64px);
	letter-spacing: 0.1em;
	background: url(../img/deco11-white-outline.svg) no-repeat 0 0;
}
.top-content .header-s1 span{
	display: inline-block;
	margin-bottom: 20px;
	font-size: clamp(30px, calc(0.286px + 3.869vw), 56px);
	line-height: 1.8;
	letter-spacing: 0.1em;
	background-image: linear-gradient(to right, #fff 10px, transparent 10px);
	background-size: 20px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
}
.top-content .header-s1 span:last-child{
	margin-bottom: 0;
}
.top-content.c01 {
	padding-top: clamp(50px, calc(28.723px + 4.255vw), 90px);
	background: #E4E4E4;
	overflow: hidden;
}
.top-content.c01 .marquee-wrap{
	margin-bottom: clamp(60px, calc(38.723px + 4.255vw), 100px);
}
.top-content.c01 .inr{
	position: relative;
	padding-left: 16.5%;
	padding-bottom: clamp(120px, calc(96.809px + 10.638vw), 250px);
}
.top-content.c01 .inr:after,
.top-content.c01 .inr:before{
	content: '';
	position: absolute;
	top: -25px;
	right: 0;
	width: 21.9%;
	aspect-ratio: 28 / 31;
	background: url(../img/top-c01-01.png) no-repeat center;
	background-size: contain;
}
.top-content.c01 .inr:after{
	top: auto;
	right: auto;
	left: -35px;
	bottom: -25px;
	width: 21.9%;
	aspect-ratio: 1 / 1;
	background: url(../img/deco13.svg) no-repeat center;
	background-size: contain;
}
.top-content .marquee-text img{
	max-width: none;
	margin-right: 50px;
}
.top-content.c01 div.wrap h2.header-s1{
	margin-left: -60px;
	margin-bottom: 60px;
	line-height: 1.55;
	background-image: url(../img/deco11-white-fill.svg);
}
.top-content.c01 .body p{
	margin-bottom: 50px;
	font-size: 20px;
	line-height: 2.4;
}
.top-content.c01 .body p:last-child{
	margin-bottom: 0;
}
.top-content.c02 {
	padding-top: clamp(65px, calc(-9.286px + 9.673vw), 130px);
	padding-bottom: clamp(80px, calc(-11.429px + 11.905vw), 160px);
}
.top-content.c02 h2{
	margin-bottom: 85px;
}
.top-content.c02 .upper{
	position: relative;
	margin-bottom: clamp(100px, calc(8.571px + 11.905vw), 180px);
	padding-top: 35px;
}
.top-content.c02 .upper:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 31.5%;
	aspect-ratio: 135 / 128;
	background: url(../img/top-c02-08.png) no-repeat center;
	background-size: contain;
}
.top-content.c02 .upper:after{
	content: '';
	position: absolute;
	left: 30px;
	bottom: 0;
	width: 13.5%;
	aspect-ratio: 17 / 10;
	background: url(../img/deco14.svg) no-repeat center;
	background-size: contain;
}
.top-content.c02 .upper .body{
    counter-reset: order;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 5%;
	margin-top: -10px;
}
.top-content.c02 .upper dl{
	position: relative;
	padding-top: 120px;
	padding-bottom: 60px;
	width: 30%;
}
.top-content.c02 .upper dl:nth-of-type(2){
	margin-top: 120px;
}
.top-content.c02 .upper dl:nth-of-type(3){
	margin-top: 240px;
}
.top-content.c02 .upper dl:before{
    counter-increment: order;
    content: counter(order, decimal-leading-zero);
	position: absolute;
	top: 0;
	right: 0;
	font-size: 64px;
	font-family: 'Ozwald', sans-serif;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #565EFF;
}
.top-content.c02 .upper dl:after{
	content: 'FEATURE';
	position: absolute;
	top: 63px;
	right: 7px;
	color: #565EFF;
	font-size: 14px;
	font-family: 'Ozwald', sans-serif;
	letter-spacing: 0.1em;
}
.top-content.c02 .upper dl:nth-of-type(2):after,
.top-content.c02 .upper dl:nth-of-type(2):before{
	color: #1FDAA5;
}
.top-content.c02 .upper dl:nth-of-type(3):after,
.top-content.c02 .upper dl:nth-of-type(3):before{
	color: #00A7FF;
}
.top-content.c02 .upper dt{
	margin-right: -10px;
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.7;
}
.top-content.c02 .upper dd{
	line-height: 1.85;
}
.top-content.c02 .middle {
	position: relative;
	margin-bottom: 90px;	
}
.top-content.c02 .middle:before{
	content: '';
	position: absolute;
	top: 0;
	right: 55px;
	width: 26.5%;
	aspect-ratio: 34 / 17.5;
	background: url(../img/deco15.svg) no-repeat center;
	background-size: contain;
}
.top-content.c02 .middle .body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 4%;
}
.top-content.c02 .middle .box{
	width: calc(92% / 3);
}
.top-content.c02 .middle .box:nth-of-type(2){
	margin-top: 60px;
}
.top-content.c02 .middle .box:nth-of-type(3){
	margin-top: 120px;
}
.top-content.c02 .middle .image{
	margin-bottom: 30px;
	border-radius: 5px;
	overflow: hidden;
}
.top-content.c02 .middle dt{
	margin-bottom: 20px;
	color: #008DD7;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.7;
}
.top-content.c02 .middle dt span{
	font-size: 18px;
}
.top-content.c02 .middle dd{
	line-height: 1.85;
}
.top-content.c02 .middle .link{
	margin-top: 25px;
}
.top-content.c02 .middle .link a{
	display: inline-block;
	position: relative;
	padding-left: 65px;
	color: #222222;
	font-size: 20px;
    transition: color .3s;
}
.top-content.c02 .middle .link a:hover{
	color: #008DD7;
	opacity: 1;
}
.top-content.c02 .middle .link a:after,
.top-content.c02 .middle .link a:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	pointer-events: none;
}
.top-content.c02 .middle .link a:before{
	width: 52px;
	height: 26px;
	background-color: #222222;
	border-radius: 6.5px;
    transition: background-color .3s;
	transform: translateY(-50%);
}
.top-content.c02 .middle .link a:after{
	left: 18px;
	width: 16px;
	height: 7px;
	background: url(../img/icon-arrow-link.svg) no-repeat center;
	background-size: contain;
	transform: translateY(-50%);
}
.top-content.c02 .middle .link a:hover:before{
	background-color: #008DD7;
}
.top-content.c02 .bottom{
	position: relative;
}
.top-content.c02 .bottom:before{
	content: '';
	position: absolute;
	top: -30px;
	right: 28%;
	width: 15%;
	aspect-ratio: 19 / 14;
	background: url(../img/deco16.svg) no-repeat center;
	background-size: contain;
}
.top-content.c02 .bottom h2{
	margin-bottom: 0;
}
.top-content.c02 .bottom .slider-arrow{
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-bottom: 30px;
}
.top-content.c02 .bottom .slider{
	width: calc(100vw - max(20px, calc((100vw - 1320px) / 2 + 20px)));
}
.top-content.c02 .bottom .slider .slick-track{
	display: flex;
}
.top-content.c02 .bottom .box{
	position: relative;
	float: none;
	width: 345px;
	padding: 30px 20px;
	height: auto !important;
	border: #e9e9e9 1px solid;
	border-left: none;
	border-bottom: none;
    transition: all .3s;
}
.top-content.c02 .bottom .box:first-child{
	border-left: #e9e9e9 1px solid;
}
.top-content.c02 .bottom .box:hover{
	opacity: 1;
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}
.top-content.c02 .bottom .box:before{
	content: '';
	position: absolute;
	inset: 0;
	border-bottom: #e9e9e9 1px solid;
    transition: all .3s;
	pointer-events: none;
}
.top-content.c02 .bottom .box:hover:before{
	border-bottom: #008dd7 6px solid;
}
.top-content.c02 .bottom .box-link{
	display: block;
	height: 100%;
	color: inherit;
}
.top-content.c02 .bottom .box-link:hover{
	color: inherit;
	opacity: 1;
}
.top-content.c02 .bottom .image{
	margin-bottom: 30px;
}
.top-content.c02 .bottom .image img{
	aspect-ratio: 6 / 5;
	object-fit: cover;
}
.top-content.c02 .bottom dt{
	margin-bottom: 20px;
	padding-top: 20px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
	border-top: #e9e9e9 1px solid;
}
.top-content.c02 .bottom dd{
	line-height: 1.85;
}
.top-content.c02 .bottom .tag {
	margin-bottom: 15px;
}
.top-content.c02 .bottom .tag span{
	display: inline-block;
	padding: 0 8px;
	min-width: 48px;
	font-size: 14px;
	font-weight: bold;
	line-height: 26px;
	text-align: center;
	border: #cdcdcd 1px solid;
	border-radius: 3px;
}
.top-content.c02 .bottom .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2; /* 行数 */
}
.top-content.c02 .bottom .slider-dots{
	margin-bottom: 20px;
}
.top-content.c02 .bottom .link{
	text-align: right;
}
.top-content.c02 .bottom .link a{
	display: inline-block;
	position: relative;
	padding-left: 65px;
	font-size: 20px;
	color: #222;
    transition: color .3s;
}
.top-content.c02 .bottom .link a:hover{
	color: #008DD7;
	opacity: 1;
}
.top-content.c02 .bottom .link a:after,
.top-content.c02 .bottom .link a:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	pointer-events: none;
}
.top-content.c02 .bottom .link a:before{
	width: 52px;
	height: 26px;
	background-color: #222222;
	border-radius: 6.5px;
    transition: background-color .3s;
	transform: translateY(-50%);
}
.top-content.c02 .bottom .link a:after{
	left: 18px;
	width: 16px;
	height: 7px;
	background: url(../img/icon-arrow-link.svg) no-repeat center;
	background-size: contain;
	transform: translateY(-50%);
}
.top-content.c02 .bottom .link a:hover:before{
	background-color: #008DD7;
}
.top-content.c02 .slick-arrow {
	position: static;
    top: 50%;
    width: 54px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url(../img/prev.svg) no-repeat center;
    transform: translateY(0) translateX(0);
	z-index: 1;
}
.top-content.c02 .slick-next {
	background: url(../img/next.svg) no-repeat center;
}
.top-content.c02 .slick-arrow:before {
	display: none;
}
.top-content.c02 .slick-dots{
	display: flex;
	position: static;
	margin-top: 70px;
}
.top-content.c02 .slick-dots button,
.top-content.c02 .slick-dots button:before{
	display: none;
}
.top-content.c02 .slick-dots li{
	content: '';
	margin: 0;
	padding: 0;
	width: 100%;
	height: 3px;
	background: #EEEEEE;
	border-radius: 10px;
	opacity: 1;
}
.top-content.c02 .slick-dots li.slick-active{
	background: #0D99FF;
}
.top-content.c03 {
	padding: clamp(75px, calc(-10.714px + 11.161vw), 150px) 0;
	color: #fff;
	background: url(../img/top-c03-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c03 .wrap{
	padding: 0;
	max-width: 100%;
}
.top-content.c06 h2,
.top-content.c03 h2{
	margin-bottom: 30px;
	padding-right: 5.5%;
	color: #fff;
	text-align: right;
}
.top-content.c06 h2:before,
.top-content.c03 h2:before{
	-webkit-text-stroke: 1px #fff;
	color: transparent;
}
.top-content.c03 div.wrap .header-s1{
	margin-right: -30px;
	margin-bottom: 90px;
	padding-top: 75px;
	padding-left: 75px;
	color: #fff;
	font-weight: bold;
	font-size: clamp(32px, calc(-4.571px + 4.762vw), 64px);
	line-height: 1;
	letter-spacing: 0;
	background: url(../img/deco17.svg) no-repeat 0 0;
}
.top-content.c03 .body{
	gap: 30px 80px;
}
.top-content.c03 .text{
	padding-left: 5.5%;
	width: 850px;
}
.top-content.c03 .text-inr{
	padding-left: 75px;
}
.top-content.c03 strong{
	display: block;
	margin-bottom: 40px;
	font-size: 28px;
	font-weight: normal;
	line-height: 1.7;
}
.top-content.c03 p{
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 2.2;
}
.top-content.c03 p:last-child{
	margin-bottom: 0;
}
.top-content.c03 .image{
	flex: 1;
	padding-top: 75px;
}
.top-content.c03 .img{
	margin-bottom: 30px;
}
.top-content.c03 .image img{
	width: 100%;
	border-radius: 1% 0 0 1%;
}
.top-content.c03 .image p{
	padding-right: 16%;
	font-size: 16px;
	letter-spacing: 0.05em;
	text-align: right;
	line-height: 1.5;
}
.top-content.c03 .image p span{
	display: block;
	font-size: 12px;
}
.top-content.c03 .image b{
	display: inline-block;
	margin-left: 10px;
	font-size: 24px;
	font-weight: normal;
    transform: translateY(4px);
}
.top-content.c04 {
	padding: clamp(80px, calc(-11.429px + 11.905vw), 160px) 0;
}
.top-content.c04 h2{
	position: relative;
	margin-bottom: 90px;	
}
.top-content.c04 h2:after{
	content: '';
	position: absolute;
	top: -30px;
	right: -40px;
	width: 20%;
	aspect-ratio: 2 / 1;
	background: url(../img/deco18.svg) no-repeat center;
	background-size: contain;
}
.top-content.c04 .body{
    counter-reset: order;
}
.top-content.c04 .box{
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.top-content.c04 .box:before{
    counter-increment: order;
    content: counter(order, decimal-leading-zero);
	position: absolute;
	top: -33px;
	right: 20px;
	color: #008DD7;
	font-family: 'Ozwald', sans-serif;
	font-size: 64px;
	letter-spacing: 0.1em;
	line-height: 1;
}
.top-content.c04 .box:after{
	content: '';
	display: block;
	width: 100%;
	height: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	background: url(../img/arrow03.svg) no-repeat center;
	background-size: 5.5% auto;
}
.top-content.c04 .box:last-child:after{
	display: none;
}
.top-content.c04 .image{
	width: 29%;
	border-radius: 5px 0 0 5px;
	overflow: hidden;
}
.top-content.c04 .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-content.c04 .text{
	flex: 1;
	display: flex;
	align-items: center;
	padding: 20px 0;
	padding-left: 7.5%;
	border-color: #e9e9e9;
	border-style: solid;
	border-width: 1px 1px 1px 0;
	border-radius: 0 5px 5px 0;
}
.top-content.c04 dt{
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 28px;
	line-height: 1.9;
	letter-spacing: 0.1em;
}
.top-content.c04 dd{
	line-height: 2;
	letter-spacing: 0.05em;
}
.top-content.c05 {
	padding-top: clamp(75px, calc(-10.714px + 11.161vw), 150px);
	padding-bottom: clamp(55px, calc(-7.857px + 8.185vw), 110px);
	background: #EEEEEE;
}
.top-content.c05 .wrap{
	position: relative;
}
.top-content.c05 .wrap:after,
.top-content.c05 .wrap:before{
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	width: 11.25%;
	aspect-ratio: 1 / 1;
	background: url(../img/deco19.svg) no-repeat center;
	background-size: contain;
}
.top-content.c05 .wrap:after{
	top: calc(clamp(50px, calc(-1.429px + 6.696vw), 95px) * -1);
	left: auto;
	right: 20px;
	width: 20%;
	background: url(../img/deco20.svg) no-repeat center;
	background-size: contain;
    transform: translateX(50%);
}
.top-content.c05 h2{
	margin-bottom: 90px;
}
.top-content.c05 h3{
	margin-bottom: 25px;
	color: #262626;
	font-size: 28px;
	line-height: 1;
	letter-spacing: 0.1em;
}
.top-content.c05 .upper {
	margin-bottom: 55px;
}
.top-content.c05 .upper .flex{
	gap: 10px 6.25%;
}
.top-content.c05 .upper .image{
	width: 31.25%;
	border-radius: 5px;
	overflow: hidden;
}
.top-content.c05 .upper .text{
	flex: 1;
}
.top-content.c05 .upper dl{
	display: flex;
	flex-wrap: wrap;
	margin-top: -15px;
}
.top-content.c05 .upper dt{
	padding: 15px;
	padding-left: 0;
	width: 135px;
	color: #008DD7;
	font-weight: bold;
	line-height: 1.85;
	letter-spacing: 0.3em;
	border-bottom: #a6a6a6 1px solid;
}
.top-content.c05 .upper dd{
	width: calc(100% - 135px);
	padding: 15px 0;
	line-height: 1.85;
	border-bottom: #a6a6a6 1px solid;
}
.top-content.c05 .upper dt:last-of-type,
.top-content.c05 .upper dd:last-of-type{
	border: none;
}
.top-content.c05 .bottom{
	position: relative;
}
.top-content.c05 .bottom:before{
	content: '';
	position: absolute;
	right: 13.5%;
	bottom: 0;
	width: 18.35%;
	aspect-ratio: 2 / 1;
	background: url(../img/deco21.svg) no-repeat center;
	background-size: contain;
}
.top-content.c05 .map{
	margin-bottom: 30px;
	border-radius: 5px;
	overflow: hidden;
}
.top-content.c05 iframe{
	display: block;
	width: 100%;
	height: 500px;
}
.top-content.c05 .access dl:not(:last-child){
	margin-bottom: 25px;
}
.top-content.c05 .access dt{
	display: inline-block;
	margin-bottom: 10px;
	padding: 0 10px;
	min-width: 77px;
	height: 24px;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 24px;
	background: #008DD7;
	border-radius: 5px;
}
.top-content.c05 .access dd{
	line-height: 1.85;
	letter-spacing: 0.05em;
}
.top-content.c06 {
	padding-top: clamp(60px, calc(-8.571px + 8.929vw), 120px);
	color: #fff;
	background: url(../img/top-c06-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c06 h2{
	margin-bottom: 0;
	padding-right: 0;
}
.top-content.c06 p{
	margin-bottom: 50px;
	padding-left: 80px;
	font-size: 24px;
	line-height: 2.3;
}
.top-content.c06 .body p:last-child{
	margin-bottom: 0;
}
.top-content.c06 p.header-s1{
	padding-left: 85px;
	font-size: clamp(40px, calc(16px + 3.125vw), 56px);
	line-height: 1.5;
	background: url(../img/deco17.svg) no-repeat 0 0;
}
.top-content.c06 p.s2{
	margin-top: clamp(70px, calc(-10px + 10.417vw), 140px);
	margin-right: -50px;
	font-size: clamp(100px, calc(8.571px + 11.905vw), 180px);
	text-align: right;
	line-height: 1;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}
.top-content.c06 p.s2 span{
	display: inline-block;
	text-align: left;
}
.top-content.c06 p.s2 i{
	padding-left: 80px;
}
.top-content.c07 {
	margin-top: -67px;
	padding-top: clamp(70px, calc(-10px + 10.417vw), 140px);
	color: #fff;
	background: #008DD7;
	border-radius: 60px 60px 0 0;
}
.top-content.c07 .header-s1{
	position: relative;
	margin-bottom: 100px;
	padding-left: 80px;
	padding-right: 185px;
	color: #fff;
	background: url(../img/deco17.svg) no-repeat 0 0;
}
.top-content.c07 .header-s1 span:after{
	content: attr(data-en);
	position: absolute;
	top: clamp(75px, calc(29.286px + 5.952vw), 115px);
	right: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-family: 'Ozwald', sans-serif;
	font-weight: normal;
	line-height: 1;
}
.top-content.c07 .box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 7%;
	margin-bottom: clamp(75px, calc(-10.714px + 11.161vw), 150px);
	line-height: 2.5;
}
.top-content.c07 .box:nth-of-type(even) .image{
	order: 2;
}
.top-content.c07 .box:last-child{
	margin-bottom: 70px;
}
.top-content.c07 .image{
	position: relative;
	width: 44%;
    transform: rotate(4.4deg);
}
.top-content.c07 .image:before{
	content: '';
	position: absolute;
	inset: 0;
	background: #007CBD;
	border: #164E6C 2px dashed;
	border-radius: 70px;
	border-top-left-radius: 0;
    transform: rotate(-8.8deg);
	z-index: -1;
}
.top-content.c07 .image img{
	border-radius: 70px;
	border-top-left-radius: 0;
}
.top-content.c07 .text{
	flex: 1;
}
.top-content.c07 .bottom {
	margin-top: calc(clamp(70px, 44.545px + 7.955vw, 140px) * -1);
	padding-top: clamp(100px, calc(67.273px + 10.227vw), 190px);
	padding-bottom: clamp(85px, calc(-42.5px + 16.602vw), 170px);
	background: #217AA8;
	border-radius: 60px 60px 0 0;
}
.top-content.c07 .bottom .box{
	align-items: flex-start;
	gap: 30px 8.6%;
}
.top-content.c07 .bottom .box:last-child{
	margin-bottom: 0;
}
.top-content.c07 .bottom .image{
	width: 40%;
	text-align: right;
    transform: rotate(0deg);
}
.top-content.c07 .bottom .box:nth-of-type(even) .image{
    transform: translateX(-8%);
}
.top-content.c07 .bottom .image:before{
	display: none;
}
.top-content.c07 .bottom .image img:last-child{
	display: inline-block;
	margin-top: -60px;
	margin-right: -60px;
	width: 66%;
	border: #217aa8 10px solid;
	border-radius: 40px;
	border-top-left-radius: 0;
    transform: rotate(6.85deg);
}
.top-content.c07 .bottom .box:nth-of-type(even) .image img:last-child{
    transform: rotate(-6.85deg);
}
.top-content.c07 .bottom p:not(:last-child){
	margin-bottom: 20px;
}
.top-content.c07 .bottom p.s1{
	margin-bottom: 40px;
	font-size: 32px;
	line-height: 2;
}
.top-content.c08 {
	padding-top: clamp(80px, calc(-40px + 15.625vw), 160px);
	padding-bottom: clamp(75px, calc(-30px + 13.672vw), 145px);
	color: #fff;
	text-align: center;
	background: url(../img/top-c08-bg.webp) no-repeat center 0;
	background-size: cover;
}
.top-content.c08 .recruit-entry-title{
	margin-bottom: 50px;
	color: #fff;
}
.top-content.c08 .recruit-entry-title span{
	display: inline-block;
	margin-bottom: 20px;
	font-size: clamp(30px, calc(0.286px + 3.869vw), 56px);
	line-height: 1.8;
	letter-spacing: 0.1em;
	background-image: linear-gradient(to right, #fff 10px, transparent 10px);
	background-size: 20px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
}
.top-content.c08 .body{
	font-size: 20px;
	line-height: 2;
}
.top-content.c08 .link{
	margin-top: 65px;
	text-align: center;
}
.top-content.c08 .link a{
	display: inline-block;
	position: relative;
	padding-left: 60px;
	width: 400px;
	aspect-ratio: 33 / 8;
	color: #fff;
	text-align: center;
	line-height: 97px;
	background: #008DD7 url(../img/arrow07.svg) no-repeat 95px center;
	border-radius: 100px;
}
.top-content.c08 .link a:hover{
	opacity: 1;
	background-color: #30D2C1;
}
.top-content.c08 .link a:before{
	content: '';
	position: absolute;
	top: 18px;
	right: 40px;
	width: 16px;
	aspect-ratio: 1 /1;
	background: url(../img/icon-link.svg) no-repeat center 0;
	background-size: 100% auto;
}
.top-content.c09 {
	padding: clamp(75px, calc(-37.5px + 14.648vw), 150px) 0;
}
.top-content.c09 h2{
	margin-bottom: 95px; 
}
.top-content.c09 .box:not(:last-child){
	margin-bottom: 15px;
}
.top-content.c09 dl{
	border: #e9e9e9 1px solid;
	border-radius: 5px;
	cursor: pointer;
}
.top-content.c09 dl:after{
	transform: translateY(-50%) rotate(90deg);
}
.top-content.c09 dt{
	position: relative;
	font-size: 20px;
	letter-spacing: 0.05em;
}
.top-content.c09 dt span{
	position: relative;
	display: block;
	padding: 30px 70px;
	padding-left: clamp(70px, calc(10px + 7.813vw), 110px);
}
.top-content.c09 dt span:after,
.top-content.c09 dt span:before{
	content: '';
	position: absolute;
	top: 50%;
	right: 35px;
	width: 23px;
	height: 3px;
	background: #008DD7;
    transform: translateY(-50%);
	z-index: 2;
    transition: all .3s;
}
.top-content.c09 dt span:after{
	transform: translateY(-50%) rotate(90deg);
}
.top-content.c09 .show dt span:after{
	transform: translateY(-50%) rotate(0);
}
.top-content.c09 dd{
	position: absolute;
	padding: 0;
	height: 0;
	background: #B8D6E6;
	opacity: 0;
	z-index: -1;
}
.top-content.c09 .show dd{
	position: relative;
	padding: 30px 70px;
	padding-left: clamp(70px, calc(10px + 7.813vw), 110px);
	height: auto;
	opacity: 1;
	z-index: 1;
}
.top-content.c09 dd:before,
.top-content.c09 dt:before{
	display: flex;
	justify-content: center;
	align-items: center;
	content: 'Q';
	position: absolute;
	top: 20px;
	left: clamp(15px, calc(-30px + 5.859vw), 45px);
	width: 48px;
	aspect-ratio: 1 / 1;
	font-size: 24px;
	font-family: 'Ozwald', sans-serif;
	background: #fff;
	border: #262626 2px solid;
	border-radius: 100%;
}
.top-content.c09 dd:before{
	content: 'A';
	color: #008DD7;
	border-color: #008DD7;
}
.top-content.c10 {
	padding-top: clamp(65px, calc(-32.5px + 12.695vw), 130px);
	padding-bottom: clamp(75px, calc(-37.5px + 14.648vw), 150px);
	color: #fff;
	background: url(../img/top-c10-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c10 .upper {
	margin-bottom: 50px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
}
.top-content.c10 .upper p{
	display: inline-block;
	text-align: left;
}
.top-content.c10 .upper p{
	max-width: 730px;
}
.top-content.c10 .upper h2{
	display: inline-block;
	margin: 0 0 10px;
	color: inherit;
	font-size: clamp(25px, calc(2.5px + 2.93vw), 40px);
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: left;
}
.top-content.c10 .bottom{
	gap: 15px 0;
	margin: 0 auto;
	max-width: 1020px;
}
.top-content.c10 .box{
	width: 47%;
	aspect-ratio: 8 / 5;
}
.top-content.c10 .box a{
	display: block;
	position: relative;
	padding: 30px 25px 20px;
	height: 100%;
	color: #fff;
	border-radius: 5px;
    transition: all .3s;
	overflow: hidden;
	z-index: 2;
}
.top-content.c10 .box a > dl{
	height: 100%;
}
.top-content.c10 .box a:hover{
	opacity: 1;
}
.top-content.c10 .box a:after,
.top-content.c10 .box a:before{
	content: '';
	position: absolute;
	inset: 0;
	background: #008DD7;
    transition: all .3s;
	z-index: -1;
}
.top-content.c10 .box a:after{
	background: linear-gradient(180deg,rgba(51, 255, 197, 1) 0%, rgba(0, 167, 255, 1) 100%);
	opacity: 0;
}
.top-content.c10 .box a:hover:before{
	opacity: 0;
}
.top-content.c10 .box a:hover:after{
	opacity: 0.8;
}
.top-content.c10 dt{
	font-size: 32px;
	font-weight: normal;
	line-height: 1;
}
.top-content.c10 dd{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	padding: 0;
	letter-spacing: 0.05em;
	text-align: center;
	transform: translateY(-50%);
}
.top-content.c10 .box a > dl:after{
	content: '';
	position: absolute;
	right: 22px;
	bottom: 19px;
	width: 40px;
	aspect-ratio: 2 / 1;
	background: url(../img/arrow08.svg) no-repeat center;
	background-size: contain;
}
.top-content.c10 dd b{
	padding-left: 45px;
	font-weight: normal;
	font-size: clamp(22px, calc(7px + 1.953vw), 32px);
	letter-spacing: 0;
	background: url(../img/icon-mail.svg) no-repeat 0 14px;
	background-size: clamp(22px, calc(13px + 1.172vw), 28px) auto;
}
.top-content.c10 .tel dd b{
	padding-left: 30px;
	font-size: clamp(30px, calc(15px + 1.953vw), 40px);
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.05em;
	background: url(../img/icon-phone02.svg) no-repeat 0 center;
	background-size: 22px 30px;
}
.top-content.c11 {
	padding: clamp(75px, calc(-37.5px + 14.648vw), 150px) 0;
}
.top-content.c11 h2{
	margin-bottom: 100px;
}
.top-content.c11 p{
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c11 .inr{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 1.85%;
}
.top-content.c11 a{
	display: block;
	width: 300px;
	color: #262626;
}
.top-content.c11 figure{
	aspect-ratio: 3 / 1;
}
.top-content.c11 figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: #e9e9e9 1px solid;
	border-radius: 5px;
}
.top-content.c11 figcaption{
	display: block;
	margin-top: 10px;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0.05em;
}

@media screen and (max-width:1440px) {
	.top-content.c03 .text{
		padding-left: 5.5%;
		width: 59%;
	}
}

@media screen and (max-width:820px) {
	.top-mv .contact a{
		padding-top: 50px;
		width: 90px;
		font-size: 8px;
		line-height: 1.25;
		border-radius: 3px 0 0 3px;
	}
	.top-mv .contact a:last-child{
		border-radius: 0 3px 3px 0;
	}
	.top-mv .contact a:before{
		transform: translateY(-10px);
		background-size: 82px auto;
	}
	.top-mv .contact a:last-child:before{
		transform: translateY(-14px);
		background-size: 52px auto;
	}
	.top-mv .contact a:after{
		background-size: 9px auto;
		transform: translateY(24px);
	}
	.top-mv .contact b{
		font-size: 10px;
	}
	.top-content.c01 .inr{
		padding-left: 8%;
	}
	.top-content.c01 .body p{
		font-size: 18px;
	}
	.top-content.c02 .upper .body{
		gap: 30px 2%;
	}
	.top-content.c02 .upper dl{
		width: 32%;
	}
	.top-content.c02 .upper dt{
		font-size: 20px;
	}
	.top-content.c02 .middle dt{
		font-size: 20px;
	}
	.top-content.c03 .wrap{
		padding: 0 20px;
	}
	.top-content.c03 .image p,
	.top-content.c06 h2,
	.top-content.c03 h2{
		padding-right: 0;
	}
	.top-content.c03 .text{
		order: 2;
		width: 100%;
	}
	.top-content.c03 .image{
		flex: none;
		width: 100%;
	}
	.top-content.c04 .text{
		padding-left: 20px;
	}
	.top-content.c06 p.s2{
		margin-right: 0;
	}
	.top-content.c07 .bottom .image,
	.top-content.c07 .image{
		margin: 0 100px;
		margin-bottom: 20px;
		width: 100%;
	}
	.top-content.c07 .box:nth-of-type(even) .image{
		order: 0;
	}
	.top-content.c07 .text{
		flex: none;
	}
	.top-content.c07 .bottom .text{
		width: 100%;
	}
	.top-content.c11 .inr{
		gap: 15px 4.5%;
	}
	.top-content.c11 a{
		width: calc(95.5% / 2);
		color: #262626;
	}
}

@media screen and (max-width:500px) {
	.top-mv{
		height: calc(100dvh - 52px);
	}
	.top-mv:before{
		background: url(../img/top-mv-02-sp.png) no-repeat right 0;
		background-size: cover;
	}
	.top-mv .text{
		left: 15px;
		bottom: 10px;
		width: 92%;
	}
	.top-mv .image img{
		width: 100%;
		height: calc(100dvh - 52px);
		object-fit: cover;
	}
	.top-mv .contact{
		top: 95px;
		right: 15px;
	}
	.top-news .flex{
		position: static;
		width: 100%;
		height: 52px;
		transform: translateY(0);
	}
	.top-news .header{
		width: 53px;
	}
	.top-news h2{
		font-size: 14px;
		line-height: 52px;
		letter-spacing: 0.1em;
	}
	.top-news a{
		padding: 10px 0;
		height: 52px;
	}
	.top-news .date{
		padding-top: 4px;
		width: 60px;
		font-size: 8px;
	}
	.top-news .date b{
		font-size: 14px;
	}
	.top-news .p-title{
		padding-left: 35px;
		font-size: 14px;
	}
	.top-content h2[data-en]{
		font-size: 16px;
		line-height: 1.5;
	}
	.top-content h2[data-en]:before{
		margin-bottom: 15px;
		font-size: 40px;
	}
	.top-content div.wrap .header-s1 {
		padding-top: 30px;
		padding-left: 30px;
		min-height: 65px;
		margin-bottom: 64px;
		font-size: 28px;
		background-size: 65px auto;
	}
	.top-content.c01 {
		padding-top: 20px;
	}
	.top-content.c01 .marquee-wrap{
		margin-bottom: 60px;
	}
	.top-content.c01 .marquee-wrap img{
		width: auto;
		height: 135px;
	}
	.top-content.c01 .inr{
		padding-left: 0;
		padding-bottom: 70px;
	}
	.top-content.c01 .inr:after,
	.top-content.c01 .inr:before{
		top: -45px;
		right: 0;
		width: 29%;
	}
	.top-content.c01 .inr:after{
		top: auto;
		right: auto;
		left: 0;
		bottom: -33px;
		width: 30%;
	}
	.top-content.c01 div.wrap h2.header-s1{
		margin-left: 0;
		margin-bottom: 20px;
		font-size: 28px;
		line-height: 1.4;
	}
	.top-content.c01 .body p{
		margin-bottom: 30px;
		font-size: 16px;
		line-height: 1.85;
	}
	.top-content.c01 .body p:last-child{
		margin-bottom: 0;
	}
	.top-content.c02 {
		padding-top: 65px;
		padding-bottom: 45px;
	}
	.top-content.c02 .upper{
		position: relative;
		margin-bottom: 45px;
		padding-top: 0;
	}
	.top-content.c02 .upper:before{
		display: none;
	}
	.top-content.c02 .upper:after{
		left: -40px;
		bottom: -100px;
		width: 41%;
	}
	.top-content.c02 h2{
		margin-bottom: 30px;
	}
	.top-content.c02 .upper h2:after{
		content: '';
		display: block;
		margin: 25px auto 0;
		width: 92%;
		aspect-ratio: 135 / 128;
		background: url(../img/top-c02-08.png) no-repeat center;
		background-size: contain;
	}
	.top-content.c02 .upper .body{
		margin-top: 0;
	}
	.top-content.c02 .upper dl{
		padding-top: 0;
		padding-bottom: 0;
		width: 100%;
	}
	.top-content.c02 .upper dl:nth-of-type(2),
	.top-content.c02 .upper dl:nth-of-type(3){
		margin-top: 0;
	}
	.top-content.c02 .upper dl:before{
		right: -5px;
		font-size: 40px;
	}
	.top-content.c02 .upper dl:after{
		top: 40px;
		right: 0;
		font-size: 10px;
		letter-spacing: 0;
	}
	.top-content.c02 .upper dt{
		margin-right: 0;
		margin-bottom: 20px;
		font-size: 20px;
		line-height: 1.45;
	}
	.top-content.c02 .middle {
		margin-bottom: 50px;
		padding-top: 100px;	
	}
	.top-content.c02 .middle:before{
		right: -20px;
		width: 47%;
	}
	.top-content.c02 .middle .box{
		width: 100%;
	}
	.top-content.c02 .middle .box:nth-of-type(2),
	.top-content.c02 .middle .box:nth-of-type(3){
		margin-top: 0;
	}
	.top-content.c02 .middle .image{
		margin-bottom: 15px;
	}
	.top-content.c02 .middle dt{
		margin-bottom: 10px;
		font-size: 20px;
	}
	.top-content.c02 .middle dt span{
		font-size: 14px;
	}
	.top-content.c02 .middle .link{
		margin-top: 15px;
	}
	.top-content.c02 .middle .link a{
		padding-left: 40px;
		font-size: 16px;
	}
	.top-content.c02 .middle .link a:after,
	.top-content.c02 .middle .link a:before{
		left: 0;
	}
	.top-content.c02 .middle .link a:before{
		width: 33px;
		height: 17px;
		border-radius: 4px;
	}
	.top-content.c02 .middle .link a:after{
		left: 11.5px;
		width: 10px;
		height: 5px;
	}
	.top-content.c02 .bottom:before{
		top: -50px;
		right: -25px;
		width: 36%;
	}
	.top-content.c02 .bottom h2{
		margin-bottom: 10px;
	}
	.top-content.c02 .bottom .slider-arrow{
		margin-bottom: 25px;
	}
	.top-content.c02 .bottom .slider{
		width: calc(100vw - 15px);
	}
	.top-content.c02 .slick-dots{
		margin-top: 25px;
	}
	.top-content.c02 .bottom .box{
		width: min(345px, calc(100vw - 30px));
	}
	.top-content.c02 .bottom .link a{
		padding-left: 40px;
		font-size: 16px;
	}
	.top-content.c02 .bottom .link a:after,
	.top-content.c02 .bottom .link a:before{
		left: 0;
	}
	.top-content.c02 .bottom .link a:before{
		width: 33px;
		height: 17px;
		border-radius: 4px;
	}
	.top-content.c02 .bottom .link a:after{
		left: 11.5px;
		width: 10px;
		height: 5px;
	}
	.top-content.c03 {
		padding: 40px 0;
		background: url(../img/top-c03-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c03 .wrap{
		padding: 0 15px;
	}
	.top-content.c06 h2,
	.top-content.c03 h2{
		padding-right: 0;
		text-align: left;
	}
	.top-content.c03 div.wrap .header-s1{
		margin-right: 0;
		margin-bottom: 20px;
		padding-top: 35px;
		padding-left: 35px;
		font-size: 28px;
		background: url(../img/deco17.svg) no-repeat 0 0;
		background-size: 64px auto;
	}
	.top-content.c03 .text{
		padding-left: 0;
	}
	.top-content.c03 .text-inr{
		padding-left: 0;
	}
	.top-content.c03 strong{
		margin-bottom: 20px;
		padding-left: 35px;
		font-size: 20px;
		line-height: 2;
	}
	.top-content.c03 p{
		margin-bottom: 25px;
		font-size: 16px;
		line-height: 1.85;
	}
	.top-content.c03 p:last-child{
		margin-bottom: 0;
	}
	.top-content.c03 .image{
		margin-top: 10px;
		padding-top: 0;
	}
	.top-content.c03 .img{
		margin-bottom: 20px;
	}
	.top-content.c04 {
		padding: 40px 0;
	}
	.top-content.c04 h2{
		margin-bottom: 35px;	
	}
	.top-content.c04 h2:after{
		top: 0;
		right: 15px;
		width: 33.33%;
	}
	.top-content.c04 .box:before{
		top: -25px;
		right: 20px;
		font-size: 40px;
		z-index: 3;
	}
	.top-content.c04 .box:after{
		height: 60px;
		background: url(../img/arrow03.svg) no-repeat center;
		background-size: 40px auto;
	}
	.top-content.c04 .image{
		position: relative;
		width: 100%;
		border-radius: 10px;
		z-index: 2;
	}
	.top-content.c04 .text{
		margin-top: -10px;
		padding: 15px;
		padding-top: 25px;
		border-radius: 0 0 5px 5px;
	}
	.top-content.c04 dt{
		margin-bottom: 0;
		font-size: 20px;
	}
	.top-content.c05 {
		padding: 40px 0;
	}
	.top-content.c05 .wrap:before{
		top: -15px;
		left: auto;
		right: 15px;
		width: 29%;
	}
	.top-content.c05 .wrap:after{
		display: none;
	}
	.top-content.c05 h2{
		margin-bottom: 30px;
	}
	.top-content.c05 h3{
		font-size: 20px;
		line-height: 1.2;
	}
	.top-content.c05 .upper {
		margin-bottom: 25px;
	}
	.top-content.c05 .upper .image{
		width: 100%;
	}
	.top-content.c05 .upper .text{
		order: 2;
	}
	.top-content.c05 .upper dl{
		margin-top: 0;
	}
	.top-content.c05 .upper dt{
		margin-bottom: 0;
		padding: 0;
		padding-top: 12px;
		width: 100%;
		border-bottom: none;
	}
	.top-content.c05 .upper dd{
		width: 100%;
		padding: 0;
		padding-bottom: 12px;
	}
	.top-content.c05 .bottom:before{
		display: none;
	}
	.top-content.c05 .map{
		margin-bottom: 22px;

	}
	.top-content.c05 iframe{
		height: 320px!important;
	}
	.top-content.c05 .access dl:not(:last-child){
		margin-bottom: 10px;
	}
	.top-content.c05 .access dt{
		margin-bottom: 3px;
	}
	.top-content.c06 {
		padding-top: 35px;
		background: url(../img/top-c06-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c06 h2{
		margin-bottom: 20px;
	}
	.top-content.c06 p{
		margin-right: -10px;
		margin-bottom: 30px;
		padding-left: 0;
		font-size: 16px;
		line-height: 2;
	}
	.top-content.c06 .body p:last-child{
		margin-bottom: 0;
	}
	.top-content.c06 div.wrap p.header-s1{
		margin-bottom: 25px;
		line-height: 1.5;
		background: url(../img/deco17.svg) no-repeat 0 0;
		background-size: 64px auto;
	}
	.top-content.c06 div.wrap p.header-s1 span{
		margin-bottom: 0;
		font-size: 24px;
		line-height: 2.5;
		white-space: nowrap;
	}
	.top-content.c06 p.s2{
		margin-top: 25px;
		margin-right: 0;
		font-size: 56px;
	}
	.top-content.c07 {
		margin-top: -23px;
		padding-top: 75px;
		border-radius: 60px 0 0 0;
	}
	.top-content.c07 .header-s1{
		margin-bottom: 60px;
		padding-right: 0;
		background: url(../img/deco17.svg) no-repeat 0 0;
		background-size: 64px auto;
	}
	.top-content.c07 .header-s1 span{
		margin-top: -10px;
		font-size: 24px;
		white-space: nowrap;
		line-height: 2.5;
	}
	.top-content.c07 .header-s1 span:after{
		top: auto;
		right: 0;
		bottom: -30px;
		font-size: 16px;
		text-align: right;
		letter-spacing: 0;
	}
	.top-content.c07 .box{
		margin-bottom: 50px;
		line-height: 1.85;
	}
	.top-content.c07 .box:last-child{
		margin-bottom: 0;
	}
	.top-content.c07 .image{
		margin: 0 10px;
	}
	.top-content.c07 .text{
		flex: 1;
	}
	.top-content.c07 .box p:not(:last-child){
		margin-bottom: 15px;
	}
	.top-content.c07 .marquee-text img{
		width: auto;
		height: 145px;
	}
	.top-content.c07 .bottom {
		margin-top: -65px;
		padding-top: 90px;
		padding-bottom: 30px;
		border-radius: 0 60px 0 0;
	}
	.top-content.c07 .bottom .box{
		gap: 5px 8.6%;
	}
	.top-content.c07 .bottom .image{
		margin: 0;
		margin-right: 45px;
	}
	.top-content.c07 .bottom .box:nth-of-type(even) .image{
		transform: translateX(0);
	}
	.top-content.c07 .bottom .image img:last-child{
		margin-top: -40px;
		margin-right: -45px;
	}
	.top-content.c07 .bottom p.s1{
		margin: 0 -5px;
		margin-bottom: 15px;
		font-size: 19px;
		line-height: 1.6;
	}
	.top-content.c07 .bottom b{
		display: block;
		margin-top: -10px;
		font-size: 12px;
		text-align: right;
	}
	.top-content.c08 {
		padding: 40px 0;
		background: url(../img/top-c08-bg-sp.webp) no-repeat center 0;
		background-size: cover;
	}
	.top-content.c08 .recruit-entry-title{
		margin-bottom: 20px;
	}
	.top-content.c08 .recruit-entry-title span{
		margin-bottom: 10px;
		font-size: 24px;
		line-height: 1.8;
	}
	.top-content.c08 .body{
		font-size: 16px;
		line-height: 1.85;
		text-align: left;
	}
	.top-content.c08 .link{
		margin-top: 20px;
	}
	.top-content.c08 .link a{
		padding-left: 45px;
		width: 345px;
		height: 64px;
		line-height: 64px;
		background: #008DD7 url(../img/arrow07.svg) no-repeat 90px center;
		background-size: 36px auto;
	}
	.top-content.c08 .link a:before{
		top: 17px;
		right: 26px;
	}
	.top-content.c09 {
		padding: 40px 0;
	}
	.top-content.c09 h2{
		margin-bottom: 30px; 
	}
	.top-content.c09 .box:not(:last-child){
		margin-bottom: 12px;
	}
	.top-content.c09 dt{
		font-size: 16px;
	}
	.top-content.c09 .show dd,
	.top-content.c09 dt span{
		padding: 15px;
		padding-top: 55px;
	}
	.top-content.c09 dt span:after,
	.top-content.c09 dt span:before{
		content: '';
		position: absolute;
		top: 25px;
		right: 15px;
		width: 14px;
		height: 2px;
		transform: translateY(0);
	}
	.top-content.c09 dt span:after{
		transform: rotate(90deg);
	}
	.top-content.c09 dd:before,
	.top-content.c09 dt:before{
		top: 12px;
		left: 15px;
		width: 33px;
		font-size: 16px;
	}
	.top-content.c10 {
		padding: 40px 0;
		background: url(../img/top-c10-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c10 .upper {
		margin-bottom: 25px;
	}
	.top-content.c10 .upper h2{
		font-size: 20px;
	}
	.top-content.c10 .upper p{
		line-height: 1.5;
	}
	.top-content.c10 .upper p:has(strong){
		margin-bottom: 20px;
	}
	.top-content.c10 .upper strong{
		margin-bottom: 0;
		font-size: 20px;
		line-height: 1.6;
	}
	.top-content.c10 .box{
		width: 100%;
		aspect-ratio: 2 / 1;
	}
	.top-content.c10 .box a{
		padding: 15px;
	}
	.top-content.c10 .box a > dl:after{
		right: 16px;
		bottom: 16px;
	}
	.top-content.c10 dt{
		font-size: 20px;
	}
	.top-content.c10 dd b{
		padding-left: 35px;
		font-size: 24px;
		background: url(../img/icon-mail.svg) no-repeat 0 10px;
		background-size: 24px auto;
	}
	.top-content.c10 .tel dd b{
		font-size: 32px;
	}
	.top-content.c11 {
		padding: 40px 0;
	}
	.top-content.c11 h2{
		margin-bottom: 20px;
	}
	.top-content.c11 .inr{
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
	}
	.top-content.c11 a{
		width: calc((100% -15px) / 2);
	}
	.top-content.c11 figure{
		aspect-ratio: 3 / 1;
	}
	.top-content.c11 figure img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		border: #e9e9e9 1px solid;
		border-radius: 5px;
	}
	.top-content.c11 figcaption{
		margin-top: 5px;
		font-size: 14px;
		letter-spacing: 0;
	}
}

/* フッター */
#footer{
	padding-top: clamp(55px, calc(-27.5px + 10.742vw), 110px);
	padding-bottom: clamp(100px, calc(-65px + 21.484vw), 210px);
	background: #F4F4F4;
}
#footer .flex{
	gap: 10px 20px;
}
#footer .company{
	position: relative;
	width: 330px;
}
#footer dl{
	margin-bottom: 25px;
}
#footer dt{
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
}
#footer dd{
	line-height: 1.5;
}
#footer .link a{
	display: inline-block;
	padding-top: 12px;
	padding-left: 30px;
	width: 320px;
	height: 80px;
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
	background: #008DD7 url(../img/icon-mail.svg) no-repeat 30px 22px;
	border-radius: 5px;
    transition: all .3s;
}
#footer .link a:hover{
	background-color: #30D2C1;
}
#footer .link a b{
	display: block;
	font-weight: normal;
	font-size: 23px;
	letter-spacing: 0;
}
#footer .copyright{
	position: absolute;
	left: 0;
	bottom: calc(clamp(50px, calc(-25px + 9.766vw), 100px) * -1);
	line-height: 1;
}
#footer .nav{
	position: relative;
	width: clamp(475px, calc(235px + 31.25vw), 635px);
}
#footer .menu{
	display: flex;
	flex-wrap: wrap;
	gap: 0 clamp(20px, calc(-17.5px + 4.883vw), 45px);
}
#footer .menu-item{
	min-width: clamp(220px, calc(107.5px + 14.648vw), 295px);
	border-bottom: #b3b3b3 1px solid;
}
#footer .menu-item a{
	display: block;
	padding: 22px 40px;
	color: #262626;
	font-size: 18px;
	letter-spacing: 0.1em;
	background: url(../img/arrow05.svg) no-repeat 22px center;
    transition: all .3s;
}
#footer .menu-item a:hover{
	color: #008DD7;
}
#footer .privacy{
	position: absolute;
	left: 40px;
	bottom: calc(clamp(50px, calc(-25px + 9.766vw), 100px) * -1);
	margin-bottom: -8px;
}
#footer .privacy a{
	color: #262626;
	font-size: 14px;
	letter-spacing: 0.1em;
}

@media screen and (max-width:820px) {
	#footer{
		padding-bottom: 130px;
	}
	#footer .menu,
	#footer .flex{
		justify-content: center;
	}
	#footer .flex{
		position: relative;
	}
	#footer .company{
		position: static;
	}
	#footer .privacy{
		position: static;
		margin-top: 20px;
		text-align: center;
	}
	#footer .copyright{
		bottom: -70px;
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width:767px) {
#footer{
	padding-top: 35px;
}
#footer .company{
	width: 100%;
}
#footer dl{
	margin-bottom: 20px;
}
#footer dt{
	margin-bottom: 10px;
}
#footer .link{
	text-align: center;	
}
#footer .menu-item,
#footer .nav{
	width: 100%;
}









}
