@charset "UTF-8";
/**
 * project_hiroshima 配下
 */
/* ==========================================================================
  共通
  ========================================================================== */
#railroad-project-hiroshima {
  color: #001B2D;
}

/* box
---------------------------- */
.full-box {
  width: 1024px;
}
@media screen and (max-width: 767px) {
  .full-box {
    width: 100%;
    padding: 0 16px;
  }
}

/* sectionの上余白 */
.content-box + .content-box {
  margin-top: 112px;
}
@media screen and (max-width: 767px) {
  .content-box + .content-box {
    margin-top: 80px;
  }
}

/* 2カラム */
.column-two {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .column-two {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.column-two > * {
  width: calc((100% - 32px) / 2);
}
@media screen and (max-width: 767px) {
  .column-two > * {
    width: 100%;
  }
}

/* 灰色ボックス */
.gray-box {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .gray-box {
    margin-top: 48px;
  }
}
.gray-box__head {
  background-color: #748E9C;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding-inline: 32px;
  padding-block: 12px;
}
@media screen and (max-width: 767px) {
  .gray-box__head {
    padding-inline: 24px;
    padding-block: 12px;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  :where(.interview-detail-content) .gray-box__head {
    font-size: 18px;
    padding-inline: 30px;
  }
}
.gray-box__body {
  background-color: #F2F3F5;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .gray-box__body {
    padding: 24px;
  }
}

/* インタビュー一覧のコンテンツ */
.interview-list-content {
  background-color: #748E9C;
  max-width: 1280px;
  margin-inline: auto;
}
.interview-list-content__body {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .interview-list-content__body {
    padding-block: 64px;
  }
}
@media screen and (min-width: 768px) {
  .interview-list-content__body :where(.text-box) {
    text-align: center;
    width: 720px;
    margin-inline: auto;
  }
}

:where(.text-box) + .interview-list {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  :where(.text-box) + .interview-list {
    margin-top: 32px;
  }
}
.interview-list > * + * {
  margin-top: 16px;
}
.interview-list__link {
  display: flex;
  background-color: #fff;
  align-items: center;
}
.interview-list__link:hover {
  text-decoration: none;
  background-color: #83A0B0;
}
.interview-list__link:hover :where(.interview-list__text) {
  color: #fff;
}
.interview-list__link:hover :where(.interview-list__text)::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.interview-list__link:hover :where(.interview-list__text_title) {
  color: #fff;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .interview-list__link {
    display: block;
  }
}
.interview-list__image {
  width: 448px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .interview-list__image {
    width: 100%;
  }
}
.interview-list__text {
  padding-left: 40px;
  padding-right: 100px;
  color: #001B2D;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview-list__text {
    padding-top: 24px;
    padding-bottom: 23px;
    padding-left: 24px;
    padding-right: 50px;
  }
}
.interview-list__text::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-right: 5px solid #0072BB;
  border-bottom: 5px solid #0072BB;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 45px;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .interview-list__text::after {
    width: 8px;
    height: 8px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    right: 27px;
  }
}
.interview-list__text_vol {
  font-family: "Arial";
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .interview-list__text_vol {
    font-size: 14px;
  }
}
.interview-list__text_title {
  color: #0072BB;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .interview-list__text_title {
    margin-top: 4px;
    font-size: 18px;
  }
}
.interview-list__text_member {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .interview-list__text_member {
    margin-top: 16px;
  }
}
.interview-list__text_member > * {
  font-size: 14px;
  line-height: 1.4;
}

/* 通常テキスト
---------------------------- */
.text-box > * {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .text-box > * {
    font-size: 14px;
  }
}
.text-box strong {
  font-weight: bold;
}
.text-box__text_large {
  font-size: 20px;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .text-box__text_large {
    font-size: 18px;
    line-height: 1.4;
  }
}
.text-box > * + * {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .text-box > * + * {
    margin-top: 16px;
  }
}

/* 文字装飾
---------------------------- */
.c-white {
  color: #fff;
}

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

.text-bold {
  font-weight: bold;
}

/* - list
---------------------------- */
.list-style1 > * {
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .list-style1 > * {
    font-size: 14px;
  }
}
.list-style1 > *::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background-color: #0072BB;
  margin-top: 0.6em;
}
.list-style1 > * + * {
  margin-top: 12px;
}
.list-style1 > * > * {
  flex: 1;
}

/* タイトル
---------------------------- */
.heading-style1 {
  text-align: center;
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .heading-style1 {
    font-size: 20px;
  }
}
.heading-style1::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background-color: #0072BB;
  margin-inline: auto;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .heading-style1::after {
    width: 32px;
    margin-top: 12px;
  }
}
.heading-style1.-white {
  color: #fff;
}
.heading-style1.-white::after {
  background-color: #fff;
}
.heading-style1 + * {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .heading-style1 + * {
    margin-top: 32px;
  }
}

/* btn
---------------------------- */
/* 青ボタン */
a.basic-btn {
  display: block;
  background-color: #0072BB;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 8px;
  padding-block: 23px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  a.basic-btn {
    padding-top: 16px;
    padding-bottom: 17px;
    font-size: 16px;
  }
}
a.basic-btn:hover {
  background-color: #0091ED;
  text-decoration: none;
}
a.basic-btn::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
a.basic-btn[target=_blank]::after {
  background-image: url("img/icon-blank.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  border: 0;
  width: 11px;
  height: 9px;
  -webkit-transform: none;
          transform: none;
  right: 16px;
}
a.basic-btn.-back::after {
  right: auto;
  left: 16px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .btn-wrap {
    margin-inline: 16px;
    margin-top: 48px;
  }
}
.btn-wrap > * {
  width: 344px;
}
@media screen and (max-width: 767px) {
  .btn-wrap > * {
    width: 100%;
  }
}

/* もっと見る/閉じる ボタン */
.more-btn {
  display: block;
  position: relative;
  width: 344px;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 4px;
  background: none;
  color: #fff;
  font-weight: bold;
  padding-top: 17px;
  padding-bottom: 16px;
  font-family: "Lucida Grande", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  margin-top: 80px;
  margin-inline: auto;
}
.more-btn:hover {
  background-color: #83A0B0;
  border-color: #83A0B0;
}
@media screen and (max-width: 767px) {
  .more-btn {
    margin-top: 56px;
    width: 295px;
    font-size: 14px;
  }
}
.more-btn::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.more-btn.-open::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.more-btn.-close::after {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}
.more-btn.is-hide {
  display: none;
}
.more-btn.-blue {
  background-color: #0072BB;
  border: 0;
  margin-block: 48px;
  padding-block: 23px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .more-btn.-blue {
    margin-inline: 16px;
    width: calc(100% - 16px - 16px);
    font-size: 16px;
    padding-top: 18px;
    padding-bottom: 17px;
  }
}
.more-btn.-blue:hover {
  background-color: #0072BB;
  opacity: 0.7;
}

/* もっと見るの隠れているコンテンツ */
.more-box {
  display: none;
  margin-top: 16px;
}
.more-box.is-active {
  display: block;
}

/* ==========================================================================
  TOP
  ========================================================================== */
/* mv */
.mv {
  height: 700px;
  background-color: #0072BB;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 210px;
  }
}
.mv-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .mv-video {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .mv-video {
    min-width: 100%;
    min-height: 100%;
  }
}
.mv-text {
  position: absolute;
  left: 96px;
  bottom: 96px;
}
@media screen and (max-width: 767px) {
  .mv-text {
    left: 16px;
    bottom: 16px;
  }
}
.mv-text strong {
  display: inline-block;
  font-weight: bold;
  padding-inline: 12px;
}
.mv-text__blue {
  background-color: rgba(0, 114, 187, 0.9);
  color: #fff;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .mv-text__blue {
    font-size: 14px;
  }
}
.mv-text__white {
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 72px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .mv-text__white {
    font-size: 28px;
  }
}

/* 導入 */
.intro-box {
  background-color: #0072BB;
  background-image: url("img/intro-bg_pc.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-top: 95px;
  padding-bottom: 132px;
  color: #fff;
  text-align: center;
}
.intro-box .text-box {
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .intro-box {
    background-image: url("img/intro-bg_sp.png");
    background-size: 86.93% auto;
    padding-top: 55px;
    padding-bottom: 80px;
    padding-inline: 24px;
  }
  .intro-box + .content-box {
    margin-top: 40px;
  }
}
.intro-box__title {
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .intro-box__title {
    font-size: 24px;
  }
}
.intro-box__title + * {
  margin-top: 32px;
  width: 1024px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .intro-box__title + * {
    margin-top: 24px;
    width: 100%;
  }
}

/* スライドショー */
.slide-box {
  position: relative;
}
.slide-box__image {
  width: 100%;
  height: auto;
}
.slide-box__caption {
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  bottom: 26px;
  color: #fff;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* Around Hiroshima Station */
.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 48px;
}
@media screen and (max-width: 767px) {
  .info-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
  }
}
.info-list__link {
  display: block;
}
.info-list__link:hover {
  text-decoration: none;
}
.info-list__link:hover :where(.info-list__text_title) {
  text-decoration: underline;
}
.info-list__image {
  margin: 0;
  position: relative;
}
.info-list__image_caption {
  display: inline-block;
  background-color: #001B2D;
  color: #fff;
  font-size: 12px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-inline: 8px;
  padding-block: 4px;
}
.info-list__image img {
  width: 100%;
  height: auto;
}
.info-list__text {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .info-list__text {
    margin-top: 10px;
  }
}
.info-list__text_title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  color: #0072BB;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .info-list__text_title {
    font-size: 18px;
  }
}
.info-list__text_title::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #0072BB;
  border-bottom: 2px solid #0072BB;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.info-list__text_title.-title01::before {
  width: 8px;
}
.info-list__text_note {
  color: #001B2D;
  font-size: 16px;
  line-height: 2;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .info-list__text_note {
    font-size: 14px;
    margin-top: 4px;
  }
}
.info-list__bnr {
  display: block;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .info-list__bnr {
    max-width: 343px;
  }
}
.info-list__bnr + .info-list__bnr {
  margin-top: 12px;
}
.info-list__bnr:hover {
  opacity: 0.5;
}
.info-list__bnr img {
  width: 100%;
  height: auto;
}

/* 新しい広島駅の話。 */
.youtube-box {
  background-color: #EBF4FA;
  padding: 64px;
  display: grid;
  grid-template-columns: 544px 1fr;
  gap: 40px;
  margin-top: 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .youtube-box {
    padding-inline: 32px;
    padding-block: 48px;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
}
.more-box .youtube-box {
  margin-top: 0;
}
.more-box .youtube-box + .youtube-box {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .more-box .youtube-box + .youtube-box {
    margin-top: 12px;
  }
}
.youtube-box__movie {
  position: relative;
  width: 544px;
  padding-top: 306px;
  height: 0;
}
@media screen and (max-width: 767px) {
  .youtube-box__movie {
    width: 100%;
    padding-top: 55.95%;
  }
}
.youtube-box__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-box__movie a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.youtube-box__text p {
  font-size: 14px;
  line-height: 2;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .youtube-box__text p {
    font-size: 12px;
    margin-top: 12px;
  }
}
.youtube-box__image {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .youtube-box__image {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .youtube-box__image {
    width: 300px;
  }
}
.youtube-box__image img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
  詳細
  ========================================================================== */
.interview-detail-content__head {
  background-color: #748E9C;
  background-image: url("img/page-title-bg_pc.jpg");
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  height: 281px;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .interview-detail-content__head {
    height: auto;
    background-image: url("img/page-title-bg_sp.jpg");
    background-size: 100% auto;
    background-position: center bottom;
    padding-top: 48px;
    padding-bottom: 56px;
  }
}
.interview-detail-content__head .page-title span {
  display: block;
}
.interview-detail-content__head .page-title__text1 {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .interview-detail-content__head .page-title__text1 {
    font-size: 12px;
  }
}
.interview-detail-content__head .page-title__text2 {
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .interview-detail-content__head .page-title__text2 {
    font-size: 24px;
  }
}
.interview-detail-content__body {
  margin-top: 80px;
}
.interview-detail-content__bottom {
  margin-top: 112px;
}
@media screen and (max-width: 767px) {
  .interview-detail-content__bottom {
    margin-top: 80px;
  }
}
.interview-detail-content__bottom :where(.interview-list-content) {
  margin-top: 112px;
}
@media screen and (max-width: 767px) {
  .interview-detail-content__bottom :where(.interview-list-content) {
    margin-top: 80px;
  }
}

/* 参加メンバーのプロフィール */
.interview-member {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .interview-member {
    margin-top: 48px;
    gap: 26px;
  }
}
.interview-member__item {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .interview-member__item {
    grid-template-columns: 64px 1fr;
    align-items: flex-start;
  }
}
.interview-member__image img {
  width: 100%;
  height: auto;
}
.interview-member__name {
  font-size: 16px;
  line-height: 1.575;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .interview-member__name {
    font-size: 14px;
  }
}
.interview-member__profile {
  font-size: 14px;
  line-height: 2;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .interview-member__profile {
    font-size: 12px;
  }
}

/* インタビューの写真 */
.interview-photo {
  text-align: center;
}
* + .interview-photo {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  * + .interview-photo {
    margin-top: 48px;
  }
}

/* インタビューの各セクションのタイトル */
.interview-heading {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  padding-bottom: 24px;
  border-bottom: 1px solid #0072BB;
}
@media screen and (max-width: 767px) {
  .interview-heading {
    font-size: 20px;
    padding-bottom: 16px;
  }
}

/* 問答ボックス */
.qa-box {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .qa-box {
    margin-top: 32px;
  }
}
.qa-box + .qa-box {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .qa-box + .qa-box {
    margin-top: 48px;
  }
}
.qa-box__question {
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .qa-box__question {
    font-size: 16px;
    align-items: start;
  }
}
.qa-box__question::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: #001B2D;
}
@media screen and (max-width: 767px) {
  .qa-box__question::before {
    width: 24px;
    margin-top: 0.7em;
  }
}
.qa-box__question > * {
  flex: 1;
}
.qa-box__answer {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .qa-box__answer {
    margin-top: 24px;
  }
}

/* インタビュー スクロール追加 */
.scroller {
  display: flex;
  margin: 48px auto 0;
  width: 100%;
  background-color: #748E9C;
  border: none;
  border-radius: 5px;
  scrollbar-color: #0072BB #EBF4FA;
  scrollbar-width: auto;
}
@media print, screen and (min-width: 768px) {
  .scroller {
    overflow-y: scroll;
    flex-direction: column; 
    width: 100%;
    height: 788px;
  }  
}
@media print, screen and (max-width: 767px) {
  .scroller {
    overflow-x: scroll;
    flex-direction: row; 
  }
  .scroller li {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-right: 10px;
  }
  .scroller li > a {
    flex: 1 auto;
    width: 75vw;
  }
}
.interview-caption {
  display: flex;
  justify-content: flex-end;
  color: #ffffff;
  font-size: 14px;
}
.interview-caption > div {
  margin-right: 20px;
}
.interview-caption > div:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .interview-caption {
  flex-flow: column;
  }
  .interview-caption > div {
  margin-right: 0;
  text-align: right;
}
}
.arrow {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-align: right;
  padding-right: 30px;
  font-size: 14px;
}
.arrow::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 3px solid;
  border-color: transparent transparent #ffffff #ffffff;
  transform: rotate(-45deg);
  position: absolute;
  top: 4px;
  right: 10px;
}
@media screen and (max-width: 767px) {
.arrow::after {
  border-color: #ffffff #ffffff transparent transparent;
  transform: rotate(45deg);
  top: 7px;
  right: 10px;
}
}
/* プレスリリース　新着ボタン */
.c-iconTag.-colorPink {
  background-color: #FFB3AF;
}
.c-iconTag {
  display: inline-block;
  border-radius: 50px;
  margin-right: 8px;
}
@media print, screen and (min-width: 768px) {
  .c-iconTag {
      padding: 1px 12px 1px;
  }
}
@media screen and (max-width: 767px) {
  .c-iconTag {
      padding: .5333333333vw 2.1333333333vw;
      font-size: 3.2vw;
      line-height: 1.4;
      vertical-align: text-bottom;
  }
}

/* Topics */
.topics {
  padding: 40px;
  background-color: #E8F4EA;
}
.topics.tp_02 {
  padding: 50px 40px;
  background-color: #F1F2F3;
}
.topics_inner {
  padding: 30px 50px;
  background-color: #ffffff;
  border-radius: 30px;
  font-size: 22px;
}
.topics_inner p {
  font-weight: bold;
}
.topics_inner a {
  color: #0072bb;
}
.topics .img-r {
    text-align: right;
    margin-top: 20px;
    line-height: 1;
}
@media screen and (max-width: 767px) {
  .topics {
    padding: 5vw;
  }
  .topics.tp_02 {
    padding: 30px 5vw;
  }
  .topics_inner {
    padding: 15px;
    border-radius: 14px;
    font-size: 14px;
  }
  .topics .img-r {
    margin-top: 10px;
}
  .topics .img-r img {
    width: 20%;
}
}

/* Guide */
.guide-map {
  overflow: hidden;
}
.guide-map__inner {
  position: relative;
  width: 100vw;
}
.guide-map__mv img {
  width: 100%;
  height: auto;
}
.guide-map__title {
  display: grid;
  position: absolute;
  top: 21.0526315789%;
  left: 7.2395833333%;
  width: 20.5729166667vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: rgba(192, 241, 244, 0.3);
  color: #fff;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .guide-map__title {
    top: 1.4563106796%;
    left: 2.9333333333%;
    width: 39.2vw;
  }
}
.guide-map__title::before {
  position: absolute;
  inset: 0;
  margin: 0.78125vw;
  border-radius: 50%;
  background-color: rgba(108, 224, 228, 0.7);
  content: "";
}
@media screen and (max-width: 767px) {
  .guide-map__title::before {
    margin: 1.6vw;
  }
}
.guide-map__title::after {
  position: absolute;
  inset: 0;
  margin: 1.5625vw;
  border-radius: 50%;
  background-color: #2dd2d9;
  content: "";
}
@media screen and (max-width: 767px) {
  .guide-map__title::after {
    margin: 3.2vw;
  }
}
.guide-map__title__text {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: fit-content;
  font-weight: bold;
  font-size: 2.1354166667vw;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .guide-map__title__text {
    font-size: 4.5333333333vw;
  }
}
.guide-map__title__text span {
  font-size: 1.40625vw;
}
@media screen and (max-width: 767px) {
  .guide-map__title__text span {
    font-size: 2.9333333333vw;
  }
}
.guide-map__layer {
  opacity: 0;
  position: absolute;
  top: 31.3020833333vw;
  left: 55.15625vw;
  width: 13.90625vw;
  transition: 0.3s;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .guide-map__layer {
    display: none;
  }
}
.guide-map__layer img {
  height: auto;
}
.guide-map__layer--2 {
  top: 37.1354166667vw;
  left: 60.8854166667vw;
  width: 12.96875vw;
}
.guide-map__layer--3 {
  top: 31.6145833333vw;
  left: 20.625vw;
  width: 71.40625vw;
}
.guide-map__layer--3b {
  top: 31.6145833333vw;
  left: 20.625vw;
  width: 71.40625vw;
  mix-blend-mode: normal;
}
.guide-map__layer--4 {
  top: 30.2083333333vw;
  left: 66.8229166667vw;
  width: 18.0208333333vw;
}
.guide-map__layer--5 {
  top: 43.6979166667vw;
  left: 23.0208333333vw;
  width: 38.1770833333vw;
}
.guide-map__layer--6 {
  top: 41.875vw;
  left: 63.59375vw;
  width: 52.7083333333vw;
}
.guide-map__button {
  position: absolute;
  top: 40.2255639098%;
  left: 59.1666666667%;
  z-index: 2;
  color: #ff00b5;
}
@media screen and (max-width: 767px) {
  .guide-map__button {
    top: 24.0291262136%;
    left: 39.4666666667%;
  }
}
.guide-map__button > span {
  display: grid;
  width: 10.2604166667vw;
  height: 2.1875vw;
  border: 0.2083333333vw solid currentColor;
  border-radius: 50px;
  background-color: #fff;
  font-weight: 700;
  font-size: 0.8854166667vw;
  line-height: 1;
  transition: 0.3s;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .guide-map__button > span {
    width: 35.2vw;
    height: 7.4666666667vw;
    border: 0.5333333333vw solid currentColor;
    font-size: 3.4666666667vw;
  }
}
@media (hover: hover) {
  .guide-map__button > span:hover {
    scale: 1.4;
  }
}
.guide-map__button > span span.-thin {
  font-weight: 300;
}
.guide-map__button::before {
  position: absolute;
  bottom: -4.375vw;
  left: 50%;
  width: 0.2083333333vw;
  height: 4.375vw;
  background-color: currentColor;
  content: "";
}
@media screen and (max-width: 767px) {
  .guide-map__button::before {
    bottom: -21.3333333333vw;
    width: 0.5333333333vw;
    height: 21.3333333333vw;
  }
}
.guide-map__button::after {
  position: absolute;
  bottom: -4.1666666667vw;
  left: 50%;
  transform: rotate(135deg) translateX(50%);
  width: 0.625vw;
  aspect-ratio: 1;
  border-top: 0.2083333333vw solid currentColor;
  border-right: 0.2083333333vw solid currentColor;
  content: "";
}
@media screen and (max-width: 767px) {
  .guide-map__button::after {
    bottom: -20.5333333333vw;
    width: 1.6vw;
    border-top: 0.5333333333vw solid currentColor;
    border-right: 0.5333333333vw solid currentColor;
  }
}
.guide-map__button:hover[data-slide="0"] ~ .guide-map__layer[data-slide="0"], .guide-map__button:hover[data-slide="1"] ~ .guide-map__layer[data-slide="1"], .guide-map__button:hover[data-slide="2"] ~ .guide-map__layer[data-slide="2"], .guide-map__button:hover[data-slide="2"] ~ .guide-map__layer[data-slide="2b"], .guide-map__button:hover[data-slide="3"] ~ .guide-map__layer[data-slide="3"], .guide-map__button:hover[data-slide="4"] ~ .guide-map__layer[data-slide="4"], .guide-map__button:hover[data-slide="5"] ~ .guide-map__layer[data-slide="5"] {
  opacity: 1;
}
.guide-map__button--2 {
  top: 54.962406015%;
  left: 64.375%;
}
@media screen and (max-width: 767px) {
  .guide-map__button--2 {
    top: 49.7572815534%;
    left: 57.3333333333%;
  }
}
.guide-map__button--2 span {
  width: 4.6875vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--2 span {
    width: 16vw;
  }
}
.guide-map__button--2::before {
  bottom: -1.0416666667vw;
  height: 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--2::before {
    bottom: -3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.guide-map__button--2::after {
  bottom: -0.8333333333vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--2::after {
    bottom: -3.2vw;
  }
}
.guide-map__button--3 {
  top: 84.3609022556%;
  left: 53.8541666667%;
}
@media screen and (max-width: 767px) {
  .guide-map__button--3 {
    top: 85.9223300971%;
    left: 37.6%;
  }
}
.guide-map__button--3 span {
  width: 10.8333333333vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--3 span {
    width: 37.3333333333vw;
  }
}
.guide-map__button--3::before {
  top: -12.9166666667vw;
  bottom: auto;
  height: 12.9166666667vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--3::before {
    top: -14.6666666667vw;
    height: 14.6666666667vw;
  }
}
.guide-map__button--3::after {
  top: -12.7083333333vw;
  bottom: auto;
  transform: rotate(-45deg) translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .guide-map__button--3::after {
    top: -14.1333333333vw;
  }
}
.guide-map__button--4 {
  top: 43.6090225564%;
  left: 72.03125%;
}
@media screen and (max-width: 767px) {
  .guide-map__button--4 {
    top: 34.9514563107%;
    left: 60.8%;
  }
}
.guide-map__button--4 span {
  width: 10.78125vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--4 span {
    width: 37.0666666667vw;
  }
}
.guide-map__button--4::before {
  bottom: -2.6041666667vw;
  height: 2.6041666667vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--4::before {
    bottom: -8.2666666667vw;
    height: 8.5333333333vw;
  }
}
.guide-map__button--4::after {
  bottom: -2.3958333333vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--4::after {
    bottom: -7.7333333333vw;
  }
}
.guide-map__button--5 {
  top: 75.9398496241%;
  left: 38.0208333333%;
}
@media screen and (max-width: 767px) {
  .guide-map__button--5 {
    top: 72.8155339806%;
    left: 6.1333333333%;
  }
}
.guide-map__button--5 span {
  width: 9.2708333333vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--5 span {
    width: 31.7333333333vw;
  }
}
.guide-map__button--5::before {
  bottom: -3.5416666667vw;
  height: 3.5416666667vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--5::before {
    bottom: -11.7333333333vw;
    height: 11.7333333333vw;
  }
}
.guide-map__button--5::after {
  bottom: -3.3333333333vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--5::after {
    bottom: -11.2vw;
  }
}
.guide-map__button--6 {
  top: 67.6691729323%;
  left: 76.71875%;
}
@media screen and (max-width: 767px) {
  .guide-map__button--6 {
    top: 65.5339805825%;
    left: 77.6%;
  }
}
.guide-map__button--6 span {
  width: 5.7291666667vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--6 span {
    width: 19.7333333333vw;
  }
}
.guide-map__button--6::before {
  bottom: -4.1666666667vw;
  height: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--6::before {
    bottom: -6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.guide-map__button--6::after {
  bottom: -3.9583333333vw;
}
@media screen and (max-width: 767px) {
  .guide-map__button--6::after {
    bottom: -6.1333333333vw;
  }
}

.guide-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: max(30px, 4.1666666667vw);
  overflow: hidden;
  background-color: #0072bb;
  color: #fff;
  gap: max(20px, 3.125vw);
}
@media screen and (max-width: 767px) {
  .guide-intro {
    padding-inline: 16px;
  }
}
.guide-intro__title {
  font-weight: 700;
  font-size: max(36px, 3.0208333333vw);
}
@media screen and (max-width: 767px) {
  .guide-intro__title {
    font-size: 6.4vw;
  }
}
.guide-intro__text {
  max-width: 1024px;
  font-weight: 500;
  font-size: max(20px, 1.3541666667vw);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .guide-intro__text {
    font-size: 4vw;
  }
}
.guide-intro__en {
  opacity: 0.2;
  font-weight: 700;
  font-size: 6.5104166667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .guide-intro__en {
    line-height: 0.85;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .guide-intro__en {
    position: relative;
    bottom: -2px;
    font-size: 8vw;
    line-height: 1;
  }
}

.guide-slider {
  margin-top: 20px;
  overflow: hidden;
}
.guide-slider .swiper-wrapper {
  transition-timing-function: ease;
}
.guide-slider .swiper-slide {
  width: clamp(700px, 62.5vw, 1200px);
  height: auto;
}
.guide-slider__item {
  display: flex;
  height: 100%;
  padding: clamp(16px, 3.90625vw, 75px);
  background-color: #e3eef8;
  gap: clamp(15px, 1.875vw, 36px);
}
@media screen and (max-width: 767px) {
  .guide-slider__item {
    flex-direction: column;
  }
}
.guide-slider__item img {
  height: auto;
}
.guide-slider__pic {
  flex-shrink: 0;
  width: clamp(300px, 27.34375vw, 525px);
}
@media screen and (max-width: 767px) {
  .guide-slider__pic {
    width: 100%;
  }
}
.guide-slider__cont {
  display: flex;
  flex-direction: column;
  gap: min(2.6041666667vw, 50px);
}
.guide-slider__title {
  display: flex;
  flex-direction: column;
  color: #0d63aa;
  font-weight: 700;
  font-size: clamp(22px, 2.0833333333vw, 40px);
  line-height: 1;
  gap: clamp(10px, 1.0416666667vw, 20px);
}
.guide-slider__title span.-small {
  font-weight: 500;
  font-size: clamp(13px, 0.8854166667vw, 17px);
}
.guide-slider__title span.-thin {
  font-weight: 300;
}
.guide-slider__text {
  font-weight: 500;
  font-size: clamp(15px, 1.1458333333vw, 22px);
  text-align: justify;
}