@charset "utf-8";

body {
    font-family: '游ゴシック体', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    color: #5b2908;
    background-color: #ffeedb;
}

#concept, #menu, #service, #access, #contact {     
    padding: 100px 0 100px 0;
}

.section-inner {
    max-width: 960px;
    margin: 0 auto; 
}

.pc-only {
    /* PCの時は（横幅769px以上の時は）表示する */
    display: block;
  
}
  
  .sp-only {
    /* SPの時は（横幅768px以下の時は）表示しない */
    display: none;
  
  }
  
  /** -------- スマホ -------- **/
  @media screen and (max-width: 768px) {
    .section-inner {
      /* 左右に24pxの余白（padding） */
      padding: 0 24px;
  
      /* 最大幅を550pxに */
      max-width: 550px;
  
    }
    .pc-only {
      /* PCの時は（横幅769px以上の時は）表示しない */
      display: none;
  
    }
    .sp-only {
      /* SPの時は（横幅768px以下の時は）表示する */
      display: block;
  
    }
    #concept, #system, #plan, #faq, #access {
      padding: 40px 0 30px 0;
    }
  }

/* ボタン */
.button-orange {
    display: block;
    width: 238px;
    height: 52px;
    background-color: #db6010;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.06em;
    font-weight: medium;
    line-height: 52px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none; /* 初期状態で下線を削除 */
    transition: opacity 0.3s ease; /* 透明度のトランジション */
}

.button-orange:hover {
    opacity: 0.7; /* ホバー時に半透明にする */
}

.button-brown {
    display: block;
    width: 210px;
    height: 52px;
    background-color: #5b2908;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.06em;
    font-weight: medium;
    line-height: 52px;
    text-align: center;
    border-radius: 25px;
    margin-top: 30px;
    text-decoration: none; /* 初期状態で下線を削除 */
    transition: opacity 0.3s ease; /* 透明度のトランジション */
}

.button-brown:hover {
    opacity: 0.7; /* ホバー時に半透明にする */
}





/* テキスト */

h2.large {
    font-size: 32px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: bold;
}

h3.japanese {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: bold;
}


h3.english { 
    font-family: jaf-domus-titling-web, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.13em;
    color: #db6010;
}

p.large{
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.06em;
}

p.medium {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
}

p.small{
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.2em;
}

/** -------- スマホ テキスト-------- **/
@media screen and (max-width: 768px) {
    h2.large {
        font-size: 24px;
        line-height: 1.6;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
    
    h3.japanese {
        font-size: 18px;
        line-height: 1;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
    
    
    h3.english { 
        font-family: jaf-domus-titling-web, sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 1;
        letter-spacing: 0.1em;
        color: #db6010;
    }
    
    p.large{
        font-size: 16px;
        line-height: 2;
        letter-spacing: 0.06em;
    }
    
    p.medium {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0.06em;
    }
    
    p.small{
        font-size: 11px;
        line-height: 2;
        letter-spacing: 0.1em;
    }
}
    


/* 英語見出し */
.title-en {
    text-align: center;
    margin-bottom: 20px;
}
p.title {
    font-family: "jaf-domus-titling-web", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.13em;
    color: #db6010;
}

/* 英語見出し スマホ*/
@media screen and (max-width: 768px){
    .title-en {
        text-align: center;
        margin-bottom: 10px;
    }
    p.title {
        font-family: "jaf-domus-titling-web", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 15px;
        line-height: 1;
        letter-spacing: 0.1em;
        color: #db6010;
    }
}

/* レイアウト */
.col-2 {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.col-2 .item {
    width: calc((100% - 24px)/2);
}



.col-3 {
    display: flex;
    justify-content: space-between;
}

.col-3 .item {
    width: calc((100% - 120px)/3);
}

/* レイアウト　スマホ */
@media screen and (max-width: 768px) {
    .col-2 {
        display: flex;
        flex-direction: column;
    }

    .col-2 .img-container {
        order: 1;
    }

    .col-2 .text-container {
        order: 2;
    }

    .col-2 .text-container h3 {
        order: 1;
    }

    .col-2 .text-container p {
        order: 2;
    }

    .col-2 .text-container a {
        order: 3;
    }

    .col-2 .item {
        width: 100%;
    }

    .col-3 {
        display: block;
    }
    
    .col-3 .item {
        width: 100%;
    }
}


/* ヘッダー */
#header {
    background-color: #ffeedb;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 1;
}

.header-logo a {
    display: flex;
    padding: 10px 25px;
}

.gnav-pc-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: 45px;
}

ul.gnav-pc li {
    display: inline;
    margin-right: 40px;
}

ul.gnav-pc li a {
    font-family: "jaf-domus-titling-web", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.13em;
    color: #5b2908;
    text-decoration: none; /* 初期状態で下線を削除 */
    position: relative; /* 下線用の絶対位置指定の基準とする */
}

ul.gnav-pc li a::after {
    content: ""; /* 擬似要素を表示するためのコンテンツ */
    position: absolute; /* 絶対位置指定 */
    left: 0;
    bottom: -2px; /* テキストの下に配置 */
    width: 100%; /* テキスト幅に合わせる */
    height: 2px; /* 下線の太さを指定 */
    background-color: #5b2908; /* 下線の色 */
    transform: scaleX(0); /* 初期状態では表示しない */
    transform-origin: bottom right; /* 右から左にアニメーション */
    transition: transform 0.3s ease; /* アニメーションの設定 */
}

ul.gnav-pc li a:hover::after {
    transform: scaleX(1); /* ホバー時に表示 */
    transform-origin: bottom left; /* 左から右にアニメーション */
}

/* ハンバーガーメニュー */
#menu-button {
    display: none;
    width: 40px;
    height: 40px;
    padding: 20px 15px;
  }

  .menu-button-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .menu-button-inner span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #5b2908;
    position: absolute;
  }

  .menu-button-inner span:nth-child(1) {
    top: 10px;
  }

  .menu-button-inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .menu-button-inner span:nth-child(3) {
    bottom: 10px;
  }

  .menu-button-inner.open span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
}

.menu-button-inner.open span:nth-child(2) {
    opacity: 0;
}

.menu-button-inner.open span:nth-child(3) {
    bottom: 50%;
    transform: rotate(-45deg);
}

.gnav-sp-wrap {
    display: none; /* デフォルトでは非表示 */
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #ffeedb;
    position: absolute;
    top: 80px;
    left: 0;
}

ul.gnav-sp {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: center; /* リスト内のテキストを中央揃えにする */
}

ul.gnav-sp li {
    padding: 10px 0;
    margin-bottom: 50px; /* 文言間の余白を追加 */
}

ul.gnav-sp li:last-child {
    margin-bottom: 0; /* 最後の要素の余白を取り除く */
}

ul.gnav-sp li a {
    font-family: "jaf-domus-titling-web", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.13em;
    color: #5b2908;
    text-decoration: none;
}

/* ヘッダー　スマホ */
@media screen and (max-width: 768px) {
    #header {
        height: 80px;
        padding: 0;
    }

    #header h1 a {
        display: flex;
        padding: 10px;
    }

    .gnav-pc-wrap {
        display: none; /* スマホではPC用メニューを非表示 */
    }

     #menu-button {
        display: block; /* スマホではハンバーガーメニューを表示 */
    }

    .gnav-sp-wrap {
        display: none; /* 初期状態でスマホメニューを非表示 */
    }

    .gnav-sp-wrap.open {
        display: flex; /* 開いた状態のスタイル */
    }

}


/* メインビジュアル */
#mainvisual {

    width: 100vw;
    height: calc(100vh - 80px);
    background-image: url(../images/mainvisual-pc200％.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}

.copy-wrap{

    position: absolute;
    left: 88px;
    bottom: 62px;

}

.maincopy{

    color: #fff;
    font-size: 48px;
    font-weight: bold;
    line-height: 2.0;
    letter-spacing: 0.04em;
    text-shadow: 0 0 8px rgba(80, 82, 82, 0.7);

}

.mobile-only {
    display: none; /* 初期状態では非表示 */
}

/* メインビジュアル　スマホ */
@media screen and (max-width: 768px) {
    #mainvisual {
        width: 100vw;
        height: 100vw;
        background-image: url(../images/main-visual_sp200％.jpg);
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .maincopy {
        display: none; /* PCのメインコピーを非表示にする */
    }

    .maincopy.mobile-only {
        display: block; /* スマホ用のメインコピーを表示する */
        font-size: 18px;
        line-height: 2;
        letter-spacing:s 0;
    }

    .copy-wrap {
        left: 12px;
        bottom: 35px;
    }

    .button-orange.mobile-only {
        display: block; /* ボタンを表示 */
        position: absolute;
        bottom: -60px; /* 下からの位置 */
        left: 50%;
        transform: translateX(-50%); /* 中央揃え */
        text-align: center; /* テキストの中央揃え */
    }
}



/* コンセプトセクション */
#concept  .mobile-only {
    display: none; /* 初期状態では非表示 */
}

#concept h2.large{
    text-align: center;
} 

#concept p.large{
    text-align: center;
    margin: 80px 0;
} 

#concept .single-items {
    width: 100%;
    margin: 0 auto;
}

#concept .slide {
    width: 100%;
}
#concept .slide img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

/* 左右の矢印ボタンのスタイル */
.slick-prev, .slick-next {
    font-size: 0; /* デフォルトのアイコンを非表示にする */
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    z-index: 1;
    color: transparent;
}

/* 左矢印ボタンのスタイル */
.slick-prev {
    left: -35px; /* ボタンの位置調整 */
}

/* 右矢印ボタンのスタイル */
.slick-next {
    right: -35px; /* ボタンの位置調整 */
}

/* 矢印ボタンのアイコンをカスタマイズ */
.slick-prev:before, .slick-next:before {
    font-size: 30px;
    color: #db6010; 
    font-family: 'slick'; /* デフォルトの矢印アイコンフォント */
    line-height: 1;
}

/* Hover時のスタイル */
.slick-prev:hover, .slick-next:hover {
    color: #db6010; 
    opacity: 0.8;
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: #db6010; 
    opacity: 0.8;
}

/* ドットのカスタマイズ */
.slick-dots li button:before {
    font-size: 15px;
    color: #db6010; 
    opacity: 0.5; /* デフォルトの不透明度 */
}

/* アクティブなドットのカスタマイズ */
.slick-dots li.slick-active button:before {
    color: #db6010; 
    opacity: 1; /* アクティブなドットは完全に不透明 */
}

/* ドットのホバー時のカスタマイズ */
.slick-dots li button:hover:before {
    color: #db6010; 
    opacity: 0.8; /* ホバー時の不透明度 */
}

/* コンセプト　スマホ */
@media screen and (max-width: 768px) {
    #concept h2.large.mobile-only {
        display: block; /* スマホ用の見出しを表示する */
        text-align: center;
    }

    #concept h2.large {
        display: none;
    }
    
    #concept p.large {
        text-align: justify;
        margin: 35px 0;
    } 
    
    /* スマホでスライダーの矢印ボタンを非表示にする */
    .slick-prev,
    .slick-next {
        display: none !important;
    }

}




/* メニューセクション */
#menu .mobile-only {
    display: none; /* 初期状態では非表示 */
}

#menu h2.large{
    text-align: center;
} 

#menu p.large{
    text-align: center;
    margin: 80px 0;
} 

#menu h3.english {
    text-align: center;
    margin: 50px 0;
} 

#menu p.medium {
    text-align: justify;
    margin-bottom: 30px;
}

#menu .center {
    margin: 0 auto;
    display: block;
    text-align: center;
}

#menu .item img {
    border-radius: 20px;
    width: 100%;
}

#menu p.small {
    margin-top: 65px;
}

/* スマホ　メニュー */
@media screen and (max-width: 768px) {
    #menu h2.large {
        display: none;
    }

    #menu h2.large.mobile-only {
        display: block; /* スマホ用の見出しを表示する */
        text-align: center;
    }

    #menu p.large {
        text-align: justify;
        margin: 35px 0;
    }

    #menu h3.english {
        margin: 20px 0 0 0;
    }

    #menu p.medium {
        margin: 25px 0;
        text-align: justify;
    }

    #menu p.small {
        margin-top: 50px;
    }

}







/* サービスセクション */
#service {
    
}

#service h2.large{
    text-align: center;
} 

#service p.large{
    text-align: center;
    margin: 80px 0;
} 

#service h3.japanese{
    text-align: center;
    padding-bottom: 23px;
} 

#service p.medium{
    text-align: justify;
} 

.card {
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
}

.card-img {
    position: relative; /* 画像を基準に位置を指定 */
}

#service .card-img img {
    border-radius: 15px 15px 0 0;
    width: 100%;

}

.number {
position: absolute; /* 絶対位置指定 */
top: -10px; /* 上からの位置 */
right: 13px; /* 右からの位置 */
transform: translateY(-50%) translateX(50%) rotate(15deg); /* 傾けて配置 */
color: #db6010; /* 文字色 */
padding: 5px; /* 余白 */
font-family: "jaf-domus-titling-web", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 72px;
letter-spacing: 0.1em;
}

.card .card-text {
padding: 23px 16px;
}

/* スマホ　サービス */
@media screen and (max-width: 768px) {
    #service h2.large {
        text-align: center;
    }
    #service p.large {
        text-align: justify;
        margin: 35px 0;
    } 
    
    .card {
        margin-bottom: 45px;
    }

    .number {
        font-size: 72px;
        padding: 0;
        top: auto;
        right: 40px;
    }

}


/* アクセスセクション */
#access {
    
}

#access h2.large{
    text-align: center;
} 

#access p.large{
    text-align: center;
    margin: 80px 0;
} 

#access h3.japanese {
    margin: 15px 0 30px 0;
}

#access .col-2 .gmap iframe {
    height: 340px;
    border-radius: 20px;
}

/* アクセス　スマホ */
@media screen and (max-width: 768px) {
    #access h2.large {
        text-align: center;
    }
    #access p.large {
        text-align: justify;
        margin: 35px 0;
    }
    
    #access h3.japanese {
        margin: 20px 0;
    }

    #access .button-brown {
        margin: 0 auto;
    }

    #access p.medium {
        margin-bottom: 20px;
    }

}

/* お問い合わせセクション */
#contact {
    
}

#contact h2.large{
    text-align: center;
} 

#contact p.large {
    text-align: center;
    margin: 80px 0;
}

#contact .center {
    margin: 0 auto;
    display: block;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #contact h2.large {
        text-align: center;
    }
    #contact p.large {
        text-align: justify;
        margin: 35px 0;
    }
}



/* フッター */
#footer {
    background-color: #5b2908;
    padding: 100px 0;
    text-align: center;
}

#footer a {
    color: #fff;
}

.footer-link, .copyright {
    font-size: 16px;
}

.copyright {
    color: #fff;
    margin-top: 26px;
}

.footer-link li {
    display: inline;
    padding-right: 56px;
}

/* フッター　スマホ */
@media screen and (max-width: 768px) {
    #footer {
        padding: 40px 0 20px 0;
    }

    .footer-link {
        margin-bottom: 70px;
    }

    .footer-link li {
        display: block;
        margin: 0 0 20px 0;
        padding: 0;
    }

}