@charset "UTF-8";
/* pc、spの非表示 */
body {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  width: 100%;
  position: relative;
  padding-top: 10rem;
}
@media (max-width: 767px) {
  body {
    padding-top: 8rem;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

/* ===========================
   ルート変数（位置・サイズ）
=========================== */
:root {
  /* === 固定4枚 === */
  --fv-img-01: 26.9230769231vw;
  --fv-img-01-top: 5%;
  --fv-img-01-left: 3%;
  --fv-img-02: 30.7692307692vw;
  --fv-img-02-top: 60%;
  --fv-img-02-left: 8%;
  --fv-img-03: 30.7692307692vw;
  --fv-img-03-top: 10%;
  --fv-img-03-left: 52%;
  --fv-img-04: 28.4615384615vw;
  --fv-img-04-top: 60%;
  --fv-img-04-left: 63%;
  /* === 自動配置対象（5〜10） === */
  --fv-img-05: 38.4615384615vw;
  --fv-img-05-top: 5%;
  --fv-img-06: 38.4615384615vw;
  --fv-img-06-top: 50%;
  --fv-img-07: 30.7692307692vw;
  --fv-img-07-top: 5%;
  --fv-img-08: 42.3076923077vw;
  --fv-img-08-top: 50%;
  --fv-img-09: 26.9230769231vw;
  --fv-img-09-top: 10%;
  --fv-img-10: 34.6153846154vw;
  --fv-img-10-top: 50%;
}

/* -----------------
   SP用（調整済）
----------------- */
@media (max-width: 767px) {
  :root {
    --fv-img-01: 30rem;
    --fv-img-01-top: 10%;
    --fv-img-01-left: 5%;
    --fv-img-02: 35rem;
    --fv-img-02-top: 60%;
    --fv-img-02-left: 55%;
    --fv-img-03: 40rem;
    --fv-img-03-top: 15%;
    --fv-img-03-left: 5%;
    --fv-img-04: 40rem;
    --fv-img-04-top: 55%;
    --fv-img-04-left: 5%;
    --fv-img-05: 35rem;
    --fv-img-05-top: 5%;
    --fv-img-06: 35rem;
    --fv-img-06-top: 50%;
    --fv-img-07: 35rem;
    --fv-img-07-top: 5%;
    --fv-img-08: 35rem;
    --fv-img-08-top: 50%;
    --fv-img-09: 35rem;
    --fv-img-09-top: 10%;
    --fv-img-10: 35rem;
    --fv-img-10-top: 50%;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 10px;
}
@media (max-width: 1300px) and (min-width: 768px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: min(2.6666666667vw, 20px);
    scroll-padding-top: 3rem;
  }
}

/* pc、spの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
footer {
  background-color: #00AD9B;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-footer {
  padding-block: 7rem;
}
@media (max-width: 767px) {
  .l-footer {
    padding-block: 3rem;
  }
}

.l-footer-title {
  display: block;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}
.l-footer-title:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .l-footer-title {
    font-size: 1.8rem;
    text-align: left;
  }
}
.l-footer-title p {
  text-align: left;
}

.l-footer-title-span {
  font-size: 2.6rem;
}
@media (max-width: 767px) {
  .l-footer-title-span {
    font-size: 2rem;
  }
}

.l-footer-address {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .l-footer-address {
    font-size: max(1.2rem, 8px);
    text-align: left;
    margin-bottom: unset;
  }
}

.l-footer-tel {
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .l-footer-tel {
    font-size: max(1.2rem, 8px);
    text-align: left;
  }
}

/*
body:has(main.register),
body:has(main.privacy-policy) {
  .header__right,
  .c-lower-title-breadcrumbs,
  .p-contact-thanks-contents-btn02 {
    display: none !important;
  }
  .l-header-logo,
  .l-footer-title {
    display: inline-block !important;
    pointer-events: none !important;
  }
}
*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  transition: all 0.5s;
}

#header.hide {
  transform: translateY(-100%);
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4.3rem;
  padding-right: 3rem;
  height: 10rem;
  margin-inline: auto;
  background-color: #fff;
  max-width: 1440px;
}
@media (max-width: 767px) {
  .l-header {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    height: 8rem;
  }
}

.l-header-logo {
  transition: all 0.5s;
}
.l-header-logo:hover {
  opacity: 0.5;
}

.l-header-title {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .l-header-title {
    font-size: max(1.6rem, 10px);
    position: relative;
    z-index: 100000;
    pointer-events: none;
  }
}

.l-header-title-span {
  display: block;
  font-size: 2.4rem;
  margin-top: -0.5rem;
}
@media (max-width: 767px) {
  .l-header-title-span {
    font-size: 1.8rem;
    margin-top: -0.3rem;
  }
}

.header__right-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__right-nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .header__right-nav ul {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0rem;
    left: 120%;
    z-index: 10000;
    padding-top: 10rem;
    transition: all 0.5s;
    background-color: rgba(255, 255, 255, 0.95);
    height: 100dvh;
    /* ✅ 安全な動的ビューポート単位に変更 */
    overflow-y: auto;
    /* ✅ スクロール可能にする */
    -webkit-overflow-scrolling: touch;
    /* ✅ iOSスムーズスクロール */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
  }
}

@media (max-width: 767px) {
  .header__right-nav ul.active {
    left: 0;
    padding-left: 4rem;
  }
}

.l-header-arrow {
  width: 1rem;
  display: inline-block;
}
.l-header-arrow img {
  padding-bottom: 0.5rem;
}

.header__right-item {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05rem;
  padding-block: 3.1rem;
  padding-inline: 1rem;
  position: relative;
  transition: all 0.5s;
  white-space: nowrap;
}
.header__right-item:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .header__right-item {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    padding: 0;
    font-size: max(1.6rem, 10px);
    font-weight: 400;
    margin-bottom: 2rem;
  }
}

.header__right-btn {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media (max-width: 767px) {
  .header__right-btn {
    width: 29.5rem;
    margin-inline: auto;
    background-color: #00AD9B;
    color: #fff;
    border-radius: 0.25rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    margin-left: 0rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}

.l-header-tel-img {
  width: 2rem;
}
@media (max-width: 767px) {
  .l-header-tel-img {
    width: 3.6rem;
  }
}
.l-header-tel-img img {
  padding-top: 0.5rem;
}

.l-header-tel-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #00AD9B;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .l-header-tel-number {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 500;
  }
}

.l-header-tel-number-span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222222;
  text-align: left;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .l-header-tel-number-span {
    font-size: 1.4rem;
    color: #fff;
    margin-left: unset;
  }
}

@media (max-width: 767px) {
  .header__hb-btn-wrap {
    background-color: #00AD9B;
    width: 5rem;
    height: 5rem;
    border-radius: 0.25rem;
    position: relative;
  }
}

@media (max-width: 767px) {
  .header__hb-btn-wrap.active {
    background-color: #00AD9B;
    width: 5rem;
    height: 5rem;
    border-radius: 0.25rem;
    position: relative;
    z-index: 10002;
  }
}

.header__hb-btn {
  width: 3rem;
  height: 1rem;
  cursor: pointer;
}
.header__hb-btn span {
  display: block;
  width: 50%;
  height: 0.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
  z-index: 10002;
}

.header__hb-btn span:nth-of-type(1) {
  top: 1rem;
  background-color: #fff;
}

.header__hb-btn span:nth-of-type(2) {
  top: 2.2rem;
  background-color: #fff;
}

.header__hb-btn.active span:nth-of-type(1) {
  top: 1.5rem;
  left: 1rem;
  transform: rotate(30deg);
  background-color: #fff;
  position: relative;
  width: 100%;
}

.header__hb-btn.active span:nth-of-type(2) {
  top: 1.3rem;
  left: 1rem;
  transform: rotate(-30deg);
  background-color: #fff;
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .hb-menu {
    position: absolute;
    font-size: max(1.2rem, 8px);
    color: #fff;
    top: 2.8rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ドロップダウンメニューのスタイル */
.drop-menu {
  position: relative;
}

.drop-menu-list {
  display: none;
  pointer-events: none;
  position: absolute;
  top: 8rem;
  left: -5rem;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease;
  z-index: 1;
  border-radius: 1rem;
  padding-block: 1rem;
}
@media (max-width: 767px) {
  .drop-menu-list {
    display: none;
    position: relative;
    top: unset;
    left: unset;
    background-color: unset;
    opacity: 1;
    transform: none;
    visibility: visible;
  }
}

.drop-menu:hover .drop-menu-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  display: block;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .drop-menu:hover .drop-menu-list {
    visibility: visible;
    opacity: 1;
  }
}

.drop-menu-item {
  position: relative;
  padding: 1rem 2rem;
  transition: all 0.5s;
  width: 22rem;
  text-align: left;
}

/* 追加：事業案内リンクは透過させない（リンク無しの場合） */
.drop-menu > a[href=""] {
  pointer-events: none;
}

.drop-menu > a[href=""]:hover {
  opacity: 1 !important;
}

.width-change {
  width: 20rem;
}

.drop-menu-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 767px) {
  .drop-menu-item a {
    position: relative;
  }
}

.arrow-icon {
  width: 2.5rem;
  height: auto;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  visibility: hidden;
}

.drop-menu-item:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.drop-menu-item:hover {
  opacity: 0.5;
}

.drop-menu:not(:hover) .drop-menu-list {
  transition: opacity 0.1s ease, transform 0.1s ease;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  pointer-events: none;
  animation: hideMenu 0.3s forwards;
}

@keyframes hideMenu {
  0% {
    display: block;
  }
  100% {
    display: none;
  }
}
.fv {
  position: relative;
  overflow: hidden;
}

.fv-img-base {
  position: relative;
  z-index: 1;
}

.fv-slider {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* フェード・ループ管理用クラス */
}
.fv-slider img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: none;
}
.fv-slider img.fade-in-target {
  opacity: 0;
}
.fv-slider img.force-visible {
  opacity: 1 !important;
}
.fv-slider img.loop-target {
  opacity: 0;
}

/* =========================================
   テキスト（キャッチコピー）
========================================= */
.fv-head {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: left;
  display: inline-block;
}

.fv-text {
  display: inline-block;
  position: relative;
  font-size: 5.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.7;
  width: 73rem;
  margin-inline: auto;
  /* ドット下線のサイズ指定（SPも調整可） */
  --dot-d: 0.4rem;
  --gap: 2rem;
}
@media (max-width: 767px) {
  .fv-text {
    font-size: 2.4rem;
    width: 31rem;
    letter-spacing: 0.1em;
    --dot-d: 0.2rem;
    --gap: 0.5rem;
  }
}

/* =========================================
   各行と下線
========================================= */
/* 各行全体（JSで生成されるline-wrap） */
.fv-text .line-wrap {
  display: inline-block;
  position: relative;
}

/* 点線の設定と下線の自然なフェード */
.fv-text .underline {
  display: block;
  position: relative;
  width: 100%;
  height: var(--dot-d);
  /* ← 点の直径を高さにも反映 */
  margin-top: -2rem;
  background: radial-gradient(circle, currentColor 0 calc(var(--dot-d) / 2), transparent calc(var(--dot-d) / 2)) -0.7rem 50%/calc(var(--dot-d) + var(--gap)) var(--dot-d) repeat-x;
  opacity: 0;
  will-change: opacity;
}
@media (max-width: 767px) {
  .fv-text .underline {
    margin-top: -1rem;
    background: radial-gradient(circle, currentColor 0 calc(var(--dot-d) / 2), transparent calc(var(--dot-d) / 2)) -0.1rem 50%/calc(var(--dot-d) + var(--gap)) var(--dot-d) repeat-x;
  }
}

/* 文字クリップアニメに備えてオーバーフロー制御 */
.fv-text .line {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.p-top-news {
  padding-top: 5rem;
}
.p-top-news-bar {
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-news-bar {
    flex-direction: column;
    width: 34.5rem;
    margin-inline: auto;
  }
}

.p-top-news-info-label00 {
  font-size: 1.8rem;
  background-color: #00AD9B;
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-top-left-radius: 1.75rem;
  border-bottom-left-radius: 1.75rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-top-news-info-label00 {
    border-top-left-radius: 1.75rem;
    border-top-right-radius: 1.75rem;
    border-bottom-left-radius: unset;
    width: 34.5rem;
    margin-inline: auto;
    text-align: center;
  }
}

.p-top-news-info-box00 {
  display: flex;
  align-items: center;
  width: 80rem;
  border-top: 0.1rem solid #c7c7c7;
  border-bottom: 0.1rem solid #c7c7c7;
  padding-top: 1.5rem;
  padding-bottom: 1.6rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-top-news-info-box00 {
    flex-direction: column;
    align-items: flex-start;
    width: 34.5rem;
    border-top: unset;
    border-left: 0.1rem solid #c7c7c7;
    border-right: 0.1rem solid #c7c7c7;
    border-bottom-left-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
  }
}
.p-top-news-info-box00:hover {
  opacity: 0.5;
}
.p-top-news-info-box00.none {
  border-right: 0.1rem solid #c7c7c7;
  border-top-right-radius: 1.75rem;
  border-bottom-right-radius: 1.75rem;
}
.p-top-news-info-box00.none:hover {
  opacity: 1;
}

.p-top-news-info-date00 {
  padding: 0 2rem;
  color: #666;
  white-space: nowrap;
  min-width: 10rem;
  text-align: center;
}

.p-top-news-info-title00 {
  flex: 1;
  padding: 0 2rem;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-top-news-info-title00 {
    white-space: unset;
  }
}

.p-top-news-info-link00 {
  background-color: #eeeeee;
  padding-block: 1.7rem;
  padding-left: 3rem;
  padding-right: 2rem;
  border-top-right-radius: 1.75rem;
  border-bottom-right-radius: 1.75rem;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-top-news-info-link00 {
    font-size: 1.4rem;
    background-color: unset;
    padding-left: unset;
    padding-right: unset;
    margin-left: auto;
  }
}
.p-top-news-info-link00:hover {
  opacity: 0.5;
}

.p-top-news-info-arrow00 {
  width: 0.5rem;
}
.p-top-news-info-arrow00 img {
  padding-bottom: 0.7rem;
}

.p-top-news-flex {
  container-type: inline-size;
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .p-top-news-flex {
    flex-direction: column;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.p-top-news-flex-left,
.p-top-news-flex-right {
  width: calc(50cqw - 5rem);
  min-height: 42.96cqw;
}
@media (max-width: 767px) {
  .p-top-news-flex-left,
  .p-top-news-flex-right {
    width: 100%;
  }
}
.p-top-news-flex-left .none,
.p-top-news-flex-right .none {
  text-align: center;
}

.p-top-news-info-wrap {
  display: block;
  border-bottom: 0.1rem solid #c7c7c7;
  padding-bottom: 2rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-top-news-info-wrap {
    width: 34.5rem;
    margin-inline: auto;
  }
}
.p-top-news-info-wrap:first-child {
  border-top: 0.1rem solid #c7c7c7;
  padding-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-top-news-info-wrap:first-child {
    width: 34.5rem;
    margin-inline: auto;
  }
}
.p-top-news-info-wrap:hover {
  opacity: 0.5;
}

.p-top-register-banner {
  text-align: center;
  margin-top: 5rem;
}
.p-top-register-banner img {
  width: 40cqw;
  transition: opacity 0.5s;
}
@media (max-width: 767px) {
  .p-top-register-banner img {
    width: 34.5rem;
  }
}
.p-top-register-banner a:hover img {
  opacity: 0.5;
}

.p-top-news-flex-left-title,
.p-top-news-flex-right-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  margin-bottom: 7rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-news-flex-left-title,
  .p-top-news-flex-right-title {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }
}
.p-top-news-flex-left-title::after,
.p-top-news-flex-right-title::after {
  content: "";
  display: block;
  width: 8rem;
  height: 0.3rem;
  background-color: #00AD9B;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p-top-news-flex-left-title::after,
  .p-top-news-flex-right-title::after {
    width: 6rem;
  }
}

.p-top-news-info-box {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.6rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding-left: 1.5rem;
}
.p-top-news-info-date {
  font-size: 1.8rem;
  color: #666;
  white-space: nowrap;
  min-width: 8rem;
  text-align: center;
}

.p-top-news-flex-left-mark {
  font-weight: 500;
  background-color: #FFCBCC;
  color: #453333;
  border: 0.1rem solid #453333;
  border-radius: 5rem;
  text-align: center;
  padding-inline: 1rem;
  padding-block: 0.1rem;
}
@media (max-width: 767px) {
  .p-top-news-flex-left-mark {
    font-size: 1.3rem;
  }
}

.p-top-news-flex-right-mark {
  background-color: #B4E6FF;
  color: #453333;
  border: 0.1rem solid #453333;
  width: 10rem;
  border-radius: 5rem;
  text-align: center;
  padding-inline: 1rem;
  padding-block: 0.1rem;
}
@media (max-width: 767px) {
  .p-top-news-flex-right-mark {
    font-size: 1.3rem;
  }
}

.p-top-news-flex-left-text,
.p-top-news-flex-right-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 54rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .p-top-news-flex-left-text,
  .p-top-news-flex-right-text {
    width: 33.5rem;
  }
}
.p-top-news-flex-left-text p,
.p-top-news-flex-right-text p {
  width: 46rem;
}
@media (max-width: 767px) {
  .p-top-news-flex-left-text p,
  .p-top-news-flex-right-text p {
    width: 31rem;
  }
}

.p-top-news-info-arrow {
  display: block;
  width: 0.5rem;
}
.p-top-news-info-arrow img {
  padding-bottom: 0.5rem;
}

.p-top-news-flex-info-link {
  display: flex;
  justify-content: right;
  align-items: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-top: 5rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-top-news-flex-info-link {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-right: 1.5rem;
  }
}
.p-top-news-flex-info-link:hover {
  opacity: 0.5;
}

.p-top-news-flex-info-arrow {
  width: 0.5rem;
}
.p-top-news-flex-info-arrow img {
  padding-bottom: 0.7rem;
}

@media (max-width: 767px) {
  .p-top-news-flex-left {
    margin-bottom: 5rem;
  }
}

.p-top-news-flex-right {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-top-news-flex-right {
    margin-bottom: 0;
  }
}
.p-top-news-flex-right::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 8rem;
  width: 55rem;
  height: 55rem;
  background: url("../img-file/top/top-map-bg.webp") no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top-news-flex-right::before {
    width: 30rem;
    height: 30rem;
    /*      top: 30rem;*/
    top: unset;
    bottom: -4rem;
    left: 6rem;
  }
}

#p-top-info {
  background-color: #EDF6F5;
}

.p-top-info {
  padding-top: 8rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-top-info {
    padding-bottom: 10rem;
    padding-inline: 1.5rem;
  }
}

.p-top-info-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  margin-bottom: 7rem;
}
@media (max-width: 767px) {
  .p-top-info-title {
    font-size: 2.4rem;
  }
}
.p-top-info-title::after {
  content: "";
  display: block;
  width: 8rem;
  height: 0.3rem;
  background-color: #00AD9B;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-top-info-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-top-info-flex {
    flex-wrap: wrap;
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
    row-gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.p-top-info-flex-link {
  background-color: #fff;
  display: block;
  width: 24rem;
  position: relative;
  padding-bottom: 1.5rem;
  border-radius: 1rem;
  transition: all 0.5s;
}
.p-top-info-flex-link:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .p-top-info-flex-link {
    width: 16.8rem;
    padding-bottom: 2.4rem;
  }
}

.p-top-info-flex-img {
  width: 24rem;
}
@media (max-width: 767px) {
  .p-top-info-flex-img {
    width: 16.8rem;
  }
}

.p-top-info-flex-title {
  font-size: max(1.6rem, 10px);
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-top-info-flex-title {
    font-size: 1.5rem;
    margin-top: unset;
    margin-bottom: 1rem;
  }
}

.p-top-info-flex-arrow {
  width: 0.6rem;
  position: absolute;
  bottom: 1.3rem;
  right: 2rem;
}
@media (max-width: 767px) {
  .p-top-info-flex-arrow {
    width: 0.5rem;
    right: 1rem;
  }
}

.p-top-info-flex-link-second {
  background-color: #fff;
  display: block;
  width: 51rem;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2.2rem;
  border-radius: 1rem;
  transition: all 0.5s;
}
.p-top-info-flex-link-second:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .p-top-info-flex-link-second {
    width: 34.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.3rem;
  }
}

.p-top-info-flex-second {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-top-info-flex-second {
    margin-bottom: 2rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}

.p-top-info-flex-img-second {
  width: 11rem;
}
@media (max-width: 767px) {
  .p-top-info-flex-img-second {
    width: 7rem;
  }
}

.p-top-info-flex-title-second {
  font-size: max(1.6rem, 10px);
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-top-info-flex-title-second {
    font-size: 1.5rem;
    margin-top: unset;
    margin-bottom: unset;
  }
}

.p-top-info-flex-attention {
  font-size: max(1.2rem, 8px);
  font-weight: 500;
  width: 33rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-top-info-flex-attention {
    width: 29rem;
  }
}

.fv {
  position: relative;
  overflow: hidden;
}

.fv-img-base {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .fv-img-base img {
    height: 100dvh;
  }
}

.fv-slider {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.fv-slider img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: none;
  will-change: transform, opacity;
}

.fv-images {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 200vw;
  will-change: transform;
  transform: translateZ(0); /* GPUに固定 */
  perspective: 1000;
}
@media (max-width: 767px) {
  .fv-images {
    width: 800vw;
    /*
        background-image: linear-gradient(to right,
          rgba(#000, 0.1) 0%,
          rgba(#000, 0.1) 100vw,
          rgba(#000, 0.25) 100vw,
          rgba(#000, 0.25) 200vw,
          rgba(#000, 0.50) 200vw,
          rgba(#000, 0.50) 300vw,
          rgba(#000, 0.75) 300vw,
          rgba(#000, 0.75) 400vw,
          rgba(#f00, 1) 400vw,
          rgba(#f00, 1) 100%
          );
    */
  }
}
.fv-images img {
  position: absolute;
  left: var(--original-left);
}
@media (max-width: 767px) {
  .fv-images img {
    backface-visibility: hidden;
  }
}
.fv-images .fv-image-1 {
  width: 31vw;
  top: 1%;
  --original-left: -4vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-1 {
    width: 52vw;
    top: 5%;
    --original-left: -4vw;
  }
}
.fv-images .fv-image-2 {
  width: 37vw;
  top: 6%;
  --original-left: 57vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-2 {
    width: 68vw;
    top: 20%;
    --original-left: 63vw;
  }
}
.fv-images .fv-image-3 {
  width: 29vw;
  top: 61%;
  --original-left: 9vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-3 {
    width: 64vw;
    top: 67%;
    --original-left: 29vw;
  }
}
.fv-images .fv-image-4 {
  width: 27vw;
  top: 69%;
  --original-left: 51vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-4 {
    width: 49vw;
    top: 59%;
    --original-left: 120vw;
  }
}
.fv-images .fv-image-5 {
  width: 32vw;
  top: 2%;
  --original-left: 120vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-5 {
    width: 67vw;
    top: 13%;
    --original-left: 153vw;
  }
}
.fv-images .fv-image-6 {
  width: 20vw;
  top: 12%;
  --original-left: 168vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-6 {
    width: 73vw;
    top: 63%;
    --original-left: 191vw;
  }
}
.fv-images .fv-image-7 {
  width: 23vw;
  top: 70%;
  --original-left: 96vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-7 {
    width: 73vw;
    top: 15%;
    --original-left: 251vw;
  }
}
.fv-images .fv-image-8 {
  width: 27vw;
  top: 62%;
  --original-left: 136vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-8 {
    width: 84vw;
    top: 68%;
    --original-left: 284vw;
  }
}
.fv-images .fv-image-9 {
  width: 26vw;
  top: 64%;
  --original-left: 173vw;
}
@media (max-width: 767px) {
  .fv-images .fv-image-9 {
    width: 52vw;
    top: 23%;
    --original-left: 341vw;
  }
}
.fv-images img:nth-child(n+10) {
  left: calc(var(--original-left) + 200vw);
}
@media (max-width: 767px) {
  .fv-images img:nth-child(n+10) {
    left: calc(var(--original-left) + 400vw);
  }
}

@keyframes scroll-left-pc {
  0% {
    transform: translate3d(0);
  }
  100% {
    transform: translate3d(-200vw, 0, 0);
  }
}
@keyframes scroll-left-sp {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-400vw, 0, 0);
  }
}
/* =========================================
   テキスト（キャッチコピー）
========================================= */
.fv-head {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: left;
  display: inline-block;
}

.fv-text {
  display: inline-block;
  position: relative;
  font-size: 5.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.7;
  width: 73rem;
  margin-inline: auto;
  color: #048b7d;
  --dot-d: 0.4rem;
  --gap: 2rem;
}
@media (max-width: 767px) {
  .fv-text {
    font-size: 2.4rem;
    width: 31rem;
    letter-spacing: 0.1em;
    --dot-d: 0.2rem;
    --gap: 0.5rem;
  }
}

/* 各行 */
.fv-text .line-wrap {
  display: inline-block;
  position: relative;
}

.fv-text .line {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 6px #fff;
}

/* 下線（点線） */
.fv-text .underline {
  display: block;
  width: 100%;
  height: var(--dot-d);
  margin-top: -1.2rem;
  background: radial-gradient(circle, currentColor 0 calc(var(--dot-d) / 2), transparent calc(var(--dot-d) / 2)) -0.5rem 50%/calc(var(--dot-d) + var(--gap)) var(--dot-d) repeat-x;
  opacity: 0;
  will-change: opacity;
}
@media (max-width: 767px) {
  .fv-text .underline {
    margin-top: -0.6rem;
    background: radial-gradient(circle, currentColor 0 calc(var(--dot-d) / 2), transparent calc(var(--dot-d) / 2)) -0.1rem 50%/calc(var(--dot-d) + var(--gap)) var(--dot-d) repeat-x;
  }
}

.contact-form {
  width: 75rem;
  margin-inline: auto;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .contact-form {
    width: 34.5rem;
  }
}

.contact-form-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .contact-form-title {
    font-size: 2.2rem;
  }
}

.contact-form-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -3rem;
}
@media (max-width: 767px) {
  .contact-form-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

.contact-form-nav-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-block: 4rem;
}
@media (max-width: 767px) {
  .contact-form-nav-flex {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.contact-form-nav-item-current {
  display: inline-block;
  font-size: max(1.6rem, 10px);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: #00AD9B;
  padding: 0.5rem 2.5rem;
  border-radius: 3rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 767px) {
  .contact-form-nav-item-current {
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
  }
}

.contact-form-nav-item {
  display: inline-block;
  font-size: max(1.6rem, 10px);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #222222;
  background-color: #fff;
  border: 0.1rem solid #222222;
  padding: 0.25rem 2.5rem;
  border-radius: 3rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 767px) {
  .contact-form-nav-item {
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
  }
}

@media (max-width: 767px) {
  .contact-line-height {
    line-height: 1.8;
  }
}

.contact-form__flex-item {
  margin-inline: auto;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .contact-form__flex-item {
    width: 34.5rem;
    display: block;
  }
}

.contact-form__flex01 {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  margin-inline: auto;
}

.contact-form__flex02 {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  margin-inline: auto;
}

.contact-form__info {
  font-size: max(1.6rem, 10px);
  letter-spacing: 0.07rem;
  letter-spacing: 0rem;
}
@media (max-width: 767px) {
  .contact-form__info {
    font-size: 1.5rem;
  }
}

.absolutely {
  font-size: max(1.2rem, 8px);
  color: #fff;
  background-color: #D01E0B;
  padding: 0.4rem 1rem;
  border-radius: 0.3rem;
  flex-shrink: 0;
}

.optional {
  font-size: max(1.2rem, 8px);
  color: #fff;
  background-color: #777777;
  padding: 0.4rem 1rem;
  border-radius: 0.3rem;
  flex-shrink: 0;
}

.wpcf7-text {
  display: block;
  width: 75rem;
  margin-inline: auto;
  background-color: #fff;
  border: 0.1rem solid #c7c7c7;
  border-radius: 0.5rem;
  padding-block: 1.1rem;
  padding-inline: 1.5rem;
  cursor: pointer;
  font-size: max(1.6rem, 10px);
}
@media (max-width: 767px) {
  .wpcf7-text {
    width: 34.5rem;
    font-size: 1.5rem;
  }
}

/* チェックボックスのデフォルトを非表示にする */
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.wpcf7-list-item.first {
  margin: 0;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .wpcf7-list-item-label {
    font-size: 1.5rem;
    width: 34.5rem;
  }
}

.contact-form-radio .contact-form-radio-box {
  display: block;
  width: 72rem;
  background: #f3f3f3;
  padding: 0.1rem 1rem;
  border-radius: 0.4rem;
  cursor: pointer;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .contact-form-radio .contact-form-radio-box {
    font-size: 1.5rem;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wpcf7-form-control-wrap {
    display: block;
  }
}

.pp-link {
  transition: all 0.5s;
}
.pp-link:hover {
  opacity: 0.5;
}

.pp-text {
  font-size: max(1.6rem, 10px);
}
@media (max-width: 767px) {
  .pp-text {
    font-size: 1.5rem;
  }
}

/* デフォルトのラジオボタンは非表示 */
input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

/* 外枠（未選択状態のラジオボタン） */
.wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  border: 0.1rem solid #c7c7c7;
  border-radius: 50%;
  margin-right: 1rem;
  vertical-align: middle;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* チェック時の黒丸（中身） */
input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #222222;
  border-radius: 50%;
  position: absolute;
  margin-left: 0.4rem;
  flex-shrink: 0;
}

.wpcf7-list-item {
  margin: 0;
  margin-right: 3rem;
  display: block;
}

/* ▼ contact-form__pp 内のチェックボックスだけに適用 */
.contact-form__pp input[type=checkbox] {
  opacity: 0;
  /* デフォルト非表示 */
  visibility: hidden;
  position: absolute;
}

/* 外枠（四角のボックス） */
.contact-form__pp .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  border: 0.1rem solid #bdbdbd;
  border-radius: 0.3rem;
  margin-right: 1rem;
  vertical-align: middle;
  box-sizing: border-box;
}

/* チェック時のレ点 */
.contact-form__pp input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "✔";
  font-size: 1.4rem;
  color: #222222;
  position: absolute;
  margin-left: 0.3rem;
  margin-top: -0.1rem;
}

.contact-form-radio {
  white-space: pre-line;
  display: inline-block;
}
@media (max-width: 767px) {
  .contact-form-radio {
    font-size: 1.5rem;
    width: 34.5rem;
  }
}

.confirm_button {
  width: 34rem;
  height: 5.4rem;
  margin-inline: auto;
  display: block;
  transition: all 0.5s;
  background-image: url("../img-file/contact/contact-btn.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  padding: 0;
  margin-top: 7rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .confirm_button {
    margin-top: 5rem;
    width: 35rem;
  }
}
.confirm_button:hover {
  opacity: 0.5;
}

.submit-confirm {
  background-color: #fff;
}

.wpcf7-spinner {
  display: none !important;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

.confirm_area.active {
  display: block !important;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.privacy-error {
  padding-left: 2rem;
}

/* ボタンが無効なとき */
input.confirm_button:disabled {
  cursor: not-allowed;
}

.contact-form__pp .pp-text {
  display: inline-block;
  line-height: 0;
}

.contact-form-name {
  margin-bottom: 1rem;
}

.contact-form__flex03 {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
  margin-inline: auto;
}

.contact-form-post {
  width: 10.5rem;
}

.contact-address-search-btn {
  font-size: max(1.6rem, 10px);
  background-color: #222222;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.4rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .contact-address-search-btn {
    font-size: 1.5rem;
  }
}

.confirm_area {
  max-width: 110rem;
  margin: 0 auto;
}

.confirm_area-text {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .confirm_area-text {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}

.confirm_area-flex-item {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  font-size: 2rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding-block: 2.5rem;
}
@media (max-width: 767px) {
  .confirm_area-flex-item {
    font-size: 1.5rem;
  }
}

.confirm_area-flex-title {
  min-width: 20rem;
  text-align: left;
}
@media (max-width: 767px) {
  .confirm_area-flex-title {
    min-width: 13rem;
  }
}

.confirm_area-flex-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding-block: 10rem;
  text-align: center;
}
@media (max-width: 767px) {
  .confirm_area-flex-btn {
    flex-direction: column;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: 5rem;
    padding-block: 7rem;
  }
}

.confirm_area-back-btn {
  position: relative;
  transition: all 0.5s;
}
.confirm_area-back-btn:hover {
  opacity: 0.5;
}

.back_button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  width: 28rem;
  padding-block: 0.6rem;
  border-radius: 5rem;
  background-color: #fff;
  border: 0.1rem solid #00AD9B;
  color: #00AD9B;
  cursor: pointer;
}

.submit-btn {
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}
.submit-btn:hover {
  opacity: 0.5;
}

input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  width: 28rem;
  padding-block: 1rem;
  border-radius: 5rem;
  background-color: #00AD9B;
  border: none;
  color: #fff;
  cursor: pointer;
}

.confirm_contact-area {
  display: block;
  max-width: 45rem;
  word-wrap: break-word;
}

.confirm_area-flex-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding-block: 2.5rem;
}

/* 名前全体の並びエリア */
.confirm_names-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
}

/* 各人1ブロック */
.confirm_name {
  display: inline-flex;
  white-space: nowrap;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .confirm_name {
    font-size: 1.5rem;
  }
}

.p-contact-thanks-title-wrap {
  width: 75rem;
  margin-inline: auto;
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .p-contact-thanks-title-wrap {
    width: 34.5rem;
    padding-top: 3rem;
  }
}

.p-contact-thanks-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .p-contact-thanks-title {
    font-size: 2.2rem;
  }
}

.p-contact-thanks-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .p-contact-thanks-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

.p-contact-thanks-wrap {
  width: 75rem;
  margin-inline: auto;
  margin-bottom: 5rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 767px) {
  .p-contact-thanks-wrap {
    width: 34.5rem;
    text-align: left;
    font-size: 1.5rem;
  }
}

.p-contact-thanks-text01 {
  margin-bottom: 3rem;
}

.p-contact-thanks-text02 {
  margin-bottom: 3rem;
}

.p-contact-thanks-contents-btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  width: 20.3rem;
  margin-inline: auto;
  padding-block: 1rem;
  border-radius: 3rem;
  margin-bottom: 12rem;
  transition: all 0.5s;
}
.p-contact-thanks-contents-btn02:hover {
  opacity: 0.5;
}

.p-contact-thanks-contents-btn-text {
  font-size: max(1.6rem, 10px);
  color: #00AD9B;
}
@media (max-width: 767px) {
  .p-contact-thanks-contents-btn-text {
    font-size: 1.5rem;
  }
}

.p-contact-thanks-contents-btn-img {
  width: 0.6rem;
}
.p-contact-thanks-contents-btn-img img {
  padding-bottom: 0.6rem;
}

.not-found-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  padding-block: 10rem;
}
@media (max-width: 767px) {
  .not-found-text {
    font-size: 1.8rem;
    width: 34.5rem;
    margin-inline: auto;
    text-align: left;
  }
}

.not-found-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  background-color: #fff;
  border: 0.1rem solid #00AD9B;
  border-radius: 3.5rem;
  transition: all 0.5s;
  width: 20rem;
  margin-inline: auto;
  padding-block: 1rem;
  margin-bottom: 15rem;
}
.not-found-btn p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #00AD9B;
}
.not-found-btn:hover {
  opacity: 0.5;
}

.not-found-green-arrow-img {
  width: 0.7rem;
}
.not-found-green-arrow-img img {
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .not-found-green-arrow-img img {
    padding-bottom: 0.6rem;
  }
}

.p-about-contents {
  width: 75rem;
  margin-inline: auto;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-about-contents {
    width: 34.5rem;
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
}

.p-about-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .p-about-title {
    font-size: 2.2rem;
  }
}

.p-about-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .p-about-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

.p-about-item {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-about-item {
    padding-top: 2rem;
  }
}

.p-about-item-flex {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-about-item-flex {
    margin-bottom: 2rem;
  }
}

.p-about-item-flex-left {
  font-size: max(1.6rem, 10px);
  font-weight: 500;
  color: #222222;
  min-width: 3.5rem;
}
@media (max-width: 767px) {
  .p-about-item-flex-left {
    font-size: 1.5rem;
  }
}

.p-about-item-flex-right {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
}
@media (max-width: 767px) {
  .p-about-item-flex-right {
    font-size: 1.5rem;
  }
}

.p-about-map {
  position: relative;
  width: 100%;
  padding-top: 40%;
}
@media (max-width: 767px) {
  .p-about-map {
    padding-top: 57.97%;
  }
}

.p-about-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-about-item02 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
}
@media (max-width: 767px) {
  .p-about-item02 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.5rem;
  }
}

.p-about-pdf-icon {
  font-size: max(1.6rem, 10px);
  font-weight: 700;
  background-color: #A42516;
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .p-about-pdf-icon {
    font-size: 1.5rem;
  }
}

.related-files li {
  margin-bottom: 1rem;
}
.related-files li a {
  transition: all 0.5s;
}
.related-files li a:hover {
  opacity: 0.5;
}

.p-join-flex {
  width: 107rem;
  margin-inline: auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  -moz-column-gap: 14.5rem;
       column-gap: 14.5rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-join-flex {
    flex-direction: column;
    width: 34.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .p-join-flex-left {
    margin-bottom: 2rem;
  }
}

.p-join-contents {
  width: 75rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-join-contents {
    width: 34.5rem;
  }
}

.p-join-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .p-join-title {
    font-size: 2.2rem;
  }
}

.p-join-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1.5rem;
}
@media (max-width: 767px) {
  .p-join-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

#p-join-contents-item01 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-join-contents-item01 {
    margin-bottom: 4rem;
  }
}

.p-join-contents-item01-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-join-contents-item01-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-join-contents-item01-title {
  font-size: 2rem;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-join-contents-item01-title {
    font-size: 1.8rem;
  }
}

.p-join-contents-item01-list-wrap {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  line-height: 1.6;
  letter-spacing: 0.15rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-join-contents-item01-list-wrap {
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
  }
}

#p-join-contents-item02 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-join-contents-item02 {
    margin-bottom: 4rem;
  }
}

.p-join-contents-item02-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-join-contents-item02-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-join-contents-item02-table {
  width: 33rem;
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 2rem;
  font-size: max(1.6rem, 10px);
}
@media (max-width: 767px) {
  .p-join-contents-item02-table {
    font-size: 1.5rem;
  }
}

.p-join-contents-item02-table th,
.p-join-contents-item02-table td {
  padding-block: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 2.5rem;
}

.p-join-contents-item02-table th {
  font-weight: 400;
  text-align: center;
  border-bottom: 0.1rem solid #c7c7c7;
}

.p-join-contents-item02-table td {
  text-align: right;
}

.p-join-contents-item02-table td:first-child,
.p-join-contents-item02-table th:first-child {
  border-right: 0.1rem solid #c7c7c7;
}

.p-join-contents-btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  width: 24.2rem;
  padding-block: 1rem;
  border-radius: 3rem;
  transition: all 0.5s;
}
.p-join-contents-btn01:hover {
  opacity: 0.5;
}

#p-join-contents-item03 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-join-contents-item03 {
    margin-bottom: 4rem;
  }
}

.p-join-contents-item03-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-join-contents-item03-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-join-contents-btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  width: 27.5rem;
  padding-block: 1rem;
  border-radius: 3rem;
  transition: all 0.5s;
}
.p-join-contents-btn02:hover {
  opacity: 0.5;
}

.p-join-contents-btn-text {
  font-size: max(1.6rem, 10px);
  color: #00AD9B;
}

.p-join-contents-btn-img {
  width: 0.6rem;
}
.p-join-contents-btn-img img {
  padding-bottom: 0.6rem;
}

.p-news-list-contents {
  max-width: 107rem;
  margin-inline: auto;
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .p-news-list-contents {
    padding-top: 3rem;
  }
}

.p-news-list-contents-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
@media (max-width: 767px) {
  .p-news-list-contents-flex {
    flex-direction: column;
    align-items: center;
  }
}

.p-news-list-contents-right {
  position: relative;
  z-index: 2;
}

.p-news-list-box {
  width: 75rem;
  margin-inline: auto;
  padding-top: 2rem;
  margin-bottom: 8rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-news-list-box {
    width: 34.5rem;
    margin-inline: auto;
    padding-top: 0.4rem;
    margin-bottom: 4rem;
  }
}

.p-news-list-date {
  font-size: 1.8rem;
  letter-spacing: 0.15rem;
  color: #666;
}

.p-news-list-mark-span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #453333;
  display: inline-block;
  border: 0.1rem solid #453333;
  border-radius: 2rem;
  padding: 0.2rem 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-news-list-mark-span {
    font-weight: 400;
  }
}

.p-news-list-title-text {
  font-size: max(1.6rem, 10px);
  font-weight: 500;
  color: #222222;
}
@media (max-width: 767px) {
  .p-news-list-title-text {
    width: 100%;
  }
}

.p-news-item {
  position: relative;
}
.p-news-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0.1rem;
  width: 100%;
  background-color: #c7c7c7;
}
.p-news-item:last-child::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.1rem;
  width: 100%;
  background-color: #c7c7c7;
}

.p-news-list-box-flex-item li a {
  display: block;
  padding-block: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all 0.5s;
}
.p-news-list-box-flex-item li a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .p-news-list-box-flex-item li a {
    width: 34.5rem;
    margin-inline: auto;
    padding-left: unset;
    padding-right: unset;
  }
}

.p-news-list-box-flex-item02 {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-bottom: 1rem;
}

.p-news-list-box-flex-item03 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 767px) {
  .p-news-list-box-flex-item03 {
    align-items: center;
  }
}

.p-news-list-title-img {
  width: 0.5rem;
  flex-shrink: 0;
}
.p-news-list-title-img img {
  padding-bottom: 0.5rem;
}

.p-news-detail-contents {
  max-width: 1440px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-news-detail-contents {
    padding-top: 3rem;
  }
}

.p-news-detail-contents-item {
  width: 75rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-news-detail-contents-item {
    width: 34.5rem;
  }
}

.p-news-detail-contents-item-flex {
  display: flex;
  justify-content: left;
  align-self: center;
  margin-bottom: 1.6rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.p-news-detail-date {
  font-size: 1.8rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.15rem;
}

.p-news-detail-contents-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-news-detail-contents-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.p-news-detail-contents-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-news-detail-contents-text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.p-news-detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: #00AD9B;
  margin-bottom: 12rem;
  margin-top: 15rem;
  position: relative;
}
.p-news-detail-nav::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.1rem;
  background-color: #c7c7c7;
}
.p-news-detail-nav-item.prev {
  text-align: left;
}
.p-news-detail-nav-item.center {
  text-align: center;
}
.p-news-detail-nav-item.next {
  text-align: right;
}
@media (max-width: 767px) {
  .p-news-detail-nav {
    margin-top: 10rem;
  }
  .p-news-detail-nav .p-news-detail-nav-item.center {
    text-align: center;
  }
  .p-news-detail-nav .p-news-detail-nav-item.prev {
    text-align: left;
    margin-right: auto;
  }
  .p-news-detail-nav .p-news-detail-nav-item.next {
    text-align: right;
    margin-left: auto;
  }
}

.p-news-detail-link-btn-side {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  font-size: max(1.6rem, 10px);
  width: 100%;
  margin-inline: auto;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-news-detail-link-btn-side {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
}
.p-news-detail-link-btn-side:hover {
  opacity: 0.5;
}

.p-news-detail-green-arrow-img {
  width: 0.7rem;
}
.p-news-detail-green-arrow-img img {
  padding-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .p-news-detail-green-arrow-img img {
    padding-bottom: 0.6rem;
  }
}

.p-news-detail-link-btn {
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-news-detail-link-btn {
    display: block;
    padding-bottom: 1rem;
  }
}
.p-news-detail-link-btn:hover {
  opacity: 0.5;
}

.btn-hover {
  transition: all 0.3s;
}

.btn-hover:hover {
  opacity: 0.5;
}

.registers {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
}
@media (max-width: 767px) {
  .registers {
    flex-direction: column;
  }
}

.register__wrap {
  width: 100%;
  background-color: #e5f7f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1rem;
}
.register__wrap .register__subject {
  text-align: center;
  font-weight: bold;
  font-size: 1.125em;
}
.register__wrap a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border-color: currentColor;
  border-width: 2px;
  border-radius: 55px;
  color: #00ad9b;
}
.register__wrap a.link__download .p-discount-contents-btn-img {
  width: 1.1rem;
}

.p-report-list-contents {
  max-width: 107rem;
  margin-inline: auto;
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .p-report-list-contents {
    padding-top: 4rem;
  }
}

.p-report-list-contents-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
@media (max-width: 767px) {
  .p-report-list-contents-flex {
    flex-direction: column;
    align-items: center;
  }
}

.p-report-list-contents-flex-right {
  width: 75rem;
  margin-inline: auto;
  margin-bottom: 8rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-report-list-contents-flex-right {
    width: 34.5rem;
    margin-inline: auto;
    padding-top: 0.4rem;
    margin-bottom: 4rem;
  }
}

.p-report-list-contents-flex-right-title-wrap {
  margin-bottom: 4rem;
}

.p-report-list-contents-flex-right-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.2rem;
}
@media (max-width: 767px) {
  .p-report-list-contents-flex-right-title {
    font-size: 2.2rem;
  }
}

.p-report-list-contents-flex-right-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .p-report-list-contents-flex-right-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

.p-report-list-contents-flex-right-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.15rem;
  margin-bottom: 4rem;
}

.report-file {
  margin-bottom: 2rem;
  display: block;
  width: 75rem;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .report-file {
    width: 34.5rem;
  }
}

.report-file-text {
  margin-block: 1rem;
  font-size: max(1.6rem, 10px);
  line-height: 1.6;
  color: #453333;
}
@media (max-width: 767px) {
  .report-file-text {
    font-size: 1.5rem;
  }
}

.report-file.pdf a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.report-file.pdf a:hover {
  opacity: 0.5;
}

.report-file.pdf img {
  width: 2.4rem;
  height: auto;
  vertical-align: middle;
  margin-right: 0.6rem;
}

.p-privacy-policy-content01 {
  width: 75rem;
  margin-inline: auto;
  padding-top: 6rem;
  letter-spacing: 0.05rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-privacy-policy-content01 {
    width: 34.5rem;
    padding-top: 3rem;
  }
}

.p-privacy-policy-content-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-privacy-policy-content-text {
    font-size: 1.5rem;
  }
}

.p-privacy-policy-content-item {
  margin-bottom: 2rem;
}

.p-privacy-policy-content-item-title {
  font-size: 2rem;
  font-weight: 400;
  color: #222222;
}
@media (max-width: 767px) {
  .p-privacy-policy-content-item-title {
    font-size: 1.8rem;
  }
}

.p-privacy-policy-content-item-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  margin-bottom: 3rem;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .p-privacy-policy-content-item-text {
    font-size: 1.5rem;
    padding-left: 3.5rem;
  }
}

.p-privacy-policy-content02 {
  width: 75rem;
  margin-inline: auto;
  padding-top: 3rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-privacy-policy-content02 {
    width: 34.5rem;
    padding-top: 3rem;
    padding-bottom: 10rem;
  }
}

.p-privacy-policy-content02-title {
  font-size: 2rem;
  font-weight: 500;
  color: #222222;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-privacy-policy-content02-title {
    font-size: 1.8rem;
  }
}
.p-privacy-policy-content02-title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0.2rem;
  height: 3rem;
  background-color: #00AD9B;
}

.p-privacy-policy-content02-item-title {
  font-size: 2rem;
  font-weight: 400;
  color: #222222;
}
@media (max-width: 767px) {
  .p-privacy-policy-content02-item-title {
    font-size: 1.8rem;
  }
}

.p-privacy-policy-content02-item-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.05rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-privacy-policy-content02-item-text {
    font-size: 1.5rem;
  }
}

.p-grant-flex {
  width: 107rem;
  margin-inline: auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-grant-flex {
    flex-direction: column;
    width: 34.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .p-grant-flex-left {
    margin-bottom: 2rem;
  }
}

.p-grant-contents {
  width: 75rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-grant-contents {
    width: 34.5rem;
  }
}

.p-grant-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .p-grant-title {
    font-size: 2.2rem;
  }
}

.p-grant-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1.5rem;
}
@media (max-width: 767px) {
  .p-grant-title-underline {
    width: 34.5rem;
    margin-top: -1rem;
  }
}

.p-grant-contents-item {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item {
    margin-bottom: 6rem;
  }
}
.p-grant-contents-item:last-child {
  margin-bottom: 0;
}

#p-grant-contents-item01 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-grant-contents-item01 {
    margin-bottom: 6rem;
  }
}

.p-grant-contents-item01-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item01-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-grant-contents-item01-img {
  width: 74.8rem;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item01-img {
    width: 34.5rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-grant-contents-btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  color: #00AD9B;
  width: 34.1rem;
  padding-block: 1rem;
  border-radius: 3rem;
  transition: all 0.5s;
}
.p-grant-contents-btn01:hover {
  opacity: 0.5;
}

.p-grant-contents-btn-img {
  width: 0.6rem;
}
.p-grant-contents-btn-img img {
  padding-bottom: 0.6rem;
}

.p-grant-contents-item02-title {
  font-size: 2rem;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item02-title {
    font-size: 1.8rem;
  }
}

.p-grant-contents-item02-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item02-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-grant-contents-item02-contents-item {
  width: 75rem;
  margin-block: 4rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-grant-contents-item02-contents-item {
    width: 34.5rem;
  }
}
.p-grant-contents-item02-contents-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #c7c7c7;
  position: absolute;
  bottom: -2rem;
  left: 0;
}

.p-grant-contents-item02-contents-item:last-child::after {
  display: none;
}

.p-grant-contents-item02-contents-item-title {
  font-size: 2rem;
  font-weight: 400;
  color: #00AD9B;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item02-contents-item-title {
    font-size: 1.8rem;
    padding-left: 1.5rem;
  }
}
.p-grant-contents-item02-contents-item-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.25rem;
  height: 2rem;
  background-color: #00AD9B;
}

.p-grant-contents-item02-contents-item-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.05rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-grant-contents-item02-contents-item-text {
    font-size: 1.5rem;
  }
}

.p-grant-contents-item03-title {
  font-size: 2rem;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item03-title {
    font-size: 1.8rem;
  }
}

.p-grant-contents-item03-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item03-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-grant-contents-item03-text02 {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-grant-contents-item03-text02 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-grant-contents-item03-wrap {
  margin-bottom: 1rem;
}

.p-grant-contents-item03-area {
  padding: 1rem 3rem;
  font-size: 2rem;
  font-weight: 400;
  color: #00AD9B;
  background-color: #EDF6F5;
}
@media (max-width: 767px) {
  .p-grant-contents-item03-area {
    padding: 1rem 2rem;
  }
}

.p-grant-contents-item03-table {
  width: 100%;
  border-collapse: collapse;
}

.p-grant-contents-item03-table th,
.p-grant-contents-item03-table td {
  padding: 1rem 3rem;
  text-align: left;
  font-size: max(1.6rem, 10px);
  width: 50%;
}
@media (max-width: 767px) {
  .p-grant-contents-item03-table th,
  .p-grant-contents-item03-table td {
    padding: 1rem 2rem;
  }
}

.p-grant-contents-item03-table thead th {
  border-bottom: 0.1rem solid #c7c7c7;
  font-weight: 600;
}

.p-grant-contents-item03-table tbody tr {
  border-bottom: 0.1rem solid #eeeeee;
}

.p-grant-contents-item03-table tbody tr:last-child {
  border-bottom: none;
  /* 最後の線は消す */
}

.p-health-project-flex {
  width: 107rem;
  margin-inline: auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-health-project-flex {
    flex-direction: column;
    width: 34.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .p-health-project-flex-left {
    margin-bottom: 2rem;
  }
}

.p-health-project-contents {
  width: 75rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-health-project-contents {
    width: 34.5rem;
  }
}

.p-health-project-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.4rem;
}
@media (max-width: 767px) {
  .p-health-project-title {
    font-size: 2.2rem;
  }
}

.p-health-project-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1.5rem;
}
@media (max-width: 767px) {
  .p-health-project-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

#p-health-project-contents-item01 {
  margin-bottom: 10rem;
  display: block;
}
@media (max-width: 767px) {
  #p-health-project-contents-item01 {
    margin-bottom: 4rem;
  }
}

.p-health-project-contents-item01-flex {
  display: flex;
  justify-content: left;
  align-items: stretch;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
  position: relative;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-health-project-contents-item01-flex {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.p-health-project-contents-item01-flex::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #c7c7c7;
  position: absolute;
  bottom: -2rem;
  left: 0;
}

.p-health-project-contents-item01-left {
  width: 12rem;
  flex-shrink: 0;
}

.p-health-project-contents-item01-right-title {
  font-size: 2rem;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
}
@media (max-width: 767px) {
  .p-health-project-contents-item01-right-title {
    font-size: 1.8rem;
  }
}

.p-health-project-contents-item01-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-health-project-contents-item01-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-health-project-contents-item01-right-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-health-project-contents-item01-right-text {
    font-size: 1.5rem;
  }
}

.p-health-project-contents-item01-right-new {
  font-size: max(1.6rem, 10px);
  color: #CD1D1D;
}

.p-health-project-contents-btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  width: 27.5rem;
  padding-block: 1rem;
  border-radius: 3rem;
  transition: all 0.5s;
}
.p-health-project-contents-btn01:hover {
  opacity: 0.5;
}

.p-health-project-contents-btn-text {
  font-size: max(1.6rem, 10px);
  color: #00AD9B;
}
@media (max-width: 767px) {
  .p-health-project-contents-btn-text {
    font-size: 1.5rem;
  }
}

.p-health-project-contents-btn-img {
  width: 0.6rem;
}
.p-health-project-contents-btn-img img {
  padding-bottom: 0.6rem;
}

#p-health-project-contents-item02 {
  margin-bottom: 8rem;
  display: block;
}
@media (max-width: 767px) {
  #p-health-project-contents-item02 {
    margin-bottom: 4rem;
  }
}

.p-health-project-contents-item02-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-health-project-contents-item02-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-health-project-contents-btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  width: 27.5rem;
  padding-block: 1rem;
  border-radius: 3rem;
  transition: all 0.5s;
}
.p-health-project-contents-btn02:hover {
  opacity: 0.5;
}

.p-discount-flex {
  width: 107rem;
  margin-inline: auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-discount-flex {
    flex-direction: column;
    width: 34.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .p-discount-flex-left {
    margin-bottom: 2rem;
  }
}

.p-discount-contents {
  width: 75rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-discount-contents {
    width: 34.5rem;
  }
}

.p-discount-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.25rem;
}
@media (max-width: 767px) {
  .p-discount-title {
    font-size: 2.2rem;
  }
}

.p-discount-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1.5rem;
}
@media (max-width: 767px) {
  .p-discount-title-underline {
    width: 34.5rem;
    margin-top: -1rem;
  }
}

#p-discount-contents-item01 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-discount-contents-item01 {
    margin-bottom: 6rem;
  }
}

.p-discount-contents-item01-title {
  font-size: 2rem;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-discount-contents-item01-title {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}

.p-discount-contents-item01-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-discount-contents-item01-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-discount-contents-item01-text02 {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-discount-contents-item01-text02 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-discount-contents-item01-text03 {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-discount-contents-item01-text03 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-discount-contents-item01-link {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  transition: all 0.5s;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-discount-contents-item01-link {
    align-items: flex-start;
  }
}
.p-discount-contents-item01-link:hover {
  opacity: 0.5;
}

.p-discount-contents-item01-link-img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-discount-contents-item01-link-img img {
  padding-bottom: 0.3rem;
}

.p-discount-contents-item01-link-text {
  font-size: max(1.6rem, 10px);
  color: #222222;
}
@media (max-width: 767px) {
  .p-discount-contents-item01-link-text {
    font-size: 1.5rem;
  }
}

.p-grant-contents-item01-wrap {
  margin-bottom: 1rem;
}

.p-grant-contents-item01-area {
  padding-block: 1rem;
  padding-left: 3rem;
  font-size: 2rem;
  font-weight: 400;
  color: #00AD9B;
  background-color: #EDF6F5;
}
@media (max-width: 767px) {
  .p-grant-contents-item01-area {
    padding-block: 1rem;
    padding-left: 1rem;
  }
}

.p-grant-contents-item01-table {
  width: 100%;
  border-collapse: collapse;
}

.p-grant-contents-item01-table th,
.p-grant-contents-item01-table td {
  padding-block: 1rem;
  padding-left: 3rem;
  text-align: left;
  font-size: max(1.6rem, 10px);
  width: 35%;
}
@media (max-width: 767px) {
  .p-grant-contents-item01-table th,
  .p-grant-contents-item01-table td {
    padding-block: 1rem;
    padding-left: 1rem;
    font-size: 1.5rem;
  }
}

.p-grant-contents-item01-table.twocolumn th:first-child, .p-grant-contents-item01-table.twocolumn td:first-child {
  width: 20%;
}

.p-grant-contents-item01-table thead th {
  border-bottom: 0.1rem solid #c7c7c7;
  font-weight: 600;
}

.p-grant-contents-item01-table tbody tr {
  border-bottom: 0.1rem solid #eeeeee;
}

.p-grant-contents-item01-table tbody tr:last-of-type {
  border-bottom: none;
}

#p-discount-contents-item02 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-discount-contents-item02 {
    margin-bottom: 6rem;
  }
}

.p-discount-contents-item02-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-discount-contents-item02-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-discount-contents-btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  color: #00AD9B;
  width: 34.1rem;
  padding-block: 1rem;
  border-radius: 3rem;
  transition: all 0.5s;
}
.p-discount-contents-btn01:hover {
  opacity: 0.5;
}

.p-discount-contents-btn-img {
  width: 0.6rem;
}
.p-discount-contents-btn-img img {
  padding-bottom: 0.6rem;
}

#p-discount-contents-item03 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-discount-contents-item03 {
    margin-bottom: 6rem;
  }
}

.p-discount-contents-item03-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-discount-contents-item03-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-limited-contents {
  width: 75rem;
  margin-inline: auto;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-limited-contents {
    width: 34.5rem;
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
}

.p-limited-contents-text {
  font-size: max(1.6rem, 10px);
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-limited-contents-text {
    font-size: 1.5rem;
  }
}

.p-limited-title-wrap {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-limited-title-wrap {
    margin-bottom: 2rem;
  }
}

.p-limited-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .p-limited-title {
    font-size: 2.2rem;
  }
}

.p-limited-title-underline {
  width: 75rem;
  margin-inline: auto;
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .p-limited-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

.p-limited-item01 {
  margin-bottom: 4rem;
}

.p-limited-item01-img {
  width: 75rem;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-limited-item01-img {
    width: 34.5rem;
    margin-bottom: 4rem;
  }
}

.p-limited-item {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-limited-item {
    padding-top: 2rem;
  }
}

.p-limited-item-flex {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-limited-item-flex {
    margin-bottom: 2rem;
  }
}

.p-limited-item-flex-left {
  font-size: max(1.6rem, 10px);
  font-weight: 500;
  color: #222222;
  min-width: 3.5rem;
}
@media (max-width: 767px) {
  .p-limited-item-flex-left {
    font-size: 1.5rem;
  }
}

.p-limited-item-flex-right {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
}
@media (max-width: 767px) {
  .p-limited-item-flex-right {
    font-size: 1.5rem;
  }
}

.p-limited-item02 {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-limited-item02 {
    margin-bottom: 4rem;
    font-size: 1.5rem;
  }
}

.p-limited-item02-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  margin-bottom: 2rem;
}

.p-limited-item02-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border: 0.1rem solid #00AD9B;
  width: 40.6rem;
  padding-block: 1rem;
  border-radius: 3rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-limited-item02-btn {
    width: 34.5rem;
  }
}
.p-limited-item02-btn:hover {
  opacity: 0.5;
}

.p-limited-item02-btn-text {
  font-size: max(1.6rem, 10px);
  color: #00AD9B;
}
@media (max-width: 767px) {
  .p-limited-item02-btn-text {
    font-size: 1.5rem;
  }
}

.p-limited-item02-btn-img {
  width: 0.6rem;
}
.p-limited-item02-btn-img img {
  padding-bottom: 0.6rem;
}

.p-limited-item03-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  margin-bottom: 6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-limited-item03-text {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}

.p-limited-item04-plan-img {
  display: block;
  width: 40rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
  transition: all 0.5s;
}
.p-limited-item04-plan-img:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .p-limited-item04-plan-img {
    width: 34.5rem;
  }
}

.p-limited-item04-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-limited-item04-text {
    font-size: 1.5rem;
  }
}

.p-limited-item04-text02 {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  margin-bottom: 6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-limited-item04-text02 {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}

.p-limited-item04-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  border: 0.1rem solid #00AD9B;
  width: 40rem;
  padding-block: 1rem;
  border-radius: 5rem;
  margin-bottom: 2rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-limited-item04-btn {
    width: 34.5rem;
  }
}
.p-limited-item04-btn:hover {
  opacity: 0.5;
}

.p-limited-item05-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  border: 0.1rem solid #00AD9B;
  width: 40rem;
  padding-block: 1rem;
  border-radius: 5rem;
  margin-bottom: 6rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .p-limited-item05-btn {
    width: 34.5rem;
  }
}
.p-limited-item05-btn:hover {
  opacity: 0.5;
}

.p-limited-item06-img {
  width: 75rem;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-limited-item06-img {
    width: 34.5rem;
  }
}

.p-info-plaza-flex {
  width: 115rem;
  margin-inline: auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p-info-plaza-flex {
    flex-direction: column;
    width: 34.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .p-info-plaza-flex-left {
    margin-bottom: 2rem;
  }
}

.p-info-plaza-contents {
  width: 90rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-info-plaza-contents {
    width: 34.5rem;
  }
}

.p-info-plaza-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .p-info-plaza-title {
    font-size: 2.2rem;
  }
}

.p-info-plaza-title-underline {
  width: 90rem;
  margin-inline: auto;
  margin-top: -1.5rem;
}
@media (max-width: 767px) {
  .p-info-plaza-title-underline {
    width: 34.5rem;
    margin-top: -1rem;
  }
}

#p-info-plaza-contents-item01 {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  #p-info-plaza-contents-item01 {
    margin-bottom: 6rem;
  }
}

.p-info-plaza-contents-item01-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-info-plaza-contents-item01-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-info-plaza-magazine-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 8rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-info-plaza-magazine-list {
    grid-template-columns: repeat(3, 10.9rem);
    margin-bottom: 4rem;
    gap: 1rem;
    justify-content: center;
  }
}

.p-info-plaza-magazine-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.p-info-plaza-magazine-item:hover {
  opacity: 0.5;
}

.p-info-plaza-magazine-img {
  width: 20.6rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-info-plaza-magazine-img {
    width: 10.9rem;
  }
}

.p-info-plaza-magazine-meta {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .p-info-plaza-magazine-meta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0rem;
  }
}

.p-info-plaza-magazine-meta-img {
  width: 3.6rem;
  height: 2.1rem;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-info-plaza-magazine-meta-img {
    width: 3.2rem;
    height: 1.8rem;
  }
}

.p-info-plaza-magazine-meta-img-yellow {
  width: 5.2rem;
  height: 2.1rem;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-info-plaza-magazine-meta-img-yellow {
    width: 4.6rem;
    height: 1.8rem;
  }
}

.p-info-plaza-magazine-meta-img-text {
  font-size: max(1.6rem, 10px);
  color: #222222;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .p-info-plaza-magazine-meta-img-text {
    font-size: 1.5rem;
  }
}

.p-info-plaza-contents-item02 p {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-info-plaza-contents-item02 p {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-info-plaza-contents-item03 p {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-info-plaza-contents-item03 p {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-news-letter-list {
  max-width: 107rem;
  margin-inline: auto;
  padding-top: 7rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-news-letter-list {
    padding-top: 4rem;
  }
}

.p-news-letter-contents-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-news-letter-contents-flex {
    flex-direction: column;
    align-items: center;
  }
}

.p-news-letter-contents-flex-right {
  width: 90rem;
  margin-inline: auto;
  margin-bottom: 8rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-news-letter-contents-flex-right {
    width: 34.5rem;
    margin-inline: auto;
    padding-top: 0.4rem;
    margin-bottom: 4rem;
  }
}

.p-news-letter-contents-flex-right-title-wrap {
  margin-bottom: 4rem;
}

.p-news-letter-contents-flex-right-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.2rem;
}
@media (max-width: 767px) {
  .p-news-letter-contents-flex-right-title {
    font-size: 2.2rem;
  }
}

.p-news-letter-contents-flex-right-title-underline {
  width: 90rem;
  margin-inline: auto;
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .p-news-letter-contents-flex-right-title-underline {
    width: 34.5rem;
    margin-top: -2rem;
  }
}

.p-news-letter-contents-flex-right-text {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  text-align: left;
  letter-spacing: 0rem;
  margin-bottom: 4rem;
}

.p-news-letter-files {
  display: grid;
  grid-template-columns: repeat(4, 20.6rem);
  gap: 2rem;
  justify-items: center;
  align-items: end;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-news-letter-files {
    grid-template-columns: repeat(3, 10.9rem);
    gap: 1rem;
  }
}

.p-news-letter-file {
  width: 20.6rem;
}
@media (max-width: 767px) {
  .p-news-letter-file {
    width: 10.8rem;
  }
}
.p-news-letter-file .latest {
  font-weight: bold;
  background-color: #00AD9B;
  padding: 0.2rem;
  color: #fff;
  margin-bottom: 0.3em;
  text-align: center;
}

.p-news-letter-meta {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (max-width: 767px) {
  .p-news-letter-meta {
    display: block;
  }
}

.p-news-letter-pdf-tag {
  width: 3.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-news-letter-pdf-tag {
    width: 3.2rem;
    height: 1.8rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* 通常タグ（赤タグ） */
.p-news-letter-pdf-tag.is-normal {
  width: 3.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-news-letter-pdf-tag.is-normal {
    width: 3.2rem;
    height: 1.8rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* 鍵付きタグ（黄色タグ） */
.p-news-letter-pdf-tag.is-locked {
  width: 5.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-news-letter-pdf-tag.is-locked {
    width: 4.6rem;
    height: 1.8rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-news-letter-pdf-text {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .p-news-letter-pdf-text {
    font-size: max(1.6rem, 10px);
  }
}

.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-bottom: 15rem;
  text-align: center;
  width: 75rem;
}
@media (max-width: 767px) {
  .c-pager {
    width: 34.5rem;
    margin-bottom: 10rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.c-pager .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  color: #00AD9B;
  border: 0.1rem solid #00AD9B;
  transition: all 0.5s;
}
.c-pager .page-numbers:hover {
  color: #fff;
  background-color: #00AD9B;
}
.c-pager .page-numbers:first-child {
  border: none;
}
.c-pager .page-numbers:first-child:hover {
  opacity: 0.5;
  color: unset;
  background-color: unset;
}
.c-pager .page-numbers:last-child {
  border: none;
}
.c-pager .page-numbers:last-child:hover {
  opacity: 0.5;
  color: unset;
  background-color: unset;
}
.c-pager .page-numbers.current {
  color: #fff;
  background-color: #00AD9B;
}
.c-pager .page-arrow {
  display: none;
}
.c-pager .prev, .c-pager .next {
  display: none;
}

.dots {
  display: inline-block;
  font-weight: bold;
  border: none !important;
  pointer-events: none;
}

.c-lower-title {
  background-image: url(../img-file/common/lower-title-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 28rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-lower-title {
    height: 20rem;
  }
}
.c-lower-title::after {
  position: absolute;
  content: "";
  width: 8rem;
  height: 0.3rem;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00AD9B;
}
@media (max-width: 767px) {
  .c-lower-title::after {
    width: 6rem;
    top: 62%;
  }
}

.c-lower-title-text {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .c-lower-title-text {
    font-size: 2.4rem;
    white-space: nowrap;
  }
}

.c-lower-title-breadcrumbs {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.c-side-bar-category-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #222222;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .c-side-bar-category-title {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }
}

.c-news-list-filter {
  position: sticky;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c-news-list-filter {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    margin-top: unset;
    padding-inline: 1.5rem;
    margin-bottom: 2rem;
  }
}

.c-news-list-filter-item {
  display: block;
  margin-bottom: 1.5rem;
}

.c-news-list-filter-btn {
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  color: #aaa;
  font-weight: bold;
  display: inline-block;
  padding: 0.25rem 1.5rem;
  transition: color 0.5s;
  color: #453333;
  border: 0.1rem solid #453333;
  border-radius: 2rem;
  letter-spacing: 0.1rem;
}
.c-news-list-filter-btn:hover {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

.c-news-list-filter-btn.active {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

.c-side-bar {
  position: sticky;
  top: 10rem;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .c-side-bar {
    position: static;
  }
}

.c-sub-column-link {
  display: inline-block;
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05rem;
  color: #222222;
  background-color: #fff;
  border: 0.1rem solid #222222;
  transition: all 0.5s;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  margin-bottom: 1rem;
}
.c-sub-column-link:hover {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

.c-sub-column-link.active {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

@media (max-width: 767px) {
  .c-report-list-sidebar {
    width: 35rem;
    margin-inline: auto;
    display: flex;
    justify-content: left;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}

.c-report-list-year-link {
  display: block;
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  letter-spacing: 0.15rem;
  color: #222222;
  background-color: #fff;
  border: 0.1rem solid #222222;
  transition: all 0.5s;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .c-report-list-year-link {
    font-size: 1.5rem;
  }
}
.c-report-list-year-link:hover {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

.c-report-list-year-link.active {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

@media (max-width: 767px) {
  .c-news-letter-sidebar {
    width: 35rem;
    margin-inline: auto;
    display: flex;
    justify-content: left;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}

.c-news-letter-year-link {
  display: block;
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  letter-spacing: 0.15rem;
  color: #222222;
  background-color: #fff;
  border: 0.1rem solid #222222;
  transition: all 0.5s;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .c-news-letter-year-link {
    font-size: 1.5rem;
  }
}
.c-news-letter-year-link:hover {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

.c-news-letter-year-link.active {
  color: #fff;
  background-color: #00AD9B;
  border: none;
}

.c-breadcrumbs-text-area {
  font-size: 1.5rem;
  font-weight: 400;
  color: #444444;
  width: 107rem;
}
@media (max-width: 767px) {
  .c-breadcrumbs-text-area {
    font-size: max(1.2rem, 8px);
    width: 34.5rem;
  }
}

.c-news-detail-breadcrumbs {
  font-size: 1.5rem;
  font-weight: 400;
  color: #444444;
  width: 107rem;
  margin-inline: auto;
  margin-top: 3rem;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .c-news-detail-breadcrumbs {
    font-size: max(1.2rem, 8px);
    width: 34.5rem;
    margin-bottom: 2rem;
  }
}

.home {
  transition: all 0.5s;
}
.home:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .u-drop-menu-adjust {
    padding-left: 2rem;
    margin-top: -1rem;
  }
}