@charset "utf-8";
/* CSS Document */

/* =========================
   Base
========================= */
*, *::before, *::after { box-sizing: border-box;}
html { font-size: 100%;}
body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: "mizolet", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
	line-height: 1.8;
    margin: 0;
}
img {
    border-radius: 20px;
    display: block;
    width: 100%;
}
h1,h2,h3,h4 {
    font-weight: 400;
    line-height: 1.6;
}
p { margin: 0;}
ul,li {
	list-style: none;
	margin: 0;
	padding: 0;
}	
a {
	color: var(--text-link);
    text-decoration: none;
}
a:hover { color: var(--text-hover);}

/* =========================
   Utility
========================= */
.u-text-accent { color: var(--text-accent);}
.u-text-main { color: var(--text-main);}
.u-text-sm { font-size: 0.85rem;}
.u-text-lg { font-size: 1.125rem;}
.u-text-center { text-align: center !important;}
.u-text-left { text-align: left !important;}
.u-text-right { text-align: right !important;}
.u-pc-br { display: inline;}
.u-sp-br { display: none;}
.u-pc-only { display: block;}
.u-sp-only { display: none;}
@media (max-width: 767px) {
.u-pc-br { display: none;}
.u-sp-br { display: inline;}
.u-pc-only { display: none;}
.u-sp-only { display: block;}
}

/* =========================
   Margin / Padding
========================= */
.mt-0 { margin-top: 0 !important;}
.mt-5 { margin-top: 5px;}
.mt-30 { margin-top: 30px;}
.mr-15 { margin-right: 15px;}
.px-30 { padding: 0 30px;}

/* =========================
   Root
========================= */
:root {
    --text-main: #462A0B;
    --text-sub: #5DAE30;
    --text-accent: #DE2E28;
    --text-link: #462A0B;
    --text-hover: #1B5E0B;
    --text-white: #FFF;
    --text-yellowgreen: #C3D600;
    --bg-base: #FEDB3C;
    --bg-accent: #539B34;
    --bg-white: #FFF;
    --bg-hover: #FFFAE2;
    --border-main: #5DAF30;
    --border-sub: #462A0B;
    --border-form: #CCC;
    --border-white: #FFF;
    --button-main: #C3D600;
    --button-sub: #FD913C;
    --button-hover: #FEDB3C;
    --table-head-bg: #E5F0E1;
    --table-side-bg: #E3DFDB;
    --accent: #5DAE30;
    --accent-yellow: #FEDB3C;
    --accent-green: #5DAF30;
    --accent-white: #FFF;
    --rgb-white: 255, 255, 255;
    --rgb-black: 0, 0, 0;
    --rgb-yellowgreen: 93,175,48;
    --strawberry-table-head: #F5C0BE;
    --strawberry-table-side: #FAE0DF;
    --cherry-table-head: #FBE3E3;
    --cherry-table-side: #F7C7C7;
}
.t-strawberry { --category-color: #F2627E;}
.t-cherry { --category-color: #E64444;}
.t-taro { --category-color: #CB8A49;}
.t-pumpkin { --category-color: #F19E14;}
.t-apple { --category-color: #F96F40;}
.t-about-us { --category-color: #F96F40;}
.t-items { --category-color: #71C14C;}
.t-reserve { --category-color: #49B4B7;}
.t-contact { --category-color: #AD8FCC;}

/* =========================
   Header
========================= */
.header {
    background-color: var(--bg-white);
    position: relative;
    z-index: 1000;
}
.header::before {
    background: var(--bg-base) url(../img/common/bg_header.png) no-repeat center top;
    background-size: 100% auto;
    content: "";
    height: 140px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}
.header::before { transform: translateY(-50px);}
.header__inner {
    position: relative;
    z-index: 1;
}
.header__logo { display: none;}
@media (max-width: 767px) {
.header::before { background: var(--bg-base) url(../img/common/bg_header_sp.png) no-repeat center top;}
.header::before { transform: translateY(-35px);}
.header__inner {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}
.header__logo {
    display: inline-block;
    padding: 20px 0 15px 0;
    width: 220px;
}
.header__logo img { border-radius: 0;}
}
@media (min-width: 768px) {
.header-nav__item:not(.header-nav__item--logo) {
    animation: navFade 0.4s ease forwards;
    opacity: 0;
    transform: translateY(-10px);
}
@keyframes navFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}}

/* =========================
   navbar
========================= */
.header-nav {
	height: auto;
	left: 0;
    padding: 10px 0 20px 0;
	position: relative;
	text-align: center;
	transition: transform 0.3s ease-in;
	top: 0;
	z-index: 1000;
}
.header-nav__list {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.header-nav__item { flex: 0 0 120px;}
.header-nav__item--logo {
    flex: 0 0 auto;
    margin: 0 15px;
}
.header-nav__logo img {
    display: block;
    border-radius: 0;
    height: 140px;
    width: auto;
}
.header-nav__link {
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    height: 120px;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 120px;
}
.header-nav__link:hover {
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    transform: translateY(-3px);
}
.header-nav__link:hover .header-nav__icon::before { transform: translateY(-3px);}
.header-nav__icon::before {
    content: "";
    display: block;
    height: 35px;
    margin: 5px auto 10px auto;
    transition: transform 0.3s ease;
    width: 35px;
}
.header-nav__text {
    align-items: center;
    color: var(--text-main);
    display: flex;
    height: 2.8em;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
}
.header-nav__link--about-us .header-nav__icon::before { background: url(../img/common/nav_aboutus.png) no-repeat center / contain;}
.header-nav__link--strawberry-picking .header-nav__icon::before { background: url(../img/common/nav_strawberry_picking.png) no-repeat center / contain;}
.header-nav__link--cherry-picking .header-nav__icon::before { background: url(../img/common/nav_cherry_picking.png) no-repeat center / contain;}
.header-nav__link--items .header-nav__icon::before { background: url(../img/common/nav_items.png) no-repeat center / contain;}
.header-nav__link--reserve .header-nav__icon::before { background: url(../img/common/nav_reserve.png) no-repeat center / contain;}
.header-nav__link--contact .header-nav__icon::before { background: url(../img/common/nav_contact.png) no-repeat center / contain;}
.header-nav__link--about-us { border: 2px solid var(--category-color);}
.header-nav__link--strawberry-picking { border: 2px solid var(--category-color);}
.header-nav__link--cherry-picking { border: 2px solid var(--category-color);}
.header-nav__link--items { border: 2px solid var(--category-color);}
.header-nav__link--reserve { border: 2px solid var(--category-color);}
.header-nav__link--contact { border: 2px solid var(--category-color);}
.navbar-toggle, #toggle { display: none;}
@media (max-width: 1165px) {
.header-nav__item--logo {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    margin-bottom: 10px;
    order: -1;
}
.header-nav__logo img {
    display: block;
    margin: 0 auto;
}}
@media (max-width: 767px) {
.header-nav__item--logo { display: none;}
.header-nav {
	left: -80%;
	margin: 0;
	overflow-y: hidden;
	padding-top: 0;
	position: fixed;
	text-align: left;
	width: 80%;
}
.header-nav__list {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
}
.header-nav__item {
	border-bottom: 1px solid var(--border-white);
    flex: none;
	margin: 0;
	width: 100%;
}
.header-nav__item::before { display: none;}
.header-nav__link {
	background-color: var(--bg-base);
    border: none;
	border-radius: 0;
    flex-direction: row;
    height: auto;
	padding: 15px;
    width: 100%;
}
.header-nav__icon::before {
    height: 20px;
    margin: 0 15px 0 0;
    width: 20px;
}
.header-nav__text {
    color: var(--text-main);
    height: auto; 
    line-height: 1.8;
}
.navbar-toggle {
	background-color: var(--bg-accent);
	display: block;
	height: 40px;
	right: 10px;
	padding: 0 8px;
	position: fixed;
	top: 10px;
	z-index: 999;
	border-radius: 5px;
}
.menuicon {
	cursor: pointer;
	display: block;
	height: 100%;
	position: relative;
	transition: transform .3s ease-in;
	width: 25px;
}
.menuicon > span {
	background-color: var(--accent-white);
	border-radius: 1px;
	display: block;
	height: 0.2em;
	margin-top: -0.3em;
	position: absolute;
	top: 55%;
	transition: transform .3s ease;
	width: 100%;
}
.menuicon > span:before, .menuicon > span:after {
	background-color: var(--accent-white);
	border-radius: 1px;
	content: "";
	height: 100%;
	position: absolute;
	transition: transform .3s ease-in;
	width: 100%;
}
.menuicon > span:before { transform: translateY(-0.6em);}
.menuicon > span:after { transform: translateY(0.6em);}
#toggle:checked + .navbar-toggle .menuicon { transform: rotate(45deg);}
#toggle:checked + .navbar-toggle span:before, #toggle:checked + .navbar-toggle span:after {
	transform: rotate(90deg);
}
#toggle:checked ~ .header-nav {	transform: translateX(100%);}
}

/* =========================
   Swiper
========================= */
.swiper {
    background-color: var(--bg-white);
    box-sizing: border-box;
    padding: 20px 0 40px 0 !important;
    width: 100%;
}
.swiper-slide img {
    border-radius: 50px;
    display: block;
    width: 100%;
}
.swiper-button-prev, .swiper-button-next {
    background-color: var(--bg-base);
    border-radius: 50%;
    height: 40px !important;
    width: 40px !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
    color: var(--text-main);
    font-size: 1.25rem !important;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
.swiper-slide img { border-radius: 20px;}
.swiper-button-prev, .swiper-button-next {
    height: 35px !important;
    width: 35px !important;
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 0.85rem;}
}

/* =========================
   Container
========================= */
.container {
	margin: 0 auto;
	max-width: 1200px;
    padding: 0 30px;
    width: 100%;
}
@media (max-width: 1200px) {
.container { max-width: none;}
}

/* =========================
   Layout Section
========================= */
.l-section {
    background-color: var(--bg-white);
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}
.l-section__inner {
    padding-bottom: 60px;
    padding-top: 60px;
    position: relative;
    z-index: 1;
}
.l-section::before {
    background: var(--bg-base) url(../img/common/bg_header.png) no-repeat center top;
    background-size: 100% auto;
    content: "";
    height: 140px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}
@media (max-width: 767px) {
.l-section { margin-top: 40px;}
.l-section::before {
    background: var(--bg-base) url(../img/common/bg_header_sp.png) no-repeat center top;
    height: 140px;
}}

/* =========================
   Section / Title
========================= */
.c-section-sub, .c-section-title, .c-section-body, .c-section-lead {
    text-align: center;
}
.c-section-sub {
    color: var(--text-yellowgreen);
    font-family: "cooper-black-std", serif;
    font-style: normal;
    font-size: 3.125rem;
    line-height: 1.2;
    margin-top: 10px;
}
.c-section-title {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
}
.c-section-lead { margin-top: 20px;}
.c-section-lead--accent { font-size: 1.125rem;}
.c-section-note {
    margin-top: 40px;
    padding: 0 20px;
}
.c-section-note--accent {
    color: var(--text-accent);
    font-size: 1.125rem;
    text-align:  center;
}
.is-initial-all { color: var(--text-sub) !important;}
@media (max-width: 767px) {
.c-section-body, .c-section-lead { text-align: left;}
.c-section-sub { font-size: 2.875rem;}
.c-section-title { font-size: 1.375rem;}
.c-section-note { padding: 0;}
}

/* =========================
   Page Titel
========================= */
.page-header__sub {
    color: var(--text-yellowgreen);
    font-family: "cooper-black-std", serif;
    font-style: normal;
    font-size: 3.125rem;
    line-height: 1.2;
}
.page-header__title {
    display: flex;
    flex-direction: column;
    margin: 5px 0;
}
.page-header__title-main { font-size: 1.75rem;}
.page-header__title-sub { font-size: 1.5rem;}
.page-header {
    background-color: var(--bg-white);
    border-bottom: 10px solid var(--border-main);
    border-top: 10px solid var(--border-main);
    height: 800px;
    overflow: hidden;
    position: relative;
}
.page-header__body {
    background-color: var(--bg-white);
    border-radius: 20px 0 0 20px;
    bottom: 60px;
    padding: 15px 30px;
    position: absolute;
    right: 0;
    text-align: right;
}
.page-header-about-us { background: url("../img/title/title_aboutus.jpg") no-repeat center / cover;}
.page-header-strawberry-picking { background: url("../img/title/title_strawberry_picking.jpg") no-repeat center / cover;}
.page-header-cherry-picking { background: url("../img/title/title_cherry_picking.jpg") no-repeat center / cover;}
.page-header-strawberry { background: url("../img/title/title_strawberry.jpg") no-repeat center / cover;}
.page-header-items { background: url("../img/title/title_items.jpg") no-repeat center / cover;}
.page-header-cherry { background: url("../img/title/title_cherry.jpg") no-repeat center / cover;}
.page-header-taro { background: url("../img/title/title_taro.jpg") no-repeat center / cover;}
.page-header-pumpkin { background: url("../img/title/title_pumpkin.jpg") no-repeat center / cover;}
.page-header-apple { background: url("../img/title/title_apple.jpg") no-repeat center / cover;}
.page-header-shopping { background: url("../img/title/title_shopping.jpg") no-repeat center / cover;}
.page-header-reserve { background: url("../img/title/title_reserve.jpg") no-repeat center / cover;}
.page-header-contact { background: url("../img/title/title_contact.jpg") no-repeat center / cover;}
.page-header-policy { background: url("../img/title/title_policy.jpg") no-repeat center / cover;}
.page-header-commerce-law { background: url("../img/title/title_commerce_law.jpg") no-repeat center / cover;}
@media (max-width: 767px) {
.page-header {
    height: 400px;
    padding-top: 0;
}
.page-header__body {
    background-color: rgba(var(--rgb-white), 0.8);
    border-radius: 0;
    bottom: 50%;
    padding: 20px 30px;
    right: 50%;
    text-align: center;
    transform: translate(50%, 50%);
    width: 100%;
}
.page-header__sub { font-size: 2.875rem;}
.page-header__title { font-size: 1.25rem;}
.page-header-about-us { background: url("../img/title/title_aboutus_s.jpg") no-repeat center / cover;}
.page-header-strawberry-picking { background: url("../img/title/title_strawberry_picking_s.jpg") no-repeat center / cover;}
.page-header-cherry-picking { background: url("../img/title/title_cherry_picking_s.jpg") no-repeat center / cover;}
.page-header-strawberry { background: url("../img/title/title_strawberry_s.jpg") no-repeat center / cover;}
.page-header-items { background: url("../img/title/title_items_s.jpg") no-repeat center / cover;}
.page-header-cherry { background: url("../img/title/title_cherry_s.jpg") no-repeat center / cover;}
.page-header-taro { background: url("../img/title/title_taro.jpg_s") no-repeat center / cover;}
.page-header-pumpkin { background: url("../img/title/title_pumpkin_s.jpg") no-repeat center / cover;}
.page-header-apple { background: url("../img/title/title_apple.jpg_s") no-repeat center / cover;}
.page-header-shopping { background: url("../img/title/title_shopping_s.jpg") no-repeat center / cover;}
.page-header-reserve { background: url("../img/title/title_reserve_s.jpg") no-repeat center / cover;}
.page-header-contact { background: url("../img/title/title_contact_s.jpg") no-repeat center / cover;}
.page-header-policy { background: url("../img/title/title_policy_s.jpg") no-repeat center / cover;}
.page-header-commerce-law { background: url("../img/title/title_commerce_law_s.jpg") no-repeat center / cover;}
}

/* =========================
   Page Hero
========================= */
.p-hero {
    background-color: var(--bg-white);
    padding: 20px 0 60px 0;
}
.p-hero__heading {
    color: var(--text-accent);
    font-size: 1.5rem;
    margin: 40px 0 0 0;
    text-align: center;
}
.p-hero__lead {
    margin-top: 30px;
    text-align: center;
}
.p-hero__heading--second { padding-top: 20px;}
@media (max-width: 767px) {
.p-hero__heading, .p-hero__lead { text-align: left;}
.p-hero__heading { font-size: 1.375rem;}
.p-hero__heading--second { padding-top: 0;}
}

/* =========================
   Decoration
========================= */
.sec__deco {
    border-radius: 0;
    position: absolute;
    z-index: 1;
}
.sec__deco--bottom { bottom: 0;}
.sec__deco--left { left: 20px;}
.sec__deco--right { right: 20px;}
.sec__deco--top { top: 0;}
.deco-tree { width: 155px;}
.deco-tent { width: 400px;}
.deco-mountain { width: 210px;}
.deco-bird { width: 165px;}
.deco-tree-left {
    left: 0;
    width: 300px;
}
.deco-tree-right {
    right: 0;
    width: 190px;
}
@media (max-width: 767px) {
.sec__deco--left { left: 15px;}
.sec__deco--right { right: 15px;}
.deco-tree { width: 75px;}
.deco-tent { width: 320px;}
.deco-mountain { width: 130px;}
.deco-bird { width: 85px;}
.deco-tree-left {
    left: -100px;
    width: 220px;
}
.deco-tree-right {
    right: 0;
    width: 110px;
}}

/* =========================
   Fade
========================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.05s;}
.delay-2 { transition-delay: 0.1s;}
.delay-3 { transition-delay: 0.15s;}
.delay-4 { transition-delay: 0.2s;}
.delay-5 { transition-delay: 0.25s;}
.delay-6 { transition-delay: 0.3s;}
.delay-7 { transition-delay: 0.35s;}
.delay-8 { transition-delay: 0.4s;}
.delay-9 { transition-delay: 0.45s;}
.delay-10 { transition-delay: 0.5s;}
.items__body--strawberry { transition-delay: 0.15s;}
.items__body--cherry { transition-delay: 0.25s;}
.items__body--taro { transition-delay: 0.35s;}
.items__body--pumpkin { transition-delay: 0.45s;}
.items__body--apple { transition-delay: 0.55s;}

/* =========================
   Media
========================= */
.media {
    align-items: center;
	display: flex;
	gap: 60px;
    padding-top: 40px;
}
.media__body { flex: 0 0 55%;}
.media__title {
    font-size: 1.5rem;
    margin: 0;
}
.media__sub {
    font-size: 1.25rem;
    margin: 20px 0 0 0;
}
.media__lead, .media__text { margin-top: 20px;}
.media__image { flex: 1;}
.media__period {
    color: var(--text-sub);
    font-size: 1.375rem;
}
.media--reverse { flex-direction: row-reverse;}
.media__thumb {
    border-radius: 20px;
    display: block;
    overflow: hidden;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.media__thumb:hover {
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    opacity: 0.8;
    transform: translateY(-3px);
}
.media__more {
    align-items: center;
    border: 1px solid var(--border-white);
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    height: 120px;
    justify-content: center;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    width: 120px;
}
.media__thumb:hover .media__more { opacity: 1;}
@media (max-width: 767px) {
.media {
	flex-direction: column !important;
	gap: 40px;
}
.media__title { font-size: 1.25rem;}
.media__body, .media__image {
	flex: auto;
	width: 100%;
}
.media:nth-child(even) { flex-direction: row;}
.media__period { font-size: 1.25rem;}
}

/* =========================
   Table
========================= */
.c-table {
    margin: 40px 0 0 0;
    width: 100%;
}
.c-table__item {
	align-items: flex-start;
    border-bottom: 2px solid var(--border-main);
    display: flex;
	margin: 0;
	padding: 20px;
}
.c-table__item:first-child { border-top: 2px solid var(--border-main);}
.c-table--center .c-table__item { align-items: center;}
.c-table__term {
    align-items: center;
	display: flex;
	flex: 0 0 25%;
}
.c-table__desc {
	flex: 1;
	margin: 0;
}
.c-table__desc i { margin-right: 5px;}
.c-table__desc .mr-15 {
    display: block;
    margin-right: 0;
}
.c-table__term--required::after {
    background-color: var(--bg-accent);
    border-radius: 999px;
    color: var(--text-white);
    content: "必須";
    display: inline-block;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-left: 10px;
    padding: 0 8px;
    vertical-align: bottom;
}
.c-table__titel {
    background-color: var(--bg-accent);
    border-radius: 10px;
    color: var(--text-white);
    margin-top: 40px;
    padding: 15px 20px;
}
.c-table__note { margin: 15px 0 15px 20px;}
.c-table__note li { list-style: disc outside;}
.c-table__inline-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.c-table__inline-item {
    align-items: center;
    display: flex;
    gap: 10px;
}
.c-table__inline-label, .c-table__inline-unit { white-space: nowrap;}
.reserve-count {
    display: flex;
    gap: 15px;
}
@media (max-width: 767px) {
.c-table__item {
	flex-direction: column;
	padding: 15px 5px;
}
.c-table__term {
	flex: 1;
	width: 100%;
}
.c-table__desc { margin-top: 10px;}
}

/* =========================
   Gallery
========================= */
.gallery {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}
.gallery__item img {
    display: block;
    height: auto;
    width: 100%;
}
@media screen and (max-width: 767px) {
.gallery { grid-template-columns: 1fr;}
}

/* =========================
   Reserve
========================= */
.reserve-count__item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.reserve-count__item input { max-width: 80px;}
.reserve-count__input {
    align-items: center;
    display: inline-flex;
    gap: 5px;
}
.reserve-count__item input { width: 70px;}
.reserve-count--confirm .reserve-count__item { display: block;}
.reserve-count__note { margin-top: 10px;}

/* =========================
   Button
========================= */
.c-button {
    align-items: center;
    background-color: var(--button-main);
    border-radius: 10px;
    color: var(--text-white);
    display: inline-flex;
    justify-content: space-between;
    line-height: normal;
    max-width: 300px;
    min-width: 260px;
    overflow: hidden;
    padding: 20px 30px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.c-button i {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	transition: transform 0.3s ease;
}
.c-button:hover {
    background-color: var(--button-hover);
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    color: var(--text-main);
    transform: translateY(-3px);
}
.c-button:hover i { transform: translateX(5px);}
.c-button--lg {
    font-size: 1.25rem;
    max-width: 600px;
	min-width: 560px;
    padding: 30px;
}
.fruits__button {
    margin: 60px 0 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.fruits__button .c-button--more {
    background-color: var(--button-sub);
    outline: 10px solid var(--border-white);
}
.fruits__button .c-button--more:hover,
.t-strawberry .c-button--more:hover, .t-cherry .c-button--more:hover {
    background-color: var(--button-hover);
}
.picking__button, .product__button, .items__button, .c-form__submit {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.t-strawberry .c-button--more, .t-cherry .c-button--more {
    background-color: var(--category-color);
}
.t-strawberry .c-button__label, .t-cherry .c-button__label {
    background-color: var(--bg-white);
    border-radius: 999px;
    color: var(--category-color);
    padding: 5px 15px;
}
.t-strawberry .c-button--more:hover .c-button__label,
.t-cherry .c-button--more:hover .c-button__label {
    color: var(--text-sub);
}
@media (max-width: 767px) {
.c-button {
	max-width: none;
	min-width: inherit;
	width: 100%;
}
.c-button--lg {
    font-size: 1.25rem;
	max-width: none;
	min-width: inherit;
}
.picking__button, .product__button, .items__button, .c-form__submit {
    flex-direction: column;
}
.picking__button .c-button {
    flex-direction: column;
    gap: 10px;
    line-height: 1.6;
    padding: 20px 15px !important;        
    text-align: center;
}
.t-strawberry .c-button__label {
    font-size: 1.125rem;
    padding: 5px 30px;
}}

/* =========================
   Fruits
========================= */
.fruits {
    background-color: var(--bg-accent);
    padding: 80px 0;
}
.fruits__grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.fruits__item {
    flex: 1;
    position: relative;
    transition: transform 0.5s, box-shadow 0.5s;
}
.fruits__item:hover {
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    opacity: 0.8;
    transform: translateY(-3px);
}
.fruits__item--left, .fruits__item--left:hover { border-radius: 0 50px 50px 0;}
.fruits__item--right, .fruits__item--right:hover { border-radius: 50px 0 0 50px;}
.fruits__item img {
    border: 10px solid var(--border-white);
    border-radius: 0;
}
.fruits__item--left img {
    border-left: none;
    border-radius: 0 50px 50px 0;
}
.fruits__item--right img {
    border-right: none;
    border-radius: 50px 0 0 50px;
}
.fruits__title {
    color: var(--text-white);
    font-size: 2.5rem;
    line-height: normal;
    margin: 0 auto;   
    padding: 30px 20px;
    position: absolute;
    top: -30px;
    text-align: center;
    width: fit-content;
    writing-mode: vertical-rl;
}
.fruits__item--left .fruits__title {
    background-color: var(--category-color);
    left: 30px;
}
.fruits__item--right .fruits__title {
    background-color: var(--category-color);
    right: 30px;
}
.fruits__date {
    background-color: var(--bg-white);
    font-weight: bold;
    font-size: 2.125rem;
    line-height: 1;
    margin: 0 auto;   
    padding: 20px 30px;
    position: absolute;
    bottom: 40px;
    text-align: center;
    width: fit-content;
}
.fruits__item--left .fruits__date {
    color: var(--category-color);
    left: 0;
}
.fruits__item--right .fruits__date {
    color: var(--category-color);
    right: 0;
}
.fruits__date span {
    font-size: 3.5rem;
    font-family: "cooper-black-std", serif;
}
@media (max-width: 767px) {
.fruits { padding: 60px 0;}
.fruits__grid { flex-direction: column;}
.fruits__item--left { margin-right: 30px;}
.fruits__item--right { margin-left: 30px;}
.fruits__title {
    font-size: 1.875rem;
    padding: 20px 15px;
}
.fruits__item--left .fruits__title { left: 20px;}
.fruits__item--right .fruits__title { right: 20px;}
.fruits__date {
    bottom: 30px;
    font-size: 1.5rem;
    padding: 15px 20px;
}
.fruits__date span { font-size: 2rem;}
}

/* =========================
   Circle
========================= */
.circle-list {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 40px 0 20px 0;
}
.circle-list__item {
    align-items: center;
    aspect-ratio: 1;
    background-color: var(--category-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 280px;
}
.circle-list__text {
    color: var(--text-white);
    font-size: 1.125rem;
}
.circle-list__icon::before {
    content: "";
    display: block;
    height: 35px;
    margin: 0 auto 15px auto;
    width: 35px;
}
.t-strawberry .circle-list__icon::before { background: url(../img/common/icon_strawberry.png) no-repeat center / contain;}
.t-cherry .circle-list__icon::before { background: url(../img/common/icon_cherry.png) no-repeat center / contain;}
@media (max-width: 767px) {
.circle-list {
    align-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}}

/* =========================
   Picking
========================= */
.info__list { margin: 60px 0 0 0;}
.info__item {
	align-items: flex-start;
    border-bottom: 2px solid var(--category-color);
    display: flex;
    font-size: 1.125rem;
    gap: 30px;
	margin: 0;
	padding: 20px;
}
.info__item:first-child { border-top: 2px solid var(--category-color);}
.info__term {
    color: var(--text-white);
    background-color: var(--category-color);
    border-radius: 999px;
	display: flex;
	flex: 0 0 25%;
    justify-content: center;
    padding: 10px;
}
.info__term span { font-size: 0.85rem;}
.info__desc {
    align-self: center;
    color: var(--category-color);
    flex: 1;
	margin: 0;
}
.info-table-wrapper {
    display: block;
    margin: 20px 0 15px 0;
    overflow-x: auto;
    table-layout: fixed;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.info-table {
    background-color: var(--bg-white);
    border-collapse: collapse;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}
.info-table__label, .info-table__th { font-weight: normal;}
.info-table__label, .info-table__th, .info-table__td {
    border: 2px solid var(--category-color);
    padding: 10px;
}
.info-table__th { background-color: var(--cherry-table-head);}
.info-table__th:first-child, .info-table__td:first-child {
    width: 30%;
}
.info-table__th:not(:first-child), .info-table__td:not(:first-child) {
    width: calc(70% / 3);
}
.info-table__label--side { background-color: var(--cherry-table-side);}
.info-table__label--side span, .info-table__th span { font-size: 0.85rem;}
.info-table--strawberry .is-dashed-right { border-right-style: dashed !important;}
.info-table--strawberry .is-dashed-left { border-left-style: dashed !important;}
.info-table--strawberry .info-table__td:nth-child(3) { border: 2px dotted var(--category-color) !important;}
.info-note {
    color: var(--text-main);
    font-size: 1rem;
    text-align: left;
}
.info-note {
    color: var(--text-main);
    font-size: 1rem;
}
.info__tel {
    color: var(--text-accent);
    font-size: 1.5rem;
    font-weight: bold;
}
@media (max-width: 767px) {
.info__list { margin: 10px 0 0 0;}
.info__item {
    border-bottom: none;
	flex-direction: column;
    gap: 20px;
	padding: 30px 0 0 0;
}
.info__term {
	flex: 1;
	width: 100%;
}
.info__desc {
    min-width: 0;
    text-align: center;
    width: 100%;
}
.info-table { width: max-content;}
.info-table__th:first-child, .info-table__td:first-child {
    width: auto;
}
.info__item:first-child { border-top: none;}
.info__tel { display: inline-block;}
}

/* =========================
   Faq
========================= */
.faq__item { margin-top: 40px;}
.faq__item + .faq__item { margin-top: 30px;}
.faq__question {
    align-items: center;
    background: var(--bg-white);
    border: 3px solid var(--border-main);
    border-radius: 999px;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    font-family: "mizolet", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    gap: 15px;
    letter-spacing: 0.08em;
    line-height: 1.8;
    padding: 15px 30px;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
}
.faq__answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.4s ease;
}
.faq__icon {
    align-items: center;
    background-color: var(--accent-green);
    border-radius: 50%;
    color: var(--text-white);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: bold;
    height: 1.4em;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 1.4em;
}
.faq__icon::before {
    content: "+";
    transition: transform 0.3s ease;
}
.faq__item.is-open .faq__icon::before { content: "−";}
.faq__text { flex: 1;}
.faq__arrow {
    border-right: 2px solid var(--text-sub);
    border-bottom: 2px solid var(--text-sub);
    height: 10px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    width: 10px;
}
.faq__item.is-open .faq__arrow { transform: rotate(-135deg);}
.faq__item.is-open .faq__answer {
    opacity: 1;
    padding: 20px 30px 10px 30px;
}
.faq__question:hover {
    background-color: var(--bg-hover);
    transform: translateY(-2px);
}
.faq__question:hover .faq__icon { background-color: var(--bg-base);}
.faq__question:hover .faq__arrow {
    border-right: 2px solid var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
}

/* =========================
   Company
========================= */
.company { margin-top: 25px;}

/* =========================
   Items
========================= */
.items__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 60px;
}
.items__item {
    border-radius: 20px;
    transition: transform 0.5s, box-shadow 0.5s;
    width: calc(33.333% - 40px);
}
.items__item:hover {
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    opacity: 0.8;
    transform: translateY(-3px);
}
.items__item img { border-radius: 20px 20px 0 0;}
.items__body {
    border-radius: 0 0 20px 20px;
    color: var(--text-white);
    padding: 30px;
    text-align: center;
}
.items__body--strawberry { background-color: var(--category-color);}
.items__body--cherry { background-color: var(--category-color);}
.items__body--taro {background-color: var(--category-color);}
.items__body--pumpkin { background-color: var(--category-color);}
.items__body--apple { background-color: var(--category-color);}
.items__title {
    font-size: 1.5rem;
    margin: 5px 0 20px 0;
}
.items__item i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.items__item:hover i { transform: translateY(-6px);}
.items .media {
    border-bottom: 3px solid var(--border-main);
    padding: 60px 0;
}
.items .media__body { text-align: center;}
.items .media__title { color: var(--category-color);}
.items .c-button--more { background-color: var(--category-color);}
@media (max-width: 767px) {
.items__grid { flex-direction: column;}
.items__item { width: 100%;}
.items__body { padding: 20px;}
.items__title {
    font-size: 1.375rem;
    margin: 0 0 10px 0;
}
.items__item i { font-size: 1.375rem;}
.items .media { padding: 40px 0;}
}

/* =========================
   Farm
========================= */
.farm-item {
    align-items: center;
    text-align: center;
}
.farm-item__name {
    font-size: 1.125rem;        
    margin: 0 0 10px 0;
}

/* =========================
   Product
========================= */
.product-header {
    margin-top: 40px;
    text-align: center;
}
.product-header__circle {
    align-items: center;
    background-color: var(--accent);
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: center;
    margin: 0 auto 30px auto;
    padding: 10px;
    width: 200px;
}
.product-header__heading { margin: 5px 0 0 0;}
.product-header__sub, .product-header__title, .product-header__en {
    display: block;
}
.product-header__sub { font-size: 1.125rem;}
.product-header__title, .product-group__cat-main { font-size: 1.75rem;}
.product-header__en { font-size: 1rem;}
.product-group__cat-heading {
    align-items: center;
    display: flex;
    margin: 40px 0 20px 0;
}
.product-group__cat-title {
    display: flex;
    flex-direction: column;
    margin: 0;
    text-align: center;
}
.product-group__cat-line {
    background-color: var(--accent);
    flex-grow: 1;
    height: 3px;
}
.product-group__cat-line:first-child { margin-right: 30px;}
.product-group__cat-line:last-child { margin-left: 30px;}
.product-group__cat-sub { font-size: 1.125rem;}
.product-group__cat-comment {
    color: var(--text-sub);
    text-align: center;
}
.product-group__list, .farm-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    margin-top: 40px;
}
.product-item, .farm-item {
    display: flex;
    flex: 0 1 calc((100% - 60px) / 2);
    gap: 40px;
}
.product-item { align-items: center;}
.product-item__image, .product-item__info, .farm-item__image, .farm-item__info { flex: 1;}
.product-item__image img, .farm-item__image img {
    height: auto;
    display: block;
    width: 100%;
}
.product-item__code {
    border: 1px solid var(--border-sub);
    border-radius: 999px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    padding: 2px 10px;
}
.t-taro .product-item__badge { color: var(--category-color);}
.t-apple .product-item__badge {
    color: var(--category-color);
    font-size: 1.125rem;
}
.product-item__badge--award {
    font-size: 1rem;
    list-style: outside;
    margin-top: 5px;
    padding-left: 18px;
}
.product-item__badge--award li { list-style: disc;}
.product-item__name {
    font-size: 1.25rem;
    margin: 0 0 5px 0;
}
.product-item__name span { font-size: 1.125rem;}
.product-item__comment { color: var(--text-accent);}
.product-item__price { font-size: 1.375rem;}
.product-item__tax span { color: var(--text-sub);}
.product-item__button {
    background: var(--button-main);
    border-radius: 999px;
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item__button:hover {
    background: var(--button-hover);
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    color: var(--text-main) !important;
    transform: translateY(-3px);
}
.product-group__caption {
    font-size: 0.85rem;
    margin-top: 20px;
    text-align: right;
}
.product-group--second { padding-top: 20px;}
.product-group__period {
    background: var(--text-accent);
    color: var(--text-white);
    font-size: 1.125rem;
    margin-top: 30px;
    padding: 20px;
    text-align: center;
}
@media (max-width: 767px) {
.product-header__title { line-height: 1.8;}
.product-header__title, .product-group__cat-main { font-size: 1.5rem;}
.product-header__en { font-size: 0.85rem;}
.product-group__list, .farm-list, .product-item, .farm-item {
    flex-direction: column;
}    
.product-group__list, .farm-list { gap: 30px;}
.product-item, .farm-item { gap: 20px;}
.product-group--second { padding-top: 0;}
}

/* =========================
   Order
========================= */
.order-list__inner {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}
.order-list__image { margin: 0 0 20px 0;}
.order-list__code {
    border: 1px solid var(--border-sub);
    border-radius: 999px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    padding: 0 10px; 
}
.order-list__price { color: var(--text-accent);}
.order-list__price span {
    color: var(--text-main);
    font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
.order-list__inner {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}
.order-list__items {
    padding: 10px;
}}

/* =========================
   Guide
========================= */
.guide__title {
    color: var(--text-sub);
    font-size: 1.125rem;
    margin: 30px 0 0 0;
}
.guide__title i {
    font-size: 0.85rem;
    padding-right: 5px;
}
.guide__text, .guide__item { margin-top: 10px;}
.guide__body { margin-top: 30px;}
.guide__item::before {
    color: var(--text-sub);
    content: "●";
    font-size: 0.75rem;
    padding-right: 5px;
}
.guide__item span { font-size: 0.85rem;}
.fee-table-wrapper {
    margin: 5px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.fee-table {
    background-color: var(--bg-white);
    border-collapse: collapse;
    line-height: 1;
    text-align: center;
    width: 100%;
}
.fee-table__label, .fee-table__th { white-space: nowrap;}
.fee-table__label, .fee-table__th, .fee-table__td {
    border: 1px solid var(--border-sub);
    padding: 10px 5px;
}
.fee-table__label--side { background-color: var(--table-side-bg);}
.fee-table__label--side span { font-size: 0.85rem;}
.fee-table__th { background-color: var(--table-head-bg);}

/* =========================
   News
========================= */
.news__link {
    align-items: center;
    border-bottom: 2px solid var(--border-main);
    display: flex;    
    justify-content: space-between;
    margin: auto;
    padding: 20px 30px;
    transition: transform 0.5s;
    width: 80%;
}
.news__link:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}
.news__body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.news__date {
    color: var(--text-sub);
    font-size: 0.85rem;
}
.news__item i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.news__item:hover i { transform: translateX(3px);}
.news__button {
    margin-top: 40px;
    text-align: center;
}
@media screen and (max-width: 767px) {
.news__link {
    padding: 20px 0;
    width: 100%;
}
}

/* =========================
   Sns
========================= */
.sns-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    list-style: none;
    margin-top: 40px;
}
.sns-list__link {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 40px; 
    justify-content: center;
    transition: opacity 0.3s ease;
}
.sns-list__link:hover { opacity: 0.8;}
.sns-list__link--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.sns-list__link--facebook, .sns-list__link--facebook:hover { color: #1877f2;}
@media (max-width: 767px) {
.sns-list { margin-top: 30px;}
}

/* =========================
   Access
========================= */
iframe {
    border: 0;
    border-radius: 20px;
    height: 500px;
    margin-top: 40px;
    width: 100%;
}
@media (max-width: 767px) {
iframe { height: 350px;}
}

/* =========================
   Contact
========================= */
.contact-phone {
    margin-top: 30px;
    text-align: center;
}
.contact-phone__body {
    border: 3px solid var(--border-main);
    border-radius: 10px;
    margin: 30px auto 0 auto;
    padding: 30px 60px;
    width: fit-content;
}
.contact-phone__lead { font-size: 1.25rem;}
.contact-phone__number {
    color: var(--text-accent);
    font-size: 1.875rem;
    font-weight: bold;
}
.contact-phone__number i { padding-right: 5px;}
.contact-phone__time { display: block;}
.c-form { margin-top: 50px;}
.c-form__note {
    font-size: 0.85rem;
    margin-top: 5px;
}
.c-form__error {
    color: var(--text-accent);
    font-size: 0.85rem;
    margin-top: 10px;
}
.c-form__button {
    align-items: center;
    background-color: var(--button-main);
    border: none;
    border-radius: 10px;
    color: var(--text-main);
    border: none; 
    display: inline-flex;
    font-family: "mizolet", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    justify-content: space-between;
    letter-spacing: 0.1em;
	line-height: 1.8;
    max-width: 300px;
    min-width: 260px;
    overflow: hidden;
    padding: 15px 30px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}
.c-form__button i {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	transition: transform 0.3s ease;
}
.c-form__button:hover {
    background-color: var(--button-hover);
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    transform: translateY(-3px);
}
.c-form__input, .c-form__textarea {
    border: 1px solid var(--border-form);
    border-radius: 4px;
    color: var(--text-base);
    font-family: "mizolet", sans-serif;
    font-size: 1rem;
	line-height: 1.8;
    padding: 5px 10px;
    width: 100%;
}
.c-form__textarea {
    min-height: 120px;
    resize: vertical;
}
.c-form__select {
    border: 1px solid var(--border-form);
    border-radius: 4px;
    color: var(--text-base);
    font-family: "mizolet", sans-serif;
    font-size: 1rem;
	line-height: 1.8;
    padding: 10px 5px;
}
.c-form__select--short { min-width: 60px;}
@media (max-width: 767px) {
.contact-phone__body {
    box-sizing: border-box;
    padding: 30px;
    width: 100%;
}
.contact-phone__number { font-size: 1.5rem;}
.c-form__select { width: 100%;}
}

/* =========================
   Privacy Policy
========================= */
.policy--privacy { padding-top: 30px;}
.policy__inner { margin-top: 40px;}
.policy__block { margin-top: 40px;}
.policy__heading {
    border-bottom: 1px solid var(--border-main);
    font-size: 1.25rem;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
}
.policy__list { margin: 20px 0 0 20px;}
.policy__item { list-style: outside disc;}
@media screen and (max-width: 767px) {
.policy__heading { font-size: 1.125rem;}
}

/* =========================
   Links Button
========================= */
.links {
    margin-top: 20px;
    text-align: right;
}
.links__button {
    background: var(--button-sub);
    border-radius: 999px;
    display: inline-block;
    font-size: 0.85rem;
    padding: 5px 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.links__button:hover {
    background: var(--button-hover);
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    color: var(--text-main) !important;
    transform: translateY(-3px);
}

/* =========================
   Footer
========================= */
.footer {
    background-color: var(--bg-accent);
    color: var(--text-white);
    padding: 40px 30px;
    position: relative;
	text-align: center;
}
.footer__company {
    font-size: 1.875rem;
    margin-bottom: 15px;
}
.footer__company span {
    font-size: 1.125rem;
    display: block;
}
.footer__company::before {
    content: "";
    display: inline-block;
    height: 40px;
    background: url("../img/common/footer_logo.png") no-repeat center / contain;
    vertical-align: bottom;
    width: 222px;
}
.footer__copyright {
    font-family: "mizolet", sans-serif;
    font-size: 0.85rem;
    font-style: normal;
}
.footer__button {
    background-color: var(--button-hover);
    border-radius: 10px 0 0 10px;
    bottom: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    position: fixed;
    right: 0;
    transition: background-color 0.5s, transform 0.5s, box-shadow 0.5s;
    z-index: 9999;
}
.footer__button-link {
    color: var(--text-main) !important;
    display: block;
    padding: 15px 10px 15px 15px;
}
.footer__button-label { display: block;}
.footer__button-number {
    display: block;
    font-size: 1.25rem;
    line-height: 1.4;
}
.footer__button-number i { margin-right: 5px;}
.footer__button:hover {
    background-color: var(--button-main);
    box-shadow: 0 3px 6px rgba(var(--rgb-black), 0.15);
    transform: translateY(-3px);
}
.footer__deco {
    border-radius: 0;
    bottom: 80px;
    position: absolute;
    width: 300px;
    z-index: 1;
}
.footer__deco--left { left: 40px;}
.footer__deco--right { right: 40px;}
@media (max-width: 767px) {
.footer { padding: 30px 30px 100px 30px;}
.footer__company {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.footer__button {
    background-color: var(--button-hover);
    bottom: 0;
    border-radius: 0; 
    left: 0;
    position: fixed;
    right: 0;
    transform: none;
    transition: background-color 0.2s;
    width: 100%;
}
.footer__button:hover {
    box-shadow: none;
    transform: none; 
}
.footer__button-link {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 10px 10px 15px;
}
.footer__deco { display: none;}
}

/* =========================
   Pagetop
========================= */
.pagetop {
	bottom: 100px;
	position: fixed;
	right: 10px;
    z-index: 9999;
}
.pagetop__link {
    font-size: 2rem;
	position: relative;
}
.pagetop__link:hover { color: var(--text-sub);}
@media (max-width: 767px) {
.pagetop { bottom: 10px;}
}

/* =========================
   電話リンク
========================= */
@media (hover: hover) {
a[href^="tel:"] {
    color: inherit;
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}}