@charset "UTF-8";
/* ====================================
   About Page Sections
   ==================================== */

/* ==========================================================================
   Base & Common Settings (About Page Specific)
   ========================================================================== */
main {
  padding-top: 225px;
}

.section-padding {
  padding-top: 0;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }
  .section-padding {
    padding-bottom: 80px;
  }
}

.facility .section-head {
  margin-bottom: 70px;
}
.section-head__en {
  font-size: 54px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #333;
}
.section-head__ja {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  color: #008fcc;
}

/* ------------------------------------
   1. コンテナのFlex設定
   ------------------------------------ */
.outline .container,
.access .container,
.history .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  padding: 0;
}

/* ------------------------------------
   2. 左側：見出しエリア (幅30%)
   ------------------------------------ */
.outline .section-head,
.access .section-head,
.history .section-head {
  width: 30%;
  top: 100px; 
}

.outline .section-head__en,
.access .section-head__en,
.history .section-head__en {
  font-size: 54px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.outline .section-head__ja,
.access .section-head__ja,
.history .section-head__ja {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}


/* ------------------------------------
   3. 右側：コンテンツエリア (幅65%程度)
   ------------------------------------ */
.outline-list,
.access__map,
.history-list {
  width: 65%;
}


/* ------------------------------------
   各セクションごとの微調整 (borderなど)
   ------------------------------------ */
.outline-list,
.history-list {
  border-top: 1px solid #ddd;
}

.outline-row, .history-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}
.outline-row dt, .history-row dt {
  width: 25%;
  padding: 20px 0;
  color: #000;
  line-height: 1.8;
}
.outline-row dd, .history-row dd {
  width: 75%;
  padding: 20px 0;
  color: #000;
  line-height: 1.8;
}
.outline-row dd a, .history-row dd a {
  color: #008fcc;
}

/* ------------------------------------
   スマホ対応 (レスポンシブ)
   ------------------------------------ */
@media (max-width: 768px) {
  .outline .container,
  .access .container,
  .history .container {
    flex-direction: column;
  }

  .outline .section-head,
  .access .section-head,
  .history .section-head,
  .outline-list,
  .access__map,
  .history-list {
    width: 100%;
    position: static;
  }

  .outline .section-head,
  .access .section-head,
  .history .section-head {
    margin-bottom: 40px;
  }

  .outline .section-head__en,
  .access .section-head__en,
  .history .section-head__en {
    font-size: 40px;
  }
  .outline .section-head__ja,
  .access .section-head__ja,
  .history .section-head__ja {
    font-size: 16px;
  }
  
  .outline-row, .history-row {
    flex-direction: column;
  }
  .outline-row dt, .history-row dt,
  .outline-row dd, .history-row dd {
    width: 100%;
    padding: 5px 0 10px;
  }
  .outline-row dt, .history-row dt {
    padding-bottom: 0;
  }
}


/* ==========================================================================
   Page Header (ABOUT Title)
   ========================================================================== */
.page-header {
  padding-bottom: 130px;
  background-color: #fff;
}
.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: none;
  padding-bottom: 0;
}

.page-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 0.8;
  color: #333;
}
.page-title .ja {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 20px;
  color: #008fcc;
  margin-top: 25px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.breadcrumbs {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-left: 40px; 
  margin-bottom: 10px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
  font-weight: 700;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs .current {
  color: #333;
}
.breadcrumbs span:not(.current) {
  font-size: 0;
  display: inline-block;
  width: 75px;
  height: 1px;
  background-color: #000;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .page-header {
    padding-bottom: 50px;
  }

  .page-header__inner {
    flex-direction: column;
    align-items: flex-start; 
    gap: 20px;
  }
  
  .page-title {
    font-size: 60px;
  }
  
  .breadcrumbs {
    margin-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  
  .breadcrumbs span:not(.current) {
    width: 30px;
    margin: 0 10px;
  }
}


/* ==========================================================================
   About Intro (1枚画像・プロポーション固定)
   ========================================================================== */
.about-intro {
  margin-bottom: 80px;
}

.about-intro__main-img {
  width: 100%;
  aspect-ratio: 1340 / 660;
  overflow: hidden;
}
.about-intro__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about-intro {
    margin-bottom: 50px;
  }
}

/* ==========================================================================
   YOKOYAMA'S STRENGTHS
   ========================================================================== */
.strengths__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.strengths__head {
  width: 50%;
  top: 100px;
  padding-right: 20px;
  box-sizing: border-box;
}

.strengths__body {
  width: 50%;
}

/* --------------------------------------------------
   Strengths セクション追従設定 (PC以上)
-------------------------------------------------- */
@media screen and (min-width: 768px) {

  .strengths {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }

  .strengths__head {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    width: 300px;
    flex-shrink: 0;
  }

}

@media (max-width: 768px) {
  .strengths__container {
    flex-direction: column;
  }
  .strengths__head {
    width: 100%;
    top: 100px;
    padding-right: 0;
    box-sizing: border-box;
    margin-bottom: 50px;
  }
  .strengths__body {
    width: 100%;
  }
}

/* ------------------------------------
   タイトルデザイン
   ------------------------------------ */
.strengths__title {
  color: #333;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 600;
}

.strengths__title .title-en-sm {
  font-size: 54px;
  display: block;
  margin-bottom: 12px;
}

.strengths__title .title-en-lg {
  font-size: 90px;
  display: block;
  line-height: 0.9;
}

.strengths__sub {
  display: block;
  font-size: 20px;
  color: #008fcc;
  font-weight: 700;
}

@media (max-width: 768px) {
  .strengths__title .title-en-sm {
    font-size: 9vw;
  }
  .strengths__title .title-en-lg {
    font-size: 13vw;
  }
}


/* ------------------------------------
   強みリスト・数字（台形）デザイン
   ------------------------------------ */
.strength-item {
  display: block; 
  margin-bottom: 90px;
}
.strength-item:last-child {
  margin-bottom: 0;
}

.strength-item__head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .strength-item {
    display: block; 
    margin-bottom: 50px;
  }
  .strength-item:last-child {
    margin-bottom: 0;
  }
  .strength-item__head {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }
}

.strength-item__num {
  width: 60px;
  height: 100px;
  background-color: #eb6877;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: skewX(-10deg);
  transform-origin: center;
}

.strength-item__num span {
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  transform: skewX(10deg);
  margin-left: -5px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .strength-item__num {
    width: 40px;
    height: 65px;
  }
  .strength-item__num span {
    font-size: 25px;
  }
}

.strength-item__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin: 0;
}

.strength-item__desc {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
}
.strength-item__desc .bold {
  display: inline;
  font-weight: 700;
}
@media (max-width: 768px) {
  .strength-item__desc {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
  }
  .strength-item__desc .bold {
    display: inline;
    font-weight: 700;
  }
}

/* ------------------------------------
   スマホ対応
   ------------------------------------ */
@media (max-width: 768px) {
  .strength-item__head {
    align-items: flex-start;
    gap: 20px;
  }
  
  .strength-item__title {
    font-size: 24px;
  }
}


/* ==========================================================================
   FACILITY
   ========================================================================== */
.facility__container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  padding: 0;
}

.facility__info {
  width: 30%;
}
.facility__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 17px;
  line-height: 2;
  color: #666;
}
.facility__list li {
  line-height: 1.1;
  padding: 0 0 15px 0;
  font-weight: 500;
}

.facility__images {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.facility__img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .facility__container {
    flex-direction: column;
  }
  .facility__info {
    width: 100%;
    margin-bottom: 40px;
  }
  .facility__images {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================================================
   OUTLINE
   ========================================================================== */
.outline-list {
  border-top: 1px solid #ddd;
  font-size: 17px;
}

.outline-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
  .outline-row {
    flex-direction: column;
  }
  .outline-row dt,
  .outline-row dd {
    width: 100%;
    padding: 5px 0 10px;
    }
  .outline-row dt {
    padding-bottom: 0;
    font-weight: 700;
  }
}


/* ==========================================================================
   ACCESS
   ========================================================================== */
.access__map {
  width: 65%; 
  aspect-ratio: 920 / 420;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(0.2); 
}


/* ------------------------------------
   スマホ対応
   ------------------------------------ */
@media (max-width: 768px) {
  .access__map {
    width: 100%;
  }
}


/* ==========================================================================
   HISTORY
   ========================================================================== */
.history-list {
  border-top: 1px solid #ddd;
  font-size: 17px;
}

.history-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.history-row dt {
}

.history-row dd {
}

@media (max-width: 768px) {
  .history-row dt {
    width: 100%;
    font-weight: 700;
  }
  .history-row dd {
    width: 100%;
  }
}