/* リキッドレイアウト対応 */

body {
	color: #4A340F;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 4.2666666667vw;
}

/* 画面の高さに合わせてフッターを下に広げる */

body {
	background-color: #FAF9F7;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

footer {
	margin-top: auto;
}

/* ヘッダー固定した場合、ページ内リンクの遷移先がズレる問題解消 */

html {
	background-color: #fff;
	scroll-padding-top: 70px;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

main {
	margin-top: 4.375rem;
}

/* pcの電話番号発信対応 */

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed; /* 上記のSafari用 */
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

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

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

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

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

/* js-triggerと一緒に使う */

/* =========================================== */

/*                 inview                      */

/* =========================================== */

.inview {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 2s, opacity 2s;
}

.inview.show {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================== */

/*                slide-up                     */

/* =========================================== */

.slide-up {
	display: inline-block;
	overflow: hidden;
}

.slide-up * {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
}

.slide-up.show * {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: slideInFromBottom;
}

/* =========================================== */

/*               anime-zoom                    */

/* =========================================== */

.anime-zoom__img {
	overflow: hidden;
}

.anime-zoom:hover .anime-zoom__img img {
	transform: scale(1.2, 1.2);
}

.c-btn a {
	align-items: center;
	border-radius: 62.4375rem;
	display: inline-flex;
	font-size: 1rem;
	height: 2.5rem;
	justify-content: center;
	width: 15.625rem;
}

.c-btn.-default a {
	background-color: #BCCE1D;
	color: #fff;
	position: relative;
}

.c-btn.-default a::before {
	background-image: url("../img/common/icon-arrow-right-1.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.25rem;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.3125rem;
}

.c-btn.-border a {
	border: 1px solid currentColor;
	color: #DFAE65;
	letter-spacing: 0.15em;
}

.c-title-hr {
	grid-gap: 0.5rem;
	align-items: center;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: auto 1fr;
	justify-content: center;
}

.c-title-hr__text {
	color: #40220F;
	font-family: "Caveat", cursive;
	font-size: 1.5rem;
}

.c-title-hr__border {
	background-color: currentColor;
	border-radius: 0.125rem;
	height: 0.125rem;
	position: relative;
	width: 100%;
}

.c-title-hr__border::after {
	background-color: currentColor;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	content: "";
	display: block;
	height: 0.75rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.75rem;
}

.footer__heading {
	background-color: #4A340F;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 100%;
	padding-bottom: 0.6875rem;
	padding-top: 0.6875rem;
	text-align: center;
}

.footer__contact {
	background-color: #FFF8DE;
	padding: 0.6875rem 1.5625rem;
}

.footer__contact-list {
	grid-gap: 0.4375rem;
	display: grid;
	gap: 0.4375rem;
}

.footer__contact-item {
	grid-gap: 0.0625rem;
	display: grid;
	gap: 0.0625rem;
}

.footer__contact-item-text {
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.25;
}

.footer__contact-item-note {
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 120%;
}

.footer_copy-right {
	grid-gap: 0.4375rem;
	background-color: #fff;
	display: grid;
	gap: 0.4375rem;
	padding-bottom: 0.4375rem;
	padding-top: 0.4375rem;
	text-align: center;
}

.footer_copy-right-logo {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	width: 6.25rem;
}

.footer_copy-right-logo img {
	height: auto;
	width: 100%;
}

.footer_copy-right-text {
	font-size: 0.625rem;
}

.form__field {
	grid-gap: 0.25rem;
	display: grid;
	gap: 0.25rem;
	padding-top: 0.75rem;
}

.form__name {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: left;
}

.form__label {
	color: #6E4500;
	display: inline-block;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.form__tag {
	color: #fff;
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 150%;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.form__tag.-required {
	background-color: #FF7661;
}

.form__tag.-optional {
	background-color: #B2B2B2;
}

.form__data input,
.form__data select {
	background-color: #F1F1F1;
	color: #6E4500;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 120%;
	padding: 0.34375rem;
	width: 100%;
}

.form__data input[type=file]::-webkit-file-upload-button {
	background-color: transparent;
	border: 1px solid #6E4500;
	border-radius: 0.25rem;
	color: #6E4500;
	margin-right: 0.4375rem;
}

.form__fieldset {
	border: none;
	margin-top: 0.3125rem;
	padding: 0;
	padding-left: 1.5625rem;
}

.form__legend {
	color: #6E4500;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	margin-bottom: 0.1875rem;
	position: relative;
}

.form__legend::before {
	background-color: currentColor;
	border-radius: 50%;
	content: "";
	height: 0.25rem;
	left: -0.75rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.25rem;
}

.form__subfield {
	align-items: center;
	color: #6E4500;
	display: grid;
	font-size: 0.875rem;
	grid-template-columns: 1fr 3.75rem auto;
}

.form__subfield + .form__subfield {
	margin-top: 0.4375rem;
}

.form__subfield input {
	text-align: center;
}

.form__sublabel {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 110%;
}

.form__kuchi {
	align-self: flex-end;
	margin-left: 0.125rem;
}

.form__submit {
	margin-top: 1rem;
}

.form__submit-button {
	align-items: center;
	border: 1px solid currentColor;
	border-radius: 62.4375rem;
	color: #DFAE65;
	display: inline-flex;
	font-size: 1.25rem;
	font-weight: 700;
	height: 3.125rem;
	justify-content: center;
	letter-spacing: 0.15em;
	width: 100%;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header {
	background-color: #fff;
	color: #6E4500;
	height: 4.375rem;
	position: fixed;
	width: 100%;
	z-index: 200;
}

.header__inner {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: max-content 1fr;
	height: inherit;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5625rem;
}

.header__logo {
	display: block;
	height: 100%;
}

.header__logo-link {
	align-items: end;
	display: flex;
	height: 100%;
	padding-bottom: 0.25rem;
	padding-top: 0;
	width: 7.5rem;
}

.header__logo-link img {
	height: auto;
	width: 100%;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.563rem;
	padding-right: 1.563rem;
	width: 100%;
}

.inner-expand {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.563rem;
	padding-right: 1.563rem;
	width: 100%;
}

.summer-recipe-modal {
	background: rgba(0, 0, 0, 0.4);
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.summer-recipe-modal.active {
	display: block;
}

.summer-recipe-modal__overlay {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.summer-recipe-modal__close {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 3rem;
	line-height: 70%;
	position: absolute;
	right: 1.625rem;
	top: 0;
	z-index: 1001;
}

.summer-recipe-modal__content {
	height: 66.875rem;
	left: 50%;
	max-height: 100%;
	max-width: 56.25rem;
	overflow-y: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.summer-recipe-modal__image img {
	display: block;
	height: auto;
	width: 100%;
}

.summer-recipe-modal__button {
	margin-top: -80px;
	text-align: center;
}

.summerflow-modal {
	background: rgba(0, 0, 0, 0.4);
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.summerflow-modal.active {
	display: block;
}

.summerflow-modal__overlay {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.summerflow-modal__content {
	background: #fff;
	margin: 0 auto;
	max-height: 100%;
	overflow-y: auto;
	position: relative;
	width: 90%;
}

.summerflow-modal__image img {
	display: block;
	height: auto;
	width: 100%;
}

.summerflow-modal__close {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 3rem;
	line-height: 70%;
	position: absolute;
	right: 1.875rem;
	top: 0;
	z-index: 1001;
}

.in-progress {
	background-image: url("../img/common/sp/bg-img-2.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.in-progress--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.in-progress__contents {
	grid-gap: 1.25rem;
	background-color: #fff;
	border: 1px solid #DFAE65;
	border-radius: 1.5625rem;
	display: grid;
	gap: 1.25rem;
	margin-bottom: 1.5625rem;
	padding-bottom: 4.375rem;
	padding-top: 8.46875rem;
	text-align: center;
}

.in-progress__img {
	margin-left: auto;
	margin-right: auto;
	width: 4.375rem;
}

.in-progress__img img {
	-o-object-fit: cover;
	aspect-ratio: 100/175;
	object-fit: cover;
}

.in-progress__heading {
	font-family: "Noto Serif", serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 100%;
}

.in-progress__buttons {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
}

/* =========================================== */

/*                   fv                    */

/* =========================================== */

.summer-fv {
	background-image: url("../img/summer/sp/bg-img-1.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.summer-fv--layout {
	padding-bottom: 5.6875rem;
	padding-top: 4.5625rem;
}

.summer-fv__inner {
	position: relative;
}

.summer-fv__fukidashi-img {
	display: none;
}

.summer-fv__fukidashi-img img {
	-o-object-fit: cover;
	aspect-ratio: 642/293;
	object-fit: cover;
}

.summer-fv__copy-img img {
	-o-object-fit: cover;
	aspect-ratio: 375/276;
	object-fit: cover;
}

.summer-fv__mugikomachi-chan {
	bottom: -4.3125rem;
	left: 1.125rem;
	position: absolute;
}

.summer-fv__mugikomachi-chan-img {
	margin-bottom: 0.125rem;
	margin-left: auto;
	margin-right: auto;
	width: 5.125rem;
}

.summer-fv__mugikomachi-chan-img img {
	-o-object-fit: cover;
	aspect-ratio: 208/237;
	object-fit: cover;
}

.summer-fv__mugikomachi-chan-text {
	font-size: 0.375rem;
	line-height: 116%;
	text-align: center;
}

/* =========================================== */

/*                   recipe                    */

/* =========================================== */

.summer-recipe {
	background-image: url("../img/summer/sp/bg-img-2.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.summer-recipe--layout {
	margin-bottom: 2.5rem;
}

.summer-recipe__title-hr {
	margin-bottom: 0.75rem;
}

.summer-recipe__heading {
	color: #3D9638;
	font-family: "Noto Serif", serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.625rem;
}

.summer-recipe__heading span {
	font-size: 2.5rem;
	font-style: italic;
	letter-spacing: 0.1em;
}

.summer-recipe__list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
}

.summer-recipe__item:first-child .summer-recipe__item-wrap {
	gap: 0.1875rem;
}

.summer-recipe__item a {
	display: inline-block;
	position: relative;
}

.summer-recipe__item a::before {
	background-image: url("../img/common/check.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 5.375rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 5.5rem;
	z-index: 1;
}

.summer-recipe__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 325/268;
	object-fit: cover;
}

.summer-recipe__item-wrap {
	align-items: center;
	background-color: #DFAE65;
	display: inline-flex;
	flex-direction: column;
	gap: 0.5rem;
	height: 3.625rem;
	justify-content: center;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	position: relative;
	text-align: center;
	width: 100%;
}

.summer-recipe__item-wrap::before,
.summer-recipe__item-wrap::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 2.25rem;
	position: absolute;
	top: 0.8125rem;
	width: 1.25rem;
}

.summer-recipe__item-wrap::before {
	background-image: url("../img/common/fork.webp");
	left: 0.5625rem;
}

.summer-recipe__item-wrap::after {
	background-image: url("../img/common/knife.webp");
	right: 0.5rem;
}

.summer-recipe__item-copy {
	text-align: center;
}

.summer-recipe__item-copy img {
	display: inline-block;
}

.summer-recipe__item-title {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

/* =========================================== */

/*                   campaign                    */

/* =========================================== */

.summer-campaign {
	background-image: url("../img/summer/sp/bg-img-3.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	overflow: hidden;
}

.summer-campaign--layout {
	padding-bottom: 0.625rem;
}

.summer-campaign__text-img {
	margin-bottom: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	width: 13.5rem;
}

.summer-campaign__text-img img {
	-o-object-fit: cover;
	aspect-ratio: 216/39;
	object-fit: cover;
}

.summer-campaign__container {
	padding-bottom: 2.0625rem;
	padding-top: 2.125rem;
	position: relative;
	z-index: 1;
}

.summer-campaign__container::before {
	background-image: url("../img/summer/sp/capmaign-container-bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 19.125rem;
	left: 49%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 21.625rem;
	z-index: -1;
}

.summer-campaign__heading-img {
	margin-bottom: 0.875rem;
	margin-left: auto;
	margin-right: auto;
	width: 19.25rem;
}

.summer-campaign__heading-img img {
	-o-object-fit: cover;
	aspect-ratio: 308/45;
	object-fit: cover;
}

.summer-campaign__list {
	grid-gap: 0.375rem;
	background-color: #fff;
	border: 0.125rem solid transparent;
	border-radius: 1.5625rem;
	display: grid;
	gap: 0.375rem;
	padding: 1.125rem 0.8125rem 0.9375rem;
	position: relative;
}

.summer-campaign__list::before {
	background-image: url("../img/summer/sp/campaign-border.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 11.25rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20.3125rem;
}

.summer-campaign__item {
	grid-gap: 0.375rem;
	display: grid;
	gap: 0.375rem;
}

.summer-campaign__item:first-child .summer-campaign__item-heading {
	background-color: #40220F;
	color: #fff;
}

.summer-campaign__item:last-child .summer-campaign__item-heading {
	border: 0.125rem solid currentColor;
	color: #40220F;
}

.summer-campaign__item-heading {
	align-items: center;
	border-radius: 62.4375rem;
	display: flex;
	font-size: 0.75rem;
	font-weight: 600;
	height: 1.5625rem;
	justify-content: center;
	letter-spacing: 0.2em;
	width: 6.875rem;
}

.summer-campaign__item-text {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 179%;
}

.summer-campaign__mugikomachi-chan {
	position: absolute;
	right: 0.3125rem;
	top: 4.8125rem;
}

.summer-campaign__mugikomachi-chan-img {
	width: 5rem;
}

.summer-campaign__mugikomachi-chan-img img {
	-o-object-fit: cover;
	aspect-ratio: 112/143;
	object-fit: cover;
}

.summer-campaign__mugikomachi-chan-text {
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 116%;
	text-align: center;
}

/* =========================================== */

/*                   present                    */

/* =========================================== */

.summer-present {
	background-image: url("../img/summer/sp/bg-img-4.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.summer-present--layout {
	margin-bottom: 1.25rem;
	padding-bottom: 1.3125rem;
}

.summer-present__title-hr {
	margin-bottom: 1.3125rem;
}

.summer-present__list {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
}

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

.summer-present__item.-course-1 .summer-present__item-container {
	display: grid;
}

.summer-present__item.-course-1 .summer-present__item-gift:first-child .summer-present__item-gift-img img {
	-o-object-fit: cover;
	aspect-ratio: 325/198;
	object-fit: cover;
}

.summer-present__item.-course-1 .summer-present__item-gift:last-child .summer-present__item-gift-img img {
	-o-object-fit: cover;
	aspect-ratio: 325/300;
	object-fit: cover;
}

.summer-present__item.-course-2 .summer-present__item-gift-img img {
	-o-object-fit: cover;
	aspect-ratio: 325/210;
	object-fit: cover;
}

.summer-present__item-heading {
	color: #E60012;
	display: inline-block;
	font-family: "Noto Serif", serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 120%;
	position: relative;
	z-index: 1;
}

.summer-present__item-heading::before {
	background-image: url("../img/summer/present-heading-line.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	display: inline-block;
	height: 0.6875rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: -1;
}

.summer-present__item-gift {
	display: grid;
}

.summer-present__item-gift-title {
	color: #40220F;
	font-family: "Noto Serif", serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 120%;
}

.summer-present__item-gift-img {
	margin-left: auto;
	margin-right: auto;
}

/* =========================================== */

/*                   flow                    */

/* =========================================== */

.summer-flow--layout {
	margin-bottom: 2.3125rem;
}

.summer-flow__heading {
	grid-gap: 0.25rem;
	align-items: center;
	color: #40220F;
	display: grid;
	gap: 0.25rem;
	grid-template-columns: 1fr auto 1fr;
	margin-bottom: 1.25rem;
	position: relative;
}

.summer-flow__heading::before,
.summer-flow__heading::after {
	background-color: currentColor;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	content: "";
	display: block;
	height: 0.75rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.75rem;
}

.summer-flow__heading::before {
	left: 0;
}

.summer-flow__heading::after {
	right: 0;
}

.summer-flow__heading-border {
	background-color: currentColor;
	border-radius: 0.125rem;
	display: block;
	height: 0.125rem;
	width: 100%;
}

.summer-flow__heading-text {
	font-family: "Noto Serif", serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 120%;
}

.summer-flow__list {
	grid-gap: 4.125rem;
	display: grid;
	gap: 4.125rem;
}

.summer-flow__item {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
	text-align: center;
}

.summer-flow__item:not(:last-child) .summer-flow__item-img::after {
	display: none;
}

.summer-flow__item-img {
	position: relative;
}

.summer-flow__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 250/250;
	object-fit: cover;
}

.summer-flow__item-title-text {
	font-size: 1rem;
	font-weight: 700;
	line-height: 120%;
}

.summer-flow__item-buttons {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
}

.summer-flow__item-button a {
	align-items: center;
	background-color: #fff;
	border: 1px solid #3D9638;
	border-radius: 62.4375rem;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	height: 2.1875rem;
	justify-content: center;
	position: relative;
	width: 100%;
}

.summer-flow__item-button a::after {
	-webkit-mask-image: url("../img/common/icon-arrow-right-1.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #3D9638;
	content: "";
	display: inline-block;
	height: 1.25rem;
	mask-image: url("../img/common/icon-arrow-right-1.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.3125rem;
}

.summer-flow__item-note {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 120%;
}

/* =========================================== */

/*                   info                    */

/* =========================================== */

.summer-info {
	background: linear-gradient(180deg, rgba(250, 249, 247, 0.623529) 0%, #F2F7E3 20%, #F2F7E3 100%);
}

.summer-info--layout {
	padding-bottom: 1.5625rem;
	padding-top: 1.25rem;
}

.summer-info__target {
	margin-bottom: 4.5rem;
	position: relative;
}

.summer-info__target-heading {
	color: #40220F;
	font-family: "Noto Serif", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 1.6875rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.summer-info__target-heading::before {
	background-image: url("../img/summer/sp/info-target-heading-line.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	display: inline-block;
	height: 2.3125rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: -1;
}

.summer-info__target-img img {
	-o-object-fit: cover;
	aspect-ratio: 325/203;
	object-fit: cover;
}

.summer-info__target-mugikomachi-chan {
	bottom: -2.625rem;
	position: absolute;
	right: -0.5625rem;
}

.summer-info__target-mugikomachi-chan-img {
	width: 5.8125rem;
}

.summer-info__target-mugikomachi-chan-img img {
	-o-object-fit: cover;
	aspect-ratio: 143/180;
	object-fit: cover;
}

.summer-info__target-mugikomachi-chan-text {
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 116%;
	text-align: center;
}

.summer-info__list {
	grid-gap: 1.4375rem;
	display: grid;
	gap: 1.4375rem;
}

.summer-info__item {
	border-radius: 0.625rem;
	overflow: hidden;
}

.summer-info__item-heading {
	align-items: center;
	background-color: #3D9638;
	color: #fff;
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	height: 1.875rem;
	justify-content: center;
	letter-spacing: 0.15em;
}

.summer-info__item-body {
	background-color: #fff;
	height: 23.5rem;
	overflow: auto;
	padding: 0.4375rem 0.9375rem 0;
}

.summer-info__areas {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	padding-bottom: 0.75rem;
}

.summer-info__area-prefecture {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 130%;
}

.summer-info__area-shops {
	grid-gap: 0.25rem;
	display: grid;
	gap: 0.25rem;
}

.summer-info__area-shop-name {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 130%;
	margin-bottom: 0.0625rem;
}

.summer-info__area-branches {
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 130%;
}

.summer-info__item-text {
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 120%;
	padding-bottom: 0.75rem;
}

/* =========================================== */

/*                   apply                    */

/* =========================================== */

.summer-apply {
	background-color: #BCCE1D;
}

.summer-apply--layout {
	padding-bottom: 0.9375rem;
	padding-top: 0.9375rem;
}

.summer-apply__heading {
	font-family: "Noto Serif", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 0.5rem;
	text-align: center;
}

.summer-apply__container {
	background-color: #fff;
	border-radius: 0.9375rem;
	padding: 0.3125rem 0.75rem 0.9375rem;
}

.thanks--layout {
	background-image: url("../img/common/sp/bg-img-2.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.thanks__inner {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.thanks__contents {
	grid-gap: 1.25rem;
	background-color: #fff;
	border: 1px solid #DFAE65;
	border-radius: 1.5625rem;
	display: grid;
	gap: 1.25rem;
	margin-bottom: 1.5625rem;
	padding-bottom: 9.0625rem;
	padding-top: 8.53125rem;
	text-align: center;
}

.thanks__img {
	margin-left: auto;
	margin-right: auto;
	width: 4.375rem;
}

.thanks__img img {
	-o-object-fit: cover;
	aspect-ratio: 100/175;
	object-fit: cover;
}

.thanks__heading {
	font-family: "Noto Serif", serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 100%;
}

.thanks__button {
	text-align: center;
}

.thanks__button a {
	align-items: center;
	background-color: #DFAE65;
	border-radius: 62.4375rem;
	color: #fff;
	display: inline-flex;
	font-size: 0.9375rem;
	height: 2.5rem;
	justify-content: center;
	letter-spacing: 0.1em;
	max-width: 15.625rem;
	width: 100%;
}

.top-fv {
	background-image: url("../img/common/sp/bg-img-1.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.top-fv--layout {
	padding-bottom: 2.5625rem;
	padding-top: 5.125rem;
}

.top-fv__inner {
	position: relative;
}

.top-fv__mugikomachi-chan {
	position: absolute;
	right: 6%;
	top: 48%;
	transform: translateY(-50%);
}

.top-fv__mugikomachi-chan-img {
	margin-bottom: 0.125rem;
	margin-left: auto;
	margin-right: auto;
	width: 6.875rem;
}

.top-fv__mugikomachi-chan-img img {
	-o-object-fit: cover;
	aspect-ratio: 208/237;
	object-fit: cover;
}

.top-fv__mugikomachi-chan-text {
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 116%;
	text-align: center;
}

.top-fv__copy {
	margin-bottom: 4.25rem;
}

.top-fv__copy-img-1 {
	margin-left: auto;
	margin-right: auto;
	width: 20.3125rem;
}

.top-fv__copy-img-1 img {
	-o-object-fit: cover;
	aspect-ratio: 325/243;
	object-fit: cover;
}

.top-lp__list {
	display: grid;
}

.top-lp__item {
	width: 10.5rem;
}

.top-lp__item img {
	-o-object-fit: cover;
	aspect-ratio: 276/350;
	object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {

a:hover,
button:hover {
	opacity: 0.8;
}

.c-btn.-default a:hover {
	background-color: #8d9e12;
	opacity: 1;
}

.c-btn.-border a:hover {
	background-color: #f8f0dc;
	color: #d5903a;
	opacity: 1;
}

.form__submit-button:hover {
	background-color: #f8f0dc;
	color: #d5903a;
}

.summer-flow__item-button a:hover {
	background-color: #e3f6e2;
	opacity: 1;
}

.thanks__button a:hover {
	background-color: #d5903a;
	opacity: 1;
}

}

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

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.8181818182vw;
}

body.fixed {
	position: static;
	position: initial;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:not([href]):hover {
	opacity: 1;
}

.anime-zoom__img img {
	transition: 0.8s all;
}

.c-btn a {
	font-size: 1.5rem;
	height: 3.75rem;
	width: 25rem;
}

.c-btn.-default a {
	letter-spacing: 0.1em;
}

.c-btn.-default a::before {
	right: 1.125rem;
	top: 48%;
}

.c-title-hr {
	gap: 0.625rem;
}

.c-title-hr__text {
	font-size: 2.25rem;
}

.c-title-hr__border {
	margin-top: 0.5rem;
}

.footer__heading {
	font-size: 2rem;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.footer__contact {
	padding: 0.9375rem 1.5625rem;
}

.footer__contact-list {
	gap: 0.9375rem;
	margin-left: auto;
	margin-right: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.footer__contact-item {
	gap: 0.1875rem;
}

.footer__contact-item-text {
	font-size: 1.5rem;
}

.footer__contact-item-note {
	font-size: 1rem;
}

.footer_copy-right {
	gap: 0.875rem;
	padding-bottom: 0.875rem;
	padding-top: 0.875rem;
}

.footer_copy-right-logo {
	width: 12.5rem;
}

.footer_copy-right-text {
	font-size: 0.875rem;
}

.form__field {
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
}

.form__field.-group {
	margin-top: 0.5rem;
}

.form__field.-group,
.form__field:last-child {
	flex-wrap: wrap;
}

.form__name {
	justify-content: space-between;
	min-width: 12.875rem;
}

.form__label {
	font-size: 1.25rem;
}

.form__data:not(.-group) {
	margin-left: auto;
	max-width: 34.375rem;
	width: 68.8%;
	width: 100%;
}

.form__data input,
.form__data select {
	font-size: 1.25rem;
	padding: 0.5rem;
}

.form__fieldset + .form__fieldset {
	margin-top: 1rem;
}

.form__legend {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.form__subfield {
	font-size: 1.25rem;
	grid-template-columns: auto 5rem auto;
	justify-content: left;
	padding-left: 1.25rem;
}

.form__subfield + .form__subfield {
	margin-top: 0.75rem;
}

.form__sublabel {
	font-size: 1.25rem;
	margin-right: 1.25rem;
	min-width: 20.3125rem;
}

.form__submit {
	margin-top: 1.5rem;
	text-align: center;
}

.form__submit-button {
	font-size: 1.5rem;
	height: 5rem;
	max-width: 25rem;
	transition: 0.3s;
}

.header__inner {
	max-width: 87.5rem;
}

.header__logo-link {
	align-items: center;
	padding-bottom: 0;
	padding-top: 0.25rem;
	width: 15.125rem;
}

.header__logo-link:hover {
	opacity: 1;
}

.header__logo-link img {
	height: 100%;
}

.inner {
	max-width: 940px;
	padding-left: 30px;
	padding-right: 30px;
}

.inner-expand {
	max-width: 1460px;
	padding-left: 30px;
	padding-right: 30px;
}

.summer-recipe-modal__close {
	font-size: 4.5rem;
	left: calc(50% - min(49.5vw, -24.5rem));
	position: absolute;
	right: auto;
	right: initial;
	top: 1.4375rem;
	transform: translateX(-50%);
}

.summer-recipe-modal__content {
	padding: 1.25rem;
}

.summerflow-modal__content {
	max-width: 33.875rem;
}

.summerflow-modal__close {
	font-size: 4.5rem;
	left: calc(50% - min(49.5vw, -15rem));
	position: absolute;
	right: auto;
	right: initial;
	transform: translateX(-50%);
}

.in-progress {
	background-image: url("../img/common/bg-img-2.webp");
}

.in-progress--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.in-progress__contents {
	margin-left: auto;
	margin-right: auto;
	max-width: 55rem;
	padding-bottom: 1.9375rem;
	padding-top: 6.125rem;
}

.in-progress__img {
	width: 6.25rem;
}

.in-progress__heading {
	font-size: 1.5rem;
}

.summer-fv {
	background-image: url("../img/summer/bg-img-1.webp");
	background-size: cover;
}

.summer-fv--layout {
	padding-bottom: 4.4375rem;
	padding-top: 6.0625rem;
}

.summer-fv__fukidashi-img {
	display: block;
	position: absolute;
	right: calc(50% - min(47.5vw, 47.5rem));
	top: -3rem;
	width: 26.25rem;
}

.summer-fv__copy-img {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}

.summer-fv__copy-img img {
	aspect-ratio: 880/557;
}

.summer-fv__mugikomachi-chan {
	bottom: -4.4375rem;
	left: calc(50% - min(48.2vw, 35rem));
}

.summer-fv__mugikomachi-chan-img {
	width: 10rem;
}

.summer-fv__mugikomachi-chan-text {
	font-size: 0.625rem;
	font-weight: 600;
}

.summer-recipe {
	background-image: url("../img/summer/bg-img-2.webp");
	background-size: cover;
}

.summer-recipe--layout {
	margin-bottom: 4.875rem;
}

.summer-recipe__title-hr {
	margin-bottom: 2rem;
}

.summer-recipe__heading {
	font-size: 2.25rem;
	margin-bottom: 1.0625rem;
}

.summer-recipe__heading span {
	font-size: 4rem;
}

.summer-recipe__list {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.summer-recipe__item {
	max-width: 25rem;
}

.summer-recipe__item a::before {
	height: 27%;
	width: 27%;
}

.summer-recipe__item-img img {
	aspect-ratio: 400/330;
}

.summer-recipe__item-wrap {
	height: 4.375rem;
}

.summer-recipe__item-wrap::before,
.summer-recipe__item-wrap::after {
	height: 2.6875rem;
	top: 1.125rem;
	width: 1.5rem;
}

.summer-recipe__item-wrap::before {
	left: 0.1875rem;
}

.summer-recipe__item-wrap::after {
	right: 0.1875rem;
}

.summer-recipe__item-title {
	font-size: 1.1875rem;
}

.summer-campaign {
	background-image: url("../img/summer/bg-img-3.webp");
	background-size: cover;
}

.summer-campaign--layout {
	padding-bottom: 2.5rem;
}

.summer-campaign__text-img {
	margin-bottom: 1.625rem;
	width: 26.96875rem;
}

.summer-campaign__text-img img {
	aspect-ratio: 431.5/94;
}

.summer-campaign__container {
	padding-bottom: 2.75rem;
	padding-top: 4.0625rem;
}

.summer-campaign__container::before {
	background-image: url("../img/summer/capmaign-container-bg.webp");
	height: 27.0625rem;
	left: 50%;
	width: 57.75rem;
}

.summer-campaign__heading-img {
	margin-bottom: 0.625rem;
	width: 51.125rem;
}

.summer-campaign__heading-img img {
	aspect-ratio: 818/120;
}

.summer-campaign__list {
	gap: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 43.75rem;
	padding: 1.875rem 5.3125rem 1.9375rem;
}

.summer-campaign__list::before {
	background-image: url("../img/summer/campaign-border.webp");
	height: 11.875rem;
	width: 43.75rem;
}

.summer-campaign__item {
	gap: 0.625rem;
	grid-template-columns: auto 1fr;
}

.summer-campaign__item-heading {
	font-size: 1rem;
	height: 2.1875rem;
	width: 7.5rem;
}

.summer-campaign__item-text {
	font-size: 1.25rem;
	line-height: 175%;
}

.summer-campaign__mugikomachi-chan {
	bottom: -0.625rem;
	right: 0;
	top: auto;
	top: initial;
}

.summer-campaign__mugikomachi-chan-img {
	margin-left: auto;
	margin-right: 1.1875rem;
	width: 7rem;
}

.summer-present {
	background-image: url("../img/summer/bg-img-4.webp");
	background-size: cover;
}

.summer-present--layout {
	margin-bottom: 1.875rem;
	padding-bottom: 2.4375rem;
}

.summer-present__title-hr {
	margin-bottom: 1.8125rem;
}

.summer-present__list {
	gap: 0;
}

.summer-present__item.-course-1 .summer-present__item-container {
	align-items: start;
	gap: 0.625rem;
	grid-template-columns: repeat(2, 1fr);
}

.summer-present__item.-course-1 .summer-present__item-gift:first-child .summer-present__item-gift-img img {
	aspect-ratio: 425/313;
}

.summer-present__item.-course-1 .summer-present__item-gift:last-child {
	margin-top: 3.625rem;
}

.summer-present__item.-course-1 .summer-present__item-gift:last-child .summer-present__item-gift-img img {
	aspect-ratio: 425/416;
}

.summer-present__item.-course-2 {
	margin-top: -0.8125rem;
}

.summer-present__item.-course-2 .summer-present__item-gift-img img {
	aspect-ratio: 634/339;
}

.summer-present__item-heading {
	font-size: 1.5rem;
	margin-bottom: 1.4375rem;
}

.summer-present__item-gift {
	gap: 0.5625rem;
}

.summer-present__item-gift-title {
	font-size: 1.75rem;
}

.summer-present__item-gift-img {
	max-width: 39.625rem;
}

.summer-flow--layout {
	margin-bottom: 1.875rem;
}

.summer-flow__heading {
	gap: 0.5625rem;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 55rem;
}

.summer-flow__heading-text {
	font-size: 2rem;
}

.summer-flow__list {
	gap: 2.0625rem;
	grid-template-columns: repeat(4, 1fr);
	justify-content: space-between;
}

.summer-flow__item {
	grid-row: span 3;
	grid-template-rows: subgrid;
	max-width: 18.75rem;
}

.summer-flow__item:not(:last-child) .summer-flow__item-img::after {
	background-color: #3D9638;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	content: "";
	display: block;
	height: 1.4375rem;
	position: absolute;
	right: -1.75rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
}

.summer-flow__item-img img {
	aspect-ratio: 300/300;
}

.summer-flow__item-button a {
	font-size: 0.875rem;
	height: 3.125rem;
}

.summer-flow__item-button a::after {
	height: 1.125rem;
	right: 0.4375rem;
	width: 1.0625rem;
}

.summer-info--layout {
	padding-bottom: 1.75rem;
	padding-top: 1.875rem;
}

.summer-info__target {
	margin-bottom: 5.6875rem;
}

.summer-info__target-heading {
	font-size: 2.25rem;
	margin-bottom: 2rem;
}

.summer-info__target-heading::before {
	background-image: url("../img/summer/info-target-heading-line.webp");
	bottom: -0.5rem;
	height: 1.375rem;
}

.summer-info__target-img {
	max-width: 46.0625rem;
	width: 80%;
}

.summer-info__target-img img {
	aspect-ratio: 737/184;
}

.summer-info__target-mugikomachi-chan {
	bottom: -2.125rem;
	right: -0.1875rem;
}

.summer-info__target-mugikomachi-chan-img {
	margin-left: auto;
	width: 8.9375rem;
}

.summer-info__list {
	gap: 2.5rem;
}

.summer-info__item-heading {
	font-size: 1.4375rem;
	height: 3rem;
}

.summer-info__item-body {
	height: 22.375rem;
}

.summer-info__area-prefecture {
	font-size: 1.125rem;
	margin-bottom: 0.3125rem;
}

.summer-info__area-shop-name {
	font-size: 0.875rem;
}

.summer-info__area-branches {
	font-size: 0.75rem;
}

.summer-info__item-text {
	font-size: 0.75rem;
}

.summer-apply {
	position: relative;
	z-index: 1;
}

.summer-apply:before,
.summer-apply:after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.summer-apply:before {
	background-image: url("../img/summer/apply-bg-left.webp");
	height: 65rem;
	left: calc(50% - min(49.5vw, 55.25rem));
	width: 21.375rem;
}

.summer-apply:after {
	background-image: url("../img/summer/apply-bg-right.webp");
	height: 59.5rem;
	right: calc(50% - min(49.5vw, 54.788rem));
	top: 53%;
	width: 24.0625rem;
}

.summer-apply--layout {
	padding-bottom: 1.5625rem;
	padding-top: 2.1875rem;
}

.summer-apply__heading {
	font-size: 2.25rem;
	margin-bottom: 1.4375rem;
}

.summer-apply__container {
	border-radius: 1.5625rem;
	padding: 1.875rem 3.5rem 1.875rem;
}

.thanks--layout {
	background-image: url("../img/common/bg-img-2.webp");
}

.thanks__inner {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.thanks__contents {
	margin-left: auto;
	margin-right: auto;
	max-width: 55rem;
	padding-bottom: 4.4375rem;
	padding-top: 6.125rem;
}

.thanks__img {
	width: 6.25rem;
}

.thanks__heading {
	font-size: 1.5rem;
}

.thanks__button {
	margin-top: 1.875rem;
}

.thanks__button a {
	font-size: 1.5rem;
	height: 3.75rem;
	letter-spacing: 0.1em;
	max-width: 31.25rem;
}

.top-fv {
	background-image: url("../img/common/bg-img-1.webp");
}

.top-fv--layout {
	padding-bottom: 5.6875rem;
	padding-top: 5.5625rem;
}

.top-fv__mugikomachi-chan {
	left: calc(50% - min(47.8vw, 40.6rem));
	right: auto;
	right: initial;
	top: 70%;
}

.top-fv__mugikomachi-chan-img {
	width: 10rem;
}

.top-fv__copy {
	margin-bottom: 3.1875rem;
}

.top-fv__copy-img-1 {
	width: 47.625rem;
}

.top-fv__copy-img-1 img {
	aspect-ratio: 762/484;
}

.top-lp__list {
	align-items: center;
	gap: 3.75rem;
	grid-template-columns: repeat(2, 16rem);
	justify-content: center;
}

.top-lp__item {
	width: 100%;
}

}

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

.form__field:last-child .form__data {
	width: 69.3%;
}

}

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

.summer-recipe__item:first-child .summer-recipe__item-copy {
	width: 60%;
}

}

@media (min-width: 880px) {

html {
	font-size: 16px;
}

}

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

.summer-info__target-img {
	width: 100%;
}

}

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

.summer-fv__fukidashi-img {
	top: -2.125rem;
	width: 31.25rem;
}

.summer-fv__copy-img {
	width: 100%;
}

.summer-flow__item-button a {
	font-size: 1rem;
}

.summer-flow__item-button a::after {
	height: 1.25rem;
	right: 0.625rem;
	width: 1.3125rem;
}

}

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

.summer-recipe__item:first-child .summer-recipe__item-copy {
	height: 1.75rem;
}

.summer-recipe__item-copy {
	height: 0.875rem;
}

.summer-recipe__item-copy img {
	height: 100%;
	width: auto;
}

.summer-recipe__item-title {
	font-size: 1.5rem;
}

}

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

.summer-flow__list {
	gap: 4.125rem;
}

.summer-flow__item:not(:last-child) .summer-flow__item-img::after {
	height: 2.125rem;
	right: -3.25rem;
	width: 1.875rem;
}

}

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

.summer-fv__mugikomachi-chan-img {
	width: 13rem;
}

}

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

.summer-recipe__item-wrap::before {
	left: 0.625rem;
}

.summer-recipe__item-wrap::after {
	right: 0.5625rem;
}

}

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

.top-fv__mugikomachi-chan {
	top: 68%;
}

.top-fv__mugikomachi-chan-img {
	width: 13rem;
}

.top-lp__list {
	gap: 7.5rem;
}

}

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

.summer-flow__item-title-text {
	font-size: 1.25rem;
}

.summer-flow__item-button a {
	font-size: 1.25rem;
}

}

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

.summer-recipe__item a::before {
	height: 6.625rem;
	width: 6.75rem;
}

}

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

.summer-fv__fukidashi-img {
	right: calc(50% - min(49.5vw, 47.5rem));
	top: 0;
	width: 40.125rem;
}

}

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

.summer-recipe__item-copy img {
	height: 100%;
	width: auto;
}

}

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

.in-progress__buttons {
	margin-top: 1.625rem;
}

.summer-fv__inner {
	padding-left: 0;
	padding-right: 0;
}

.summer-fv__mugikomachi-chan-text {
	text-align: left;
	width: 4.5rem;
}

.summer-recipe__item:first-child .summer-recipe__item-copy {
	height: 1.5rem;
}

.summer-recipe__item-copy {
	height: 0.75rem;
}

.summer-campaign__item-wrap {
	padding-left: 0.875rem;
}

.summer-campaign__mugikomachi-chan-text {
	font-size: 0.375rem;
	font-weight: 400;
	text-align: right;
	width: 4.75rem;
}

.summer-flow__list {
	margin-left: auto;
	margin-right: auto;
	max-width: 15.625rem;
}

.summer-flow__item:not(:last-child) {
	position: relative;
}

.summer-flow__item:not(:last-child)::after {
	background-color: #3D9638;
	bottom: -3.125rem;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	content: "";
	height: 1.875rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 2.1875rem;
}

.summer-info__target-mugikomachi-chan-text {
	font-size: 0.375rem;
	font-weight: 400;
	text-align: right;
	width: 4.75rem;
}

.summer-apply {
	background-image: url("../img/summer/sp/apply-bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.top-fv__mugikomachi-chan-text {
	text-align: left;
	width: 7.375rem;
}

.top-lp__item:last-child {
	margin-left: auto;
	margin-top: -3.125rem;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}


/*# sourceMappingURL=style.css.map */
