/*
Theme Name: KOHOKAI Theme
Theme URI: https://kohokai.com/
Author: KOHOKAI
Description: KOHOKAI website theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: kohokai.com
*/
/* ==========================================================================
   12. 固定ページ
   ========================================================================== */
   .site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

   .page-header {
    height: 360px;
    display: flex;
    align-items: center;
}
.page-title {
    text-align: left;
}

.page-title .en {
    display: block;
    font-size: 83px;
    line-height: 1.2;
    font-family: "DM Sans", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.page-title .ja {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    position: relative;
}
.page-title .ja::before {
content:'●';
  color: #45be2e;
  font-size:9px;
  vertical-align: middle;
    margin-right:5px;
}
/* メインコンテンツ */
.page-content {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-header {
        height: 240px;
    }

    .page-title .en {
        font-size: 48px;
    }

    .page-title .ja {
        font-size: 0.875rem;
    }

    .page-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-hero__title {
        font-size: 2rem;
    }
    .page-content {
        padding: 40px 0;
    }
}
/* ==========================================================================
   13. パンくずリスト
   ========================================================================== */
.breadcrumb {
    background: #faf8f4;
    padding: 15px 0;
    font-size: 0.875rem;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}
.breadcrumb__item span{
    font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic',sans-serif;
}
.breadcrumb__item:not(:last-child)::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: rotate(45deg);
    margin-left: 8px;
}

.breadcrumb__link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__link:hover {
    color: #333;
    text-decoration: underline;
}

.breadcrumb__item:last-child {
    color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb__list {
        gap: 4px;
    }
    
    .breadcrumb__item:not(:last-child)::after {
        width: 4px;
        height: 4px;
        margin-left: 4px;
    }
}
/* ==========================================================================
   14. COMPANY
   ========================================================================== */
   .page-id-1505 dl:first-of-type{
    border-top:1px solid #ccc;
   }
.page-id-1505 dl{
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ccc;
}
.page-id-1505 dt{
    font-size: .8125rem;
  line-height: 180%;
  letter-spacing: .06em;
  font-weight: 700;
  width: 30%;
}
.page-id-1505 dt span{
color: #94969d;
  display: block;
  font-size: .7rem;
}
.page-id-1505 dd{
    font-size: .8125rem;
  line-height: 180%;
  letter-spacing: .06em;
  font-weight: 400;
  width: 70%;
}
.page-id-1505 dd span{
    color: #94969d;
      display: block;
      font-size: .7rem;
    }
.gaiyo iframe{
    margin-top: 50px;
    height:450px;
}

@media (max-width: 480px) {
.gaiyo iframe{
height: 350px;
}
}

/* ==========================================================================
   13. privacy-policy
   ========================================================================== */
   .privacy-policy .page-content h3{
    color: #45be2e;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
   }

   .privacy-policy .page-content h3::before{
       content:'●';
       font-size:8px;
       vertical-align:middle;
       margin:0 5px 3px;
          }
   .privacy-policy .page-content p{
    margin-bottom: 30px;
}
.privacy-policy .waku{
    display: block;
    background: #faf8f4;
    padding: 20px;
    border-radius: 20px;
    line-height: 2;
}