@charset "utf-8";

:root {
  --black: #333;
  --blue: #176B8C;
  --lightblue: #b3dee3;
  --green: #195556;
  --red: #E43737;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 20px;
}

@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-family: YuGothic, 'Yu Gothic', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック', 'MS Gothic', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--black);
  text-decoration: none;
}

ul,
li {
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
}

p {
  font-size: 1.4rem;
  line-height: 1.7;
}

dt,dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
}

dd {
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  p {
    font-size: 1.6rem;
  }

  dt {
    font-size: 1.8rem;
  }

  dd {
    font-size: 2rem;
  }
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

h1 {
  font-size: 1.7rem;
  font-weight: 400;
}

h2 {
  font-size: 2.4rem;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6);
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue);
  border-bottom: #176B8C solid 1px;
  padding: 2px 0;
  text-align: center;
  display: inline-block;
}

h6 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue);
}

@media screen and (min-width: 769px) {
  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  h4 {
    font-size: 2.4rem;
  }

  h5 {
    font-size: 1.7rem;
  }

  h6 {
    font-size: 1.8rem;
  }
}

.inner {
  padding: 0 10px;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1280px;
    padding: 0;
  }
}


/* ヘッダー */
#header {
  background-color: #4088A5;
  width: 100%;
  height: 6rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.header__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header__logo {
  width: 50px;
  height: 50px;
}

.header__title h1 {
  margin-left: 5px;
}

.header__title h1 a {
  color: #fff;
}

@media screen and (min-width: 431px) {
  .header__title h1 {
    font-size: 2rem;
    margin-left: 10px;
  }
}

@media screen and (min-width: 820px) {
  .header__title h1 {
    font-size: 2.2rem;
    margin-left: 15px;
  }
}

/* 申し込みボタン */
.apply-navi {
  background-color: #176B8C;
  height: 5rem;
  border: #fff solid 1px;
}

.apply-navi a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  display: block;
  height: 100%;
  padding: 10px 5px;
  transition: 0.3s;
}

@media screen and (min-width: 431px) {
  .apply-navi a {
    padding: 3px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 769px) {
  .apply-navi :hover {
    background-color: #fff;
  }

  .apply-navi a:hover {
    color: #176B8C;
  }

  .apply-navi a {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 10px 5px;
  }
}

@media screen and (min-width: 900px) {
  .apply-navi a {
    font-size: 1.4rem;
    padding: 7px 5px;
  }
}

/* pcナビ */
.pc-nav ul {
  display: flex;
  align-items: center;
}

.pc-nav ul li {
  margin-right: 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.pc-nav ul li:last-child {
  margin-right: 0;
}

.pc-nav ul li a {
  color: #fff;
}

@media screen and (min-width: 900px) {
  .pc-nav ul li {
    margin-right: 15px;
    font-size: 1.4rem;
  }
}

/* spナビ */
.sp-nav {
  position: fixed;
  z-index: 999;
  right: -150%;
  left: 0;
  top: 60px;
  width: 100%;
  transform: translateX(100%);
  background-color: #fff;
  text-align: center;
  transition: ease .4s;
}

.sp-navi__wrap {
  height: 460px;
}

.sp-nav ul {
  padding: 30px;
  margin-bottom: 50px;
}

@media screen and (min-width: 500px) {
  .navi-list {
    display: flex;
    align-items: start;
    justify-content: space-evenly;
  }
}

@media screen and (min-width: 650px) {
  .sp-navi__wrap {
    height: 310px;
  }

  .sp-nav ul {
    padding: 40px;
    margin-bottom: 0;
  }
}

.sp-nav ul li {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.sp-nav ul li a {
  color: var(--blue);
}

.header__sp-display {
  display: flex;
  align-items: center;
}

#horizon1 {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 0;
  height: 30px;
  background: url(../img/hune.svg);
  background-repeat: no-repeat;
}

#horizon2 {
  position: absolute;
  bottom: 29px;
  right: 0;
  width: 0;
  height: 2px;
  background: #176B8C;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 30px;
  height: 100%;
}

.header__hamburger-area {
  background-color: #fff;
  width: 5rem;
  height: 5rem;
  text-align: center;
  z-index: 9999;
}

.header__hamburger span {
  width: 100%;
  height: 2px;
  background-color: #176B8C;
  position: relative;
  transition: ease .4s;
  display: block;
}

.header__hamburger span:nth-child(1) {
  top: 0;
}

.header__hamburger span:nth-child(2) {
  margin: 8px 0;
}

.header__hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.sp-nav.active {
  transform: translateX(0);
  top: 60px;
}

.header__hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

/* セクション基本スタイル */
.section-title {
  padding: 60px 0 30px 0;
}

.text-area {
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 769px) {
  .text-area {
    padding: 40px;
    margin: 0 80px;
  }
}

@media screen and (min-width: 986px) {
  .text-area {
    margin: 0 140px;
  }
}

.bg-lightblue {
  background-color: var(--lightblue);
}

/* 目指すもの・概要 */
#mainvisual {
  padding: 60px 0 0 0;
}

@media screen and (min-width: 769px) {

  .outline__aim .text-area,
  .outline__overview .text-area {
    padding: 30px;
  }

  .outline__aim .text-area p,
  .outline__overview .text-area p {
    font-size: 1.7rem;
  }
}

.overview__about {
  text-align: center;
}

.overview__about h5 {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .overview__about h5 {
    margin-bottom: 25px;
  }
}

.overview__about .about__text {
  text-align: start;
}

.overview__about .about__slogan .slogan__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.overview__about .about__slogan .slogan__text {
  padding-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .overview__about .about__slogan .slogan__text p {
    display: inline-block;
  }

  .overview__about .about__slogan .slogan__text {
    padding-bottom: 40px;
  }
}

.overview__about .about__slogan {
  background-image: radial-gradient(at 50% 60%, rgba(224, 224, 224, 1), rgba(224, 224, 224, 0) 50%);
}

#schedule {
  padding-top: 50px;
  margin-top: -10px;
}

@media screen and (min-width: 769px) {
  #schedule {
    padding-top: 90px;
    margin-top: -30px;
  }
}

.overview__schedule {
  text-align: center;
}

.overview__schedule dl dt {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

@media screen and (min-width: 769px) {
  .overview__schedule {
    text-align: start;
  }

  .overview__schedule dl {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    padding-left: 18%;
  }

  .overview__schedule dl dt {
    width: 10%;
    margin: 0 0 40px 0;
  }

  .overview__schedule dl dd {
    width: 90%;
  }
}

@media screen and (min-width: 1115px) {
  .overview__schedule dl {
    padding-left: 22%;
  }
}

.schedule__venue {
  display: inline-block;
  padding-left: 8px;
}

.schedule__venue .schedule__day--wrap {
  background-color: var(--blue);
  color: #fff;
  border-radius: 5px;
  padding: 5px 7px;
  display: inline-block;
  white-space: nowrap;
}

.schedule__venue .schedule__day {
  display: flex;
  align-items: start;
  justify-content: space-around;
}

@media screen and (min-width: 769px) {
  .schedule__venue {
    padding-left: 0;
  }

  .schedule__venue .schedule__day {
    justify-content: start;
  }
}

.schedule__venue .schedule__day:first-child {
  margin-bottom: 25px;
}

.schedule__venue .schedule__day--text {
  text-align: start;
  margin-left: 10px;
  width: 80%;
}

.overview__schedule dl dd .schedule__day--text p {
  font-weight: 500;
  font-size: 1.6rem;
}

.overview__schedule dl dd .schedule__day--text .small-text {
  font-family: YuGothic, 'Yu Gothic', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック', 'MS Gothic', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 8px 0 12px 0;
}

@media screen and (min-width: 769px) {
  .overview__schedule dl dd .schedule__day--text p {
    font-size: 2rem;
  }

  .overview__schedule dl dd .schedule__day--text .small-text {
    font-size: 1.6rem;
    margin: 12px 0 15px 0;
  }
}

.schedule__day--text .google-map img {
  width: 17px;
  height: 17px;
  margin-left: 5px;
}

.schedule__day--text .google-map {
  background-color: #D9D9D9;
  border-radius: 30px;
  display: inline-block;
}

.google-map:hover {
  opacity: 0.8;
}

.schedule__day--text .google-map a {
  font-size: 1.5rem;
  padding: 15px 30px;
  display: block;
  height: 100%;
}

.outline__bk {
  width: 100%;
  height: 150px;
  position: relative;
  border-bottom-right-radius: 100px;
}

.outline__bk img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 160px;
}

@media screen and (min-width: 769px) {
  .outline__bk {
    height: 200px;
    border-bottom-right-radius: 250px;
  }

  .outline__bk img {
    right: 5px;
    bottom: 20px;
    width: 250px;
    height: 200px;
  }
}

/* 動画・SNS */
.media__youtube {
  text-align: center;
  margin-bottom: 70px;
}

.media__youtube .youtube__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 540px;
  justify-content: space-between;
  margin: 0 auto;
}

.media__youtube .youtube__list li {
  width: 49%;
  margin-bottom: 5px;
}

.media__youtube .youtube__list li iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.8;
}

@media screen and (min-width: 769px) {
  .media__youtube {
    margin-bottom: 120px;
  }

  .media__youtube .youtube__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    max-width: 1280px;
    gap: 0.5%;
  }

  .media__youtube .youtube__list li {
    width: 100%;
  }
}

.media__youtube .youtube__more {
  background-color: #E43737;
  border: #E43737 solid 2px;
  margin-top: 20px;
}

.media__youtube .youtube__more:hover {
  background-color: #fff;
}

.media__youtube .youtube__more a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 15px 30px;
  display: block;
  height: 100%;
  position: relative;
  color: #fff;
  transition: 0.3s;
}

.media__youtube .youtube__more a:hover {
  color: #E43737;
}

@media screen and (min-width: 769px) {
  .media__youtube .youtube__more {
    margin-top: 30px;
  }

  .media__youtube .youtube__more a {
    font-size: 1.6rem;
    padding: 16px 36px;
  }
}

.btn-arrow::after {
  content: '';
  position: absolute;
  top: 42%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: all .3s;
}

.btn-arrow:hover::after {
  right: 11px;
  border-top: 2px solid #E43737;
  border-right: 2px solid #E43737;
}

.media__facebook {
  text-align: center;
  height: 550px;
}

.media__facebook iframe {
  width: 340px;
  padding-bottom: 50px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .media__facebook {
    height: 600px;
  }

  .media__facebook iframe {
    width: 500px;
    height: 500px;
  }
}

/* プログラム */
.program__title {
  padding-bottom: 10px;
}

.program__venue {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .program__venue {
    font-size: 1.8rem;
  }
}

.bg-gradient01 {
  background-image: radial-gradient(at 25% 0%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 1) 50%, rgba(179, 222, 227, 1) 72%);
}

@media screen and (min-width: 769px) {
  .first-program__program {
    padding-bottom: 20px;
  }
}

.program__timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  padding: 50px 0;
  max-width: 510px;
  margin: 0 auto;
}

.program__timeline dt,
.program__timeline dd {
  color: var(--blue);
  font-weight: 500;
}

.program__timeline dt {
  width: 15%;
  padding-left: 10px;
}

.program__timeline dd {
  width: 85%;
  margin-bottom: 20px;
  border-left: #fff solid 5px;
  padding: 0 10px 0 15px;
}

@media screen and (min-width: 769px) {
  .program__timeline {
    padding: 70px 0;
    width: 80%;
    max-width: 700px;
  }

  .program__timeline dd {
    margin-bottom: 30px;
  }
}

.program__timeline .timeline__plus {
  font-family: YuGothic, 'Yu Gothic', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック', 'MS Gothic', sans-serif;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 5px;
}

@media screen and (min-width: 769px) {
  .program__timeline .timeline__plus {
    font-size: 1.7rem;
  }
}

.program__timeline .timeline__content {
  font-size: 1.4rem;
  font-weight: 500;
  border: solid #ffffff 3px;
  padding: 1.5rem;
  margin: 15px auto;
}

@media screen and (min-width: 769px) {
  .program__timeline .timeline__content {
    font-size: 1.9rem;
  }
}

.last-program__program .small-text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.last-program__timeline img {
  display: block;
  margin: 0 auto 20px;
}

@media screen and (min-width: 769px) {
  .last-program__timeline img {
    margin-bottom: 30px;
  }
}

.bunkakai_pdf {
  width: 100%;
  margin-top: 15px;
  padding-left: 10px;
  font-weight: 500;
}

.bunkakai_pdf a {
  color: var(--blue);
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .bunkakai_pdf {
    margin-top: 40px;
    font-size: 18px;
  }
}

.bg-gradient02 {
  background-image: radial-gradient(at 75% 100%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 1) 60%, rgba(179, 222, 227, 1) 72%);
}

/* ゲスト */
.guest__music,
.guest__speech,
.guest__discussion {
  margin-bottom: 30px;
}

.guest__title {
  border-bottom: #176B8C solid 1px;
  padding-bottom: 10px;
  text-align: center;
  margin: 0 20px 20px 20px;
}

@media screen and (min-width: 769px) {

  .guest__music,
  .guest__speech {
    margin-bottom: 40px;
  }

  .guest__title {
    text-align: start;
    margin: 0 20px 35px 20px;
  }
}

.guest__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 1190px) {
  .guest__box {
    flex-direction: row;
    align-items: start;
  }
}

.guest__music .space {
  margin-bottom: 40px;
}

.music__photo {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.guest__photo-area {
  padding: 0 5%;
}

.guest__photo-area.wide {
  padding: 0;
}

.img-vertical {
  height: auto;
  width: 150px;
}

@media screen and (min-width: 480px) {
  .guest__photo-area {
    padding: 0;
  }

  .img-horizontal {
    height: 150px;
    width: auto;
  }
}

@media screen and (min-width: 769px) {
  .img-horizontal {
    height: 180px;
    width: auto;
  }

  .img-vertical {
    height: auto;
    width: 180px;
  }
}

.photo-credit {
  font-size: 1rem;
}

.guest__text-area {
  text-align: center;
}

.guest__text {
  line-height: 1.5;
  text-align: start;
}

@media screen and (min-width: 1190px) {
  .guest__text-area {
    text-align: start;
    margin-left: 2%;
  }

  .discussion__panelist .guest__text-area {
    margin-left: 0;
  }
}

.guest__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 10px 0;
}

@media screen and (min-width: 769px) {
  .guest__name {
    font-size: 2rem;
    margin: 0 0 15px 0;
  }
}

.guest__speech .guest__name {
  margin: 15px 0 10px 0;
}

/* パネリスト */
.guest__discussion h6 {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .guest__discussion h6 {
    text-align: start;
  }
}

.guest__discussion .discussion__theme {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .guest__discussion .discussion__theme {
    margin-bottom: 50px;
    font-size: 1.7rem
  }
}

.discussion__panelist {
  display: flex;
  flex-direction: column;
}

.discussion__panelist .guest__box {
  flex-direction: row;
  align-items: start;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .discussion__panelist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .discussion__panelist .guest__box {
    width: 48%;
    margin-bottom: 25px;
  }
}

.guest__job {
  background-color: var(--blue);
  border-radius: 5px;
  padding: 4px 8px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 5px;
  white-space: nowrap;
}

.discussion__panelist .guest__photo-area {
  padding: 0 5% 0 0;
}

.discussion__photo img {
  height: auto;
  width: 120px;
}

@media screen and (min-width: 769px) {
  .discussion__photo img {
    width: 130px;
  }
}

.discussion__panelist .guest__text-area {
  text-align: start;
}

.discussion__panelist .guest__text-area.last {
  margin-bottom: 0;
}

.discussion__text .guest__name {
  font-size: 1.6rem;
  margin-top: 0;
}

.discussion__text .guest__position {
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

.discussion__text .guest__text {
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .discussion__text .guest__position {
    margin-bottom: 10px;
  }

  .discussion__text .guest__name {
    font-size: 1.8rem;
  }
}

/* 新聞アート展示 */
.guest__exhibition {
  container-type: inline-size;
}

.guest__exhibition h6 {
  margin: 20px 0;
  text-align: center;
}

.exhibition__box {
  margin-top: 30px;
}

.exhibition__photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 3%;
}

.exhibition__photo img {
  height: 115px;
  width: auto;
  margin-bottom: 10px;
}

.exhibition__text {
  margin-top: 10px;
}

@media screen and (min-width: 1190px) {
  .guest__exhibition h6 {
    margin-top: 0;
    text-align: start;
  }

  .exhibition__photo {
    justify-content: start;
  }
}

@container(min-width: 784px) {
  .exhibition__photo {
    width: 100%;
  }

  .exhibition__photo img {
    height: 140px;
  }
}


/* 申し込み */
.bg-image {
  height: auto;
  background-image: url(../img/sp-bg_image.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding-bottom: 30px;
}

@media screen and (min-width: 423px) {
  .bg-image {
    background-image: url(../img/pc-bg_image.jpg);
    background-position: center;
  }
}

#apply .text-area {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  #apply .text-area {
    margin-bottom: 40px;
    padding-bottom: 50px;
  }
}

.apply__note {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.apply__note span {
  color: var(--red);
  font-size: 1.7rem;
  font-weight: 500;
  padding: 0 15px;
}

.apply__attention {
  margin-bottom: 30px;
}

.apply__attention .attention--red {
  color: var(--red);
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  margin: 10px 0;
}

.apply__attention a {
  color: var(--blue);
}

@media screen and (min-width: 769px) {
  .apply__note {
    font-size: 2rem;
  }

  .apply__note span {
    font-size: 2rem;
    padding: 0 20px;
  }

  .apply__attention {
    margin-bottom: 50px;
  }

  .apply__attention .attention--red {
    font-size: 1.8rem;
    margin: 20px 0;
  }
}

.apply__end {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .apply__end {
    font-size: 22px;
  }
}

.apply--inner{
  padding-top: 60px;
}



/* 申し込みtable */
tr:nth-child(1) {
  border: 1px #176B8C solid;
}

th,
td {
  font-size: 1.5rem;
}

th {
  border-right: 1px #fff solid;
  background-color: var(--blue);
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  padding: 5px;
}

th:nth-child(3) {
  border-right: none;
}

td {
  border: 1px #176B8C solid;
  padding: 10px;
}

td a {
  color: var(--blue);
  text-decoration: underline;
}

td b {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

tr td:nth-child(1) {
  width: 50%;
}

tr td:nth-child(2) {
  width: 25%;
  text-align: center;
}

tr td:nth-child(3) {
  width: 25%;
  text-align: center;
}

table {
  border-collapse: collapse;
}

.apply__table {
  margin: 20px auto;
}



@media screen and (min-width: 769px) {

  th,
  td {
    font-size: 1.8rem;
  }

  th {
    line-height: 1.6;
    padding: 10px;
  }

  .apply__price .small-text {
    font-size: 1.5rem;
  }

  .apply__table {
    margin-bottom: 40px;
  }

}



/* 問い合わせ */

.inquiry__box-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.inquiry__title {
  padding-top: 0;
}

.inquiry__box {
  border: #176B8C solid 1px;
  border-radius: 5px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .inquiry__box-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }

  .inquiry__box {
    width: 80%;
    max-width: 700px;
  }
}

.inquiry__box dt {
  background-color: var(--blue);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 10px;
}

.inquiry__box dd {
  font-family: YuGothic, 'Yu Gothic', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック', 'MS Gothic', sans-serif;
  padding: 10px;
}

.inquiry__box dd .inquiry__company {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.inquiry__box dd .inquiry__mail {
  color: var(--blue);
}

@media screen and (min-width: 769px) {
  .inquiry__box dt {
    font-size: 2rem;
    padding: 15px;
  }

  .inquiry__box dd {
    padding: 15px;
  }

  .inquiry__box dd .inquiry__company {
    font-size: 1.8rem;
  }
}

/* リンク集 */
.apply__link .link__company {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.apply__link .link__company a {
  width: 45%;
}

.apply__link .link__company a:hover {
  opacity: 0.8;
}

.apply__link ul li {
  background-color: #fff;
  border: solid #B0E0E6 3px;
  border-radius: 5px;
  padding: 15px 0;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .apply__link .link__company {
    padding-top: 30px;
    gap: 25px;
  }

  .apply__link .link__company a {
    width: 30%;
  }

  .apply__link ul li {
    padding: 20px 0;
  }
}

.apply__link p {
  color: #fff;
  padding: 20px 10px;
}

@media screen and (min-width: 1200px) {
  .apply__link p {
    padding: 30px 10px 80px;
  }
}

/* フッター */
.bg-green {
  background-image: linear-gradient(180deg, rgba(25, 85, 86, 1), rgba(26, 68, 71, 1) 80%);
}

#footer {
  color: #fff;
  font-size: 1.4rem;
}

.footer__inner{
  padding-top: 50px;
}
.top-line {
  border-top: #fff solid 1px;
  padding: 15px 0;
}

@media screen and (min-width: 769px) {
  .top-line {
    margin: 20px 80px 0 80px;
  }
}

@media screen and (min-width: 986px) {
  .top-line {
    margin: 20px 140px 0 140px;
  }
}

.footer__wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer__organize .footer__wrap {
  margin-top: 10px;
}

@media screen and (min-width: 375px) {
  .footer__wrap {
    gap: 20px;
  }
}

@media screen and (min-width: 430px) {
  .footer__wrap {
    gap: 40px;
  }
}

@media screen and (min-width: 769px) {
  .footer__wrap {
    margin-bottom: 40px;
    gap: 50px;
  }

  .footer__organize .footer__wrap {
    margin-bottom: 0;
    gap: 30px;
  }

  .footer__organize .footer__wrap {
    margin-top: 20px;
  }
}

@media screen and (min-width: 986px) {
  .footer__wrap {
    gap: 100px;
  }
}

@media screen and (min-width: 1104px) {
  .footer__organize .footer__wrap {
    gap: 50px;
  }
}

.footer__title {
  font-size: 1.8rem;
  padding: 15px 0;
  text-align: center;
}

.footer__committee p {
  text-align: center;
  margin-bottom: 15px;
}

@media screen and (min-width: 769px) {
  .footer__committee p {
    margin-bottom: 30px;
  }
}

.footer__wrap dt {
  background-color: rgb(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 3px;
  height: fit-content;
  white-space: nowrap;
  font-size: 1.3rem;
}

.footer__wrap dd {
  font-size: 1.2rem;
}

@media screen and (min-width: 460px) {
  .footer__wrap dd {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 769px) {
  .footer__wrap dt {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1044px) {
  .footer__wrap dd {
    font-size: 1.4rem;
  }
}

.dl-column {
  display: flex;
  gap: 5px;
}

@media screen and (min-width: 1044px) {
  .dl-column {
    gap: 8px;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 769px) {
  .footer-column {
    flex-direction: row;
    gap: 50px;
  }

  .footer__organize .footer-column {
    gap: 30px;
  }
}

@media screen and (min-width: 986px) {
  .footer-column {
    gap: 100px;
  }
}

@media screen and (min-width: 1104px) {
  .footer__organize .footer-column {
    gap: 50px;
  }
}

.footer__promotion{
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 15px;
  position: relative;
  z-index: 10;
}

.promotion__logo-area {
  display: flex;
  align-items: start;
  margin: 0 auto;
}

.promotion__text{
  margin-top: 20px;
}

.promotion__logo-area img {
  display: block;
  width: 50px;
  height: 50px;
}

.footer__promotion p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}

.promotion__logo-area p {
    margin-left: 10px;
}

@media screen and (min-width: 769px) {
  .footer__promotion {
    padding: 50px 20% 0;
  }

  .promotion__logo-area p {
    margin-left: 20px;
  }
}

/* フッター画像 */
.footer__img {
  position: relative;
  height: 60px;
  z-index: 0;
}

.footer__img img {
  height: 250px;
  object-fit: cover;
  object-position: 60% 100%;
  position: absolute;
  bottom: -10px;
}

@media screen and (min-width: 769px) {
  .footer__img {
    height: 100px;
  }

  .footer__img img {
    height: 150px;
    object-position: 100% 88%;
    bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .footer__img {
    height: 150px;
  }
}

/* コピーライト */
.footer__copyright {
  width: 100%;
  background-color: #000;
  padding: 5px;
  text-align: center;
}

.footer__copyright p {
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .footer__copyright {
    padding: 7px;
  }

  .footer__copyright p {
    letter-spacing: 1.5px;
  }
}

.no-wrap {
  white-space: nowrap;
}

.uncertain {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: var(--red);
  padding: 30px 0 50px 0;
}

@media screen and (min-width: 769px) {
  .uncertain {
    font-size: 20px;
    padding: 50px 0;
  }
}


.thanks-text{
  text-align: center;
  margin-top: 50px;
}
.thanks-text p{
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: bold;
  color: var(--blue);
  text-shadow: #fff 0 0 5px;
}

.thanks-text .text-large{
  font-size: clamp(1.7rem, 3.5vw, 3.5rem);
  display: inline-block;
  border-bottom: #176B8C 2px solid;
  margin-bottom: 10px;
  padding-left: 0.5em;
  text-shadow: #176B8C 0 0 1px;
}

@media screen and (min-width: 769px) {
  .thanks-text{
  margin-top: 80px;
}
}

.a--decolation {
  text-decoration: underline;
  color: #fff;
}

.pc-display {
  display: none;
}

@media screen and (min-width: 769px) {
  .pc-display {
    display: block;
  }

  .sp-display {
    display: none;
  }
}