@charset "UTF-8";

/* --------------------------------
   TOP hero
 -------------------------------- */
.p-topHero {
  position: relative;
}
.p-topHero__item {
  height: min(70vh, 700px);
}
.p-topHero__item a {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-topHero__image {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(300px, 35vw);
}
.p-topHero__image img {
  width: 100%;
  object-fit: contain;
}
.p-topHero__photo {
  height: 100%;
  width: 100%;
}
.p-topHero__photo img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

@media screen and (max-width: 767.98px) {
  .p-topHero__item {
    height: min(33vh, 400px);
  }
  .p-topHero__image {
    top: 55%;
  }
  .p-topHero__nav {
    display: none;
  }
}
/* -----------------------------------------
   Today's MEIHO Info Section
----------------------------------------- */
.p-topInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  width: 100%;
  background: var(--color-green);
  color: var(--color-white);
}
.p-topInfo__title {
  font-weight: 900;
  text-align: center;
  font-size: clamp(20px, 2.8vw, 28px);
  margin-top: min(9vw, 56px);
}
.p-topInfo__grid {
  display: grid;
  grid-template-columns: 20% 1fr 40%;
  gap: 1.5rem;
  align-items: flex-start;
}

@media screen and (max-width: 767.98px) {
  .p-topInfo {
    padding-bottom: min(9vw, 56px);
  }
  .p-topInfo__grid {
    order: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 5%;
  }
  .p-topInfo__title {
    order: 1;
    margin-top: 0;
  }
  .p-topInfoTopic {
    order: 3;
  }
  .p-topInfoTicker {
    order: 0;
  }
}
/* -----------------------------------------
   左：日付＋天気
----------------------------------------- */
.p-topInfoWeather {
  min-height: 360px;
  display: grid;
  gap: 10px;
  place-items: center;
  border-radius: 10px;
  padding: min(15px, 2vw);
  background: var(--color-white);
  color: var(--color-brown);
}
.p-topInfoWeather__date {
  font-size: clamp(18px, 2.4vw, 24px);
  width: 100%;
  display: grid;
  place-items: center;
}
.p-topInfoWeather__year {
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: 1em;
  border-bottom: 2px solid var(--color-brown);
}
.p-topInfoWeather__season {
  font-size: 0.6em;
}
.p-topInfoWeather__day {
  font-weight: 900;
  font-size: 1.3em;
}
.p-topInfoWeather__week {
  margin-left: 0.2rem;
  font-size: 0.6em;
}

.p-topInfoWeather__weather {
  display: grid;
  gap: 5px;
  place-items: center;
}
.p-topInfoWeather__weatherImage {
  width: min(10vw, 50px);
}
.p-topInfoWeather__weatherText {
  font-weight: 500;
}
.p-topInfoWeather__update {
  font-size: 0.8em;
}

.p-topInfoWeather .p-topInfoWeather__links {
  width: 100%;
  display: grid;
  gap: min(7px, 2vw);
  border-top: 1px dotted var(--color-brown);
  padding-top: 10px;
}
.p-topInfoWeather .p-topInfoWeather__link {
  letter-spacing: -1px;
}

@media screen and (max-width: 767.98px) {
  .p-topInfoWeather {
    flex: 0 1 35%;
    min-height: 300px;
  }

  .p-topInfoWeather__week {
    display: block;
    margin: auto;
    text-align: center;
  }
}
/* -----------------------------------------
   中央：気温/積雪/営業情報/道路状況
----------------------------------------- */
.p-topInfoConditions {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
}
.p-topInfoConditions__inner {
  display: grid;
  align-content: start;
  gap: 10px;
}

/*---- コメント ----*/
.p-topInfoConditions__text {
  line-height: 1.4;
  font-size: min(0.875em, 3.2vw);
}
.p-topInfoConditions__text.--infoRoad {
  border-radius: 10px;
  border: 2px solid var(--color-white);
  padding: min(10px, 1.5vw);
}
.p-topInfoConditions__comment::after {
  background: linear-gradient(to bottom, rgba(20, 166, 154, 0), #14a69a);
}
.p-topInfoConditions__text .c-btn {
  bottom: 5px;
  font-size: 0.8em;
  background: var(--color-white);
  color: var(--color-green);
  margin: auto;
}
.p-topInfoConditions__text .c-btn::after {
  background: var(--color-green);
}

/*---- 気温/積雪 ----*/
.p-topInfoClimate {
  display: grid;
  gap: 5px 20px;
  align-content: center;
  grid-template-columns: 1fr 1fr;
  font-size: clamp(17px, 2.2vw, 22px);
}
.p-topInfoClimate__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-topInfoClimate__row:nth-child(1),
.p-topInfoClimate__row:nth-child(2) {
  grid-column: 1;
}
.p-topInfoClimate__row:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-left: 2px solid var(--color-white);
  padding-left: min(1vw, 10px);
}
.p-topInfoClimate__term {
  font-size: 0.75em;
  font-weight: 700;
}
.p-topInfoClimate__term span {
  font-size: 0.875em;
  margin-right: 5px;
  font-weight: 400;
}
.p-topInfoClimate__value {
  text-align: right;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
.translatepress-en_US .p-topInfoClimate__value {
  font-size: 0.8em;
}
}

/*---- 営業時間 ----*/
.p-topInfoHours {
  display: grid;
  border-top: 2px solid var(--color-white);
  padding-top: 10px;
  gap: 5px;
  font-size: clamp(17px, 2.2vw, 22px);
}
.p-topInfoHours__row {
  display: grid;
  grid-template-columns: 6rem 1fr;
}
.p-topInfoHours__term {
  font-weight: 500;
  font-size: 0.75em;
}
.p-topInfoHours__row:first-child .p-topInfoHours__term {
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 0.9em;
}
.p-topInfoHours__value {
  font-size: 1em;
  text-align: right;
  font-weight: 700;
  line-height: 100%;
}

/*---- 道路状況 ----*/
.p-topInfoRoad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-topInfoRoad__term {
  font-size: 1.1em;
}
.p-topInfoRoad__link {
  background: var(--color-white);
  color: var(--color-brown);
}

@media screen and (max-width: 767.98px) {
  .p-topInfoClimate {
    gap: 5px 1vw;
  }
  .p-topInfoClimate__row {
    gap: 1vw;
  }
  .p-topInfoClimate__row:nth-child(3) {
    border-left: none;
  }

  .p-topInfoConditions {
    flex: 0 1 60%;
  }
  .p-topInfoClimate__term {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 450px) {
  .p-topInfoClimate__term {
    font-size: 0.7em;
  }
  .p-topInfoClimate__term span {
    display: none;
  }
}
/* -----------------------------------------
  右： ゲレンデ状況
----------------------------------------- */
.p-topInfoGelande {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.p-topInfoGelande__image {
  width: 100%;
  border: 2px solid var(--color-white);
  border-radius: 10px;
}
.p-topInfoGelande .c-tab {
  display: grid;
  gap: 10px;
}
.p-topInfoGelande .c-tab__content {
  display: none;
}
.p-topInfoGelande .c-tab__content.is-active {
  display: block;
}
.p-topInfoGelande .c-tab__links {
  display: flex;
  align-items: flex-end;
  gap: 10px 1%;
  flex-wrap: wrap;
}
.p-topInfoGelande .c-tab__link {
  min-width: 15%;
}
.p-topInfoGelande .c-tab__link:has(.c-btn.is-active)::before {
  content: "";
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 6px solid;
  display: block;
  margin: auto;
}
.p-topInfoGelande .c-tab__link .c-btn {
  width: 100%;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 0.7em;
}
.p-topInfoGelande .c-tab__link .c-btn.is-active {
  background: var(--color-white);
  color: var(--color-brown);
}
.p-topInfoGelande [data-target="gerendemap"] {
  letter-spacing: -1px;
}

.p-topInfoGelande__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.p-topInfoGelande__link {
  background: var(--color-white);
  color: var(--color-brown);
}
.p-topInfoGelande .c-tab__content iframe{
  margin:0 auto;
  text-align:center;
  width:400px;
  height:350px;
  border:2px solid #fff;
  border-radius:8px;
}

@media screen and (max-width:480px){
  .p-topInfoGelande .c-tab__content iframe{
    width:100%;
    height:auto;
    border:2px solid #fff;
    border-radius:8px;
    aspect-ratio: 3 / 2.9;
  }
}


@media screen and (max-width: 767.98px) {
  .p-topInfoGelande {
    flex: 1 1 100%;
  }
  .p-topInfoGelande .c-tab__links {
    width: 100%;
    justify-content: center;
  }
  .p-topInfoGelande .c-tab__link {
    min-width: 10%;
  }
  .c-btn, .c-btn--arrow {
    border-radius: 40px;
    font-size: 0.7em;
    padding: 7px 8px 5.5px;
  }
}
/* -----------------------------------------
  下：トピック情報
----------------------------------------- */
.p-topInfoTopic {
  width: 100%;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: min(3vw, 1.5rem);
  background: var(--color-white);
  padding: 20px;
  align-items: flex-start;
  border-radius: 10px;
  color: var(--color-brown);
}
.p-topInfoTopic__title {
  width: 100%;
  font-size: clamp(17px, 2.2vw, 22px);
  text-align: center;
  font-weight: bold;
}
.p-topInfoTopic__image {
  display: flex;
  flex: 1 1 clamp(150px, 25%, 300px);
}
.p-topInfoTopic__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.6;
  max-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.p-topInfoTopic__text {
  flex: 1 1 clamp(300px, 60%, 600px);
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.p-topInfoTopic__comment {
  font-size: 0.875em;
  line-height: 1.6;
}
.c-readMore:not(.is-open):not(.is-short) .p-topInfoTopic__comment::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
.p-topInfoTopic__text .c-btn {
  margin: auto;
}
.p-topInfoTopic__date {
  font-size: 0.875em;
}
@media screen and (max-width: 500px) {
  .p-topInfoTopic__title {
    order: 1;
    text-align: left;
  }
  .p-topInfoTopic__image {
    order: 0;
  }
  .p-topInfoTopic__text {
    order: 2;
  }
}

/* -----------------------------------------
  トピックティッカー
----------------------------------------- */
.p-topInfoTicker {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  background: var(--color-brown);
  color: var(--color-white);
  width: 100%;
  position: relative;
}

.p-topInfoTicker__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30vw;
  padding-right: 30vw;
  min-height: 3.2rem;
  white-space: nowrap;
  font-weight: bold;
  font-size: clamp(16px, 1.9vw, 19px);
  will-change: transform;
}
.p-topInfoTicker__item {
  font-weight: bold;
  font-size: clamp(16px, 1.9vw, 19px);
}

@media screen and (max-width: 767.98px) {
  .p-topInfoTicker__list {
    min-height: 2.5em;
  }
}

/* --------------------------------
   TOP イベント&ニュース
 -------------------------------- */
.p-topEvent {
  position: relative;
}
.p-topEventNews {
  display: grid;
  padding-block: min(9vw, 56px);
}
.p-topEventNews__title {
  margin: 0 auto min(4vw, 40px);
}
.p-topEventNews__title img {
  width: 100%;
}
.p-topEventNews .p-topEventList {
  width: 100%;
  display: grid;
  gap: 20px 3%;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(150px, 30%, 360px), 1fr)
  );
}
.p-topEventNews .p-topEventList__item a {
  gap: 0.5rem;
  display: grid;
}
.p-topEventNews .p-topEventList__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-height: 200px;
  aspect-ratio: 1/0.65;
}
.p-topEventNews .p-topEventList__title {
  line-height: 1.4;
}
.p-topEventNews .c-slider__arrows,
.p-topEventNews .c-slider__dots {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-topEventNews .c-slider__arrows,
  .p-topEventNews .c-slider__dots {
    display: block;
  }
}

/* --------------------------------
   TOP ニュース
 -------------------------------- */
.p-topNews {
  width: 100%;
  display: grid;
  gap: 30px;
  margin-top: min(9vw, 56px);
}
.p-topNews__heading {
  gap: 1rem;
  display: flex;
  align-items: center;
}
.p-topNews__title {
  font-weight: bold;
  font-size: clamp(20px, 2.8vw, 28px);
}
.p-topNews__link {
  background: var(--color-green);
  color: var(--color-white);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  font-size: 1em;
  align-items: baseline;
  padding: 5px 15px 8px;
}
.p-topNews__link:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid;
  margin-right: 5px;
}

/* --------------------------------
   TOP バナー群
 -------------------------------- */
.p-topCampain {
  display: grid;
  gap: min(9vw, 56px);
  padding-block: min(9vw, 56px);
}

/*--- キャンペーンバナー群 ---*/
.p-topEventBanner__list {
  display: grid;
  gap: clamp(20px, 4vw, 40px);
}
.p-topEventBanner__item {
  width: 100%;
}
.p-topEventBanner__item--division {
  aspect-ratio: 100/22.5;
  position: relative;
}
.p-topEventBanner__item--division .p-topEventBanner__image {
  position: absolute;
  border-radius: min(3vw, 20px);
}
.p-topEventBanner__item--division .p-topEventBanner__text {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: absolute;
  width: 58%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--color-white);
  font-size: clamp(20px, 2.8vw, 28px);
}
.p-topEventBanner__item--division .p-topEventBanner__caption {
  font-size: 0.9em;
}
.p-topEventBanner__item--division .p-topEventBanner__caption strong {
  font-size: 1.1em;
}
.p-topEventBanner__image {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .p-topEventBanner__item--division .p-topEventBanner__text {
    font-size: min(5vw, 2em);
  }
  .p-topEventBanner__item--division .p-topEventBanner__title {
    font-size: 0.6em;
    font-weight: bold;
  }
  .p-topEventBanner__item--division .p-topEventBanner__caption {
    font-weight: normal;
    font-size: 0.5em;
  }
  .p-topEventBanner__item--division .p-topEventBanner__caption strong {
    font-size: 1.2em;
  }
}

/*--- ナビゲーションバナー群 ---*/
.p-topGnaviBanner__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(3vw, 30px);
  justify-content: space-between;
}
.p-topGnaviBanner__item a {
  width: 100%;
  aspect-ratio: 1/0.54;
  position: relative;
}
.p-topGnaviBanner__text {
  display: flex;
  gap: clamp(10px, 3.2vw, 32px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  aspect-ratio: 1/0.54;
  font-size: clamp(20px, 2.8vw, 28px);
}
.p-topGnaviBanner__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  border-radius: min(15px, 2vw);
}
.p-topGnaviBanner__title {
  line-height: 130%;
  font-weight: 900;
}
.p-topGnaviBanner__title b {
  display: block;
}
.p-topGnaviBanner__title--white {
  font-size: 1.4em !important;
  text-shadow: 0 0 4px var(--color-text);
  color: var(--color-white);
}
.p-topGnaviBanner__caption {
  font-size: 0.7em;
}

@media screen and (max-width: 500px) {
  .p-topGnaviBanner__text {
    gap: 5px;
    font-size: clamp(18px, 2.4vw, 24px);
  }
  .p-topGnaviBanner__title--white {
    font-size: 1em !important;
  }
  .p-topGnaviBanner__title {
    font-size: 0.6em;
  }
  .p-topGnaviBanner__caption {
    font-size: 0.55em;
  }
}

/* --------------------------------
   TOP ループスライダー
 -------------------------------- */
.p-topLoopSlider {
  width: 100%;
  overflow: hidden;
}
.p-topLoopSlider__list {
  will-change: transform;
  transform: translateX(0);
  display: flex;
}
.p-topLoopSlider__list li {
  margin-right: 10px;
}
.p-topLoopSlider__list img {
  width: 190px;
}

/* --------------------------------
   TOP リンクエリア
 -------------------------------- */
.p-topLinkArea {
  margin-block: min(9vw, 56px);
}
.p-topLinkArea__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(150px, 22%, 250px), 1fr)
  );
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.p-topLinkArea__item {
  display: flex;
}
.p-topLinkArea__item a {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--color-brown);
  border: 1px solid var(--color-brown);
  padding: min(10px, 1vw);
  line-height: 120%;
  font-size: 0.875em;
}
.p-topLinkArea__item a:hover {
  color: var(--color-white);
  background: rgba(121, 106, 85, 0.7);
}

/* --------------------------------
 ニュース共通コンポーネント top/ニュース一覧
 -------------------------------- */
.p-news__list {
  display: grid;
  gap: 15px;
}
.p-news__link {
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 15px;
  gap: 10px;
}
.p-news__label {
  min-width: 8em;
  text-align: center;
  background: var(--color-green);
  color: var(--color-white);
  padding: 5px 10px;
  font-size: 0.875em;
}
.p-news__label.-campaign {
  background: #14a69a;
}
.p-news__label.-event {
  background: #01a0a4;
}
.p-news__label.-news {
  background: #5bc0de;
}
.p-news__new {
  color: rgb(204, 204, 0);
}
@media screen and (max-width: 767.98px) {
  .p-news__title {
    width: 100%;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 40px;
}

.page-numbers {
  line-height: 1;
}

.page-numbers.current {
  color: var(--color-text-gray);
  background: var(--color-lightgray);
  padding: 5px;
}

a.page-numbers {
  color: var(--color-white);
  background: var(--color-blue);
  font-weight: 600;
  padding: 5px;
}

.next.page-numbers,
.prev.page-numbers {
  color: var(--color-blue);
  background: none;
  padding: 0;
}

/* --------------------------------
   ニュース記事
 -------------------------------- */

/* パンクズ */
.p-newsPankuzu {
  margin: 20px 0;
}

.p-newsPankuzu__list {
  display: flex;
  font-size: 0.875rem;
}

.p-newsPankuzu__item {
  position: relative;
}

.p-newsPankuzu__item:not(:last-child) {
  white-space: nowrap;
  padding-right: 1.5em;
}

.p-newsPankuzu__item.-current {
  font-weight: 600;
  color: var(--color-blue);
}

.p-newsPankuzu__item:not(:last-child):after {
  content: ">";
  position: absolute;
  top: 0.75em;
  right: 0.5em;
  transform: translateY(-50%);
}

/* 記事 */
.p-newsArticle__titleWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: 1px dotted var(--color-gray);
}

.p-newsArticle__label {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 4px 10px;
  font-size: 0.875rem;
  font-weight: 600;
}

.p-newsArticle__label.-campaign {
  background: #14a69a;
}

.p-newsArticle__label.-event {
  background: #01a0a4;
}

.p-newsArticle__label.-news {
  background: #5bc0de;
}

.p-newsArticle__title {
  font-size: 1.25rem;
  color: var(--color-green);
  font-weight: 600;
}

.p-newsArticle__textBox {
  line-height: 2;
  font-weight: 400;
  color: var(--color-text);
}

.p-newsArticle__textBox a {
  display: inline-block;
  font-weight: 600;
  color: var(--color-blue);
}

.p-newsArticle__update {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-gray);
  text-align: end;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-newsPankuzu__list {
    font-size: 0.75rem;
  }

  .p-newsArticle__title {
    font-size: 1.125rem;
  }

  .p-newsArticle__textBox {
    font-size: 0.875rem;
  }

  .p-newsArticle__update {
    margin-top: 20px;
  }
}

/* --------------------------------
  料金
 -------------------------------- */

.p-priceBanner {
  margin: 20px 0;
}

.p-priceBanner .p-topEventBanner__caption span {
  background-color: var(--color-white);
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.75em;
  padding: 8px;
  max-width: 8em;
  margin: 0 auto;
  margin-top: 4px;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .p-priceBanner .p-topEventBanner__caption span {
    padding: 4px;
  }
}

.p-priceNote__list {
  margin: 20px 0;
}

.p-priceNote__list.-bgGray {
  background-color: var(--color-lightgray);
  padding: 16px;
}

.p-priceNote__item {
  line-height: 1.6;
  font-size: 0.75em;
  /* padding-left: 1em;
  text-indent: -1em; */
}

.p-priceNote__list.kome .p-priceNote__item {
  position: relative;
  padding-left: 1em;
}

.p-priceNote__list.kome .p-priceNote__item:before {
  content: '※';
  display: inline-block;
  position: absolute;
  left: 0;
  top:0;
}

.p-priceAccordionBtn {
  display: block;
  background-color: var(--color-green);
  margin-top: 20px;
  width: 100%;
  padding: 16px 35px 16px;
  text-align: center;
  border-radius: 10px;
  color: #ffffff;
}

.p-pricePayLink {
  color: var(--color-green);
}

.p-priceRentalBtn {
  max-width: 350px;
  width: 100%;
  margin-top: 20px;
}

.p-priceRentalBtn img {
  width: 100%;
}

.p-priceBtn {
  margin-top: 20px;
}

.p-priceTable09 {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-priceText {
    font-size: 0.875rem;
  }
}

/* --------------------------------
  会社概要
 -------------------------------- */

.p-company__list {
  width: 100%;
  border: 1px solid var(--color-text-gray);
}

.p-company__item {
  display: flex;
}

.p-company__item:not(:last-child) {
  border-bottom: 1px solid var(--color-text-gray);
}

.p-company__item > dt {
  display: flex;
  align-items: center;
  width: 20%;
  text-align: center;
  font-weight: bold;
  color: var(--color-text);
  background: var(--color-lightgray);
  border-right: 1px solid var(--color-text-gray);
  padding: 20px;
}

.p-company__item > dd {
  flex: 1;
  padding: 20px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .p-company__item {
    flex-direction: column;
  }

  .p-company__item > dt {
    width: 100%;
    border-right: none;
  }
}

/* --------------------------------
  ポリシー / ご利用のお客様へ
 -------------------------------- */

.p-policy__list {
  margin-block: 20px 0;
}

.p-plicy__link {
  color: var(--color-green);
}

.p-plicy__note {
  margin-top: 20px;
  margin-bottom: 4px;
}

.p-plicy__note.-red {
  color: red;
}

.p-csInfoLink__List {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-csInfoLink__Item {
  font-weight: 600;
  color: var(--color-blue);
}

/* --------------------------------
  スクール
 -------------------------------- */

.p-schoolText {
  margin-bottom: 20px;
}

.p-schoolProfile {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.p-schoolProfile__inner {
  display: flex;
}

.p-schoolProfile__logo {
  width: 150px;
}

.p-schoolProfile__textBox {
  position: relative;
  width: 60%;
}

.p-schoolProfile__textBox > .p-schoolProfile__logo {
  position: absolute;
  right: 0;
  width: 30%;
  max-width: 110px;
}

.p-schoolProfile__name,
.p-schoolProfile__position {
  width: 70%;
}

.p-schoolProfile__name {
  font-size: 0.875rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.p-schoolProfile__logo img,
.p-schoolProfile__name img {
  width: 100%;
}

.p-schoolProfile__position span {
  display: block;
  font-size: 0.75rem;
}

.p-schoolProfile__text {
  font-size: 0.875rem;
  margin-top: 4px;
}

.p-schoolProfile__imgBox {
  width: 40%;
  height: auto;
}

.p-schoolProfile__imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-schoolProfile.-hashimoto .p-schoolProfile__name {
  max-width: 250px;
}

.p-schoolProfile.-hashimoto .p-schoolProfile__imgBox {
  max-width: 150px;
}

@media screen and (max-width: 767px) {
  .p-schoolProfile {
    flex-direction: column;
  }

  .p-schoolProfile__textBox {
    width: 100%;
  }

  .p-schoolProfile__imgBox {
    width: 100%;
    height: auto;
  }
}
