@charset "UTF-8";
:root {
  /* color */
  --base-color: #fff;
  --base2-color: #fff4e2;
  --main-color: #270a0a;
  --accent-color: #e25418;
  --gold-color: #a68c26;
}

/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--main-color);
  line-height: 1;
  background: #03355c;
}
@media (max-width:768px) {
  body {
    font-size: 3.4667vw;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: 0.2s opacity;
}

@media (min-width:769px) {
  a:hover {
    opacity: 0.7;
  }
}
/* -- LAYOUT -- */
#overlay {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

#overlay.hidden {
  opacity: 0;
}

.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  margin: 0;
  padding: 0;
  width: 70px;
  height: 70px;
  border: none;
  background: none;
  cursor: pointer;
}
.toggle > span, .toggle:before, .toggle:after {
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 5px);
  width: 45px;
  height: 3px;
  margin: -2px 0 0 -18px;
  background-color: var(--gold-color);
}
.toggle > span {
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle::before, .toggle::after {
  content: "";
  transition: background-color 0.3s ease;
}
.toggle::before {
  transform: translateY(-11px);
}
.toggle::after {
  transform: translateY(11px);
}
.toggle[aria-expanded=true] > span {
  opacity: 0;
}
.toggle[aria-expanded=true]::before {
  animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
  animation: 0.3s ease closeBar2 forwards;
}
.toggle.-close::before {
  animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeBar2Rev forwards;
}

@media (max-width:768px) {
  .toggle {
    width: 13.3333vw;
    height: 13.3333vw;
  }
  .toggle > span, .toggle:before, .toggle:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8.1333vw;
    height: 0.4vw;
    margin: 0 0 0 -4vw;
  }
  .toggle::before {
    transform: translateY(-2vw);
  }
  .toggle::after {
    transform: translateY(2vw);
  }
}
.humnav {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-flow: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #2c1e86;
  color: black;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.humnav[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.humnav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.humnav_logo {
  display: block;
  width: 320px;
  max-width: 95%;
}

.menu li {
  position: relative;
}
.menu li:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.menu li a {
  display: block;
  width: 291px;
  max-width: 70vw;
}
.menu li a:hover {
  opacity: 1;
}
.menu li img {
  width: 100%;
}

@media (max-width:768px) {
  .menu li a {
    font-size: 6.1333vw;
  }
}
@keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@media (max-width:768px) {
  @keyframes closeBar1 {
    0% {
      transform: translateY(-1.4667vw);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(45deg);
    }
  }
  @keyframes closeBar2 {
    0% {
      transform: translateY(1.4667vw);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  @keyframes closeBar1Rev {
    0% {
      transform: translateY(0) rotate(45deg);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(-1.4667vw);
    }
  }
  @keyframes closeBar2Rev {
    0% {
      transform: translateY(0) rotate(-45deg);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(1.4667vw);
    }
  }
}
.fixedlink {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-flow: column;
  height: -moz-fit-content;
  height: fit-content;
  gap: 29px;
  margin: auto 0;
  z-index: 3;
}
.fixedlink img {
  width: 100%;
}
@media (max-width:768px) {
  .fixedlink {
    display: none;
  }
}

.fixedlink_msg {
  width: 55px;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.7)) drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.3));
}
.fixedlink_msg img {
  transition: opacity 0.3s ease-out;
}
.fixedlink_msg .on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.fixedlink_msg:hover {
  opacity: 1;
}
.fixedlink_msg:hover .on {
  opacity: 1;
}

.fixedlink_podcast {
  width: 55px;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.7)) drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.3));
}
.fixedlink_podcast img {
  transition: opacity 0.3s ease-out;
}
.fixedlink_podcast .on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.fixedlink_podcast:hover {
  opacity: 1;
}
.fixedlink_podcast:hover .on {
  opacity: 1;
}

.bottomlink {
  display: none;
}

@media (max-width:768px) {
  .bottomlink {
    position: fixed;
    top: unset;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto 0;
    z-index: 3;
  }
  .bottomlink img {
    width: 100%;
  }
  .bottomlink_msg,
  .bottomlink_podcast {
    display: block;
    width: 50%;
  }
}
.header {
  position: relative;
  width: 100%;
  aspect-ratio: 4000/1518;
  background: url(../img/header.webp);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width:768px) {
  .header {
    aspect-ratio: 750/684;
    background: url(../img/sp/header.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

.header_tfm {
  position: absolute;
  top: 2.05vw;
  right: 2.15vw;
  display: block;
  width: 6.7vw;
}
@media (max-width:768px) {
  .header_tfm {
    top: 3.8667%;
    right: 2.5333%;
    width: 15.8667%;
  }
}

.header_logo {
  position: absolute;
  top: 6.5vw;
  left: 15.95vw;
  width: 33.25vw;
}
@media (max-width:768px) {
  .header_logo {
    top: 9.6%;
    left: 0;
    width: 81.7333%;
  }
}

.main {
  position: relative;
  z-index: 2;
}

.about {
  margin-top: max(-11%, -142px);
  padding: clamp(120px, 58.155px + 8.042vw, 219px) 0 clamp(35px, 5.639px + 3.818vw, 82px);
  background: url(../img/about_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 4000px) {
  .about {
    margin-top: -180px;
  }
}
@media (max-width:768px) {
  .about {
    margin-top: -9%;
    padding: 18.6667% 0 9.3333%;
    background: url(../img/sp/about_bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}

.about_heading {
  width: 366px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .about_heading {
    width: 63.4667%;
  }
}

.about_txt-1 {
  margin: min(70px, 3.5vw) auto 0;
  font-size: 30px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.55);
}
@media (max-width:768px) {
  .about_txt-1 {
    margin: 6vw auto 0;
    font-size: 4.9373vw;
    line-height: 1.3332;
  }
}

.about_txt-2 {
  margin: 28px auto 0;
  font-size: min(20px, 2vw);
  color: #fff;
  text-align: center;
}
@media (max-width:768px) {
  .about_txt-2 {
    margin: 4.5% auto 0;
    font-size: 3.0533vw;
    line-height: 1.5284;
  }
}

.about_btnContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin: min(66px, 3.3vw) auto 0;
}
@media (max-width:768px) {
  .about_btnContainer {
    display: none;
  }
}

.about_btn {
  position: relative;
  width: min(438px, 40vw);
}
.about_btn img {
  transition: opacity 0.3s ease-out;
}
.about_btn .on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.about_btn:hover {
  opacity: 1;
}
.about_btn:hover .on {
  opacity: 1;
}

.message {
  padding: 102px 0 160px;
  background: url(../img/message_bg.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width:768px) {
  .message {
    padding: 8.6667vw 0 13.2vw;
    background: url(../img/sp/message_bg.png);
  }
}

.message_heading {
  width: 366px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .message_heading {
    width: 63.4667%;
  }
}

.message_txt {
  display: block;
  width: 811px;
  max-width: 90%;
  margin: 40px auto 0;
}
@media (max-width:768px) {
  .message_txt {
    width: 60.6667vw;
    margin: 6.2667vw auto 0;
  }
}

.message_theme {
  display: block;
  width: 775px;
  max-width: 90%;
  margin: 40px auto 0;
}
@media (max-width:768px) {
  .message_theme {
    width: 92.2667vw;
    margin: 0 auto;
  }
}

.message_btn {
  position: relative;
  display: block;
  width: 762px;
  max-width: 90%;
  aspect-ratio: 1524/195;
  margin: 50px auto 0;
  box-sizing: border-box;
}
.message_btn img {
  position: absolute;
  top: -34px;
  left: -32px;
  display: block;
  width: 108.1364829396%;
  max-width: unset;
  pointer-events: none;
}
.message_btn .on {
  opacity: 0;
  transition: opacity 0.17s ease-out;
}
.message_btn .off {
  opacity: 1;
}
.message_btn:hover {
  opacity: 1;
}
.message_btn:hover .on {
  opacity: 1;
}
@media (max-width:768px) {
  .message_btn {
    width: 85.2413vw;
    aspect-ratio: 639.31/95.01;
    margin: 5.7333vw auto 0;
  }
  .message_btn img {
    top: -4.5293vw;
    left: -4.2453vw;
    width: 109.96%;
  }
  .message_btn:hover .on {
    opacity: 0;
  }
}

.guest {
  margin-top: -150px;
  padding: clamp(150px, 101.898px + 6.255vw, 227px) 0 clamp(50px, 1.898px + 6.255vw, 127px);
  background: url(../img/guest_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (max-width:768px) {
  .guest {
    margin-top: -8.2667%;
    padding: 17.3333% 0 7.2%;
    background: url(../img/sp/guest_bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}

.guest_heading {
  width: 466px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .guest_heading {
    width: 80.8%;
  }
}

.guest_txt {
  margin: clamp(20px, 7.506px + 1.625vw, 40px) auto 0;
  font-size: clamp(24px, 20.252px + 0.487vw, 30px);
  color: #fff;
  line-height: 1.4667;
  text-align: center;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.55);
}
@media (max-width:768px) {
  .guest_txt {
    margin: 7.3333vw auto 0;
    font-size: 4.7253vw;
    line-height: 1.3547;
  }
}

.guest_container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: min(44px, 2%);
  margin: clamp(20px, 7.506px + 1.625vw, 40px) auto 0;
}
@media (max-width:768px) {
  .guest_container {
    flex-flow: wrap;
    gap: 2.2667% 1.2%;
    margin: 6.2667% auto 0;
  }
}

.guest_img {
  width: 292px;
  max-width: 30vw;
}
@media (max-width:768px) {
  .guest_img {
    width: 47vw;
    max-width: unset;
  }
}

.episode {
  padding: 88px 0 108px;
  background: url(../img/episode_bg.webp);
  background-size: cover;
}
@media (max-width:768px) {
  .episode {
    padding: 10.8% 0 6.9333%;
    background: url(../img/sp/episode_bg.png);
    background-size: cover;
  }
}

.episode_heading {
  width: 366px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .episode_heading {
    width: 63.4667%;
  }
}

.episode_embed {
  background: #232831;
}

.episode_container {
  width: 93.3333%;
  max-width: 957px;
  margin: 69px auto 0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
@media (max-width:768px) {
  .episode_container {
    width: 93.3333%;
    margin: 7.7333% auto 0;
  }
}

.podcast {
  padding: 50px 0 76px;
}
@media (max-width:768px) {
  .podcast {
    padding: 4.6667vw 0 7.0667vw;
  }
}

.podcast_heading {
  width: 475px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .podcast_heading {
    width: 63.3333vw;
  }
}

.podcast_list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 27px;
  margin: 36px auto 0;
}
.podcast_list li {
  width: 50px;
}
.podcast_list img {
  width: 100%;
}
.podcast_list .tfmpodcast {
  width: 176px;
}
.podcast_list .youtube {
  width: 52px;
}
@media (max-width:768px) {
  .podcast_list {
    gap: 3.7333vw;
    margin: 3.3333vw auto 0;
  }
  .podcast_list li {
    width: 6.4vw;
  }
  .podcast_list .tfmpodcast {
    width: 23.0667vw;
  }
  .podcast_list .youtube {
    width: 6.9333vw;
  }
}

.footer {
  margin: 0 auto;
}
@media (max-width:768px) {
  .footer {
    margin: 0 auto;
    padding-bottom: 10%;
    border-top: none;
  }
}

.footer_common {
  position: relative;
  border-top: 1px solid #0f4184;
  border-bottom: 1px solid #0f4184;
  font-family: sans-serif;
}
.footer_common:before {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #0f4184;
  content: "";
}
.footer_common:after {
  position: absolute;
  bottom: 4px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #0f4184;
  content: "";
}
@media (max-width:768px) {
  .footer_common {
    border: none;
  }
  .footer_common:before, .footer_common:after {
    display: none;
  }
}

.footer_common-pc {
  display: block;
  font-family: sans-serif;
}
@media (max-width: 1000px) {
  .footer_common-pc {
    display: none;
  }
}

.footer_common-sp {
  display: none;
}
@media (max-width: 1000px) {
  .footer_common-sp {
    display: block;
  }
}

.footer_bottom {
  padding: 34px 0;
  background: url(../img/footer_bg.webp);
  background-size: cover;
}
@media (max-width:768px) {
  .footer_bottom {
    padding: 4.5333% 0 5.3333%;
    background: url(../img/sp/footer_bg.png);
    background-size: cover;
  }
}

.footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer_sns a {
  display: block;
  width: 47px;
}
@media (max-width:768px) {
  .footer_sns {
    gap: 1.6%;
  }
  .footer_sns a {
    width: 6.2667vw;
  }
}

.footer_bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 87px;
  margin: 31px auto 0;
}
@media (max-width:768px) {
  .footer_bnr {
    gap: 6.8%;
    margin: 4% auto 0;
  }
}

.footer_tfm {
  width: 146px;
}
@media (max-width:768px) {
  .footer_tfm {
    width: 19.4667vw;
  }
}

.footer_kochakaden {
  width: 184px;
}
@media (max-width:768px) {
  .footer_kochakaden {
    width: 24.5333vw;
  }
}

.footer_copy {
  margin: 40px auto 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
@media (max-width:768px) {
  .footer_copy {
    margin: 6.1333vw auto 0;
    font-size: 1.6vw;
  }
}

.page-top {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 25px;
  cursor: pointer;
  z-index: 2;
}
@media (max-width:768px) {
  .page-top {
    bottom: 13vw;
    right: 3vw;
  }
}
.page-top img {
  width: 62px;
  height: auto;
}
@media (max-width:768px) {
  .page-top img {
    width: 11.2vw;
  }
}

/* -- UTILITY -- */
.c-marker {
  flex: 0 0 4em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4em;
  color: var(--accent-color);
  font-weight: 700;
}
@media (max-width:768px) {
  .c-marker {
    flex: 0 0 3em;
    width: 3em;
  }
}

.c-small {
  font-size: 16px;
}
@media (max-width:768px) {
  .c-small {
    font-size: 0.8571em;
  }
}

.u-fadeInUp {
  opacity: 0;
  will-change: opacity, transform, filter;
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}