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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
table,
tr,
th,
td {
	border: 0;
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

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

ol,
ul {
	list-style: none;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	margin: 0;
	padding: 0;
}

input,
select,
textarea {
	color: inherit;
	font: inherit;
	vertical-align: top;
}

/*
それぞれ( )内にpxでの数値を入れるとrem, pxに変換
*/

body {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

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

a {
	color: inherit;
}

.inner {
	height: inherit;
	padding: 0 0.9375rem;
	position: relative;
	width: 100%;
	width: 100%;
}

.button-xs {
	background: #ff8b71;
	border-radius: 2rem;
	box-shadow: 0px 0px 3px 0px rgba(83, 46, 37, 0.25);
	color: #ffffff;
	font-weight: 700;
	height: 2.5rem;
	padding: 0.53125rem 0.625rem;
	position: relative;
	text-align: center;
	transition: background 0.3s, color 0.3s;
	width: 8rem;
}

.button-xs::after {
	background-image: url(../img/icon-btn-arrow.svg);
	background-size: cover;
	content: "";
	height: 0.9375rem;
	position: absolute;
	right: 0.3125rem;
	top: calc(50% - 0.46875rem);
	width: 0.5625rem;
}

.button-xs:hover {
	background: #ffffff;
	color: #ff8b71;
}

.button-xs:hover::after {
	background-image: url(../img/icon-btn-arrow-o.svg);
}

.button-s {
	background: #ff8b71;
	border-radius: 2.5rem;
	box-shadow: 0px 0px 4px 0px rgba(83, 46, 37, 0.25);
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.2rem;
	line-height: 120%; /* 19.2px */
	padding: 0.53125rem 0.625rem;
	text-align: center;
	transition: background 0.3s, color 0.3s;
	width: 10rem;
}

.button-s:hover {
	background: #ffffff;
	color: #ff8b71;
}

.button-m {
	background: #ff8b71;
	border-radius: 2rem;
	box-shadow: 0px 0px 3px 0px rgba(83, 46, 37, 0.25);
	color: #ffffff;
	font-size: 1.375rem;
	font-weight: 700;
	padding: 0.53125rem 0.625rem;
	text-align: center;
	transition: background 0.3s, color 0.3s;
	width: 10rem;
}

.button-m:hover {
	background: #ffffff;
	color: #ff8b71;
}

.button-l {
	background: #ff8b71;
	border-radius: 3.27525rem;
	box-shadow: 0px 0px 3px 0px rgba(83, 46, 37, 0.25);
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.2rem;
	line-height: 120%; /* 19.2px */
	padding: 1.25rem 0.625rem 1.5rem;
	text-align: center;
	transition: background 0.3s, color 0.3s;
	width: 25rem;
	width: 25rem;
}

.button-l:hover {
	background: #ffffff;
	color: #ff8b71;
}

.button-blue {
	background: var(--gradation, linear-gradient(177deg, #50bfcb -29.45%, rgba(80, 191, 203, 0.42) 127.88%));
	border-radius: 2rem;
	box-shadow: 0px 0px 4px 0px rgba(41, 81, 86, 0.25);
	color: #ffffff;
	font-weight: 700;
	line-height: 150%;
	padding: 1rem 1.5rem;
	width: 16.4375rem;
}

html.webp .fv {
	background: url(../../assets/img/bg-fv.png);
}

html.webp .cta {
	background: url(../../assets/img/bg-cta.png);
}

html.no-webp .fv {
	background: url(../../assets/img/bg-fv.png);
}

html.no-webp .cta {
	background: url(../../assets/img/bg-cta.webp);
}

.header__inner {
	align-items: center;
	display: flex;
	gap: 2.4375rem;
	justify-content: space-between;
}

.header__logo {
	height: 3.625rem;
	width: 9.4375rem;
}

.header__nav {
	display: none;
}

.header__tel-pc {
	margin-left: 0.6875rem;
}

.header__nav-pc-buttons {
	display: none;
}

.header__sp-left {
	align-items: center;
	display: flex;
	gap: 0.9375rem;
	justify-content: center;
}

.header__open {
	height: 1.03125rem;
	position: relative;
	width: 1.6875rem;
	z-index: 51;
}

.header__open.is-checked .header__bar:nth-of-type(2) {
	display: none;
}

.header__open.is-checked .header__bar:nth-of-type(1) {
	background: #333333;
	top: 10px;
	transform: rotate(30deg);
}

.header__open.is-checked .header__bar:nth-of-type(3) {
	background: #333333;
	top: 10px;
	transform: rotate(-30deg);
}

.header__bar {
	background: #333333;
	border-radius: 0.25rem;
	height: 0.09375rem;
	left: 0;
	position: absolute;
	top: 0;
	transition: transform 0.3s linear, top 0.3s linear;
	width: 1.6875rem;
}

.header__bar:nth-of-type(1) {
	top: 0;
}

.header__bar:nth-of-type(2) {
	top: 0.375rem;
}

.header__bar:nth-of-type(3) {
	top: 0.75rem;
}

.header__content {
	position: fixed;
	right: 0;
	top: 3.75rem;
	transform: translateX(100%);
	transition: transform 0.3s linear;
	width: 100%;
	z-index: 50;
}

.header__content.is-checked {
	transform: translateX(0);
}

.header__content-menu {
	background: var(--gradation, linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #007adf 0%, #00ecbc 100%));
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 4.1875rem 0.9375rem 5.25rem 0.9375rem;
}

.header__content-link {
	color: #6c6e6f;
	font-size: 1.25rem;
	font-weight: 400;
	margin-inline: auto;
	padding-bottom: 0.5rem;
	position: relative;
	text-transform: uppercase;
	width: 16.3125rem;
}

.header__content-link::before {
	background: url(../img/icon-arrow-b.svg);
	background-size: cover;
	content: "";
	height: 0.9375rem;
	position: absolute;
	right: 0;
	top: calc(50% - 0.25rem);
	transform: translateY(-50%);
	width: 0.5625rem;
}

.header__content-link::after {
	background-color: #ffffff;
	bottom: 0;
	content: "";
	height: 0.0625rem;
	left: -3.0625rem;
	position: absolute;
	width: 22.5rem;
}

.header__content-bottom {
	background: #ffffff;
	padding: 2.5rem 1.9375rem;
}

.header__tel {
	text-align: center;
}

.header__tel div {
	font-size: 1.5rem;
	font-weight: 700;
	margin-inline: auto;
	padding-left: 1.5rem;
	position: relative;
	width: -moz-max-content;
	width: max-content;
}

.header__tel div::before {
	background: url(../img/icon-tel.svg);
	background-size: cover;
	content: "";
	height: 1rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
}

.header__tel p {
	font-size: 0.75rem;
	font-weight: 400;
}

.header__content-bottom-buttons {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.fv {
	padding-bottom: 0.25rem;
	padding-top: 1.03125rem;
}

.fv_left h1 {
	font-family: "Noto Serif JP", serif;
	font-size: 1.875rem;
	line-height: 150%;
	text-align: center;
}

.fv_left-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1.03125rem;
	position: relative;
	z-index: 20;
}

.fv_left-wrapper picture img {
	width: 10.9375rem;
}

.fv_right picture {
	bottom: 0;
	height: 23.625rem;
	position: absolute;
	right: 0;
	width: 19.9375rem;
	z-index: 10;
}

.fv_right p {
	color: var(--gray, #6c6e6f);
	font-family: "Yomogi", cursive;
	font-size: 1.5rem;
	line-height: 1.5rem;
	position: absolute;
	right: 1.25rem;
	top: 0;
	writing-mode: vertical-rl;
	z-index: 20;
}

.cta {
	padding-bottom: 2.6875rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 2.5rem;
}

.cta__inner {
	background: url(../img/bg-cta-inner.png);
	border-radius: 1rem;
	padding: 1.875rem 0.5rem 0.9375rem 0.5rem;
}

.cta__wrapper {
	display: flex;
	gap: 0.3125rem;
}

.cta__image {
	width: 3.125rem;
}

.cta__text p {
	font-weight: 700;
	line-height: 120%;
	text-align: center;
}

.cta__title {
	display: flex;
	gap: 0.34375rem;
	margin-top: 0.375rem;
}

.cta__title-left {
	font-size: 1.1875rem;
	font-weight: 500;
	letter-spacing: 1.9px;
	line-height: 120%;
}

.cta__title-left div {
	align-items: center;
	border-bottom: 0.0625rem dotted #ffffff;
	display: flex;
	padding-bottom: 0.93125rem;
	position: relative;
}

.cta__title-left div::before {
	background: url(../img/dotted.svg);
	background-size: cover;
	content: "";
	height: 0.25rem;
	left: 0.5625rem;
	position: absolute;
	top: -0.34375rem;
	width: 4.8978125rem;
}

.cta__title-left div span {
	font-size: 2.5rem;
	font-weight: 700;
	margin-left: 0.125rem;
}

.cta__title-left p {
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 6px;
	line-height: 120%;
	margin-top: 0.375rem;
}

.cta__title-right {
	background: #ff8b71;
	border-radius: 50%;
	color: #ffffff;
	font-weight: 700;
	line-height: 120%;
	padding: 1.25rem 0.5rem 1.0625rem 0.4375rem;
	text-align: center;
}

.cta__title-right span {
	font-weight: normal;
}

.cta__bottom {
	background: #ffffff;
	margin-left: -0.5rem;
	padding-bottom: 0.21875rem;
	padding-top: 0.21875rem;
	width: calc(100% + 1rem);
}

.cta__bottom p {
	color: #6c6e6f;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.78px;
	line-height: 120%;
	text-align: center;
}

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

.hidden-sp {
	display: none;
}

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

html {
	font-size: calc(1600 / 390 * 1vw);
}

}

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

.inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 5rem;
}

.header__logo {
	height: 4.5rem;
	width: 11.6875rem;
}

.fv {
	padding-bottom: 2rem;
	padding-top: 5.375rem;
}

.fv_left h1 {
	font-size: 4rem;
	padding-left: 19.5rem;
	position: relative;
	text-align: left;
}

.fv_left h1::before {
	background: url(../../../assets/img/pot.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 21.579rem;
	left: 5rem;
	position: absolute;
	top: -4.4175rem;
	width: 21.7041875rem;
}

.fv_left-wrapper {
	flex-direction: row;
	gap: 0.125rem;
	margin-top: 3.5625rem;
}

.fv_left-wrapper picture img {
	width: 16.9375rem;
}

.fv_right picture {
	height: 40rem;
	width: 43.25rem;
}

.fv_right p {
	font-size: 2rem;
	line-height: 2.3125rem;
	top: -3.75rem;
}

}

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

.header__inner {
	gap: 2.8125rem;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.header__nav {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.header__link {
	color: #6c6e6f;
	font-weight: 500;
}

.header__link + .header__link {
	border-left: 0.0625rem solid #6c6e6f;
	padding-left: 1rem;
}

.header__nav-pc-buttons {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-left: -1.3125rem;
}

.header__sp-left {
	display: none;
}

.hidden-pc {
	display: none;
}

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

}

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

html {
	font-size: calc(1600 / 1440 * 1vw);
}

}

