/* サンクスページの全体スタイル */
body {
    background-color: #f5f5f5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 40px 20px;
}

/* ヘッダー（タイトル） */
h2.c-section-ttl {
    font-size: 2rem;
    color: #7e0000;
    /* 緑色調 */
    text-align: center;
    margin-bottom: 30px;
}

/* コンテナの中央揃えと整列 */
.container.u-ta-c {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* メッセージのスタイル */
p.u-mb-2rem {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* フッターのスタイル */
footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* プライバシーポリシーリンク */
footer p.footer a {
    color: #7e0000;
    text-decoration: none;
}

footer p.footer a:hover {
    text-decoration: underline;
}

/* 全体のレスポンシブ調整 */
@media (max-width: 600px) {
    h2.c-section-ttl {
        font-size: 1.5rem;
    }

    p.u-mb-2rem {
        font-size: 1rem;
    }
}

.top_logo {
    max-width: 387px;
    width: 100%;
    padding-right: 10px;
}

.back-to-home {
    display: block;
    margin: 30px auto;
    /* 中央寄せにする */
    padding: 12px 24px;
    background-color: #7e0000;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.back-to-home:hover {
    background-color: #7e0000;
    /* 少し濃い緑に変更 */
}

.follow {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 2px solid var(--white-color);
  z-index: 99999;
  background-color: var(--black-color);
}
@media screen and (min-width: 1100px) {
  .follow {
    position: fixed;
    padding: 10px;
    bottom: 0;
  }
}

.follow_wrap {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (min-width: 1100px) {
  .follow_wrap {
    display: grid;
    grid-template-columns: 480px 600px;
    grid-gap: 20px;
    align-items: center;
  }
}

.follow_top {
  background: var(--black-color);
  color: var(--white-color);
  font-size: 15px;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.1;
  padding: 5px;
}
@media screen and (min-width: 1100px) {
  .follow_top {
    font-size: 20px;
    text-align: right;
    font-size: 30px;
  }
}

.follow_btn {
  display: grid;
  grid-template-columns: 103fr 81fr;
  background: var(--yellow-color1);
  grid-gap: 10px;
  padding: 5px 5px 10px 5px;
  justify-content: center;
  max-width: 600px;
  margin-inline: auto;
}
.follow_btn li a {
  position: relative;
  display: block;
}
@media screen and (min-width: 1100px) {
  .follow_btn {
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
  }
}

.follow_time {
  position: absolute;
  display: block;
  top: 2px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 450px) and (max-width: 550px) {
  .follow_time {
    font-size: 15px;
    top: 3px;
  }
}
@media screen and (min-width: 551px) {
  .follow_time {
    font-size: 18px;
    top: 5px;
  }
}

.area {
  background-color: #e1ebf2;
  width: 100%;
  padding: 20px 15px;
  margin-top: 50px;
}
@media screen and (min-width: 1100px) {
  .area {
    padding: 50px 10px;
    margin-top: 0;
  }
}
.area dl {
  max-width: 1100px;
  margin-inline: auto;
}
.area dl dt {
  font-size: 24px;
}
.area dl dd {
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */

@charset "UTF-8";
/* @charset "UTF-8"; */
/* レスポ  基本スマホ*/
/*
    @include mq(sm) {
        color: yellow;
    }

    @include mq(lg) {
        color: red;
    }
/*

/* 基本カラー */
:root {
  --red-color: #e00000;
  --black-color: #000;
  --white-color: #fff;
  --yellow-color1: #f8e700;
  --yellow-color2: #f8cf00;
  --green-color: #00b900;
  --blue-color: #0400ec;
}

/* Regular (標準) */
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url("font/NotoSansJP-Medium.woff2") format("woff2");
  font-weight: Medium;
  font-style: normal;
  font-display: swap;
}
/* Bold (太字) */
@font-face {
  font-family: "NotoSansJP-Bold";
  /* ↓ 太字用WOFF2ファイルのパスを指定 */
  src: url("font/NotoSansJP-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* 数字 */
@font-face {
  font-family: "InterBold";
  src: url("font/Inter_Bold_full.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "NotoSansJP-Medium", sans-serif;
  letter-spacing: -0.76px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

body {
  font-size: 21px;
  line-height: 1.5;
  color: var(--black-color);
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 33px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  letter-spacing: -2px;
}

.bold {
  font-family: "NotoSansJP-Bold", sans-serif;
}

.inter {
  font-family: "InterBold", "NotoSansJP-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
}

.fc_yellow1 {
  color: var(--yellow-color1);
}

.fc_red {
  color: var(--red-color);
}

.fc_blue {
  color: var(--blue-color);
}

.fs_60per {
  font-size: 60%;
}

.fs_80per {
  font-size: 80%;
}

.fs_130per {
  font-size: 130%;
}

img {
  vertical-align: bottom;
}

.pd {
  padding-left: 15px;
  padding-right: 15px;
  margin-inline: auto;
}

.footer {
    font-size: 15px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: underline;
}

.footer:hover {
    color: orange;
}

.ta_c {
  text-align: center;
}

.border_y {
  position: relative;
  display: inline-block;
}

.border_y::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 10px;
  background: var(--yellow-color2);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .border_y::after {
    bottom: 10px;
  }
}

.mt_s {
  margin-top: 10px;
}

.mb_m {
  margin-bottom: 20px;
}

.pc_only {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc_only {
    display: block;
  }
}

.sp_only {
  display: block;
}
@media screen and (min-width: 1100px) {
  .sp_only {
    display: none;
  }
}