@charset "UTF-8";
/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-kv: 50;
  --z-index-header: 60;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

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

svg {
  width: 100%;
  height: auto;
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
html {
  font-size: calc(100vw / 375);
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1440);
  }
}

body {
  line-height: calc(24 / 16);
  font-size: 16rem;
  color: #4B5563;
  font-family: var(--font-family-base);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-d-block {
  display: block !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) {
  .u-d-block-md-min {
    display: block !important;
  }
}

.u-py80 {
  padding-block: 80rem !important;
}

/*!
component > button
------------------------------
*/
.c-button {
  display: inline-block;
  padding: 12rem 32rem;
  background-color: #D4A574;
  border-radius: 100vh;
  color: #fff;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .c-button:hover {
    background-color: rgba(212, 165, 116, 0.9);
    scale: 1.05;
  }
}

/*!
component > title
------------------------------
*/
.c-title-level2 {
  font-size: 36rem;
  line-height: calc(40 / 36);
  color: #8b4513;
  text-align: center;
}

/*!
component > lead
------------------------------
*/
.c-lead {
  text-align: center;
  line-break: strict;
}

/*!
component > form
------------------------------
*/
.c-form-required {
  display: inline-block;
  color: #EF4444;
}

.c-form-text {
  padding: 13rem 16rem 14rem;
  border-radius: 8rem;
  background-color: #FFFFFF;
  border: 1rem solid #E5E7EB;
  width: 100%;
  font-size: 16rem;
  outline: none;
}
.c-form-text::-moz-placeholder {
  color: #9CA3AF;
}
.c-form-text::placeholder {
  color: #9CA3AF;
}
.c-form-text:focus {
  outline: 1rem solid #D4A574;
}

.c-form-text--textarea {
  min-height: 146rem;
  field-sizing: content;
  padding-block: 12rem;
}

.c-form-select {
  font-size: 16rem;
  line-height: 1;
  color: #000;
  padding: 12rem 32rem 12rem 20rem;
  border-radius: 8rem;
  width: 100%;
  border: 1rem solid #E5E7EB;
  background-color: #EFEFEF;
  outline: none;
}

.c-form-select:focus {
  outline: 1rem solid #D4A574;
}

.c-form-button {
  font-size: 18rem;
  line-height: calc(28 / 18);
  color: #fff;
  background-color: #D4A574;
  border-radius: 8rem;
  padding: 16rem 48rem;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-form-button:hover {
    background-color: rgba(212, 165, 116, 0.9);
    scale: 1.05;
  }
}

/*!
layout > container
------------------------------
*/
.l-container {
  padding-inline: 16rem;
}

@media (min-width: 768px) {
  .l-container {
    padding-inline: 160rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 65rem;
  padding-inline: 16rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
  background-color: #fff;
  border-bottom: 1rem solid rgba(212, 165, 116, 0.9);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2rem);
}

@media (min-width: 768px) {
  .l-header {
    min-height: 65rem;
    padding-inline: 160rem;
  }
}

.l-header__logo {
  width: 116rem;
}

.l-header__logo-link {
  display: block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header__logo-link:hover {
    opacity: 0.8;
  }
}

.l-header__button {
  position: absolute;
  top: 50%;
  right: 18rem;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
  display: grid;
  place-items: center;
}

@media (min-width: 768px) {
  .l-header__button {
    display: none;
  }
}

.l-header__drawer {
  position: absolute;
  z-index: var(--z-index-modal);
  top: 65rem;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
  scrollbar-width: none;
  height: 0;
  transition: height 0.5s ease;
}

.l-header__drawer.is-active {
  height: calc(100dvh - 65rem);
}

@media (min-width: 768px) {
  .l-header__drawer {
    display: none;
  }
}

.l-header__drawer-link {
  padding-block: 28rem;
  display: block;
  font-size: 24rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.l-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .l-header__nav {
    display: block;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 32rem;
}

.l-header__nav-link {
  color: #8B4513;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header__nav-link:hover {
    color: #D4A574;
  }
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding: 48rem 16rem;
  background-color: #8B4513;
  color: #D1D5DB;
}

@media (min-width: 768px) {
  .l-footer {
    padding-inline: 160rem;
  }
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__inner {
    grid-template-columns: 352rem 1fr;
  }
}

.l-footer__logo {
  width: 116rem;
}

.l-footer__text {
  margin-top: 16rem;
}

.l-footer__sns {
  margin-top: 12rem;
  display: flex;
  align-items: center;
  gap: 16rem;
}

.l-footer__sns-link {
  display: block;
  width: 20rem;
}

.l-footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-footer__item-title {
  font-size: 18rem;
  line-height: calc(28 / 18);
  color: #FFFFFF;
}

.l-footer__item-biztime {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__item-contact {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__item-contact-text {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.l-footer__item-contact-text::before {
  content: "";
  display: block;
  width: 16rem;
  height: 16rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #D1D5DB;
}

.l-footer__item-contact-text--tel::before {
  mask-image: url(../img/icon_tel.svg);
}

.l-footer__item-contact-text--mail::before {
  mask-image: url(../img/icon_mail.svg);
}

.l-footer__item-contact-text--address::before {
  mask-image: url(../img/icon_location.svg);
}

.l-footer__legal {
  margin-top: 32rem;
  padding-top: 32rem;
  border-top: 1px solid #4B5563;
}

.l-footer__copyright {
  display: block;
  font-size: 16rem;
  text-align: center;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  position: relative;
  height: 750rem;
}

@media (min-width: 768px) {
  .top-kv {
    height: 900rem;
  }
}

.top-kv__inner {
  height: inherit;
}

.top-kv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
  z-index: var(--z-index-kv);
  padding-inline: 24.5rem;
}

@media (min-width: 768px) {
  .top-kv__content {
    padding-inline: 2rem;
  }
}

.top-kv__copy {
  font-size: 36rem;
  line-height: calc(45 / 36);
}

@media (min-width: 768px) {
  .top-kv__copy {
    font-size: 60rem;
    line-height: 1;
  }
}

.top-kv__text {
  margin-top: 24rem;
  font-size: 18rem;
  line-height: calc(28 / 18);
}

@media (min-width: 768px) {
  .top-kv__text {
    font-size: 20rem;
    line-height: calc(28 / 20);
  }
}

.top-kv__button-wrap {
  margin-top: 32rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-kv__button-wrap {
    flex-direction: row;
    justify-content: center;
  }
}

.top-kv__button {
  display: inline-block;
  padding: 12rem 32rem;
  background-color: #D4A574;
  border-radius: 100vh;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-kv__button:hover {
    background-color: rgba(212, 165, 116, 0.9);
    padding: 12rem 33.6rem;
    border: none;
  }
}

.top-kv__button--contact {
  background-color: transparent;
  border: 2rem solid #fff;
}

.top-kv__swiper {
  height: inherit;
}

.top-kv__swiper-wrapper {
  height: inherit;
}

.top-kv__swiper-slide {
  height: inherit;
}

.top-kv__swiper-img-wrap {
  height: inherit;
  position: relative;
}

.top-kv__swiper-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.top-kv__swiper-img {
  height: inherit;
  object-fit: cover;
}

.top-kv__swiper-pagination {
  bottom: 32rem !important;
  line-height: 1;
}

.swiper-pagination-bullet {
  width: 12rem;
  height: 12rem;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 1)
}

/*!
page > top > top-about
------------------------------
*/
.top-about__lead {
  margin-top: 16rem;
}

.top-about__body {
  margin-top: 64rem;
}

.top-about__group {
  display: grid;
  gap: 48rem;
}

@media (min-width: 768px) {
  .top-about__group {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.top-about__group-img-wrap {
  overflow: hidden;
  height: 384rem;
  border-radius: 8rem;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
}

.top-about__group-img {
  height: 100%;
  object-fit: cover;
}

.top-about__group-title {
  font-size: 30rem;
  line-height: calc(36 / 30);
  color: #8B4513;
}

.top-about__group-text {
  margin-top: 24rem;
  line-height: calc(26 / 16);
  color: #374151;
}

@media (min-width: 768px) {
  .top-about__group-text {
    padding-right: 10rem;
  }
}

.top-about__group-list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.top-about__group-item {
  color: #000;
  display: flex;
  align-items: center;
  gap: 12rem;
}

.top-about__group-item::before {
  content: "";
  display: inline-block;
  width: 20rem;
  height: 20rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-about__group-item--wheat::before {
  background-image: url(../img/icon_wheat.svg);
}

.top-about__group-item--no-add::before {
  background-image: url(../img/icon_heart.svg);
}

.top-about__group-item--france::before {
  background-image: url(../img/icon_award.svg);
}

.top-about__list {
  margin-top: 80rem;
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-about__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-about__item {
  border-radius: 8rem;
  background-color: #FFF8E7;
  text-align: center;
  padding: 24rem 27rem;
}

.top-about__item-icon {
  display: grid;
  place-items: center;
  width: 64rem;
  height: 64rem;
  margin-inline: auto;
  background-color: #D4A574;
  border-radius: 100vh;
  margin-bottom: 16rem;
}

.top-about__item-icon::before {
  content: "";
  display: block;
  width: 32rem;
  height: 32rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}

.top-about__item-icon--ingredient::before {
  mask-image: url(../img/icon_wheat.svg);
}

.top-about__item-icon--skill::before {
  mask-image: url(../img/icon_chef.svg);
}

.top-about__item-icon--service::before {
  mask-image: url(../img/icon_heart.svg);
}

.top-about__item-title {
  font-size: 20rem;
  line-height: calc(28 / 20);
  color: #8B4513;
}

.top-about__item-text {
  margin-top: 12rem;
}

/*!
page > top > top-product
------------------------------
*/
.top-product {
  background-color: #FFF8E7;
}

.top-product__lead {
  margin-top: 16rem;
}

.top-product__body {
  margin-top: 64rem;
}

.top-product__list {
  display: grid;
  gap: 48rem;
}

.top-product-item {
  border-radius: 8rem;
  overflow: hidden;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
}

.top-product-item__title {
  padding: 24rem;
  background-color: #D4A574;
  font-size: 24rem;
  line-height: calc(32 / 24);
  color: #FFFFFF;
}

.top-product-item__list {
  display: grid;
  gap: 24rem;
  padding: 24rem;
  background-color: #fff;
}

@media (min-width: 768px) {
  .top-product-item__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-product-item__link {
  display: block;
  padding: 24rem;
  border-radius: 8rem;
  background-color: #FFF8E7;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-product-item__link:hover {
    padding: 21.5rem 24rem 24rem;
    box-shadow:
      0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
      0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
  }
}

.top-product-item__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-product-item__item-header-title {
  font-size: 18rem;
  line-height: calc(28 / 18);
  color: #8B4513;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-product-item__link:hover .top-product-item__item-header-title {
    color: #D4A574;
  }
}

.top-product-item__item-header-price {
  font-size: 20rem;
  line-height: calc(28 / 20);
  color: #D4A574;
}

.top-product-item__item-text {
  margin-top: 12rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-product__footer {
  margin-top: 48rem;
}

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

.top-product__button {
  margin-top: 24rem;
  text-align: center;
}

/*!
page > top > top-service
------------------------------
*/
.top-service__lead {
  margin-top: 16rem;
}

.top-service__body {
  margin-top: 64rem;
}

.top-service__list {
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-service__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-service-card__link {
  display: block;
  padding: 32rem;
  transition: all 0.3s;
}

.top-service-card__link--bread {
  background-color: #FFFBEB;
}

.top-service-card__link--delivery {
  background-color: #FFF7ED;
}

.top-service-card__link--cake {
  background-color: #FEFCE8;
}

@media (any-hover: hover) {
  .top-service-card__link:hover {
    box-shadow:
      0 20rem 25rem -5rem rgba(0, 0, 0, 0.1),
      0 8rem 10rem -8rem rgba(0, 0, 0, 0.1);
  }

  .top-service-card__link--bread:hover {
    background-color: #FEF3C7;
  }

  .top-service-card__link--delivery:hover {
    background-color: #FFEDD5;
  }

  .top-service-card__link--cake:hover {
    background-color: #FEF9C3;
  }
}

.top-service-card__link::before {
  content: '';
  display: block;
  width: 32rem;
  height: 32rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #D4A574;
  margin: 0 auto 24rem;
}

.top-service-card__link--bread::before {
  mask-image: url('../img/icon_chef.svg');
}

.top-service-card__link--delivery::before {
  mask-image: url('../img/icon_truck.svg');
}

.top-service-card__link--cake::before {
  mask-image: url('../img/icon_cup.svg');
}

.top-service-card__title {
  font-size: 24rem;
  line-height: calc(32 / 24);
  color: #8B4513;
  text-align: center;
}

.top-service-card__description {
  margin-top: 16rem;
  color: #374151;
  text-align: center;
}

@media (min-width: 768px) {
  .top-service-card__description {
    padding-inline: 1rem;
  }
}

.top-service-card__details {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-service-card__detail {
  font-size: 14rem;
  line-height: calc(20 / 14);
  display: flex;
  align-items: center;
  gap: 8rem;
}

.top-service-card__detail::before {
  content: '';
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-image: url('../img/icon_star.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*!
page > top > top-news
------------------------------
*/
.top-news {
  background-color: #FFF8E7;
}

.top-news__lead {
  margin-top: 16rem;
}

.top-news__body {
  margin-top: 64rem;
}

.top-news__list {
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-news-card {
  display: block;
  border-radius: 8rem;
  overflow: hidden;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  height: 100%;
  background-color: #fff;
}

.top-news-card__img-wrap {
  height: 192rem;
}

.top-news-card__img {
  height: 100%;
  object-fit: cover;
}

.top-news-card__content {
  padding: 24rem;
}

.top-news-card__date {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #6B7280;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-news-card:hover .top-news-card__date {
    translate: 0 -1.5rem;
  }
}

.top-news-card__date::before {
  content: '';
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-image: url('../img/icon_calendar.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: translate 0.3s;
}

@media (any-hover: hover) {
  .top-news-card:hover .top-news-card__date::before {
    translate: 0 1.5rem;
  }
}

.top-news-card__title {
  margin-top: 12rem;
  font-size: 20rem;
  line-height: calc(28 / 20);
  color: #8B4513;
}

.top-news-card__text {
  margin-top: 12rem;
}

/*!
page > top > top-access
------------------------------
*/
.top-access__lead {
  margin-top: 16rem;
}

.top-access__body {
  margin-top: 64rem;
}

.top-access__list {
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-access__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-access__item {
  border-radius: 8rem;
  background-color: #FFF8E7;
  padding: 32rem;
}

.top-access__item-title {
  display: flex;
  align-items: center;
  gap: 12rem;
  font-size: 20rem;
  line-height: calc(28 / 20);
  color: #8B4513;
}

.top-access__item-title::before {
  content: '';
  display: inline-block;
  width: 24rem;
  height: 24rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-access__item-title--address::before {
  background-image: url('../img/icon_location.svg');
}

.top-access__item-title--tel::before {
  background-image: url('../img/icon_tel.svg');
}

.top-access__item-title--biztime::before {
  background-image: url('../img/icon_clock.svg');
}

.top-access__item-text {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  color: #374151;
}

.top-access__item-text--biztime {
  gap: 4rem;
  font-size: 16rem;
  line-height: calc(24 / 16);
}

.top-access__item-number {
  font-size: 18rem;
  line-height: calc(28 / 18);
}

.top-access__item-note {
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #6B7280;
}

.top-access__item-holiday {
  color: #DC2626;
}

.top-access__method {
  margin-top: 64rem;
  padding: 16rem 32rem 32rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
}

.top-access__method-title {
  font-size: 24rem;
  line-height: calc(32 / 24);
  color: #8B4513;
  text-align: center;
}

.top-access__method-list {
  margin-top: 24rem;
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-access__method-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-access__method-item-title {
  color: #8B4513;
  display: flex;
  align-items: center;
  gap: 8rem;
}

.top-access__method-item-title::before {
  content: '';
  display: inline-block;
  width: 20rem;
  height: 20rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-access__method-item-title--train::before {
  background-image: url('../img/icon_person.svg');
}

.top-access__method-item-title--car::before {
  background-image: url('../img/icon_truck.svg');
}

.top-access__method-route-list {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  text-indent: -6rem;
}

.top-access__method-route-item::before {
  content: "・";
}

.top-access__method-item-note {
  margin-top: 8rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #6B7280;
}

/*!
page > top > top-contact
------------------------------
*/
.top-contact {
  background-color: #FFF8E7;
  padding-top: 80rem;
  padding-bottom: 70rem;
}

@media (min-width: 768px) {
  .top-contact {
    padding-bottom: 74rem;
  }
}

.top-contact__lead {
  margin-top: 16rem;
}

.top-contact__body {
  margin-top: 64rem;
}

.top-contact__area {
  max-width: 864rem;
  margin-inline: auto;
  padding: 32rem 32rem 40rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
}

.top-contact__area-title {
  font-size: 24rem;
  line-height: calc(32 / 24);
  color: #8B4513;
  text-align: center;
}

.top-contact__form {
  margin-top: 24rem;
  display: grid;
  gap: 24rem;
}

@media (min-width: 768px) {
  .top-contact__form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .top-contact__form-item {
    grid-column: span 2;
  }

  .top-contact__form-item--name {
    grid-column: span 1;
  }

  .top-contact__form-item--tel {
    grid-column: span 1;
  }
}

.top-contact__form-label {
  color: #8B4513;
  display: flex;
  gap: 4rem;
  margin-bottom: 8rem;
}

.top-contact__form-button {
  text-align: center;
  margin-top: 9rem;
}

@media (min-width: 768px) {
  .top-contact__form-button {
    grid-column: span 2;
  }
}

.top-contact__footer {
  margin-top: 24rem;
  padding-top: 32rem;
  border-top: 1rem solid #E5E7EB;
  text-align: center;
}

.top-contact__footer-tel {
  margin-top: 16rem;
}

.top-contact__footer-tel-link {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  font-size: 20rem;
  line-height: calc(28 / 20);
  color: #D4A574;
}

.top-contact__footer-tel-link::before {
  content: '';
  display: inline-block;
  width: 20rem;
  height: 20rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/icon_tel.svg');
}

.top-contact__footer-biztime {
  margin-top: 8rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #6B7280;
}
