@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
  --default-text-color: #000;
  --default-font-family: "Noto Sans JP", sans-serif;
  --bg-color-aqua: #D1E8F6;
  --bg-color-beige: #F5F4E4;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

header {
  font-size: 100%;
}

#footer {
  height: 350px;

  p {
    line-height: normal;
  }

  address {
    font-size: 10.4px;
  }
}

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

ul,
li,
ol,
dl {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

button {
  all: unset;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--default-text-color);
}

button:active,
a:active {
  opacity: 0.7;
  transition: opacity 0.3s ease-out;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  a:hover,
  button:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease-out;
    text-decoration: none;
  }
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 0.1rem dotted;
  cursor: help;
}

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

*,
*:after,
*:before {
  -webkit-appearance: none;
  word-break: break-all;
  box-sizing: border-box;
}

video {
  filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media screen {
  .screen-off {
    display: none !important;
  }
}

@media print {
  .print-off {
    display: none !important;
  }
}

@media print,
screen and (min-width: 1080.01px) {
  .tab-off {
    display: none !important;
  }
}

/* PC(768px以上)のみ非表示 */
@media print,
screen and (min-width: 767.01px) {
  .pc-off {
    display: none !important;
  }
}

/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
  .sp-off {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    color: var(--default-text-color);
  }
}

@media screen and (min-width: 767.01px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

html {
  font-size: 62.5%;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;

  @media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
    font-size: calc(10 / 1920 * 100 * 1vw);
  }

  /* あまりにも文字サイズが小さくなった場合 */
  @media screen and (min-width: 767.01px) and (max-width: 1080px) {
    font-size: calc(12 / 1920 * 100 * 1vw);
  }

  /* スマホ用（デザインサイズが375の場合） */
  @media screen and (max-width: 767px) {
    font-size: calc(10 / 375 * 100 * 1vw);
  }
}

body {
  font-size: 1.6rem;
  line-height: 1;
  text-align: unset;

  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  @media screen and (max-width: 767px) {
    /* スマホ画像長押し禁止対策 */
    pointer-events: none;
  }
}


/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
  html {
    font-size: calc(10 / 1920 * 100 * 14px);
  }

  body {
    -webkit-print-color-adjust: exact;
    position: relative;
    width: 1400px;
    zoom: 70%;
  }
}

@page {
  size: A4;
  margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
  --sb-track-color: #ddd;
  --sb-thumb-color: #000;
  --sb-size: 0;
  /* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
  overflow-x: hidden;
}

.deve body::-webkit-scrollbar {
  width: var(--sb-size);
}

.deve body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 1px;
}

.deve body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
  overflow: clip;
}

.menu-active {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .nav {
    position: fixed;
    left: 100%;
    z-index: 999;
    width: 100%;
    pointer-events: none;
  }
}

.menu-active {
  #header {
    .menu-btn {

      /* position: fixed; */
      & a {
        background-color: #fff;

        & span {
          background-color: transparent;

          &:before {
            margin-top: 0;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
          }

          &:after {
            margin-top: 0;
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
          }
        }
      }
    }

    @media screen and (max-width: 767px) {
      .nav {
        left: 0;
        pointer-events: auto;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
  padding: 2.4rem 0;

  @media screen and (max-width: 767px) {
    display: none;
  }

  & ol {
    display: flex;
    flex-wrap: wrap;
  }

  & li {
    position: relative;
    margin-right: 3.7rem;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.1em;

    &:last-child {
      margin-right: 0;

      &:after {
        display: none;
      }
    }

    &:after {
      content: "";
      position: absolute;
      right: -2.7rem;
      top: 50%;
      z-index: 0;
      display: block;
      width: 1.4rem;
      height: 1px;
      background: #bcbcbc;

      &:last-child:after {
        display: none;
      }
    }
  }

  & a {
    text-decoration: underline;
    color: #7aa3c6;

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        text-decoration: none;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 3rem);
  }
}

.w960 {
  max-width: 96rem;
}

.w1080 {
  max-width: 108rem;
}

.w1200 {
  max-width: 120rem;
}

.w1280 {
  max-width: 128rem;
}

.w1440 {
  max-width: 144rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {}

/* type01 */
.common-title.type01 {
  text-align: center;
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;

  & p {
    margin-bottom: 2rem;

    &:last-child {
      margin-bottom: 0;
    }
  }
}

/* table-scroll */
@media screen and (max-width: 767px) {
  .table-scroll {
    position: relative;
    padding-bottom: 2rem;
    overflow-x: scroll;

    &:after {
      content: "←";
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 1;
      margin-left: -1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      width: 3rem;
      height: 3rem;
      border-radius: 1.5rem;
      border: 0.1rem solid #000;
      animation: arrowtable 2s infinite forwards;
    }

    .common-table {
      width: 80rem;
    }
  }
}

@keyframes arrowtable {
  50% {
    opacity: 1;
    right: 0;
  }

  100% {
    opacity: 0;
    right: 100%;
  }
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
  margin-bottom: 0rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.mb70 {
  margin-bottom: 7rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.mb90 {
  margin-bottom: 9rem !important;
}

.mb100 {
  margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
  .mb10 {
    margin-bottom: 0.5rem !important;
  }

  .mb20 {
    margin-bottom: 1rem !important;
  }

  .mb30 {
    margin-bottom: 1.5rem !important;
  }

  .mb40 {
    margin-bottom: 2rem !important;
  }

  .mb50 {
    margin-bottom: 2.5rem !important;
  }

  .mb60 {
    margin-bottom: 3rem !important;
  }

  .mb70 {
    margin-bottom: 3.5rem !important;
  }

  .mb80 {
    margin-bottom: 4rem !important;
  }

  .mb90 {
    margin-bottom: 4.5rem !important;
  }

  .mb100 {
    margin-bottom: 5rem !important;
  }
}

.mt0 {
  margin-top: 0rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mt60 {
  margin-top: 6rem !important;
}

.mt70 {
  margin-top: 7rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mt90 {
  margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
  .mt10 {
    margin-top: 0.5rem !important;
  }

  .mt20 {
    margin-top: 1rem !important;
  }

  .mt30 {
    margin-top: 1.5rem !important;
  }

  .mt40 {
    margin-top: 2rem !important;
  }

  .mt50 {
    margin-top: 2.5rem !important;
  }

  .mt60 {
    margin-top: 3rem !important;
  }

  .mt70 {
    margin-top: 3.5rem !important;
  }

  .mt80 {
    margin-top: 4rem !important;
  }

  .mt90 {
    margin-top: 4.5rem !important;
  }

  .mt100 {
    margin-top: 5rem !important;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb10 {
  padding-bottom: 1rem !important;
}

.pb20 {
  padding-bottom: 2rem !important;
}

.pb30 {
  padding-bottom: 3rem !important;
}

.pb40 {
  padding-bottom: 4rem !important;
}

.pb50 {
  padding-bottom: 5rem !important;
}

.pb60 {
  padding-bottom: 6rem !important;
}

.pb70 {
  padding-bottom: 7rem !important;
}

.pb80 {
  padding-bottom: 8rem !important;
}

.pb90 {
  padding-bottom: 9rem !important;
}

.pb100 {
  padding-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
  .pb10 {
    padding-bottom: 0.5rem !important;
  }

  .pb20 {
    padding-bottom: 1rem !important;
  }

  .pb30 {
    padding-bottom: 1.5rem !important;
  }

  .pb40 {
    padding-bottom: 2rem !important;
  }

  .pb50 {
    padding-bottom: 2.5rem !important;
  }

  .pb60 {
    padding-bottom: 3rem !important;
  }

  .pb70 {
    padding-bottom: 3.5rem !important;
  }

  .pb80 {
    padding-bottom: 4rem !important;
  }

  .pb90 {
    padding-bottom: 4.5rem !important;
  }

  .pb100 {
    padding-bottom: 5rem !important;
  }
}

.pt0 {
  padding-top: 0 !important;
}

.pt10 {
  padding-top: 1rem !important;
}

.pt20 {
  padding-top: 2rem !important;
}

.pt30 {
  padding-top: 3rem !important;
}

.pt40 {
  padding-top: 4rem !important;
}

.pt50 {
  padding-top: 5rem !important;
}

.pt60 {
  padding-top: 6rem !important;
}

.pt70 {
  padding-top: 7rem !important;
}

.pt80 {
  padding-top: 8rem !important;
}

.pt90 {
  padding-top: 9rem !important;
}

.pt100 {
  padding-top: 10rem !important;
}

@media screen and (max-width: 767px) {
  .pt10 {
    padding-top: 0.5rem !important;
  }

  .pt20 {
    padding-top: 1rem !important;
  }

  .pt30 {
    padding-top: 1.5rem !important;
  }

  .pt40 {
    padding-top: 2rem !important;
  }

  .pt50 {
    padding-top: 2.5rem !important;
  }

  .pt60 {
    padding-top: 3rem !important;
  }

  .pt70 {
    padding-top: 3.5rem !important;
  }

  .pt80 {
    padding-top: 4rem !important;
  }

  .pt90 {
    padding-top: 4.5rem !important;
  }

  .pt100 {
    padding-top: 5rem !important;
  }
}

/* ------------------------------------------- */
/* utility */
/* ------------------------------------------- */
.img-wrap {
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ------------------------------------------- */
/* main */
/* ------------------------------------------- */
#container {
  width: 100%;

  .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 4.8rem;
    font-weight: 900;
  }

  .section-title:after {
    content: "";
    display: block;
    width: 14rem;
    height: 0.6rem;
    background-color: #EE740A;
    margin-top: 3.5rem;
  }

  .content-area>section,
  .content-area .cover-area {
    padding: 10rem 0;
  }

  @media screen and (max-width: 767px) {
    .section-title {
      font-size: 2.2rem;
    }

    .section-title:after {
      width: 5rem;
      height: 0.3rem;
      margin-top: 1.5rem;
    }

    .content-area {
      section {
        padding: 4rem 0;
      }
    }
  }

  .promise {
    background-color: #FFF;
    background-image: url(img/promise_bg_left.svg), url(img/promise_bg_right.svg);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;

    @media screen and (max-width: 1080px) {
      background-size: 40%, 40%;
    }

    .promise-title {
      margin-bottom: 6rem;
      text-align: center;
      font-size: 6rem;
      font-weight: 900;
      line-height: 1.2;

      .title__highlight {
        background: linear-gradient(transparent 60%, #FFF745 60%);
      }

      @media screen and (max-width: 767px) {
        margin-bottom: 4rem;
        font-size: 2.3rem;
      }
    }

    .promise-body {
      display: flex;

      .body-main {
        width: 50%;
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 1.8;
        letter-spacing: 0.05em;
      }

      .body-img {
        width: 50%;
      }

      @media screen and (max-width: 767px) {
        flex-direction: column-reverse;
        align-items: center;
        gap: 2rem;

        .body-main {
          width: 100%;
          font-size: 1.6rem;
          line-height: 1.6;
        }

        .body-img {
          width: 100%;
        }
      }
    }
  }

  .example {
    background-color: var(--bg-color-aqua);

    .example-title {
      margin-bottom: 6rem;

      @media screen and (max-width: 767px) {
        margin-bottom: 4rem;
      }
    }

    .example-body {
      margin-bottom: 6rem;
      width: 100%;
      height: 44.7rem;

      .example-card {
        display: flex;
        justify-content: space-between;
        padding: 6.2rem;
        width: 128rem;
        background-color: #fff;

        .card-main {
          width: 60rem;

          .card-tag {
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 12rem;
            height: 3.2rem;
            color: #FFF;
            font-size: 1.6rem;
            font-weight: 700;
            background-color: #EE740A;
          }

          .card-title {
            margin-bottom: 1.2rem;
            font-size: 2.6rem;
            font-weight: 700;
          }

          .card-meta {
            margin-bottom: 3.2rem;
            font-size: 1.8rem;
            font-weight: 500;
            line-height: 1.6;
            letter-spacing: 0.05em;
          }

          .card-desc {
            margin-top: auto;
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: 0.05em;
          }
        }

        .card-img {
          width: 50rem;
          height: 100%;
        }
      }

      .nav-btn {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0;
        width: 8.6rem;
        height: 8.6rem;
        border-radius: 50%;
        background-color: #EE740A;
      }

      .swiper-button-prev {
        left: calc(16.6% - 7.3rem);
      }

      .swiper-button-next {
        right: calc(16.6% - 7.3rem);
      }

      @media screen and (max-width: 1080px) {
        .swiper-button-prev {
          left: 10rem;
        }

        .swiper-button-next {
          right: 10rem;
        }
      }

      @media screen and (max-width: 767px) {
        margin-bottom: 4rem;
        height: auto;

        .example-card {
          width: calc(100% - 4rem);
          height: auto;
          padding: 2.5rem 2rem;
          flex-direction: column-reverse;
          gap: 2rem;

          .card-main {
            width: 100%;

            .card-tag {
              margin: 0 auto 1.5rem;
            }

            .card-title {
              font-size: 2rem;
              line-height: 1.4;
            }

            .card-meta {
              font-size: 1.6rem;
            }

            .card-desc {
              font-size: 1.4rem;
            }
          }

          .card-img {
            width: 100%;
          }
        }

        .nav-btn {
          width: 3.6rem;
          height: 3.6rem;
          transform: translateY(-4.5rem);

          img {
            width: 1.2rem;
            height: 1rem;
          }
        }

        .swiper-button-prev {
          left: 0.5rem;
        }

        .swiper-button-next {
          right: 0.5rem;
        }
      }
    }

    .example-more {
      text-align: center;

      .more-btn {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        border-radius: 1rem;
        padding-right: 3.4rem;
        width: 48rem;
        height: 9.6rem;
        color: #FFF;
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 1.6;
        letter-spacing: 0.05em;
        background-color: #000;
      }

      .more-btn-icon {
        position: absolute;
        right: 3.4rem;
        width: 1.2em;
        height: 1rem;
      }

      @media screen and (max-width: 767px) {
        .more-btn {
          width: calc(100% - 5rem);
          height: 4.8rem;
          font-size: 1.6rem;
        }
      }
    }
  }

  .reason {
    background-color: var(--bg-color-beige);

    .reason-title {
      margin-bottom: 10rem;

      @media screen and (max-width: 767px) {
        margin-bottom: 4rem;
      }
    }

    .reason-body {
      display: flex;
      justify-content: space-between;
      width: 100%;

      .reason-card {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 38rem;
        height: 49rem;

        .card-tag {
          position: absolute;
          left: 0;
          right: 0;
          top: -4.8rem;
          margin: 0 auto;
          border-radius: 50%;
          padding-top: 2rem;
          width: 9.6rem;
          height: 9.6rem;
          text-align: center;
          color: #FFF;
          font-family: 'Inter', sans-serif;
          font-size: 3.2rem;
          font-weight: 700;
          background-color: #F2724C;
          z-index: 1;
        }

        .card-body {
          z-index: 2;
        }

        .card-title {
          border-radius: 2rem 2rem 0 0;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          height: 8.7rem;
          color: #FFF;
          font-size: 3rem;
          font-weight: 800;
          background-color: #F2724C;
        }

        .card-desc {
          padding-top: 2.4rem;
          font-size: 1.8rem;
          font-weight: 600;
          line-height: 1.6;
        }
      }

      @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 4.4rem;

        .reason-card {
          width: 100%;
          height: auto;

          .card-tag {
            top: -2.4rem;
            padding-top: 0.8rem;
            width: 4.8rem;
            height: 4.8rem;
            font-size: 1.6rem;
          }

          .card-title {
            border-radius: 1.2rem 1.2rem 0 0;
            height: 4.8rem;
            font-size: 2rem;
          }

          .card-desc {
            padding-top: 1.6rem;
            font-size: 1.4rem;
          }
        }
      }
    }
  }

  #cover-area {
    padding: 8rem 0;

    @media screen and (max-width: 767px) {
      padding: 8rem 0 4rem;
    }
  }

  .cover-area {
    background-color: var(--bg-color-aqua);

    .area-body {
      width: 121.5rem;
      position: relative;
      display: flex;
      justify-content: center;

      .area-tag {
        position: absolute;
        left: -3.5rem;
        top: -4rem;
        width: 21.8rem;
        height: 17.7rem;
        z-index: 1;
      }

      .area-map {
        flex: 0 0 63rem;
        z-index: 0;
      }

      .area-info {
        flex: 0 1 100%;
        padding: 6rem 0.4rem 0 6.8rem;
        background-color: #fff;
        z-index: 0;

        .area-title {
          margin-bottom: 2rem;
          font-size: 2.8rem;
          font-weight: 700;
        }

        .area-title::before {
          content: "";
          display: inline-block;
          margin-right: 1.4rem;
          border-radius: 0.4rem;
          width: 0.8rem;
          height: 3.2rem;
          background-color: #F2724C;
          transform: translateY(0.5rem);
        }

        .area-title::after {
          content: "";
          display: block;
          margin-top: 1.8rem;
          width: 100%;
          height: 1px;
          background-color: #D9D9D9;
          margin-bottom: 2rem;
        }

        .area-list {
          margin-bottom: 2.4rem;
          font-size: 2.4rem;
          font-weight: 500;
          line-height: 1.6;

          .list-item::before {
            content: "●";
            margin-right: 1rem;
            color: #F2724C;
          }
        }

        .area-note {
          font-size: 1.6rem;
          font-weight: 400;
          line-height: 1.6;
        }
      }
    }

    @media screen and (max-width: 767px) {
      .area-body {
        flex-direction: column;
        width: calc(100% - 3rem);

        .area-tag {
          left: -1rem;
          top: -6.5rem;
          width: 14.5rem;
          height: 11.5rem;
        }

        .area-map {
          flex: 0 0 100%;
        }

        .area-info {
          padding: 4rem 2rem;

          .area-list {
            font-size: 1.8rem;
          }

          .area-note {
            font-size: 1.4rem;
          }
        }
      }
    }
  }

  .content {
    background-color: var(--bg-color-beige);

    .content-title {
      margin-bottom: 6rem;

      @media screen and (max-width: 767px) {
        margin-bottom: 4rem;
      }
    }

    .content-body {
      display: flex;
      justify-content: space-between;
      width: 100%;

      .content-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 38rem;
        height: 49rem;

        .card-title {
          border-radius: 2rem 2rem 0 0;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          height: 8.7rem;
          color: #FFF;
          font-size: 3.2rem;
          font-weight: 800;
          background-color: #4FBA2F;
        }

        .card-desc {
          padding-top: 2.4rem;
          font-size: 1.8rem;
          font-weight: 600;
          line-height: 1.6;
        }
      }

      @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 2rem;

        .content-card {
          width: 100%;
          height: auto;

          .card-title {
            border-radius: 1.2rem 1.2rem 0 0;
            height: 4.8rem;
            font-size: 2rem;
          }

          .card-desc {
            padding-top: 1.6rem;
            font-size: 1.4rem;
          }
        }
      }
    }
  }

  .overview {
    background-color: #F7DFC5;

    .overview-title {
      margin-bottom: 6rem;

      @media screen and (max-width: 767px) {
        margin-bottom: 4rem;
      }
    }

    .overview-body {
      display: flex;

      .overview-main {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 9.2rem 6rem;
        background-color: #fff;

        .field-title {
          margin-bottom: 0.8rem;
          font-size: 1.8rem;
          font-weight: 700;
          letter-spacing: 0.05em;
        }

        .field-desc {
          font-size: 1.6rem;
          font-weight: 400;
          line-height: 1.8;
          letter-spacing: 0.05em;
        }
      }

      .overview-img {
        width: 50%;
      }

      @media screen and (max-width: 767px) {
        flex-direction: column-reverse;

        .overview-main {
          width: 100%;
          padding: 4rem 2rem;
          gap: 2rem;

          .field-desc {
            font-size: 1.4rem;
          }
        }

        .overview-img {
          width: 100%;
        }
      }
    }
  }

  .access {
    background-color: var(--bg-color-aqua);

    .access-title {
      margin-bottom: 6rem;
    }

    .access-map {
      width: 100%;
      height: 64rem;
      margin-bottom: 2rem;

      * {
        width: 100%;
        height: 100%;
      }
    }

    .access-note {
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 1.8;
      letter-spacing: 0.05em;
    }

    @media screen and (max-width: 767px) {
      .access-title {
        margin-bottom: 4rem;
      }

      .access-map {
        height: 50rem;
      }

      .access-note {
        font-size: 1.4rem;
      }
    }
  }
}