html {
	font-size: 62.5%;
	height: -webkit-fill-available;
}

body {
	margin: 0;
	padding: 0;
	font-family: "M PLUS 1p", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
	body {
		padding: 0 0 0px 0 !important;
	}
}

sup,
sub {
	font-size: xx-small;
}

main {
	display: block;
}
main * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
main ul li {
	list-style-type: none;
}

figure {
	margin: 0;
	padding: 0;
}

a {
	transition: 0.3s;
}
@media screen and (min-width: 768px) {
	a.tel {
		pointer-events: none;
	}
}
a:hover {
	opacity: 0.6;
}

:root {
	--color-red: #C30D23;
	--color-blue: #0064ff;
	--color-gray: #D2D7DC;
	--color-gray-heavy: #D1CCCC;
	--color-gray-light: #F3F6FA;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-grn: #006934;
	--color-yw: #FFE200;
	--color-base: #F9F7ED;
	--hover-duration:0.4s;
	--noto-sans: "Noto Sans", sans-serif;
	--poppins:font-family: "Poppins", sans-serif;
}

.l-footer {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 10px 0 15px 0;
}

/*--------------------------------
reset
--------------------------------*/
html, body, div, p, img, iframe, a, span, blockquote, q, address, cite,
pre, code, em, small, strong, b, i,
header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer, time,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tbody, thead, tfoot, th, tr, td,
form, fieldset, legend, label, select, input, textarea, button {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	vertical-align: baseline;
}

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

ul li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

img {
	vertical-align: middle;
}

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

sup,
sub {
	font-size: xx-small;
}

select, option, input:not([type=checkbox]):not([type=radio]), textarea, button {
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
}

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

[type=submit], [type=button], [type=reset], [type=file], button {
	cursor: pointer;
}

:focus {
	outline: none;
}

html {
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
}

/*--------------------------------
common
--------------------------------*/
main {
	display: block;
}

a {
	color: #2b3a54;
	text-decoration: none;
	transition: all 0.4s ease-out;
	-webkit-tap-highlight-color: transparent;
}

button,
[type=submit],
[type=reset] {
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}

strong {
	color: #2b3a54;
	font-weight: inherit;
}

.vertical-text {
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}

.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.has-max {
	height: auto;
	max-width: 100%;
}

.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.align-item-center {
	align-items: center;
}

.align-item-end {
	align-items: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-end {
	justify-content: flex-end;
}

.img-wrapper {
	position: relative;
}

.img-wrapper .caption {
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}

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

.grid-wrapper {
	display: grid;
}

.arrow-link {
	display: inline-block;
}

.arrow-btn {
	width: 44px;
}

.svg-symbol {
	display: none;
}

/*--------------------------------
layout
--------------------------------*/
.scroll-disabled {
	height: 100%;
	overflow: hidden;
}

.inner {
	margin: 0 auto;
	width: calc(100% - 64px);
	max-width: 1200px;
}

@media (max-width: 767px) {
	.inner {
		width: calc(100% - 48px);
	}
}
.inner-narrow {
	max-width: 900px;
}

.inner-wide {
	max-width: 1360px;
}

.inner-fit {
	width: 100%;
	max-width: none;
}

.inner-full {
	max-width: none;
}

.general-section {
	position: relative;
}

.general-section .inner {
	padding: 100px 0;
}

@media (max-width: 991px) {
	.general-section .inner {
		padding: 32px 0;
	}
}
.general-section .inner + .inner {
	padding-top: 0;
}

.general-section .inner.mb-0 {
	padding-bottom: 0;
}

.general-section .inner-min {
	padding: 32px 0;
}

@media (max-width: 991px) {
	.general-section .inner-min {
		padding: 16px 0;
	}
}
.general-parts {
	margin-bottom: 32px;
}

.btn-space {
	margin: 32px 0;
	text-align: center;
}

.has-gap {
	gap: 32px;
}

@media (max-width: 991px) {
	.has-gap {
		gap: 16px;
	}
}
.col-2 {
	width: 50%;
}

.has-gap > .col-2 {
	width: calc(50% - 16px);
}

.col-3 {
	width: 33.3333333333%;
}

.has-gap > .col-3 {
	width: calc(33.3333333333% - 22px);
}

.col-4 {
	width: 25%;
}

.has-gap > .col-4 {
	width: calc(25% - 24px);
}

@media (max-width: 991px) {
	.col-2,
	.has-gap > .col-2 {
		width: 100%;
	}
	.col-3,
	.has-gap > .col-3 {
		width: 100%;
	}
	.col-4 {
		width: 50%;
	}
	.has-gap > .col-4 {
		width: calc(50% - 8px);
	}
	.sp-col-2 {
		width: 50%;
	}
	.has-gap > .sp-col-2 {
		width: calc(50% - 8px);
	}
}
/*--------------------------------
componet
--------------------------------*/
.caption {
	margin: 0.4em 0;
	font-size: 1.2rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.caption {
		font-size: 1rem;
	}
}

.img-wrapper {
	position: relative;
}
.img-wrapper .caption {
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}

.primary-heading {
	margin-bottom: 0.8em;
	font-size: 4.6rem;
	line-height: 1.3;
}

.secondary-heading {
	margin-bottom: 0.8em;
	font-size: 3rem;
	line-height: 1.3;
}

.tertiary-heading {
	margin-bottom: 0.8em;
	font-size: 2.4rem;
	line-height: 1.4;
}

.page-heading {
	margin-bottom: 0.8em;
	font-size: 3.4rem;
	line-height: 1.3;
}

@media screen and (max-width: 767px) {
	.primary-heading {
		font-size: 2.9rem;
	}
	.secondary-heading {
		font-size: 2rem;
	}
	.tertiary-heading {
		font-size: 1.6rem;
	}
	.page-heading {
		font-size: 2.4rem;
	}
}
.note {
	margin: 1em 0;
	font-size: 1.6rem;
	line-height: 1.6;
}

@media screen and (max-width: 767px) {
	.note {
		font-size: 1.4rem;
	}
}
.captions {
	text-align: center;
}
@media screen and (max-width: 767px) {
	.captions {
		text-align: left;
	}
}
.captions .caption-inner {
	display: inline-block;
	text-align: left;
	margin: 20px 0;
	padding: 0 5%;
}

.img-wrapper .cap-box {
	margin: 0;
	padding: 0.2em 8px;
	left: auto;
	right: 0;
	display: inline-block;
	background: rgba(255, 255, 255, 0.6);
	color: #333;
	font-size: 1rem;
}

.btn {
	padding: 8px 16px;
	display: inline-block;
	position: relative;
	background: #333;
	color: #fff;
	font-size: 1.6rem;
	transition: all 0.3s ease-out;
}

.general-btn {
	margin: 8px;
	padding: 0 16px;
	width: 100%;
	max-width: 400px;
	height: 60px;
	position: relative;
	background: #143851;
	font-size: 2.8rem;
	line-height: 60px;
}

.general-btn:hover {
	opacity: 0.6;
}

@media screen and (max-width: 767px) {
	.caption {
		font-size: 1rem;
	}
	.general-btn {
		width: calc(100% - 16px);
		height: 54px;
		font-size: 2.2rem;
		line-height: 54px;
	}
}
.btn span {
	position: relative;
	z-index: 1;
}

.ghost-btn {
	padding: 12px 16px;
	width: 100%;
	max-width: 345px;
	background: transparent;
	color: #333;
	font-size: 2.4rem;
	font-weight: 900;
	border: 2px solid;
}

.ghost-btn:hover {
	color: #fff;
	border-color: #333;
}

@media screen and (max-width: 767px) {
	.ghost-btn {
		padding: 10px 12px;
		max-width: 260px;
	}
}
.submit-btn {
	margin: 8px;
	padding: 0 16px;
	width: 100%;
	max-width: 300px;
	height: 60px;
	position: relative;
	background: #c9bf9e;
	font-size: 2rem;
	line-height: 60px;
	border-radius: 30px;
}

.cancel-btn {
	margin: 8px;
	padding: 0 16px;
	width: 100%;
	max-width: 200px;
	height: 60px;
	position: relative;
	background: #aaa;
	font-size: 2rem;
	line-height: 60px;
	border-radius: 30px;
}

.bg-light {
	background-color: #c9d0d1;
}

.bg-gray {
	background-color: #eee;
}

.nav-link {
	color: #fff;
	transition: color 0.3s ease-out;
}

.nav-link:hover {
	color: #62a6a1;
}

[type=text],
[type=email],
[type=tel],
[type=password],
select,
textarea {
	margin: 4px 0;
	padding: 8px;
	min-height: 47px;
	background-color: #f8f9fa;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 0;
	transition: all 0.3s ease-out;
}

select {
	padding-right: 55px;
	background: url(../images/common/select-arrow.svg) no-repeat right center #f8f9fa;
	background-size: 30px auto;
}

textarea {
	resize: none;
	height: 180px;
}

[type=text]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=password]:focus,
select:focus,
textarea:focus {
	background-color: #fff;
	border: 1px solid #2b1fd3;
}

.form-parts {
	margin-bottom: 8px;
}

.require {
	color: #de0000;
}

.label-cap {
	font-size: 80%;
	color: #999;
}

.label-cap.tel-cap {
	padding-right: 1em;
}

.unit {
	margin: 0 4px;
}

.text-80 {
	width: 100%;
	max-width: 80px;
}

.text-120 {
	width: 100%;
	max-width: 120px;
}

.text-150 {
	width: 100%;
	max-width: 150px;
}

.text-240 {
	width: 100%;
	max-width: 240px;
}

.text-320 {
	width: 100%;
	max-width: 320px;
}

.text-400 {
	width: 100%;
	max-width: 400px;
}

.text-540 {
	width: 100%;
	max-width: 540px;
}

.text-fit {
	width: 100%;
	flex: 1;
}

.video-wrapper {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}

.video-wrapper iframe,
.video-wrapper video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.loading {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
}

.overlay-lite {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
	background: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 767px) {
	.video-wrapper {
		padding-top: 100%;
	}
}
.general-table {
	margin: 48px 0;
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.4;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.general-table th,
.general-table td {
	padding: 16px;
	border-bottom: 1px solid #ddd;
}

.general-table th {
	width: 260px;
	position: relative;
	background: #eee;
	font-weight: 500;
	text-align: right;
}

@media screen and (max-width: 767px) {
	.general-table {
		margin: 24px 0;
	}
	.general-table th,
	.general-table td {
		width: 100%;
		display: block;
	}
	.general-table th {
		text-align: left;
	}
}
.is-shine {
	position: relative;
	overflow: hidden;
}
.is-shine::before {
	content: "";
	position: absolute;
	display: block;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
	width: 50px;
	height: 50px;
	top: -60px;
	left: -60px;
	animation-name: shine-run;
	animation-delay: 0s;
	animation-duration: 3s;
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
}
@keyframes shine-run {
	0% {
		transform: scale(0) rotate(50deg);
		opacity: 0;
	}
	40% {
		transform: scale(1) rotate(50deg);
		opacity: 1;
	}
	100% {
		transform: scale(250) rotate(50deg);
		opacity: 0;
	}
}

.pagetop {
	text-align: center;
	border-bottom: 1px solid #333;
	position: relative;
}
.pagetop:before {
	content: "";
	display: block;
	width: 440px;
	aspect-ratio: 11/9;
	background-image: url(../images/common/title.svg);
	margin: 200px auto 40px auto;
}
@media screen and (max-width: 767px) {
	.pagetop:before {
		width: 45%;
		margin: 10% auto 5% auto;
	}
}
.pagetop a {
	display: block;
	position: relative;
	padding: 20px 0;
}
.pagetop a:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(to right, #6d6a5a 0%, #9c9c95 20%, #9c9c95 20%, #352e21 100%);
}

.inner {
	margin: 0 auto;
	width: calc(100% - 64px);
	max-width: 1200px;
}

@media (max-width: 767px) {
	.inner {
		width: calc(100% - 48px);
	}
}
.inner-narrow {
	max-width: 900px;
}

.inner-wide {
	max-width: 1360px;
}

.inner-fit {
	width: 100%;
	max-width: none;
}

.inner-full {
	max-width: none;
}

@keyframes blurIn {
	from {
		opacity: 0;
		filter: blur(20px);
		transform: translate3d(0, 10px, 0) scaleX(1.2);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: none;
	}
}
.blurIn {
	animation-name: blurIn;
}

@keyframes blurZoomIn {
	from {
		opacity: 0;
		filter: brightness(1.8) blur(20px);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	50% {
		filter: brightness(1) blur(0);
		opacity: 1;
	}
}
.blurZoomIn {
	animation-name: blurZoomIn;
}

.cliping-mask {
	overflow: hidden;
}

/*--------------------------------
state
--------------------------------*/
.is-none {
	display: none;
}

.disabled {
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}

.unscrollable {
	height: 100%;
	overflow: hidden;
}

.coming-soon {
	opacity: 0.8;
	pointer-events: none;
}

.none {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.no-link {
	cursor: default;
	pointer-events: none;
}

.is-fv {
	opacity: 0;
	animation-fill-mode: both;
}

.is-light {
	color: #fff;
}

.is-dark {
	color: #2B3A54;
}

.gray-text {
	color: #555;
}

.is-key {
	color: #1C9BB4;
}

.is-strong {
	color: #11607E;
}

.is-shadow {
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}

.is-soft-shadow {
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.2), 0 0 12px rgba(0, 0, 0, 0.16);
}

.has-bg.caption {
	margin: 0;
	padding: 2px 8px;
	background-color: rgba(0, 0, 0, 0.6);
}

.img-wrapper .caption.has-bg {
	left: 0;
	right: auto;
}

.img-wrapper .caption.has-bg.text-right {
	left: auto;
	right: 0;
}

.is-alert {
	color: #ff1c1c;
}

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

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

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

.small-text {
	font-size: 70%;
}

.large-text {
	font-size: 150%;
}

.is-semi-bold {
	font-weight: 500;
}

.is-thin {
	font-weight: 300;
}

.is-bold {
	font-weight: 700;
}

.line-wide {
	line-height: 2.4;
}

.letter-wide {
	letter-spacing: 0.2em;
}

.en-font {
	font-family: "trajan-pro-3", serif;
}

.en-font2 {
	font-family: "Cinzel", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.is-dummy {
	transform: rotateY(180deg);
}

.mb-medium {
	margin-bottom: 32px;
}

.mb-large {
	margin-bottom: 80px;
}

@media (max-width: 767px) {
	.mb-large {
		margin-bottom: 40px;
	}
}
@media (min-width: 992px) {
	.pc-none {
		display: none;
	}
}
@media (max-width: 991px) {
	.sp-none {
		display: none;
	}
}
@media (max-width: 767px) {
	.mobile-none {
		display: none;
	}
	.sp-text-center {
		text-align: center;
	}
}
@media (min-width: 768px) {
	.tab-none {
		display: none;
	}
}
/* Hides from IE-mac \*/
.clearfix {
	display: block;
}

.clearfix::after {
	display: block;
	content: "";
	clear: both;
}

.u-en {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.u-ja {
	font-family: var(--noto-sans);
}

@media screen and (max-width: 767px) {
	.u-pc-only {
		display: none !important;
	}
}
@media screen and (min-width: 768px) {
	.u-sp-only {
		display: none !important;
	}
}
.u-none {
	display: none !important;
}

.u-ta-l {
	text-align: left !important;
}

.u-ta-c {
	text-align: center !important;
}

.u-ta-r {
	text-align: right !important;
}

@media screen and (max-width: 767px) {
	.u-sp-ta-l {
		text-align: left !important;
	}
	.u-sp-ta-c {
		text-align: center !important;
	}
	.u-sp-ta-r {
		text-align: right !important;
	}
}
@media screen and (min-width: 768px) {
	.u-pc-ta-l {
		text-align: left !important;
	}
	.u-pc-ta-c {
		text-align: center !important;
	}
	.u-pc-ta-r {
		text-align: right !important;
	}
}
/* =====================
    margin / padding
===================== */
.u-mt-0 {
	margin-top: 0 !important;
}

.u-mb-0 {
	margin-bottom: 0 !important;
}

.u-mt-05em {
	margin-top: 0.5em !important;
}

.u-mt-1em {
	margin-top: 1em !important;
}

.u-mt-2em {
	margin-top: 2em !important;
}

.u-mt-3em {
	margin-top: 3em !important;
}

.u-mb-05em {
	margin-bottom: 0.5em !important;
}

.u-mb-1em {
	margin-bottom: 1em !important;
}

.u-mb-2em {
	margin-bottom: 2em !important;
}

.u-mb-3em {
	margin-bottom: 3em !important;
}

.u-mb-4em {
	margin-bottom: 4em !important;
}

.u-pt-0 {
	padding-top: 0 !important;
}

.u-pb-0 {
	padding-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
	.u-sp-mt-0 {
		margin-top: 0 !important;
	}
	.u-sp-mb-0 {
		margin-bottom: 0 !important;
	}
	.u-sp-mt-05em {
		margin-top: 0.5em !important;
	}
	.u-sp-mt-1em {
		margin-top: 1em !important;
	}
	.u-sp-mt-2em {
		margin-top: 2em !important;
	}
	.u-sp-mt-3em {
		margin-top: 3em !important;
	}
	.u-sp-mb-1em {
		margin-bottom: 1em !important;
	}
	.u-sp-mb-2em {
		margin-bottom: 2em !important;
	}
	.u-sp-mb-3em {
		margin-bottom: 3em !important;
	}
	.u-sp-pt-0 {
		padding-top: 0 !important;
	}
	.u-sp-pb-0 {
		padding-bottom: 0 !important;
	}
}
@media screen and (min-width: 768px) {
	.u-pc-mt-0 {
		margin-top: 0 !important;
	}
	.u-pc-mb-0 {
		margin-bottom: 0 !important;
	}
	.u-pc-mt-05em {
		margin-top: 0.5em !important;
	}
	.u-pc-mt-1em {
		margin-top: 1em !important;
	}
	.u-pc-mt-2em {
		margin-top: 2em !important;
	}
	.u-pc-mt-3em {
		margin-top: 3em !important;
	}
	.u-pc-mb-1em {
		margin-bottom: 1em !important;
	}
	.u-pc-mb-2em {
		margin-bottom: 2em !important;
	}
	.u-pc-mb-3em {
		margin-bottom: 3em !important;
	}
	.u-pc-pt-0 {
		padding-top: 0 !important;
	}
	.u-pc-pb-0 {
		padding-bottom: 0 !important;
	}
}
/* =====================
    font-size
===================== */
.u-fz-xs {
	font-size: clamp(1rem, 0.96rem + 0.125vw, 1.2rem);
}

.u-fz-sm {
	font-size: clamp(1.1rem, 1.04rem + 0.1875vw, 1.4rem);
}

.u-fz-md {
	font-size: clamp(1.2rem, 1.12rem + 0.25vw, 1.6rem);
}

.u-fz-lg {
	font-size: clamp(1.4rem, 1.32rem + 0.25vw, 1.8rem);
}

.u-fz-xl {
	font-size: clamp(1.6rem, 1.52rem + 0.25vw, 2rem);
}

.u-fz-md2 {
	font-size: clamp(1.2rem, 1.12rem + 0.25vw, 1.6rem) !important;
}
@media screen and (max-width: 767px) {
	.u-fz-md2 {
		font-size: 4vw !important;
	}
}

/* =====================
    line-height
===================== */
.u-lh-20 {
	line-height: 2 !important;
}

.u-underline {
	text-decoration: underline;
}

.u-wet9 {
	font-weight: 900;
}

.c-btn {
	display: block;
	width: fit-content;
	font-size: clamp(1.4rem, 1.2rem + 0.625vw, 2.4rem);
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	border-radius: 50px;
	height: 70px;
	min-width: 140px;
	width: 90%;
	max-width: 370px;
	overflow: hidden;
	position: relative;
	transition: var(--hover-duration) 0.06s ease;
	color: #fff;
	font-weight: 700;
	background-color: #E94B6B;
}
@media screen and (max-width: 767px) {
	.c-btn {
		font-size: 6vw;
	}
}
.c-btn:after {
	content: "";
	position: absolute;
	clip-path: polygon(100% 52%, 0% 100%, 0% 0%);
	width: 14px;
	height: 14px;
	background-color: #fff;
	right: 25px;
	transition: var(--hover-duration) 0.06s ease;
}
.c-btn:hover {
	background-color: var(--color-blue) !important;
	color: #fff;
	opacity: 1;
}
.c-btn:hover:after {
	background-color: #fff;
	transform: translateX(5px);
}

.c-title {
	text-align: center;
	font-size: clamp(2rem, 1.76rem + 0.75vw, 3.2rem);
	letter-spacing: 0.15em;
	margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.c-title {
		margin-bottom: 15px;
	}
}
.c-title img {
	display: block;
	max-width: 265px;
	margin: 0 auto 10px auto;
}
@media screen and (max-width: 767px) {
	.c-title img {
		max-width: 130px;
		margin-bottom: 5px;
	}
}
.c-title span {
	background: linear-gradient(transparent 60%, #ff6 60%);
}

.c-cta {
	background-image: url(../img/shakebaby11.webp);
	background-size: cover;
	padding: 100px 0;
}
.c-cta.-c2 {
	background: none;
	padding: 0;
}
@media screen and (max-width: 767px) {
	.c-cta {
		padding: 10% 0;
	}
}
.c-cta dl {
	text-align: center;
}
.c-cta dl dt {
	font-size: clamp(2.2rem, 1.92rem + 0.875vw, 3.6rem);
	font-weight: 700;
	margin-bottom: 1em;
}
.c-cta dl dt span {
	background: linear-gradient(transparent 60%, #ff6 60%);
}
.c-cta dl dd {
	font-size: clamp(1.4rem, 1.2rem + 0.625vw, 2.4rem);
}
.c-cta dl dd p {
	margin-bottom: 40px;
}
.c-cta dl dd p span {
	display: block;
	font-size: clamp(1.2rem, 1.12rem + 0.25vw, 1.6rem);
	margin-top: 10px;
}
.c-cta dl dd a {
	margin: 0 auto;
}

.c-flex {
	display: flex;
}
.c-flex.-spb {
	justify-content: space-between;
}
.c-flex.-wrap {
	flex-wrap: wrap;
}
.c-flex.-ac {
	align-items: center;
}
.c-flex.-afs {
	align-items: flex-start;
}
.c-flex.-rr {
	flex-direction: row-reverse;
}

#pagetop {
	position: fixed;
	bottom: 60px;
	right: 55px;
	width: 35px;
	height: 35px;
	cursor: pointer;
	z-index: 10001;
}
@media screen and (max-width: 767px) {
	#pagetop {
		right: 10px;
		bottom: 20px;
	}
}

[class*=__inner] {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}
[class*=__inner].-md {
	max-width: 780px;
}

.p-home {
	position: relative;
	overflow: hidden;
}
.p-home-mv {
	position: relative;
	background-color: #F9F1F3;
}
.p-home-area1 {
	background-color: #F9F1F3;
	padding: 1px 0;
}
.p-home-area1 .fig1 {
	width: 90%;
	max-width: 1200px;
	margin: 100px auto 50px auto;
}
@media screen and (max-width: 767px) {
	.p-home-area1 .fig1 {
		margin: 10% auto;
	}
}
.p-home-area1__box {
	text-align: center;
	padding: 100px 0;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box {
		padding: 10% 0;
	}
}
.p-home-area1__box h2 {
	font-size: clamp(2.5rem, 2.24rem + 0.8125vw, 3.8rem);
	font-weight: 700;
	color: #E48797;
	display: inline-block;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box h2 {
		font-size: 5vw;
		padding-bottom: 130px;
	}
}
.p-home-area1__box h2 img {
	display: block;
	width: 90%;
	max-width: 350px;
	margin: 10px auto 0 auto;
}
.p-home-area1__box h2:before, .p-home-area1__box h2:after {
	content: "";
	position: absolute;
	background-size: cover;
}
.p-home-area1__box h2:before {
	background-image: url(../img/shakebaby4.webp);
	width: 120px;
	left: -100px;
	top: 150px;
	aspect-ratio: 12/15;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box h2:before {
		width: 80px;
		top: auto;
		bottom: 20px;
		left: 30px;
	}
}
.p-home-area1__box h2:after {
	background-image: url(../img/shakebaby5.webp);
	width: 120px;
	aspect-ratio: 12/14.5;
	right: -50px;
	top: 70px;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box h2:after {
		width: 80px;
		top: auto;
		bottom: 0;
		right: 30px;
	}
}
.p-home-area1__box dl dt {
	font-weight: 700;
	font-size: clamp(1.4rem, 1.2rem + 0.625vw, 2.4rem);
	margin: 50px 0;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box dl dt {
		margin: 1em 0;
	}
}
.p-home-area1__box dl dt em {
	font-family: "Cinzel", serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.2rem, 1.98rem + 0.6875vw, 3.3rem);
}
.p-home-area1__box dl dt span {
	font-size: clamp(1.2rem, 1.08rem + 0.375vw, 1.8rem);
	display: block;
	font-weight: 400;
	margin-top: 30px;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box dl dt span {
		margin-top: 10px;
	}
}
.p-home-area1__box dl dd {
	font-size: clamp(1.3rem, 1.14rem + 0.5vw, 2.1rem);
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box dl dd {
		font-size: 3.5vw;
	}
}
.p-home-area1__box2 {
	background-color: #fff;
	position: relative;
	padding: 120px 0 50px 0;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box2 {
		padding: 15% 0 5% 0;
	}
}
.p-home-area1__box2:after {
	content: "";
	clip-path: polygon(100% 0%, 0% 100%, 0% 0%);
	background-color: #F9F1F3;
	width: 100%;
	height: 100px;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box2:after {
		height: 30px;
	}
}
.p-home-area1__box2 ul {
	display: inline-block;
	text-align: left;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box2 ul {
		padding: 0 10%;
	}
}
.p-home-area1__box2 ul li {
	font-size: clamp(1.2rem, 1.08rem + 0.375vw, 1.8rem);
	position: relative;
	padding-left: 100px;
	margin: 10px 0;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box2 ul li {
		padding-left: 50px;
	}
}
.p-home-area1__box2 ul li em {
	font-family: "Cinzel", serif;
	font-style: normal;
	color: #E48797;
	font-size: clamp(2rem, 1.74rem + 0.8125vw, 3.3rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 0;
	width: 70px;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box2 ul li em {
		width: 40px;
	}
}
.p-home-area1__box2 ul li em:after {
	content: "";
	display: inline-block;
	width: 39px;
	height: 3px;
	background-size: cover;
	background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2039.71%203.71%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23cfc328%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M3.71%2C1.85c0%2C1.03-.83%2C1.85-1.85%2C1.85s-1.85-.83-1.85-1.85S.83%2C0%2C1.85%2C0s1.85.86%2C1.85%2C1.85Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M21.71%2C1.85c0%2C1.03-.83%2C1.85-1.85%2C1.85s-1.85-.83-1.85-1.85.83-1.85%2C1.85-1.85%2C1.85.86%2C1.85%2C1.85Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M39.71%2C1.85c0%2C1.03-.83%2C1.85-1.85%2C1.85s-1.85-.83-1.85-1.85.83-1.85%2C1.85-1.85%2C1.85.86%2C1.85%2C1.85Z%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 767px) {
	.p-home-area1__box2 ul li em:after {
		width: 21px;
		height: 2px;
	}
}
.p-home-area1__box2 ul li span {
	font-size: clamp(1.6rem, 1.44rem + 0.5vw, 2.4rem);
	font-weight: 700;
}
.p-home-area1__box2 p {
	font-size: clamp(1.1rem, 1.04rem + 0.1875vw, 1.4rem);
	margin-top: 2em;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box2 p {
		text-align: left;
		padding: 0 5%;
	}
}
.p-home-area1__box3 {
	padding: 150px 0 100px 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box3 {
		padding: 15% 0 10% 0;
	}
}
.p-home-area1__box3:after {
	content: "";
	clip-path: polygon(100% 0%, 0% 100%, 0% 0%);
	background-color: #fff;
	width: 100%;
	height: 100px;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box3:after {
		height: 30px;
	}
}
.p-home-area1__box3 h3 {
	text-align: center;
	font-size: clamp(2.5rem, 2.24rem + 0.8125vw, 3.8rem);
	font-weight: 700;
	color: #E48797;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box3 h3 {
		font-size: 4.5vw;
	}
}
.p-home-area1__box3 figure {
	max-width: 765px;
	width: 90%;
	margin: 50px auto;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box3 figure {
		margin: 15px auto;
	}
}
.p-home-area1__box3 dl {
	text-align: center;
}
.p-home-area1__box3 dl dt {
	font-size: clamp(1.4rem, 1.2rem + 0.625vw, 2.4rem);
	font-weight: 700;
	color: #E48797;
	margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box3 dl dt {
		font-size: 4.5vw;
		margin-bottom: 0.5em;
	}
}
.p-home-area1__box3 dl dd {
	font-size: clamp(1.2rem, 1.12rem + 0.25vw, 1.6rem);
	line-height: 1.9;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box3 dl dd {
		font-size: 4vw;
	}
}
.p-home-area1__box3 dl dd span {
	display: block;
	font-size: clamp(1rem, 0.92rem + 0.25vw, 1.4rem);
}
@media screen and (max-width: 767px) {
	.p-home-area1__box3 dl dd span {
		font-size: 3vw;
	}
}
.p-home-area1 .pic {
	display: flex;
}
@media screen and (max-width: 767px) {
	.p-home-area1 .pic {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 767px) {
	.p-home-area1 .pic li {
		width: 50%;
	}
}
.p-home-area1__box4 {
	display: flex;
	justify-content: center;
	gap: 5vw;
	background-color: #fff;
	padding: 100px 0;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box4 {
		padding: 10% 5%;
		flex-direction: column;
	}
}
.p-home-area1__box4 dt {
	font-size: clamp(1.2rem, 1.08rem + 0.375vw, 1.8rem);
	font-weight: 700;
	margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box4 dt {
		font-size: 4vw;
		margin-bottom: 10px;
	}
}
.p-home-area1__box4 dd {
	font-size: clamp(1.1rem, 1.04rem + 0.1875vw, 1.4rem);
}
@media screen and (max-width: 767px) {
	.p-home-area1__box4 dd {
		font-size: 3vw;
	}
}
.p-home-area1__box4 dd span {
	display: block;
	font-size: clamp(1rem, 0.96rem + 0.125vw, 1.2rem);
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	.p-home-area1__box4 dd span {
		margin-top: 5px;
	}
}
.p-home-area2 {
	background-color: #FBE3EA;
	padding: 100px 0;
}
@media screen and (max-width: 767px) {
	.p-home-area2 {
		padding: 0;
	}
}
.p-home-area2 figure {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-home-area2 figure {
		width: 100%;
	}
}
.p-home-area2 ul {
	display: flex;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-home-area2 ul {
		display: block;
		width: 100%;
	}
}
.p-home-area3 {
	background-color: #E8E4E1;
	padding: 100px 0;
}
@media screen and (max-width: 767px) {
	.p-home-area3 {
		padding: 10% 0;
	}
}
.p-home-area3 ul {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 3vw 3%;
}
@media screen and (max-width: 767px) {
	.p-home-area3 ul {
		gap: 5vw 0;
	}
}
.p-home-area3 ul li {
	width: 47%;
}
@media screen and (max-width: 767px) {
	.p-home-area3 ul li {
		width: 100%;
	}
}
.p-home-area4 {
	background-color: #FBECEC;
}
.p-home-area4 figure {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-home-area4 figure {
		width: 100%;
	}
}
.p-home-area5 {
	padding: 70px 0;
}
@media screen and (max-width: 767px) {
	.p-home-area5 {
		padding: 10% 0;
	}
}
.p-home-area5 figure {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}
.p-home-area5 figure a {
	position: relative;
}
.p-home-area5 figure a:after {
	content: "";
	background-image: url(../img/shakebaby25.webp);
	width: 170px;
	height: 170px;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
	.p-home-area5 figure a:after {
		width: 80px;
		height: 80px;
	}
}
.p-home-area5 p {
	text-align: center;
	font-size: clamp(1.2rem, 1.16rem + 0.125vw, 1.4rem);
	margin-top: 1em;
}/*# sourceMappingURL=style.css.map */