@charset "UTF-8";
/* 基本設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

.section-title {
  margin-bottom: 30px;
}

.section-title-en {
  margin-bottom: 40px;
}

/* Hero Section */
.hero {
  position: relative;
}
.hero .hero-container {
  width: 100%;
}
.hero .hero-container .hero-mainvisual {
  width: 100%;
  z-index: 1;
}
.hero .hero-container .hero-mainvisual .takamatsu-mainvisual-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-container .hero-mainvisual .hero-content {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(85%, 0);
  width: 50%;
}
.hero .hero-container .hero-mainvisual .hero-content .hero-text-image img {
  width: 100%;
}
.hero .hero-container .hero-mainvisual .hero-content .hero-content-item {
  border-radius: 20px;
  padding: 10px 20px;
  /* 18~26px */
  font-size: clamp(1.125rem, 0.625rem + 0.83vw, 1.625rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  max-width: 520px;
  min-width: 350px;
  width: 55%;
  margin-left: 9%;
}
.hero .hero-container .hero-mainvisual .hero-content .item-red {
  background-color: var(--red);
  color: var(--white);
}

/* 新着情報 */
.news-section {
  padding: 80px 50px;
  background: var(--bg-gray);
  position: relative;
}
.news-section .news-container {
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  /* ボタンエリア */
}
.news-section .news-container .news-header {
  margin-bottom: 40px;
  position: relative;
}
.news-section .news-container .news-content {
  width: 57vw;
  min-width: 800px;
  margin: auto;
  padding: 30px;
  background-color: var(--white);
}
.news-section .news-container .news-content .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.news-section .news-container .news-content .news-item {
  padding: 6px 0;
  border-bottom: 1px solid var(--black0);
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.news-section .news-container .news-content .news-date {
  padding: 6px 15px;
  font-size: 18px;
  white-space: nowrap;
  font-weight: 400;
  color: var(--black0);
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
  width: 100px;
}
.news-section .news-container .news-content .news-text {
  flex: 1;
  padding: 6px 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--black0);
  line-height: 1.2;
  font-weight: 400;
}
.news-section .news-container .news-content .news-text a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.news-section .news-container .news-content .news-text a:hover {
  opacity: 0.8;
}
.news-section .news-container .news-buttons {
  margin-top: 50px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 2.5%;
  position: relative;
}

/* 授業クラスセクション */
.class-section {
  background: var(--white);
  padding: 80px 0 30px;
}
.class-section .class-container {
  max-width: 57vw;
  min-width: 800px;
  margin: 0 auto;
  /* ヘッダー */
}
.class-section .class-container .class-header {
  text-align: center;
  margin-bottom: 60px;
}
.class-section .class-container .class-grid-wrapper {
  width: 100%;
  /* クラスグリッド */
}
.class-section .class-container .class-grid-wrapper .class-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  width: 100%;
  justify-content: center;
  /* クラスカード */
  /* 各クラスの色分け */
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 31.3333333333%;
  margin-bottom: 50px;
  /* コンテンツ */
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-image {
  width: 100%;
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-image img {
  width: 100%;
  aspect-ratio: 0.95/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 3;
  height: clamp(3.75rem, 1.875rem + 3.13vw, 5.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-content h3 {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--white);
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.125rem, 0.75rem + 0.63vw, 1.5rem); /* 1920~960pxで24~18px*/
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-content h3::after {
  content: "";
  display: inline-block;
  vertical-align: 1px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 10%;
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card.pink .class-card-content {
  background: var(--pink);
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card.green .class-card-content {
  background: var(--green);
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card.yellow .class-card-content {
  background: var(--yellow);
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card.navy .class-card-content {
  background: var(--navy);
}
.class-section .class-container .class-grid-wrapper .class-grid .class-card.purple .class-card-content {
  background: var(--purple);
}

/* 季節講習セクション */
.seasonal-section {
  background-image: url(../../images/takamatsu-top/takamatsu-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 3.84/1;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.seasonal-section .seasonal-container {
  margin: 0 auto;
  padding: 0 20px;
  /* 右側のコンテンツエリア */
}
.seasonal-section .seasonal-container .seasonal-content-area {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30%;
  transform: translate(50%, 30%);
}
.seasonal-section .seasonal-container .seasonal-content-area .seasonal-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 0.5rem + 1.67vw, 2.5rem); /* 1920~960pxで40~24px*/
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
  margin-bottom: 10px;
}
.seasonal-section .seasonal-container .seasonal-content-area .seasonal-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(2.125rem, 0.75rem + 2.29vw, 3.5rem); /* 1920~960pxで56~34px*/
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
  margin-bottom: clamp(1.875rem, 0.625rem + 2.08vw, 3.125rem); /* 1920~960pxで50~30px*/
  line-height: 100%;
}
.seasonal-section .seasonal-container .seasonal-content-area .btn-detail {
  display: inline-block;
  border: solid 3px var(--white);
  padding: clamp(0.375rem, -0.125rem + 0.83vw, 0.875rem) 0; /* 14~6 */
  height: clamp(3.125rem, 1.875rem + 2.08vw, 4.375rem); /* 1920~960pxで70~50px*/
}
.seasonal-section .seasonal-container .seasonal-content-area .btn-detail::after {
  border: none;
  content: "";
  background-image: url(../../images/pdf-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(0);
  display: block;
  width: 25px;
  height: 27px;
  top: 28%;
  right: 20px;
}
.seasonal-section .seasonal-container .seasonal-content-area .btn-detail:hover:after {
  background-image: url(../../images/pdf-white.png);
}
.seasonal-section .seasonal-container .seasonal-content-area .btn-detail:hover {
  border: solid 3px var(--white);
}

/* 卒業生メッセージセクション */
.message-section {
  background: var(--white);
  padding: 80px 0;
}
.message-section .message-container {
  border: solid 3px var(--blue);
  padding: 60px;
  width: 75vw;
  min-width: 850px;
  margin: auto;
}
.message-section .message-container .message-header {
  text-align: center;
}
.message-section .message-container .message-header .section-title {
  margin-bottom: 20px;
}
.message-section .message-container .swiper-container:not(.ig-swiper-container) {
  position: relative;
  z-index: 100;
}
.message-section .message-container .swiper-container:not(.ig-swiper-container) .swiper-button-prev,
.message-section .message-container .swiper-container:not(.ig-swiper-container) .swiper-button-next {
  width: clamp(1.875rem, 1.25rem + 1.04vw, 2.5rem); /* 1920~960で40~30px */
  height: clamp(1.875rem, 1.25rem + 1.04vw, 2.5rem); /* 1920~960で40~30px */
  background-color: rgba(34, 34, 34, 0.8);
  border-radius: 50%;
}
.message-section .message-container .swiper-container:not(.ig-swiper-container) .swiper-button-next {
  right: 0;
}
.message-section .message-container .swiper-container:not(.ig-swiper-container) .swiper-button-prev {
  left: 0; /* ボタンの位置 */
}
.message-section .message-container .swiper-container:not(.ig-swiper-container) .swiper-button-next::after {
  font-size: clamp(0.875rem, 0.5rem + 0.63vw, 1.25rem); /* 1920~960で20~14px */
  font-weight: 900;
  color: var(--white);
  margin-left: 2px;
}
.message-section .message-container .swiper-container:not(.ig-swiper-container) .swiper-button-prev::after {
  font-size: clamp(0.875rem, 0.5rem + 0.63vw, 1.25rem); /* 1920~960で20~14px */
  font-weight: 900;
  color: var(--white);
  margin-right: 2px;
}
.message-section .message-container .swiper:not(.ig-swiper) {
  width: 90%;
}
.message-section .message-container .swiper:not(.ig-swiper) .swiper-slide {
  height: auto;
}
.message-section .message-container .swiper:not(.ig-swiper) .message-item {
  background-color: var(--bg-blue);
  border-radius: 20px;
  padding: 10px;
}
.message-section .message-container .swiper:not(.ig-swiper) .message-item .message-item-img img {
  width: 100%;
  aspect-ratio: 1.32/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.message-section .message-container .swiper:not(.ig-swiper) .message-item .message-item-text .catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.625rem + 0.42vw, 1.125rem); /* 18~14px */
  line-height: 140%;
  letter-spacing: 5%;
  color: var(--blue);
  text-align: center;
}
.message-section .message-container .swiper:not(.ig-swiper) .message-item .message-item-text .name-container {
  display: flex;
  justify-content: center;
}
.message-section .message-container .swiper:not(.ig-swiper) .message-item .message-item-text .name-container p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.5rem + 0.42vw, 1rem); /* 16~12px */
  line-height: 140%;
  letter-spacing: 5%;
  text-align: center;
  color: var(--black);
}

/* 教室長メッセージセクション */
.principal-message-section {
  background: var(--white);
  padding: 0 0 80px;
}
.principal-message-section .principal-container {
  width: 75vw;
  min-width: 850px;
  margin: auto;
}
.principal-message-section .principal-container .principal-content-wrapper {
  display: flex;
  gap: 4%;
  align-items: stretch;
  /* 左側の画像エリア */
  /* 右側のコンテンツエリア */
}
.principal-message-section .principal-container .principal-content-wrapper .principal-image-area {
  position: relative;
  width: 50%;
}
.principal-message-section .principal-container .principal-content-wrapper .principal-image-area img {
  width: 100%;
  aspect-ratio: 1.48/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.principal-message-section .principal-container .principal-content-wrapper .principal-image-area::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 25.5vw;
  background-color: var(--bg-blue);
  top: 10%;
  right: 14%;
  z-index: -1;
}
.principal-message-section .principal-container .principal-content-wrapper .principal-content-area {
  width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 署名エリア */
  /* ボタンエリア */
}
.principal-message-section .principal-container .principal-content-wrapper .principal-content-area .section-title {
  letter-spacing: 0;
}
.principal-message-section .principal-container .principal-content-wrapper .principal-content-area .principal-message {
  margin-bottom: 30px;
}
.principal-message-section .principal-container .principal-content-wrapper .principal-content-area p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 5%;
}
.principal-message-section .principal-container .principal-content-wrapper .principal-content-area .principal-signature p {
  text-align: right;
  margin-bottom: 25px;
}
.principal-message-section .principal-container .principal-content-wrapper .principal-content-area .principal-button-area {
  text-align: left;
}

/* Googleマップ */
.google-map-container iframe {
  border: none;
  margin: 0px;
  width: 100%;
  height: 26.0416666667vw;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .hero .hero-container .hero-mainvisual .hero-content .hero-text-image img {
    width: 90%;
  }
  .hero .hero-container .hero-mainvisual .hero-content .hero-content-item {
    margin-left: 8%;
  }
}
@media screen and (max-width: 960px) {
  .section-title {
    margin-bottom: 10px;
  }
  .section-title-en {
    margin-bottom: 20px;
  }
  /* Hero Section */
  .hero {
    position: relative;
  }
  .hero .hero-container {
    margin-top: -70px;
  }
  .hero .hero-container .hero-mainvisual {
    width: 100%;
    z-index: 1;
  }
  .hero .hero-container .hero-mainvisual .hero-content {
    padding: 0 20px;
    width: 100%;
    max-width: auto;
    position: absolute;
    top: auto;
    bottom: 5%;
    left: 0;
    right: 0;
    transform: translate(0, 0);
  }
  .hero .hero-container .hero-mainvisual .hero-content .hero-content-item {
    padding: 20px 10px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    font-size: 22px;
  }
  /* 新着情報 */
  .news-section {
    padding: 50px 0;
  }
  .news-section .news-container {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    /* ボタンエリア */
  }
  .news-section .news-container .news-header {
    margin-bottom: 20px;
    position: relative;
  }
  .news-section .news-container .news-content {
    width: 100%;
    min-width: auto;
    margin: auto;
    max-width: 800px;
  }
  .news-section .news-container .news-content .news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .news-section .news-container .news-content .news-item {
    padding: 4px 0;
    flex-direction: column;
    gap: 0;
  }
  .news-section .news-container .news-content .news-date {
    padding: 2px 10px 4px;
    min-width: auto;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    width: auto;
  }
  .news-section .news-container .news-content .news-text {
    padding: 4px 10px;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  .news-section .news-container .news-buttons {
    margin-top: 30px;
    flex-direction: column;
    z-index: 2;
  }
  /* 授業クラスセクション */
  .class-section {
    padding: 50px 20px;
  }
  .class-section .class-container {
    max-width: 700px;
    min-width: auto;
    width: 100%;
    margin: auto;
    /* ヘッダー */
  }
  .class-section .class-container .class-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .class-section .class-container .class-grid-wrapper {
    width: 100%;
    /* クラスグリッド */
  }
  .class-section .class-container .class-grid-wrapper .class-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    justify-content: center;
    /* クラスカード */
  }
  .class-section .class-container .class-grid-wrapper .class-grid .class-card {
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0;
    aspect-ratio: 3.27/1;
    overflow: hidden;
    /* コンテンツ */
  }
  .class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-image {
    width: 50%;
  }
  .class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-image img {
    width: 100%;
    aspect-ratio: 1.64/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-content {
    position: static;
    width: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0;
  }
  .class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-content h3 {
    font-size: 16px;
  }
  .class-section .class-container .class-grid-wrapper .class-grid .class-card .class-card-content h3::after {
    content: "";
    display: inline-block;
    vertical-align: 1px;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 3%;
  }
  /* 季節講習セクション */
  .seasonal-section {
    background-image: url(../../images/takamatsu-top/takamatsu-banner-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1.25/1;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: var(--blue);
  }
  .seasonal-section .seasonal-container {
    margin: 0 auto;
    padding: 0;
    /* 右側のコンテンツエリア */
  }
  .seasonal-section .seasonal-container .seasonal-content-area {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 70%);
    text-align: center;
  }
  .seasonal-section .seasonal-container .seasonal-content-area .seasonal-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--white);
  }
  .seasonal-section .seasonal-container .seasonal-content-area .seasonal-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 100%;
  }
  .seasonal-section .seasonal-container .seasonal-content-area .btn-detail {
    display: inline-block;
    padding: 10px 0;
    height: 50px;
  }
  .seasonal-section .seasonal-container .seasonal-content-area .btn-detail::after {
    border: none;
    content: "";
    background-image: url(../../images/pdf-blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(0);
    display: block;
    width: 25px;
    height: 27px;
    top: 22%;
    right: 20px;
  }
  .seasonal-section .seasonal-container .seasonal-content-area .btn-detail:hover:after {
    background-image: url(../../images/pdf-white.png);
  }
  /* 卒業生メッセージセクション */
  .message-section {
    background: var(--white);
    padding: 50px 20px;
  }
  .message-section .message-container:not(.ig-swiper-container) {
    border: solid 3px var(--blue);
    padding: 30px;
    width: 100%;
    min-width: auto;
    margin: auto;
  }
  .message-section .message-container:not(.ig-swiper-container) .message-header {
    text-align: center;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper-container {
    position: relative;
    z-index: 100;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper-container .swiper-button-prev,
  .message-section .message-container:not(.ig-swiper-container) .swiper-container .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper-container .swiper-button-next {
    right: -8%;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper-container .swiper-button-prev {
    left: -8%; /* ボタンの位置 */
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper-container .swiper-button-next::after {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-left: 2px;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper-container .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-right: 2px;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper:not(.swiper-ig) {
    width: 90%;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper:not(.swiper-ig) .swiper-slide {
    height: auto;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper:not(.swiper-ig) .message-item {
    background-color: var(--bg-blue);
    border-radius: 20px;
    padding: 20px;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper:not(.swiper-ig) .message-item .message-item-img img {
    width: 100%;
    aspect-ratio: 1.32/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper:not(.swiper-ig) .message-item .message-item-text .catchphrase {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 5%;
    color: var(--blue);
    text-align: center;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper:not(.swiper-ig) .message-item .message-item-text .name-container {
    display: flex;
    justify-content: center;
  }
  .message-section .message-container:not(.ig-swiper-container) .swiper:not(.swiper-ig) .message-item .message-item-text .name-container p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 5%;
    text-align: center;
  }
  /* 教室長メッセージセクション */
  .principal-message-section {
    background: var(-white);
    padding: 0 20px 50px;
  }
  .principal-message-section .principal-container {
    width: 100%;
    min-width: auto;
    margin: auto;
  }
  .principal-message-section .principal-container .principal-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    /* 左側の画像エリア */
    /* 右側のコンテンツエリア */
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-image-area {
    position: relative;
    width: 100%;
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-image-area img {
    width: 100%;
    aspect-ratio: 1.65/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-image-area::after {
    content: "";
    width: 0;
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-content-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 署名エリア */
    /* ボタンエリア */
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-content-area h2 {
    margin-bottom: 20px;
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-content-area .principal-message {
    margin-bottom: 0;
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-content-area p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 5%;
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-content-area .principal-signature p {
    text-align: right;
    margin-bottom: 30px;
  }
  .principal-message-section .principal-container .principal-content-wrapper .principal-content-area .principal-button-area {
    text-align: center;
  }
  /* Googleマップ */
  .google-map-container iframe {
    border: none;
    margin: 0px;
    width: 100%;
    height: 51.2820512821vw;
    overflow: hidden;
  }
}
@media (max-width: 601px) {
  /* ヒーロー */
  .hero {
    height: calc(100svh - 70px);
    overflow: hidden;
  }
  .hero .hero-container .hero-mainvisual .takamatsu-mainvisual-img {
    height: 100%;
    overflow: hidden;
  }
  .hero .hero-container .hero-mainvisual .takamatsu-mainvisual-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
    padding: 0;
  }
  .hero .hero-container .hero-mainvisual .hero-content {
    transform: translate(0, 0);
  }
  .hero .hero-container .hero-mainvisual .hero-content .hero-content-item {
    padding: 10px 10px 0;
    height: auto;
    min-height: auto;
    min-width: auto;
    font-size: 16px;
    height: 126px;
  }
  .hero .hero-container .hero-mainvisual .hero-content .hero-content-item a {
    margin-top: 5px;
    margin-bottom: 0;
  }
  /* 季節講習セクション */
  .seasonal-section {
    aspect-ratio: 0.95/1;
  }
  .seasonal-section .seasonal-container .seasonal-content-area {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 57%);
  }
}/*# sourceMappingURL=takamatsu-top.css.map */