@charset "UTF-8";

/* base */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--scrollbar: 0;
}

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

html:has(#navi[aria-hidden=false]) {
	overflow: hidden;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	color: #3e3a39;
	word-wrap: break-word;
}

a {
	color: inherit;
}

div[id],
section[id],
article[id] {
	scroll-margin-top: 80px;
}

img {
	max-width: 100%;
	height: auto;
}

input,
textarea,
select,
button {
	font: inherit;
	color: inherit;
	outline: none;
}

button,
a {
	cursor: pointer;
}

button:focus-visible,
a:focus-visible {
	outline: auto;
}

/* for development */

pre {
	padding: 15px;
	background: #eee;
	font-size: 1.2rem;
	line-height: 1.2;
}

/* Tools */

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.d-block {
	display: block;
}

.d-inline-block {
	display: inline-block;
}

.hidden {
	display: none !important;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clear {
	clear: both;
}

/* show only  SP/PC
-------------------------------*/

.sp-only {
	display: none !important;
}

.sp-only-2 {
	display: none !important;
}

.pc-only {
	display: block !important;
}

.pc-only-2 {
	display: inline-block !important;
}

/* font
-------------------------------*/

.fw-700 {
	font-weight: 700;
}

/* margin
-------------------------------*/

/* padding
-------------------------------*/

/* gap
-------------------------------*/

/* grid
-------------------------------*/

.grid-1col > *,
.grid-2col > *,
.grid-3col > *,
.grid-4col > * {
	min-width: 0;
}

.grid-1col {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.grid-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.grid-3col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.grid-4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

/* Layout */

.l-body {
	width: 100%;
}

.l-body.is-fixed {
	position: fixed;
}

.l-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 47px;
	padding: 0.5em 1.8em;
	background: #ffffff;
	z-index: 100;
}

.l-header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.l-footer {
	padding: 40px 0 60px;
	background: #001042;
	margin-bottom: 88px;
}

.l-wrapper {
	position: relative;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

/* Module */

.noscript {
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	padding: 1em;
	border: 3px solid red;
}

.noscript span {
	color: red;
}

/*
#styleguide
heading-primary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-primary">見出し２です</p>
```
*/

/*
#styleguide
heading-secondary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-secondary">見出し２です</p>
```
*/

/*
#styleguide
heading-tertiary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-tertiary">見出し２です</p>
```
*/

/*
#styleguide
text-base

SP 16px / PC 18px
デフォルトは左寄せ
```
<p class="text-base">ベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントです</p>
```
*/

.text-base {
	font-size: 1.6rem;
	line-height: 1.8;
}

.text-base p,
.text-base ol,
.text-base ul {
	margin-bottom: 1.8em;
}

/*
#styleguide
text-lg

SP 16px / PC 18px
デフォルトは左寄せ
```
<p class="text-lg">大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです</p>
```
*/

.text-lg {
	font-size: 2rem;
	line-height: 1.8;
}

.text-lg p,
.text-lg ol,
.text-lg ul {
	margin-bottom: 1.8em;
}

/*
#styleguide
text-sm

SP 16px / PC 18px
デフォルトは左寄せ
```
<p class="text-sm">小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです</p>
```
*/

.text-sm {
	font-size: 1.4rem;
	line-height: 1.8;
}

.text-sm p,
.text-sm ol,
.text-sm ul {
	margin-bottom: 1.8em;
}

/*
#styleguide
text-note

米印の下にテキストの回り込みが内容にします。
```
<p class="text-note">※テキストですテキストです。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。</p>
```
*/

.text-note {
	padding-left: 1em;
	text-indent: -1em;
}

.buttons-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

/*
#styleguide
button-primary

SP 20px / PC 26px
デフォルトは左寄せ
```
<div class="buttons-wrap">
	<a href="#" class="button-primary">ボタン</a>
	<button type="button" class="button-primary">ボタン</button>
</div>
```
*/

.button-primary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.5em;
	font-weight: 500;
	font-size: 1.6rem;
	color: #FFF;
	border: none;
	padding: 0.5em;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.button-primary::before {
	content: "";
	display: block;
	width: 2.012em;
	height: 2.012em;
	background: currentColor;
}

.button-primary--document {
	background: #00A9C9;
	letter-spacing: 0.5em;
}

.button-primary--document::before {
	-webkit-mask: url(../../img/campaign2/icon_document.svg) no-repeat center center/contain;
	mask: url(../../img/campaign2/icon_document.svg) no-repeat center center/contain;
}

.button-primary--contact {
	background: #dc5b56;
	letter-spacing: 0.1em;
}

.button-primary--contact::before {
	content: "";
	-webkit-mask: url(../../img/campaign2/icon_contact.svg) no-repeat center center/contain;
	mask: url(../../img/campaign2/icon_contact.svg) no-repeat center center/contain;
}

/*
#styleguide
button-secondary

SP 20px / PC 26px
デフォルトは左寄せ
```
<div class="buttons-wrap">
	<a href="#" class="button-secondary">ボタン</a>
	<button type="button" class="button-secondary">ボタン</button>
</div>
```
*/

.button-secondary {
	background: blue;
	color: #FFF;
	border: none;
	padding: 0.5em 1em;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
}

.c-red {
	color: #ad0003;
}

.bg-beige {
	background: #efe8da;
}

.section {
	padding: 120px 0;
}

.header-logo__text {
	font-size: 0.38rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin-bottom: 5px;
}

.header-logo a {
	display: block;
	width: 135px;
}

.header-logo img {
	display: block;
	width: 100%;
}

.header-cv__tel__text {
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.header-cv__tel__link {
	position: relative;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #ad0003;
	text-decoration: none;
}

.header-cv__tel__link::before {
	position: absolute;
	bottom: 3px;
	right: calc(100% + 4px);
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background: url(../../img/campaign2/icon_tel_blue_circle.svg) no-repeat center/contain;
}

.fixed-btns {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #ffffff;
	padding: 25px;
}

.fixed-btns__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px;
	width: 46.8%;
	height: 38px;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.283rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.fixed-btns__item:focus,
.fixed-btns__item:focus-visible {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.fixed-btns__item--blue {
	background: #00a9c9;
	letter-spacing: 0.5em;
}

.fixed-btns__item--red {
	background: #dc5b56;
}

.fixed-btns__icon {
	display: block;
	width: 26px;
	margin-top: 3px;
}

.footer {
	color: #FFF;
}

.footer__logo {
	max-width: 250px;
}

.footer__logo img {
	display: block;
}

.footer__main {
	margin-top: 32px;
	padding-left: 10px;
}

.footer__info {
	font: 500 1.6rem YakuHanMP, "Shippori Mincho", serif;
	line-height: 1.75;
	letter-spacing: 0.1em;
}

.footer__info:first-child {
	margin-bottom: 30px;
}

.footer__heading {
	position: relative;
	margin-bottom: 15px;
}

.footer__heading::after {
	content: "";
	position: absolute;
	left: -10px;
	bottom: -0.4em;
	width: calc(100% + 10px);
	height: 1px;
	background: currentColor;
}

.footer__detail p:not(:last-child) {
	margin-bottom: 1.8em;
}

.footer__detail a {
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.footer__link-wrap {
	margin-top: 20px;
}

.footer__link {
	font: 500 1.6rem YakuHanMP, "Shippori Mincho", serif;
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.copyright {
	font: 500 1.6rem YakuHanMP, "Shippori Mincho", serif;
	letter-spacing: 0.1em;
}

.point {
	counter-reset: item;
}

.point__item:not(:last-child) {
	margin-bottom: 60px;
}

.point__heading {
	position: relative;
	font: 700 2.4rem YakuHanMP, "Shippori Mincho", serif;
	line-height: 1.5;
	color: #001042;
	letter-spacing: -0.05em;
	padding-top: 35px;
	text-align: center;
}

.point__heading::before {
	content: "";
	background: #001042;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
}

.point__heading::after {
	position: absolute;
	top: 0;
	right: 0;
	counter-increment: item;
	content: "Point." counter(item);
	font: 700 1.6rem "Noto Sans JP", sans-serif;
	color: #ab7542;
	letter-spacing: 0.08em;
	background: #FFF;
	padding: 0 23px 0 21px;
	-webkit-transform: translateY(-64%);
	transform: translateY(-64%);
}

.point__heading--reverse::before {
	right: 0;
	left: auto;
}

.point__heading--reverse::after {
	left: 0;
	right: auto;
	padding: 0 20px 0 0;
	-webkit-transform: translateY(-64%);
	transform: translateY(-64%);
}

.point__text {
	margin-top: 15px;
	font-size: 1.6rem;
	line-height: 2;
	font-weight: 700;
}

.point__text p {
	text-indent: 1em;
}

.point__image {
	margin-top: 20px;
}

.cv__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cv__lead {
	font-family: YakuHanMP, "Shippori Mincho", serif;
	font-weight: 700;
	font-size: clamp(2rem, 0.4482758621rem + 4.1379310345vw, 2.6rem);
	line-height: 1.75;
	letter-spacing: 0.03em;
	color: #001042;
	text-align: center;
}

.cv__lead span {
	display: inline-block;
}

.cv__lead strong {
	font-style: italic;
}

.cv__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

.cv__info {
	margin-top: 17px;
	text-align: center;
}

.cv__info__tel {
	position: relative;
	padding: 0 10px 0 40px;
	display: block;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.2857;
	letter-spacing: 0.06em;
	color: #ad0003;
	text-decoration: none;
}

.cv__info__tel::before {
	content: "";
	position: absolute;
	top: 0.18em;
	left: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #FFF url(../../img/campaign2/icon_tel.svg) no-repeat center center/14px 14px;
}

.cv__info__text {
	display: block;
	margin-top: 0.15em;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.features:not(:last-child) {
	margin-bottom: 60px;
}

.features__heading {
	position: relative;
	margin-bottom: 3em;
	font: 700 2.4rem YakuHanMP, "Shippori Mincho", serif;
	line-height: 1.6;
	letter-spacing: 0.02em;
	color: #001042;
	text-align: center;
}

.features__heading--fz-sm {
	font-size: 2.4rem;
}

.features__heading::after {
	content: "";
	position: absolute;
	bottom: -1.95em;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1px;
	height: 1.42em;
	background: #001042;
}

.features__heading span {
	font-weight: 800;
	color: #ad0003;
}

.features__item {
	margin-bottom: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}

.features__image img {
	display: block;
}

.features__list01 {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.025em;
}

.features__list01__item {
	position: relative;
	padding-left: 1.1em;
}

.features__list01__item:not(:last-child) {
	margin-bottom: 0.45em;
}

.features__list01__item::before {
	content: "";
	position: absolute;
	top: 0.87em;
	left: 0.2em;
	width: 0.52em;
	height: 0.52em;
	background: currentColor;
	border-radius: 50%;
}

.features__list02 {
	counter-reset: list-number-base;
	list-style-position: inside;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

.features__list02__item {
	position: relative;
	counter-increment: list-number-base;
	padding: 0 0 20px 15px;
	margin: 20px 0 0 36px;
}

.features__list02__item:not(:last-child) {
	border-bottom: 1px solid currentColor;
}

.features__list02__item::before {
	content: counter(list-number-base);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 1.6333em;
	height: 1.6333em;
	background: #ab7542;
	border-radius: 50%;
	padding-bottom: 3px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
	color: #FFF;
}

.features__list02__lg-text {
	font-size: 2rem;
	line-height: 1.43;
	color: #001042;
}

.features__title {
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	color: #ab7542;
}

.features__title--mb-sm {
	margin-bottom: 0.7em;
}

.features__text {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.02em;
	text-indent: 1em;
}

.features__catchphrase {
	margin-top: 18px;
	font: 600 2rem YakuHanMP, "Shippori Mincho", serif;
	line-height: 1.625;
	letter-spacing: -0.035em;
	color: #001042;
}

.features__catchphrase span {
	display: inline-block;
	margin-left: 0.4em;
	letter-spacing: -0.085em;
}

.features__2col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.features__2col__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 40px 0;
	background: #001042;
	color: #FFF;
}

.features__2col__heading {
	font: 600 2.2rem YakuHanMP, "Shippori Mincho", serif;
	letter-spacing: 0.035em;
	margin-bottom: 0.55em;
}

.features__2col__text {
	font: 600 1.4rem YakuHanMP, "Shippori Mincho", serif;
	line-height: 2.2;
	text-align: center;
}

.features__2col__logo {
	display: block;
	margin-top: 30px;
}

.features__2col__logo img {
	display: block;
}

.features__2col__image img {
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
}

.features__wide-image {
	position: relative;
	height: 180px;
}

.features__wide-image::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transform: translateY(-120%);
	transform: translateY(-120%);
	width: 1px;
	height: 42px;
	background: #001042;
}

.features__wide-image img {
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	-o-object-position: right;
	object-position: right;
	display: block;
}

.access__heading {
	margin-bottom: 0.4em;
	font: 700 2.4rem YakuHanMP, "Shippori Mincho", serif;
	line-height: 1.6;
	letter-spacing: 0.09em;
	color: #001042;
	text-align: center;
}

.access__heading span {
	display: inline-block;
}

.access__text {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.6667;
	letter-spacing: 0.06em;
}

.access__lead {
	margin-bottom: 0.5em;
	display: block;
	line-height: 1.5;
	letter-spacing: 0.035em;
	color: #ab7542;
	text-align: center;
}

.access__lead span {
	display: inline-block;
}

.access__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 30px;
	text-align: center;
}

.access__item {
	border: 4px solid #132e5b;
	border-radius: 25px;
}

.access__way {
	padding: 20px 5px 15px;
	border-bottom: 4px solid #231815;
}

.access__way__icon {
	display: block;
	margin: 0 auto;
	width: 50%;
}

.access__way__icon img {
	display: block;
	margin: 0 auto;
}

.access__way__text {
	margin-top: 15px;
	font-size: 1.8rem;
	line-height: 1.3753;
	letter-spacing: 0.02em;
	color: #132e5b;
}

.access__way__text--orange {
	color: #ee7800;
}

.access__way__text--green {
	color: #00a33e;
}

.access__way__text--blue {
	color: #006cb8;
}

.access__way__text span {
	font-weight: 700;
}

.access__time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px 10px 15px;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	color: #231815;
}

.access__time span {
	display: inline-block;
	margin: 0 0.2em 0 0.1em;
	font-size: 2.4rem;
	color: #ad061c;
}

.access__map {
	margin-top: 40px;
	aspect-ratio: 1486/872;
}

.access__map iframe {
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.mainvisual {
	position: relative;
}

.mainvisual__image img {
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: none;
}

.mainvisual__copy {
	position: absolute;
	top: 29%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 87%;
}

.mainvisual__copy img {
	display: block;
	width: 100%;
}

.mainvisual__slide {
	position: absolute;
	top: 53%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 68.5%;
}

.mainvisual__slide__item img {
	display: block;
	width: 100%;
}

.mainvisual__scroll {
	display: none;
}

.contact__heading {
	position: relative;
	text-align: center;
	padding-bottom: 50px;
	color: #001042;
	margin-bottom: 2em;
}

.contact__heading::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	width: 1px;
	height: 34px;
	display: block;
	background: #001042;
}

.contact__heading__jp {
	font: 600 2.4rem YakuHanMP, "Shippori Mincho", serif;
	letter-spacing: 0.1em;
	margin-bottom: 0.4em;
}

.contact__heading__en {
	font: 600 2rem YakuHanMP, "Shippori Mincho", serif;
	letter-spacing: 0.1em;
}

.contact__lead-lg {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.035em;
	line-height: 1.5;
	text-align: center;
	color: #001042;
	margin-bottom: 0.3em;
}

.contact__lead-sm {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 2.1;
}

.contact__info {
	text-align: center;
	margin-top: 30px;
}

.contact__info__tel {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #ad0003;
	text-decoration: none;
}

.contact__info__tel::before {
	content: "";
	width: 0.86em;
	height: 0.86em;
	display: inline-block;
	background: url(../../img/campaign2/icon_tel_blue_circle.svg) no-repeat center/contain;
	vertical-align: middle;
	margin-right: 0.15em;
}

.contact__info__text {
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-top: 8px;
}

.contact__note {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2;
	margin-top: 40px;
}

.form {
	background: #efefef;
	padding: 50px 20px;
	margin-top: 60px;
}

.form__inner {
	max-width: 1157px;
	margin-left: auto;
	margin-right: 0;
}

.form__item:not(:last-child) {
	margin-bottom: 54px;
}

.form__label {
	display: block;
	font-size: 1.6rem;
	letter-spacing: 0.085em;
	line-height: 1.5;
	margin-bottom: 10px;
}

.form__label--flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.form__required {
	font-size: 1.6rem;
	letter-spacing: 0.195em;
	background: #ad0003;
	color: #ffffff;
	padding: 0 0.5em 0.1em 0.5em;
	margin-right: 0.5em;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.form__any {
	font-size: 1.6rem;
	letter-spacing: 0.195em;
	background: #6b6b6b;
	color: #ffffff;
	padding: 0 0.5em 0.1em 0.5em;
	margin-right: 0.5em;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.form__content {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-size: 1.6rem;
	letter-spacing: 0.095em;
}

.form__content--checkbox {
	display: block;
	padding: 20px 0 0;
}

.form__content--checkbox .wpcf7-form-control {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.form__content--checkbox .wpcf7-form-control .wpcf7-list-item label {
	cursor: pointer;
}

.form__content--checkbox .wpcf7-form-control input[type=checkbox] {
	width: 0.96em;
	height: 0.96em;
	margin: 0;
	vertical-align: middle;
	background: transparent !important;
	cursor: pointer;
}

.form__content--checkbox .wpcf7-form-control .wpcf7-list-item-label {
	vertical-align: middle;
	font-size: 1.8rem;
	letter-spacing: 0.095em;
	padding-left: 0.2em;
}

.form__content--checkbox .wpcf7-not-valid-tip {
	font-size: 1.6rem;
	margin-top: 10px;
}

.form__number-people {
	position: relative;
}

.form__number-people::before {
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "約";
	z-index: 1;
}

.form__number-people input {
	padding-left: 45px !important;
}

.form .input,
.form .textarea {
	border: 2px solid #231815;
	background: #ffffff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 20px;
}

.form .input:focus,
.form .input:focus-visible,
.form .textarea:focus,
.form .textarea:focus-visible {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.form .input {
	width: 100%;
	height: 50px;
}

.form .input--sm {
	width: 150px;
}

.form .textarea {
	width: 100%;
	height: 250px;
	padding: 20px;
}

.form__agree {
	position: relative;
	margin-top: 40px;
}

.form__agree legend {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.form__agree .wpcf7-form-control-wrap .wpcf7-form-control {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 15px 30px;
}

.form__agree .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label {
	display: block;
	cursor: pointer;
	text-indent: -1.9em;
	padding-left: 1.9em;
}

.form__agree .wpcf7-form-control-wrap .wpcf7-form-control input[type=checkbox] {
	width: 1.3em;
	height: 1.3em;
	margin: 3px 0 0;
	vertical-align: middle;
	background: transparent !important;
	cursor: pointer;
}

.form__agree .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item-label {
	vertical-align: middle;
	font-size: 1.6rem;
	letter-spacing: 0.095em;
	line-height: 1.5;
	padding-left: 0.2em;
}

.form__button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 40px;
}

.form__button input {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.5em;
	background: #ad0003;
	color: #ffffff;
	border: none;
	padding: 1em 2em;
	cursor: pointer;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.form__button input:focus,
.form__button input:focus-visible {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.form__button .wpcf7-spinner {
	position: absolute;
	top: 0;
	left: 0;
}

.form .wpcf7-not-valid-tip {
	font-size: 1.6rem;
	margin-top: 10px;
}

.complete {
	padding: 100px 0 50px;
}

.complete__heading {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 50px;
}

.complete__text {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.complete__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 60px;
}

.complete__link {
	font-size: 1.6rem;
	color: #001042;
	text-decoration: none;
}

/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */

@font-face {
	font-family: "swiper-icons";
	src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
	font-weight: 400;
	font-style: normal;
}

:root { /*
		--swiper-preloader-color: var(--swiper-theme-color);
		--swiper-wrapper-transition-timing-function: initial;
		*/
}

:host {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0; /* Fix of Webkit flickering */
	z-index: 1;
	display: block;
}

.swiper-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	display: block;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none; /* For Firefox */
	-ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
	scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
	content: "";
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-ordinal-group: 10000;
	-ms-flex-order: 9999;
	order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-start: var(--swiper-centered-offset-before);
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-before: var(--swiper-centered-offset-before);
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
	-webkit-animation: swiper-preloader-spin 1s infinite linear;
	animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

/* Slide styles end */

.swiper-fade.swiper-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

@media (hover: hover) {

.button-primary:hover {
	opacity: 0.6;
}

.fixed-btns__item:hover {
	opacity: 0.6;
}

.footer__detail a:hover {
	opacity: 0.6;
}

.footer__link:hover {
	opacity: 0.6;
}

.form__button input:hover {
	opacity: 0.6;
}

.complete__link:hover {
	text-decoration: underline;
}

}

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

.text-pc-left { /* pc */
	text-align: left;
}

.text-pc-center { /* pc */
	text-align: center;
}

.text-pc-right { /* pc */
	text-align: right;
}

.l-header { /* pc */
	position: relative;
	height: auto;
	padding: 1.3em 1em;
}

.l-header__inner { /* pc */
	max-width: 1654px;
	margin-left: auto;
	margin-right: auto;
}

.l-footer { /* pc */
	padding: 40px 0 118px;
	margin: 0;
}

.l-wrapper { /* pc */
	max-width: 1486px;
}

.l-wrapper--xl { /* pc */
	max-width: 1652px;
}

.button-primary { /* pc */
	min-width: 326px;
	font-size: clamp(1.5rem, -0.6166440586rem + 2.7553581118vw, 2.8rem);
	gap: 0.7em;
}

.button-primary::before { /* pc */
}

.section--pd-sm { /* pc */
	padding: 97px 0;
}

.header-logo__text { /* pc */
	font-size: 1rem;
	margin-bottom: 12px;
}

.header-logo a { /* pc */
	width: 220px;
}

.header-cv { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 10px;
}

.header-cv__tel__text { /* pc */
	font-size: clamp(1rem, 0.7826086957rem + 0.2173913043vw, 1.2rem);
	letter-spacing: 0.06em;
}

.header-cv__tel__link { /* pc */
	font-size: 2rem;
	letter-spacing: 0.06em;
}

.header-cv__tel__link::before { /* pc */
	right: calc(100% + 8px);
	bottom: 5px;
	width: 30px;
	height: 30px;
}

.fixed-btns { /* pc */
	position: relative;
	bottom: auto;
	left: auto;
	width: auto;
	padding: 0;
	width: 25.5vw;
	min-width: 270px;
}

.fixed-btns__item { /* pc */
	font-size: 1.3rem;
	gap: 0.8em;
	padding-bottom: 3px;
	width: 48%;
}

.fixed-btns__icon { /* pc */
	width: 2em;
	margin-top: 7px;
}

.footer { /* pc */
}

.footer__logo { /* pc */
	max-width: 317px;
}

.footer__main { /* pc */
	padding-right: 80px;
}

.footer__info-wrap { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 35px 0;
}

.footer__info { /* pc */
	font-size: 2rem;
	min-width: 400px;
	width: 100%;
}

.footer__info:first-child { /* pc */
	margin-bottom: 0;
}

.footer__link-wrap { /* pc */
	margin-top: 38px;
}

.footer__link { /* pc */
	font-size: 2rem;
}

.copyright { /* pc */
	margin-top: 22px;
	font-size: 2rem;
}

.point { /* pc */
	margin-top: -120px;
}

.point__item:not(:last-child) { /* pc */
	margin-bottom: 120px;
}

.point__item { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.point__item:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.point__item--01 {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.point__item--01 .point__main {
	padding-top: 70px;
}

.point__item--02 .point__main {
	width: 47.5%;
}

.point__main { /* pc */
	width: 49%;
}

.point__heading { /* pc */
	margin-top: 15px;
	font-size: 4.1rem;
	font-size: clamp(2.6rem, 1.6rem + 1.3020833333vw, 4.1rem);
	text-align: left;
}

.point__text { /* pc */
	font-size: 2.5rem;
	font-size: clamp(1.6rem, 1rem + 0.78125vw, 2.5rem);
	padding-left: 1.3em;
}

.point__image { /* pc */
	margin-top: 0;
	width: 47.5%;
}

.cv__lead { /* pc */
	font-size: clamp(2.6rem, 0.3205371677rem + 2.9673087358vw, 4rem);
}

.cv__buttons { /* pc */
	gap: clamp(2rem, -2.9203342618rem + 6.4066852368vw, 6.6rem);
}

.cv__info__tel { /* pc */
	padding: 0 10px 0 55px;
	font-size: 5.25rem;
}

.cv__info__tel::before { /* pc */
	top: 0.25em;
	width: 45px;
	height: 45px;
	background: #FFF url(../../img/campaign2/icon_tel.svg) no-repeat center center/22px 22px;
}

.cv__info__text { /* pc */
	margin-top: 0.4em;
	font-size: 2.5rem;
}

.features:not(:last-child) { /* pc */
	margin-bottom: 120px;
}

.features__heading { /* pc */
	margin-bottom: 4.68em;
	font-size: clamp(3rem, 0.860724234rem + 2.7855153203vw, 5rem);
}

.features__heading--fz-sm { /* pc */
	font-size: clamp(2.6rem, 0.0328690808rem + 3.3426183844vw, 5rem);
}

.features__heading::after { /* pc */
}

.features__item { /* pc */
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: clamp(6rem, 0.3309192201rem + 7.3816155989vw, 11.3rem);
	gap: 20px;
}

.features__item:nth-child(odd) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.features__item--01 .features__main {
	width: 50.8075%;
}

.features__item--02 .features__main {
	width: 48.7887%;
}

.features__item--03 .features__main {
	width: 47.1736%;
}

.features__image { /* pc */
	width: 47.7793%;
	padding-top: 6px;
}

.features__list01 { /* pc */
	font-size: clamp(1.8rem, 1.0512534819rem + 0.9749303621vw, 2.5rem);
}

.features__list02 { /* pc */
	font-size: clamp(1.8rem, 1.0512534819rem + 0.9749303621vw, 2.5rem);
}

.features__list02__item { /* pc */
	padding: 0 0 clamp(2rem, 0.3955431755rem + 2.0891364903vw, 3.5rem) clamp(1.5rem, 0.9651810585rem + 0.6963788301vw, 2rem);
	margin: clamp(2rem, 0.930362117rem + 1.3927576602vw, 3rem) 0 0 clamp(3.6rem, 2.2094707521rem + 1.8105849582vw, 4.9rem);
}

.features__list02__item::before { /* pc */
	font-size: clamp(2.2rem, 1.3442896936rem + 1.1142061281vw, 3rem);
}

.features__list02__lg-text { /* pc */
	font-size: clamp(2.2rem, 1.3442896936rem + 1.1142061281vw, 3rem);
}

.features__title { /* pc */
	font-size: clamp(2.2rem, 1.3442896936rem + 1.1142061281vw, 3rem);
}

.features__content { /* pc */
	padding-left: clamp(0rem, -3.8506963788rem + 5.0139275766vw, 3.6rem);
}

.features__content--px { /* pc */
	padding: 0 clamp(0rem, -4.8133704735rem + 6.2674094708vw, 4.5rem) 0 clamp(0rem, -2.9949860724rem + 3.8997214485vw, 2.8rem);
}

.features__text { /* pc */
	font-size: 2.5rem;
	font-size: clamp(1.8rem, 1.0512534819rem + 0.9749303621vw, 2.5rem);
}

.features__catchphrase { /* pc */
	font-size: clamp(2rem, -0.139275766rem + 2.7855153203vw, 4rem);
}

.features__catchphrase span { /* pc */
	margin-left: clamp(1.5rem, -70.0817073171rem + 48.1707317073vw, 9.4rem);
}

.features__2col { /* pc */
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.features__2col__main { /* pc */
	padding: clamp(3rem, 1.930362117rem + 1.3927576602vw, 4rem) clamp(2rem, -0.7810584958rem + 3.6211699164vw, 4.6rem) clamp(3rem, 1.930362117rem + 1.3927576602vw, 4rem) 20px;
	width: 50%;
}

.features__2col__heading { /* pc */
	font-size: clamp(2.2rem, 1.3442896936rem + 1.1142061281vw, 3rem);
}

.features__2col__text { /* pc */
	font-size: clamp(1.4rem, 0.7582172702rem + 0.8356545961vw, 2rem);
}

.features__2col__logo { /* pc */
	margin-top: clamp(2.5rem, -0.1740947075rem + 3.4818941504vw, 5rem);
	padding-right: clamp(0rem, -1.2835654596rem + 1.6713091922vw, 1.2rem);
}

.features__2col__image { /* pc */
	width: 50%;
}

.features__wide-image { /* pc */
	height: auto;
}

.features__wide-image::before { /* pc */
	-webkit-transform: translateY(-130%);
	transform: translateY(-130%);
	height: clamp(4.2rem, 1.0980501393rem + 4.0389972145vw, 7.1rem);
}

.access__heading { /* pc */
	font-size: clamp(3rem, 0.860724234rem + 2.7855153203vw, 5rem);
}

.access__text { /* pc */
	font-size: clamp(2.2rem, 1.3442896936rem + 1.1142061281vw, 3rem);
	text-align: center;
}

.access__list { /* pc */
	grid-template-columns: repeat(2, 1fr);
	margin-top: 47px;
	gap: 25px clamp(2.5rem, -7.125rem + 8.75vw, 6rem);
}

.access__item { /* pc */
}

.access__way { /* pc */
	padding: 50px 5px 20px;
}

.access__way__icon { /* pc */
	width: 100%;
}

.access__way__text { /* pc */
	margin-top: 32px;
	font-size: clamp(1.8rem, -2.89975rem + 4.2725vw, 3.509rem);
}

.access__time { /* pc */
	padding: 20px clamp(0.5rem, -0.0348189415rem + 0.6963788301vw, 1rem) 25px;
	font-size: clamp(1.8rem, -2.89975rem + 4.2725vw, 3.509rem);
}

.access__time span { /* pc */
	font-size: clamp(2.4rem, -0.6634428969rem + 3.9888579387vw, 5.264rem);
}

.access__map { /* pc */
	margin-top: clamp(6rem, -4.6666666667rem + 13.8888888889vw, 12rem);
}

.mainvisual__copy { /* pc */
	top: 10.4%;
	width: 45.5%;
}

.mainvisual__slide { /* pc */
	top: 50.6%;
	width: 65%;
	max-width: 1156px;
	margin-left: auto;
	margin-right: auto;
}

.mainvisual__slide .swiper-wrapper { /* pc */
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.mainvisual__slide__item { /* pc */
	width: 30.9%;
}

.mainvisual__scroll { /* pc */
	display: block;
	position: absolute;
	bottom: 4.8%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: clamp(1rem, 0.3333333333rem + 0.8680555556vw, 2rem);
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #ffffff;
}

.mainvisual__scroll::before {
	position: absolute;
	top: calc(100% + 0.4em);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	width: 2em;
	height: 1.1em;
	display: block;
	background: url(../../img/campaign2/arrow_scroll.svg) no-repeat center/contain;
}

.contact__heading { /* pc */
	padding-bottom: 100px;
}

.contact__heading::before { /* pc */
	height: 70px;
}

.contact__heading__jp { /* pc */
	font-size: clamp(3rem, 1.6666666667rem + 1.7361111111vw, 5rem);
}

.contact__heading__en { /* pc */
	font-size: clamp(2rem, 1.6666666667rem + 0.4340277778vw, 2.5rem);
}

.contact__lead-lg { /* pc */
	font-size: clamp(2rem, 1.3333333333rem + 0.8680555556vw, 3rem);
}

.contact__lead-sm { /* pc */
	font-size: clamp(1.8rem, 1.6666666667rem + 0.1736111111vw, 2rem);
	text-align: center;
}

.contact__info { /* pc */
	margin-top: 56px;
}

.contact__info__tel { /* pc */
	font-size: clamp(4rem, 3.1666666667rem + 1.0850694444vw, 5.25rem);
}

.contact__info__text { /* pc */
	font-size: clamp(1.8rem, 1.3333333333rem + 0.6076388889vw, 2.5rem);
}

.contact__note { /* pc */
	font-size: clamp(1.6rem, 1.3333333333rem + 0.3472222222vw, 2rem);
	margin-top: 80px;
	text-align: center;
}

.form { /* pc */
	padding: 100px 6.7%;
	margin-top: 110px;
}

.form__item { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form__item--column { /* pc */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.form__item--column .form__label {
	width: 100%;
}

.form__label { /* pc */
	font-size: clamp(1.8rem, 1.4rem + 0.5208333333vw, 2.4rem);
	width: 38.6%;
	min-width: 250px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding-top: 17px;
	margin-bottom: 0;
}

.form__required { /* pc */
	font-size: clamp(1.8rem, 1.4rem + 0.5208333333vw, 2.4rem);
	padding: 0.1em 0.7em;
	margin-right: 0.83em;
}

.form__any { /* pc */
	font-size: clamp(1.8rem, 1.4rem + 0.5208333333vw, 2.4rem);
	padding: 0.1em 0.7em;
	margin-right: 0.83em;
}

.form__content { /* pc */
	font-size: clamp(1.6rem, 1.0666666667rem + 0.6944444444vw, 2.4rem);
	width: 61.4%;
	margin-left: auto;
}

.form__content--checkbox { /* pc */
	padding: 40px 0 20px 40px;
}

.form__content--checkbox .wpcf7-form-control { /* pc */
	gap: 15px 16%;
}

.form__content--checkbox .wpcf7-form-control .wpcf7-list-item-label { /* pc */
	font-size: clamp(2rem, 1.3333333333rem + 0.8680555556vw, 3rem);
}

.form__number-people::before { /* pc */
	left: 35px;
}

.form__number-people input { /* pc */
	padding-left: 65px !important;
}

.form .input { /* pc */
	max-width: 584px;
	height: 76px;
}

.form .input--sm { /* pc */
	width: 210px;
}

.form .textarea { /* pc */
	height: 374px;
}

.form__agree { /* pc */
	margin-top: 65px;
	text-align: center;
}

.form__agree .wpcf7-form-control-wrap .wpcf7-form-control { /* pc */
	gap: 15px 16%;
}

.form__agree .wpcf7-form-control-wrap .wpcf7-form-control input[type=checkbox] { /* pc */
	width: 1.76em;
	height: 1.76em;
}

.form__agree .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item-label { /* pc */
	font-size: clamp(1.8rem, 1.4rem + 0.5208333333vw, 2.4rem);
}

.form__button { /* pc */
	margin-top: 75px;
}

.form__button input { /* pc */
	font-size: 2.833rem;
	padding: 1em 2.85em;
}

.complete { /* pc */
	padding: 0 0 100px;
	text-align: center;
}

}

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

.l-header { /* 1000px以上 */
	padding: 1% 1.8em 1.2%;
}

.header-logo a { /* 1000px以上 */
	width: 16.5vw;
	min-width: 200px;
}

.header-cv { /* 1000px以上 */
	gap: 32px;
}

.header-cv__tel__link { /* 1000px以上 */
	font-size: clamp(2.5rem, 1.4130434783rem + 1.0869565217vw, 3.5rem);
}

.fixed-btns { /* 1000px以上 */
	min-width: 300px;
}

.fixed-btns__item { /* 1000px以上 */
	height: auto;
	font-size: clamp(1.4rem, 0.747826087rem + 0.652173913vw, 2rem);
	width: 46.8%;
	padding: 0.3em 0;
}

.footer__main { /* 1000px以上 */
	margin-left: clamp(0rem, -95.4732510288rem + 95.4732510288vw, 46.4rem);
}

.footer__info-wrap { /* 1000px以上 */
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.footer__info { /* 1000px以上 */
	width: auto;
}

.footer__info:first-child { /* 1000px以上 */
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.access__list { /* 1000px以上 */
	grid-template-columns: repeat(4, 1fr);
}

}

@media screen and (max-width: 767px) {

.text-sp-left { /* sp */
	text-align: left;
}

.text-sp-center { /* sp */
	text-align: center;
}

.text-sp-right { /* sp */
	text-align: right;
}

.sp-only { /* sp */
	display: block !important;
}

.sp-only-2 { /* sp */
	display: inline-block !important;
}

.pc-only { /* sp */
	display: none !important;
}

.pc-only-2 { /* sp */
	display: none !important;
}

/* sp */

.sp-grid-1col {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.sp-grid-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.sp-grid-3col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.sp-grid-4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.--sp-grid-2col { /* sp */
	grid-template-columns: repeat(2, 1fr);
}

.--sp-grid-1col { /* sp */
	grid-template-columns: repeat(1, 1fr);
}

.section { /* sp */
	padding: 60px 0;
}

}

@-webkit-keyframes swiper-preloader-spin {

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

100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

}

@keyframes swiper-preloader-spin {

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

100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

}

