@charset "UTF-8";
@layer resets {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :where([hidden]:not([hidden=until-found])) {
    display: none !important;
  }
  :target {
    scroll-margin-top: 6em;
  }
  :where(html) {
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    color-scheme: dark light;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    tab-size: 2;
    scrollbar-gutter: stable;
    interpolate-size: allow-keywords;
    line-height: 1.5;
    scroll-margin-top: 3em;
    scroll-behavior: smooth;
    min-width: 320px;
  }
  :where(html:has(dialog:modal[open])) {
    overflow: clip;
  }
  :where(body) {
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
  }
  :where(section) {
    position: relative;
    overflow-x: hidden;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    background-color: #fff;
  }
  :where(button) {
    all: unset;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role=button], [role=option]) {
    cursor: pointer;
  }
  :where(:disabled, label:has(> :disabled, + disabled)) {
    cursor: not-allowed;
  }
  :where(a) {
    color: inherit;
    text-underline-offset: 0.2ex;
    text-decoration: none;
  }
  :where(ul, ol) {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  :where(blockquote, q) {
    quotes: none;
  }
  :where(blockquote:before, blockquote:after, q:before, q:after) {
    content: "";
    content: none;
  }
  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }
  :where(img, picture, svg, video) {
    max-inline-size: 100%;
    block-size: auto;
    display: block;
    vertical-align: middle;
  }
  :where(dialog, [popover]) {
    border: none;
    background: none;
    color: inherit;
    inset: unset;
    max-width: unset;
    max-height: unset;
    overflow: unset;
  }
  :where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
    display: none !important;
  }
  :where(:focus-visible) {
    outline: 3px solid CanvasText;
    box-shadow: 0 0 0 5px Canvas;
    outline-offset: 1px;
  }
  :where(.visually-hidden:not(:focus-within, :active)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  :where(fieldset, legend) {
    display: block;
    float: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
  }
  :where(a) {
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
    display: inline-block;
  }
  :where(a):active {
    transform: scale(0.95);
  }
  :where(a):hover {
    opacity: 0.6;
  }
}
@layer setting {
  :root {
    /* フォント関連 */
    --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    --font-min: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --font-en: "Jost", sans-serif;
    --font-begas: "Bebas Neue", cursive;
    /* レイアウト */
    --font-base: 16px;
    --container-width: 900px;
    --container-width-p: 94%;
    --section-padding: 2em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 9px;
    --font-size-mid: calc(var(--font-base) / var(--container-width) * 100vw);
    --font-size-max: 16px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-mid: calc((var(--font-base) / var(--container-width) * 100vw) * 1.1);
    }
  }
}
@layer layouts {
  :where(body) {
    font-family: var(--font-jp);
    font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    color: #231815;
    background-color: #fff;
    font-weight: 400;
  }
  :where(body).active {
    overflow: hidden;
  }
  .pink {
    margin-top: -0.8em;
    font-size: 1.3em;
    font-weight: 600;
    color: #d31176;
    text-indent: -1em;
    padding-left: 1em;
  }
  @media screen and (max-width: 768px) {
    .pink {
      margin-top: 0.7em;
      font-size: 1.27em;
    }
  }
  /* アコーディオン */
  :where(.accordion-area) {
    list-style: none;
    width: 100%;
    margin: 0 auto;
  }
  :where(.accordion-area) li {
    background-color: #fff;
    border-radius: 0.8em;
  }
  :where(.accordion-area) li + li {
    margin-top: 2em;
  }
  :where(.accordion-area) :where(.title) {
    position: relative;
    transition: all 0.5s ease;
    margin: 0;
    background-color: #c30d23;
    color: #fff;
  }
  :where(.accordion-area) :where(.title):before {
    display: block;
    position: absolute;
    content: "";
    width: 1.9rem;
    height: auto;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(50%, -50%);
    top: 50%;
    right: calc(0.95rem + 3%);
  }
  :where(.accordion-area) :where(.title):after {
    display: block;
    position: absolute;
    content: "";
    left: 0.75em;
    top: 1.48em;
    width: 1.4em;
    aspect-ratio: 1/1;
    height: auto;
    transform: translateY(-50%);
    background: url("../img/q.webp") no-repeat center/contain;
  }
  :where(.accordion-area) :where(.title) :where(span) {
    cursor: pointer;
    display: inline-block;
    padding: 0.7em 0;
    width: 100%;
    position: relative;
    letter-spacing: 0.1em;
    font-weight: 700;
    width: 100%;
    padding-right: calc(1.9rem + 3%);
    padding-left: 3.2rem;
  }
  :where(.accordion-area) :where(.title) :where(span):before, :where(.accordion-area) :where(.title) :where(span):after {
    content: "";
    height: 3px;
    width: 1.4rem;
    display: block;
    position: absolute;
    right: calc(0.95rem + 3%);
    top: 0.15em;
    bottom: 0;
    margin: auto;
    background-size: 90%;
    background-position: center;
    transition: 0.3s;
    background-color: #FC0C79;
    transform: translate(50%, -50%) rotate(0deg);
  }
  :where(.accordion-area) :where(.title) :where(span):before {
    transform: translate(50%, -50%) rotate(-90deg);
  }
  :where(.accordion-area) .title.close span::before {
    transform: translate(50%, -50%) rotate(0deg);
  }
  :where(.accordion-area) .abox {
    display: none;
    font-size: 1.1em;
    background: url("../img/dot.webp") no-repeat bottom/100% auto;
    padding: 1em 0 2.5em 3.2rem;
    font-weight: 700;
    position: relative;
    color: #282828;
    font-size: 1.15em;
    letter-spacing: 0.05em;
  }
  :where(.accordion-area) .abox:after {
    display: block;
    position: absolute;
    content: "";
    left: 0.75em;
    top: 1.7em;
    width: 1.4em;
    aspect-ratio: 1/1;
    height: auto;
    transform: translateY(-50%);
    background: url("../img/a.webp") no-repeat center/contain;
  }
  :where(.frame) {
    width: var(--container-width-p);
    max-width: var(--container-width);
    margin-inline: auto;
    position: relative;
  }
  :where(.flex) {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
@layer modules {
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 999px;
  }
  ::-webkit-scrollbar-thumb {
    background: #f29600;
    border-radius: 999px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #e08600;
  }
  h2 {
    margin: 3.5em auto;
    width: 54%;
    max-width: 300px;
  }
  @media screen and (max-width: 768px) {
    h2 {
      margin: 2.5em auto;
    }
  }
  .indent {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
  }
  header {
    background-color: #fff;
  }
  header h1 {
    padding-top: 1%;
    margin-inline: auto;
    width: 75%;
    max-width: 390px;
  }
  header h1 a {
    display: block;
  }
  header h1 a:hover {
    opacity: 1;
  }
  header h1 a:active {
    transform: scale(0.95);
  }
  header .bg {
    background-color: #fff77f;
    padding: 1.5em 0;
  }
  header .bg ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  header .bg ul li {
    width: 30%;
  }
  @media screen and (max-width: 768px) {
    header .bg ul li {
      width: 32%;
    }
  }
  header .bg ul li a {
    display: block;
    height: 100%;
    background-color: #009944;
    color: #fff;
    padding: 1.3em 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }
  @media screen and (max-width: 768px) {
    header .bg ul li a {
      padding: 0.7em 0.2em;
    }
  }
  header .bg ul li figure {
    width: 15%;
    margin-right: 3%;
  }
  @media screen and (max-width: 768px) {
    header .bg ul li figure {
      width: 22%;
      margin-right: 0.5em;
    }
  }
  header .bg ul li p {
    text-align: center;
    font-size: 1.2em;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  header .bg ul li span {
    display: block;
    font-size: 0.8em;
  }
  @media screen and (max-width: 768px) {
    header .bg ul li span {
      display: none;
    }
  }
  .green {
    text-align: center;
    font-size: 2em;
    letter-spacing: 0.06em;
    margin: 4em auto 3em;
    color: #009844;
    font-weight: 800;
  }
  @media screen and (max-width: 768px) {
    .green {
      margin: 2em auto;
    }
  }
  #kv {
    background-color: #fff77f;
  }
  #kv .frame {
    padding: 0 4%;
  }
  @media screen and (max-width: 768px) {
    #kv .frame {
      padding: 0;
    }
  }
  #kv h2 {
    max-width: 103%;
    width: 103%;
    margin: 0.5em 0 2em -3%;
  }
  @media screen and (max-width: 768px) {
    #kv h2 {
      margin: 0 auto 1em;
      width: 100%;
    }
  }
  #kv .links {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding-left: 1.7%;
    padding-bottom: 2em;
  }
  #kv .links a {
    width: 47%;
    margin-bottom: 4%;
    background-color: #fff;
    text-align: center;
    padding: 5% 8%;
    background-color: #fff;
    box-shadow: 0.2em 0.3em 0.6em rgba(114, 83, 55, 0.7);
  }
  #kv .links a:hover {
    box-shadow: 0em 0em 0.3em rgba(114, 83, 55, 0.2);
    opacity: 1;
  }
  .info p {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0;
    font-size: 0.9em;
  }
  .info2 {
    font-size: 1.1em;
    font-weight: 700;
    margin: 2em 0 0;
  }
  .info3 {
    text-align: right;
    margin-top: 0.5em;
    font-size: 0.9em;
  }
  @media screen and (max-width: 768px) {
    .info3 {
      text-align: left;
      font-size: 1em;
    }
  }
  #sec1 {
    padding-bottom: 25%;
    background: url("../img/sec1_img2.webp") no-repeat top center/100% auto, url("../img/sec1_img19.webp") no-repeat bottom center/100% auto;
  }
  @media screen and (max-width: 768px) {
    #sec1 {
      padding-bottom: 30%;
    }
  }
  #sec1 h2 {
    margin: 7em auto 9em;
  }
  @media screen and (max-width: 768px) {
    #sec1 h2 {
      margin: 3.5em auto;
    }
  }
  #sec1 h3 {
    width: 88%;
    margin-inline: auto;
    margin-bottom: 4.5em;
  }
  @media screen and (max-width: 768px) {
    #sec1 h3 {
      margin-bottom: 1.8em;
      width: 94%;
    }
  }
  #sec1 .box {
    position: relative;
  }
  #sec1 .box + .box {
    margin-top: 11em;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box + .box {
      margin-top: 5em;
    }
  }
  #sec1 .box .sec1_ab1,
  #sec1 .box .sec1_ab2 {
    display: block;
    position: absolute;
    z-index: 2;
    width: 8.8%;
    height: auto;
    top: calc(4em + 55%);
  }
  #sec1 .box .sec1_ab1 {
    left: 0;
    transform: translate(-50%, -50%);
  }
  @media screen and (max-width: 768px) {
    #sec1 .box .sec1_ab1 {
      position: static;
      transform: none;
      width: 50%;
      margin: 2em auto 0;
    }
  }
  #sec1 .box .sec1_ab2 {
    right: 0;
    transform: translate(50%, -50%);
  }
  @media screen and (max-width: 768px) {
    #sec1 .box .sec1_ab2 {
      display: none;
    }
  }
  #sec1 .box p.sub {
    position: relative;
    z-index: 3;
    text-align: center;
    font-weight: 800;
    font-size: 1.45em;
    letter-spacing: 0.15em;
    line-height: 2.4;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box p.sub {
      letter-spacing: 0.02em;
    }
  }
  #sec1 .box table {
    width: 100%;
    margin: 0.7em 0;
    font-weight: 800;
    font-size: 1.5em;
    letter-spacing: 0.01em;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box table {
      font-size: 1.3em;
      letter-spacing: 0;
    }
  }
  #sec1 .box table th,
  #sec1 .box table td {
    width: 20%;
    border: 1px solid #736c6a;
    line-height: 1.2;
    height: 4rem;
    padding: 0 0.8em;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box table th,
    #sec1 .box table td {
      padding: 0 0.1em;
      width: 21%;
      height: 2.5rem;
    }
    #sec1 .box table th:nth-child(1),
    #sec1 .box table td:nth-child(1) {
      width: 16%;
    }
    #sec1 .box table th span,
    #sec1 .box table td span {
      display: none;
    }
  }
  #sec1 .box table th {
    text-align: center;
  }
  #sec1 .box table td {
    text-align: right;
  }
  #sec1 .box table thead {
    font-size: 0.86em;
  }
  #sec1 .box table thead:nth-child(n+2) {
    background-color: #fff5c0;
  }
  #sec1 .box table .red {
    font-size: 1.15em;
    color: #e60012;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box table .red {
      font-size: 1.05em;
    }
  }
  #sec1 .box table img {
    display: inline-block;
    width: 90%;
    max-width: 110px;
  }
  #sec1 .box .btns {
    margin: 4em auto 0;
    width: 65%;
    max-width: 450px;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box .btns {
      width: 100%;
    }
  }
  #sec1 .box .btns p {
    text-align: center;
    font-size: 1.4em;
    font-weight: 800;
    margin: 0 0 2em;
  }
  #sec1 .box .btns a {
    display: block;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box .btns a {
      width: 65%;
      margin-inline: auto;
    }
  }
  #sec1 .box .btns a + a {
    margin-top: 1.2em;
  }
  #sec1 .box:nth-child(3) h3 {
    margin-bottom: 1.5em;
  }
  #sec1 .box:nth-child(4) .info {
    font-size: 0.75em;
    padding-left: 0.5em;
  }
  #sec1 .box:nth-child(4) .info p {
    font-weight: 400;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box:nth-child(4) .info {
      font-size: 1.2em;
    }
  }
  #sec1 .box:nth-child(4) figure {
    margin: 4em auto 12em;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box:nth-child(4) figure {
      margin: 4em auto;
    }
  }
  #sec1 .box:nth-child(4) .flex {
    align-items: center;
    color: #4c4948;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box:nth-child(4) .flex {
      margin-bottom: 1.5em;
    }
  }
  #sec1 .box:nth-child(4) .flex p {
    font-size: 1.7em;
    line-height: 2;
    font-weight: 800;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box:nth-child(4) .flex p {
      font-size: 1.3em;
      line-height: 1.6;
    }
  }
  #sec1 .box:nth-child(4) .flex p.right {
    text-align: right;
    padding-right: 12%;
  }
  #sec1 .box:nth-child(4) .flex .txt {
    width: 70%;
  }
  #sec1 .box:nth-child(4) .flex .img {
    width: 30%;
  }
  #sec1 .box:nth-child(5) p, #sec1 .box:nth-child(6) p, #sec1 .box:nth-child(7) p {
    font-size: 1.55em;
    color: #4c4948;
    font-weight: 800;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  #sec1 .box:nth-child(6) .img {
    width: 25%;
  }
  @media screen and (max-width: 768px) {
    #sec1 .box:nth-child(6) .flex {
      flex-direction: column;
      align-items: center;
    }
    #sec1 .box:nth-child(6) .flex .txt {
      width: 100%;
      margin-bottom: 1em;
    }
  }
  #sec1 .box:nth-child(7) {
    text-align: center;
  }
  #sec1 .box:nth-child(7) figure {
    margin: 0 auto 3em;
    width: 50%;
  }
  @media screen and (max-width: 768px) {
    #sec1 {
      background: url("../img/sec1_img2_sp.webp") no-repeat top center/100% auto, url("../img/sec1_img19_sp.webp") no-repeat bottom center/100% auto;
    }
  }
  .table_type1 {
    width: 100%;
    margin-top: 0.5em;
  }
  .table_type1 th,
  .table_type1 td {
    background-color: #e5e5e6;
    height: 2em;
    font-size: 1.5em;
    text-align: center;
    border: 1px solid #231815;
    font-weight: 600;
  }
  .table_type1 thead tr th:nth-child(3), .table_type1 thead tr th:nth-child(4), .table_type1 thead tr th:nth-child(5) {
    width: 20%;
  }
  .table_type1 tbody tr:nth-child(odd) th,
  .table_type1 tbody tr:nth-child(odd) td {
    background-color: #fff;
  }
  @media screen and (max-width: 768px) {
    .scroll {
      overflow-x: scroll;
      padding: 0 0 0.5em;
    }
    .scroll .table_type1 {
      width: 140%;
    }
  }
  .class-price {
    color: #231815;
  }
  .class-price .box {
    margin-bottom: 5em;
  }
  .class-price .box .flex {
    align-items: center;
  }
  .class-price .box .txt {
    width: 60%;
  }
  .class-price .box .txt p {
    padding: 0 0 0 7%;
    margin: 1em 0;
    font-size: 1.7em;
    letter-spacing: 0.04em;
    font-weight: 800;
  }
  @media screen and (max-width: 768px) {
    .class-price .box .txt {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .class-price .box .txt h3 {
      width: 85%;
      margin-bottom: 0.5rem;
    }
    .class-price .box .txt p {
      width: 55%;
      font-size: 1.6em;
    }
    .class-price .box .txt > img {
      width: 44%;
      height: auto;
    }
  }
  .class-price .box .img {
    width: 40%;
  }
  @media screen and (max-width: 768px) {
    .class-price .box .img {
      display: none;
    }
  }
  #sec2 {
    background-color: rgba(255, 151, 46, 0.23);
    padding-bottom: 5em;
  }
  #sec3 {
    background-color: #c4e7d4;
  }
  #sec3 ::-webkit-scrollbar-thumb {
    background: #009844;
    border-radius: 999px;
  }
  #sec3 ::-webkit-scrollbar-thumb:hover {
    background: #009844;
  }
  #sec4 {
    background-color: #fff77f;
    padding-bottom: 4em;
  }
  #sec4 h2 {
    margin-bottom: 1.2em;
  }
  #sec4 .ad {
    position: absolute;
    right: 0;
    top: 0.6rem;
    font-weight: 600;
    font-size: 0.9em;
  }
  #sec4 h2 + p {
    font-size: 1.45em;
    color: #4c4948;
    font-weight: 800;
    line-height: 2;
    letter-spacing: 0.02em;
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    #sec4 h2 + p {
      margin-bottom: 3em;
      font-size: 1.55em;
    }
  }
  #sec4 .box {
    margin-top: 2em;
    background-color: #fff;
    padding: 1.2em 0;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    #sec4 .box {
      padding: 10% 0 4%;
      margin-top: 4em;
    }
  }
  #sec4 .box .flex {
    margin-left: -1em;
    width: calc(100% + 1em);
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    #sec4 .box .flex {
      margin: 0 auto;
      width: 90%;
    }
  }
  #sec4 .box .flex h3 {
    width: 48%;
  }
  @media screen and (max-width: 768px) {
    #sec4 .box .flex h3 {
      position: absolute;
      transform: translateY(-50%);
      top: 0;
      left: -2%;
      width: 68%;
    }
  }
  #sec4 .box .flex .green {
    width: 48%;
    text-align: left;
    margin: 0;
    font-size: 1.3em;
  }
  @media screen and (max-width: 768px) {
    #sec4 .box .flex .green {
      width: 100%;
      font-size: 1.65em;
    }
  }
  #sec4 .box .txt1,
  #sec4 .box .txt2,
  #sec4 .box figure,
  #sec4 .box .right_img {
    margin-inline: auto;
    width: 90%;
  }
  #sec4 .box .txt1 span {
    background-color: #fff000;
  }
  #sec4 .box .txt1,
  #sec4 .box .txt2 {
    font-size: 1.4em;
    font-weight: 800;
    line-height: 2;
    letter-spacing: 0.02em;
    margin-top: 1em;
  }
  @media screen and (max-width: 768px) {
    #sec4 .box .txt1,
    #sec4 .box .txt2 {
      font-size: 1.3em;
    }
  }
  #sec4 .box figure:not(.right_img) {
    padding-left: 40%;
  }
  @media screen and (max-width: 768px) {
    #sec4 .box figure:not(.right_img) {
      padding: 0;
      width: 65%;
      margin: 1.2em auto 0;
    }
  }
  #sec4 .box .right_img {
    padding-left: 20%;
  }
  @media screen and (max-width: 768px) {
    #sec4 .box .right_img {
      padding: 0;
      margin-top: 2em;
      width: 80%;
      margin-inline: auto;
    }
  }
  #sec5 {
    padding: 5em 0;
  }
  @media screen and (max-width: 768px) {
    #sec5 {
      padding: 2em 0;
    }
  }
  #sec5 .flex {
    align-items: stretch;
  }
  @media screen and (max-width: 768px) {
    #sec5 .flex {
      flex-direction: column-reverse;
    }
  }
  #sec5 .map {
    width: 49%;
  }
  #sec5 .map iframe {
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 768px) {
    #sec5 .map {
      width: 100%;
      aspect-ratio: 6/4;
      margin-top: 2em;
    }
  }
  #sec5 .txt {
    width: 49%;
    text-align: center;
  }
  #sec5 .txt figure {
    margin: 0 auto 3em;
    width: 81%;
  }
  @media screen and (max-width: 768px) {
    #sec5 .txt figure {
      width: 70%;
    }
  }
  #sec5 .txt p {
    font-size: 0.95em;
  }
  @media screen and (max-width: 768px) {
    #sec5 .txt p {
      font-size: 1.1em;
    }
  }
  #sec5 .txt .green {
    margin: 0.2em auto 0;
    font-weight: 800;
    font-size: 1.2em;
    padding-bottom: 1em;
  }
  @media screen and (max-width: 768px) {
    #sec5 .txt {
      width: 100%;
    }
  }
  #sticky-target.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 0.5em 1em rgba(82, 81, 78, 0.2);
  }
  #contact {
    background-color: #fff77f;
    padding-bottom: 1em;
  }
  #contact .contact-form {
    width: 90%;
    margin: 3em auto;
  }
  #contact .form-group {
    margin-bottom: 2em;
  }
  #contact .label {
    font-weight: bold;
    margin-bottom: 0.5em;
    display: block;
    font-size: 1.2em;
  }
  #contact .required {
    color: red;
    font-size: 0.9em;
  }
  #contact .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 2em;
    margin-top: 2em;
  }
  #contact .radio-group .radio {
    display: flex;
    align-items: center;
    gap: 0.6em;
    cursor: pointer;
    position: relative;
    padding-left: 2em;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 768px) {
    #contact .radio-group .radio {
      width: 46%;
      padding: 0.6em 0 0.6em 2em;
    }
  }
  #contact .radio-group .radio input {
    position: absolute;
    opacity: 0;
  }
  #contact .radio-group .radio input + .text::before {
    content: "";
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    background-color: #fff;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    flex-shrink: 0;
    top: 50%;
    left: 0.5rem;
  }
  #contact .radio-group .radio input:checked ~ .text::after {
    content: "";
    width: 0.6em;
    height: 0.6em;
    transform: translate(-50%, -50%);
    background: #f39800;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0.5rem;
  }
  #contact .checkbox-group label {
    font-size: 1em;
  }
  #contact input[type=text],
  #contact input[type=email],
  #contact input[type=tel],
  #contact textarea {
    width: 100%;
    padding: 0.8em;
    font-size: 1em;
    border: none;
    background-color: #fff;
  }
  #contact textarea {
    min-height: 8em;
    resize: vertical;
  }
  #contact .form-submit {
    text-align: center;
    margin-top: 3em;
  }
  #contact .form-submit + .form-submit {
    margin-top: 1em;
  }
  #contact .form-submit + .form-submit a {
    border: none;
    padding: 0.8em 0;
    cursor: pointer;
    max-width: 210px;
    width: 70%;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin-inline: auto;
    background-color: #4c4948;
    font-size: 1.3em;
  }
  #contact button,
  #contact input[type=submit],
  #contact input[type=button],
  #contact .sub {
    background-color: #f39800;
    border: none;
    padding: 0.8em 0;
    cursor: pointer;
    max-width: 210px;
    width: 70%;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin: 0.5em auto;
    font-size: 1.3em;
  }
  #contact button img,
  #contact input[type=submit] img,
  #contact input[type=button] img,
  #contact .sub img {
    display: inline-block;
    width: 24%;
  }
  #contact input[type=button] {
    background-color: #4c4948;
  }
  #contact button:hover {
    opacity: 0.85;
  }
  .mail_box {
    background-color: #fff;
    padding: 7%;
  }
  .mail_box h3 {
    text-align: center;
    letter-spacing: 0.04em;
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  .mail_box h3 + p {
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 800;
  }
  .formTable {
    width: 100%;
    margin: 1em auto 2em;
  }
  .formTable th,
  .formTable td {
    padding: 0.6em 0.2em;
    border: 1px solid #282828;
  }
  .formTable th {
    width: 11em;
    background-color: #e2e2e2;
  }
  .formTable td {
    padding: 0.6em 1em;
    font-weight: 600;
    font-size: 1.2em;
  }
}
footer {
  background-color: #fff000;
  text-align: center;
  padding: 1em 0;
}

@layer utilities {
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important;
    }
  }
  .sp {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    .sp {
      display: block !important;
    }
  }
}