:root {
    --c-black:#1D1D1D;
    --c-gold:#D2B22C;
    --c-lightgray:#F5F5F5;
    --c-gray:#EFEFEF;
    --shadow:0 0 10px rgba(0, 0, 0, 0.06);
    --font-en:josefin-sans, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ryo-gothic-plusn, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--c-black);
    line-height: 1.8;
}

/*
h1, h2, h3, h4 {
    line-height: 1.8;
}

*/

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--c-black);
}




/***********************************************************
 content__button
 ***********************************************************/
 .content__button {
    display: inline-block;
    position: relative;
    margin-top: 9px;
    padding: 20px 50px 20px 20px;
    overflow: hidden;
    border: none;
    border-radius: 100vh;
    /* background-color: #e2e2e1; */
    /* color: var(--c-black); */
    /* font-size: 1rem; */
    font-weight: 700;
    text-align: left;
    /* text-decoration: none; */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.37, 0, .63, 1);
    transition-timing-function: cubic-bezier(.37, 0, .63, 1);
    min-width: 180px;
}
  
  @media (max-width: 767px) {
    .content__button {
      min-width: 170px;
    }
  }
  
  @media (max-width: 575px) {
    .content__button {
        min-width: 200px;
        padding: 20px 65px 20px 30px;
    }
  }
  
  /***********************************************************
   * バリエーション: --primary
   ***********************************************************/
  .content__button--primary {
    position: relative;
  }
  
  /* テキスト部分 */
  .content__button--primary__str {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
    line-height: 1;
  }
  
  /* 丸背景＆アイコン */
  .content__button--primary__circle {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  
  @media (max-width: 575px) {
    .content__button--primary__circle {
      width: 26px;
      height: 26px;
      margin-top: -13px;
    }
  }
  
  /* 丸背景 */
  .content__button--primary__circle:before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    transform-origin: center center;
    border-radius: 100%;
    background-color: #bdbdbd;
    content: "";
    transition: all 0.4s cubic-bezier(.37, 0, .63, 1);
    transition-timing-function: cubic-bezier(.37, 0, .63, 1);
  }
  
  @media (max-width: 575px) {
    .content__button--primary__circle:before {
      width: 26px;
      height: 26px;
      margin-top: -13px;
    }
  }
  
  /* 丸背景の中央の小さい丸 */
  .content__button--primary__circle:after {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-right: -3px;
    transform-origin: center center;
    border-radius: 100%;
    background-color: #e2e2e1;
    content: "";
    transition: all 0.2s cubic-bezier(.55, .085, .68, .53);
    transition-timing-function: cubic-bezier(.55, .085, .68, .53);
  }
  
  /* SVGアイコン */
  .content__button--primary__circle svg {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    margin-top: -5.5px;
    margin-left: -5px;
    transform: translateX(-4px);
    opacity: 0;
    transition: all 0.2s cubic-bezier(.37, 0, .63, 1);
    transition-timing-function: cubic-bezier(.37, 0, .63, 1);
  }
  
  /***********************************************************
   * ホバー時のアクション
   ***********************************************************/
  .content__button:hover {
    color: #fff;
    text-decoration: none; /* リンクの下線が出ないように */
  }
  
  .content__button:hover .content__button--primary__circle:before {
    transform: scale(16);
    background-color: var(--c-gold);
  }
  
  .content__button:hover .content__button--primary__circle:after {
    transform: scale(5);
  }
  
  .content__button:hover .content__button--primary__circle svg {
    transform: translateX(0);
    opacity: 1;
  }
  
  /***********************************************************
   * 他の修飾クラス
   ***********************************************************/
  /* 黒背景に変更 */
  .content__button--primary.--black {
    background-color: var(--c-black);
    color: #fff;
  }
  
  /* ホバー時にグレー系にする場合 */
  .content__button--primary.--hover__gray:hover {
    color: #000;
  }
  .content__button--primary.--hover__gray:hover .content__button--primary__circle:before {
    background-color: #bdbdbd;
  }
  
  /* 枠線付きバージョン（必要であれば適用） */
  .content__button--outline {
    position: relative;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
  }
  @media (max-width: 575px) {
    .content__button--outline {
      font-size: 0.7rem;
    }
  }
  .content__button--outline:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.9);
    border-radius: 4px;
    background-color: #fff;
    content: "";
    opacity: 0;
    transition: all 0.3s cubic-bezier(1, 0, 0, 1);
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
  }
  .content__button--outline span {
    z-index: 2;
    position: relative;
  }
  .content__button--outline:not(.disabled):active,
  .content__button--outline:not(.disabled):focus,
  .content__button--outline:not(.disabled):hover {
    border-color: #000;
    background-color: #fff;
    color: #000;
    outline: none;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.06) !important;
  }
  .content__button--outline:not(.disabled):active:before,
  .content__button--outline:not(.disabled):focus:before,
  .content__button--outline:not(.disabled):hover:before {
    transform: scale(1);
    opacity: 1;
  }
  
  /* →アイコンなどを右端に表示したい場合 */
  .content__button--arrow {
    padding-right: 35px;
  }
  .content__button--arrow:after {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -10px;
    font-family: "Font Awesome 5 Pro";
    font-size: 0.8rem;
    font-weight: 300;
    content: "\F061"; /* お好みのアイコン */
    pointer-events: none;
  }
  @media (max-width: 575px) {
    .content__button--arrow:after {
      right: 10px;
      margin-top: -8px;
      font-size: 0.7rem;
    }
  }
  
  /* ボタン幅固定バリエーション */
  .content__button-width-180 {
    min-width: 180px;
  }
  .content__button-width-150 {
    min-width: 150px;
  }
  @media (max-width: 575px) {
    .content__button-width-150 {
      min-width: 120px;
    }
  }
  






/*---------------------------------------------
swiper
---------------------------------------------*/

.swiper {
    /*position: absolute;*/
    /*width: 100%;*/
    overflow: hidden;
  }
  
  .swiper-wrapper {
transition-timing-function: linear;
}

/* スライド要素 */
.swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .swiper-slide img {
    /* 画像が上下に切れないよう、高さをスライド領域100%に */
    height: 100%;
    width: auto;
    object-fit: contain; /* 縦横比を保ちつつフィット */
    display: block;
  }





/*---------------------------------------------
nav menu
---------------------------------------------*/

/* ヘッダー・グローバルメニュー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  /* スクロール時のコンパクトヘッダー */
  /*
  .header.scrolled {
    height: 80px;
    padding: 10px 0px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
    */

    .header.scrolled {
        height: 80px;
        padding: 10px 18px;
        background-color: rgb(255 255 255);
        box-shadow: var(--shadow);
        margin: 15px 60px;
        width: calc(100% - 120px);
        border-radius: 100vh;
    }
  
  .header.scrolled .header__inner {
    height: 60px;
    padding: 0;
  }
  
  .header.scrolled .header__logo img {
    height: 30px;
  }
  
  .header.scrolled .header__company-name {
    font-size: 14px;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 60px;
    /*max-width: 1200px;*/
    margin: 0 auto;
  }
  
  .header__logo {
    display: flex;
    align-items: center;
  }
  
  .header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .header__logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .header__company-name {
    font-size: 16px;
    font-weight: bold;
  }
  
  .header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .header__menu-item {
    margin-left: 30px;
  }
  
  .header__menu-item a {
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    position: relative;
  }
  
  /*
  .header__menu-item a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0068b7;
    transition: width 0.3s;
  }
  
  .header__menu-item a:hover:after {
    width: 100%;
  }
    */
  
  .header__contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--c-black);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header__contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 98%;
    background-color:var(--c-gold);
    transition: width 0.3s ease;
    z-index: -1;
}

.header__contact-btn:hover::before {
    width: 100%;
}

.header__contact-btn i {
    position: absolute;
    right: 15px;
    font-size: 14px;
}

/* テキストとアイコンの間隔を確保 */
.header__contact-btn span {
    margin-right: 15px;
}
  
  .header__hamburger {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 110;
  }
  
  .header__hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
  }
  
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  
  .header__hamburger span:nth-child(2) {
    top: 11px;
  }
  
  .header__hamburger span:nth-child(3) {
    bottom: 0;
  }
  
  .header__hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: #fff;
  }
  
  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: #fff;
  }
  
  /* モーダルメニュー */
  .modal-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(30 30 30 / 95%);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .modal-menu__nav {
    width: 100%;
  }
  
  .modal-menu__items {
    list-style: none;
    margin: 0;
    padding: 0 40px;
    text-align: center;
  }
  
  .modal-menu__item {
    margin-bottom: 30px;
  }
  
  .modal-menu__item a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: block;
    padding: 10px;
  }
  
  .modal-menu__contact-btn {
    display: inline-block;
    background-color: #fff;
    color: var(--c-black) !important;
    padding: 12px 36px;
    border-radius: 5px;
    margin-top: 20px;
  }

  /* モーダル閉じるボタン */
.modal-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 111;
  }
  
  .modal-menu__close span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 0;
  }
  
  .modal-menu__close span:first-child {
    transform: rotate(45deg);
  }
  
  .modal-menu__close span:last-child {
    transform: rotate(-45deg);
  }
  
  .modal-menu__close:hover span {
    background-color: #ddd;
  }
  
  /* レスポンシブ対応 */
  .pc-only {
    display: block !important;
  }
  
  .sp-only {
    display: none !important;
  }
  
  @media screen and (max-width: 768px) {
    .pc-only {
      display: none !important;
    }
    
    .sp-only {
      display: block !important;
    }

    .header.scrolled {
        height: 60px;
        margin: 15px 20px;
        width: calc(100% - 40px);
    }

    .header.scrolled .header__inner {
        height: 37px;
    }

    .header.scrolled .header__company-name {
        padding-top: 4px;
    }
    
    .header__inner {
      height: 60px;
      padding: 0 20px;
    }
    
    .header__logo img {
      height: 30px;
    }
    
    .header__company-name {
      font-size: 14px;
    }
    
    .header__hamburger {
      display: block;
    }

    .modal-menu__close {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
      }
  }



/*---------------------------------------------
main visual
---------------------------------------------*/


.main-visual {
    width: 100%;
    position: relative;
  }

  .main-visual__text {
    position: absolute;
    top: 50%;
    left: 120px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 60%;
  }
  
  .main-visual__text h1 {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .main-visual__text h1 p {
    font-family: var(--font-en);
    font-weight: 600;
    font-style: italic;
    font-size: 30px;
    margin-top: 15px;
    letter-spacing: 1px;
  }
  
  
  .main-visual__swiper {
    height: 85vh;
    margin: 100px 60px 0;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .main-visual__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
  }
  
  .main-visual__pagination {
    position: absolute;
    bottom: 30px !important;
    z-index: 10;
  }
  
  .main-visual__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 8px !important;
  }
  
  .main-visual__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #0068b7;
  }
  

  @media screen and (max-width: 768px) {

    .main-visual__text {
        left: 40px;
        max-width: 80%;
      }
      
      .main-visual__text h1 {
        font-size: 35px;
      }
      
      .main-visual__text h1 p {
        font-size: 20px;
        margin-top: 10px;
      }

    .main-visual__swiper {
        height: 85vh;
        margin: 70px 20px 0;
        border-radius: 20px;
    }
    
    .main-visual__image {
      border-radius: 20px;
    }
    
    .main-visual__pagination .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      margin: 0 5px !important;
    }
  }


 /* プログレスバー型ページネーション */
.main-visual__progress {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    z-index: 10;
  }
  
  .progress-item {
    width: 60px;
    height: 4px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
  }
  
  .progress-line {
    width: 0%;
    height: 100%;
    background-color: #fff;
    transform-origin: left;
    /* CSSアニメーションを除去し、JavaScriptでコントロール */
  }



/*---------------------------------------------
Sopnsor
---------------------------------------------*/

.sponsor {
  width: 100%;
  position: relative;
}

.sponsor__heading h2 {
    position: absolute;
    top: -145px;
    right: 0px;
    width: calc(55% - 35px);
    font-family: josefin-sans, sans-serif;
font-weight: 700;
font-style: normal;
    font-size: 60px;
    color: #fff;
    z-index: 10;
    display: inline-block;
}

.sponsor__inner {
    position: absolute;
    top: -90px;
    right: 0%;
    width: 55%;
    background: var(--c-black);
    border-radius: 30px 0 0 30px;
    z-index: 9;
}

.sponsor__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 35px 35px;
}

.sponsor__flex-item {
    width: 50%;
}

.sponsor__logo {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
}

.sponsor__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.sponsor__title h2 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}


.sponsor__text p {
    font-size: 12px;
    color: #fff;
    margin-top: 10px;
}



@media screen and (max-width: 768px) {

    .sponsor__heading h2{
        /*font-size: 30px;
        top: -50px;
        right: -5px;*/
        font-size: 30px;
        top: 15px;
        width: calc(100% - 15px);
    }

    .sponsor__inner{
        /*width: 85%;
        top: -25px;
        */
        width: 100%;
        top: 20px;
        border-radius: 0px;
    }


    .sponsor__flex{
        /*padding: 15px;*/
        padding: 50px 20px 20px 20px;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sponsor__flex-item {
        width: 100%;
    }

    .sponsor__title h2 {
        font-size: 18px;
    }

    .sponsor__text p {
        font-size: 11px;
        margin-top: 7px;
        display: none;
    }

    .sponsor__logo {
        padding: 12px;
    }


}



/*---------------------------------------------
general
---------------------------------------------*/

.container {
    width: 100%;
    position: relative;
}

.container__inner-1100 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.container__inner-1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


section {
    width: 100%;
    position: relative;
    margin-top:160px;
}

.heading {
    display: flex;
}

.heading__center {
    justify-content: center;
    text-align: center;
}

.heading h2 {
   font-family: var(--font-en);
   font-weight: 700;
   font-style: normal;
   font-size: 124px;
   color: var(--c-gray);
   z-index: 2;
}

.heading h2 span {
    color: var(--c-gold);
}

.heading p {
    font-size: 24px;
    color: var(--c-gray);
    font-weight: 600;
    font-style: italic;
    margin-top: -65px;
    text-align: right;
    margin-right: 5px;
}


.content-category{
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
}

.content-title{
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.5;
}



@media screen and (max-width: 768px) {

    .container {
        padding-top: 60px;
    }

    section{
        padding: 0 20px;
        margin-top: 100px;
    }

    .heading h2{
        font-size: 56px;
    }

    .heading p {
        font-size: 15px;
        margin-top: -27px;
    }

    .content-category {
        font-size: 15px;
    }

    .content-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .content-text {
        font-size: 14px;
    }
    


}

















/*---------------------------------------------
top_about
---------------------------------------------*/

section.top__about {
    margin-top: 300px;
}

.top__about__bg{
    position: absolute;
    bottom: -220px;
    left: 0;
    width: 80%;
    height: 80%;
    background-size: contain;
    background-image: url(../img/about_logo_bg.png);

    background-repeat: no-repeat;
}

.top__about__inner {
    margin-bottom: 80px;
}

.top__about__heading {
    position: relative;
    z-index: 2;
}

.top__about__heading h2 {
    position: absolute;
    left: 52%;
    bottom: 0;
}


/* アバウトセクションスライダー */
.top__about__slide {
    width: 55%;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    z-index: 1;
  }
  
  .about-slider {
    width: 100%;
  }
  
  .about-slider .swiper-wrapper {
    transition-timing-function: linear;
  }
  
  .about-slider .swiper-slide {
    height: auto;
    transition: transform 0.3s;
  }
  
  .about-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    /*border-radius: 10px;*/
    transition: all 0.3s ease;
  }



  @media screen and (max-width: 768px) {
    .top__about__heading h2 {
        left: 0;
        bottom: -56px;
    }

    .top__about__slide {
        width: 95%;
        overflow: hidden;
        border-radius: 0 20px 20px 0;
        z-index: 1;
        margin-left: -20px;
    }
  }


/*---------------------------------------------
top_service
---------------------------------------------*/

.top__service {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 100px 0;
  }


  
  .top__service__container {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: -90px auto 0;
  }
  
  /* 画像側のスタイル */
  .top__service__image {
    width: 50%;
    padding-right: 40px;
    position: relative;
    flex-shrink: 0;
  }
  
  .top__service__image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
  }
  
  /* コンテンツ側のスタイル */
  .top__service__content {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 0;
  }
  
  .top__service__content-inner {
    max-width: 550px; /* 合計で左右1100pxになるように */
    width: 100%;
    margin-right: auto;
  }
  
  .top__service__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
  }
  
  .top__service__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .top__service__button {
    display: inline-block;
    padding: 12px 36px;
    background-color: #0068b7;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
  }
  
  .top__service__button:hover {
    background-color: #005294;
  }


  .top__service__bottom {
    width: 100%;
    height: 100%;
  }

  .top__service__bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* メディアクエリ - タブレット */
  @media screen and (max-width: 1024px) {
   /* .top__service__content-inner {
      margin-left: 50px;
      padding-right: 30px;
    }
      */
  }
  
  /* メディアクエリ - スマホ */
  @media screen and (max-width: 768px) {
    .top__service__container {
      flex-direction: column;
    }
    
    .top__service__image,
    .top__service__content {
      width: 100%;
      padding-right: 0px;
    }

    .top__service__image img {
        margin-left: 20px;
    }
    
    .top__service__content {
      padding: 40px 0px;
    }
    
    .top__service__content-inner {
      margin-left: 0;
      padding-right: 0;
    }
  }



  .top__service__parallax-bg {
    position: relative;
    height: 450px; /* 固定高さ */
    overflow: hidden;
  }

  /* スクロールに応じて横方向に動く背景セクション */
.top__service__parallax {
    position: relative;
    width: 100%;
  }
  
  .top__service__parallax-bg {
    position: relative;
    padding-top: 40%; /* アスペクト比を設定（高さを幅の40%に） */
    overflow: hidden;
  }
  
  .top__service__parallax-bg__inner {
    position: absolute;
    top: 0;
    left: -10%; /* 初期位置を左に少しずらす */
    width: 120%; /* 表示領域より広く設定 */
    height: 120%; /* 表示領域より高く設定 */
    background-image: url('../img/top_service_bottom.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform; /* パフォーマンス最適化 */
  }
  

  @media screen and (max-width: 768px) {

    .top__service__parallax {
        padding: 0;
    }

    .top__service__parallax-bg {
        height: 200px;
    }

  }




/*---------------------------------------------
top_work
---------------------------------------------*/

  .top__work__bg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--c-lightgray);
  }


  #works{
    width: 100%;
    height: auto;
    overflow: hidden;
 }

 #works p{
    font-size: 15px;
    text-align: center;
 }



 
.square-swiper {
    width: 100%;
    max-width: 1100px;
    position: relative;
    margin-bottom: 60px;
    overflow: visible; /* 右側がはみ出すようにする */
  }
  
  .square-swiper .swiper-wrapper {
    padding: 20px 0; /* 上下の余白 */
  }
  
  .square-box {
    width: 290px;
    height: auto;
    background-color: #fffffff7;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 40px 30px;
    align-content: center;
  }
  
  .square-box p {
    font-size: 12px;
    color: #333;
    text-align: center;
    z-index: 1;
    display: inline-block;
    border: 1px solid #000;
    padding: 2px 10px;
    border-radius: 100vh;
  }


  /* ナビゲーションボタンのスタイル */
  .square-swiper .swiper-button-next,
  .square-swiper .swiper-button-prev {
    color: #333;
    top: auto;
    bottom: -40px;
    width: 30px;
    height: 30px;
    z-index: 10;
  }

  .square-swiper  .swiper-button-prev {
    left: 0px;
}

.square-swiper  .swiper-button-next {
    left: 40px;
}

.square-swiper  .swiper-button-next:after,
.square-swiper  .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

  
  @media (max-width: 768px) {

    section.top__work{
        padding: 0px;
    }

    #works p{
        font-size: 13px;
     }

     .square-swiper{
        margin-left: 20px;
     }

    .square-box {
      width: 250px;
      height: 180px;
      padding: 20px;
    }
    
    .square-box p {
      font-size: 12px;
      line-height: 1.7;
    }

    .quote-left, .quote-right {
        width: 20px;
        height: 20px;
      }

      .square-box__title h3{
        font-size: 18px;
      }

  }



/*---------------------------------------------
top_recruit
---------------------------------------------*/

.top__recruit__bg__text {
    position: absolute;
    bottom: -82px;
    left: 0;
    color: var(--c-gray);
    width: 100%;
    font-size: 100px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    line-height: 1.3;
}

.top__recruit__bg__text::before {
    content: "We're looking for partners to help shape the future together. We're looking for partners to help shape the future together.We're looking for partners to help shape the future together.";
    animation: marquee 90s linear infinite;
    display: block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.top__recruit__content {
    width: 100%;
    padding-bottom: 78.9%;
    background:url('../img/top_recruit.jpg') no-repeat center center;
    background-size: 100% auto;
    color: #fff;
    position: relative;
    margin-top: -120px;
}

.top__recruit__content-category {
    color: #fff;
    margin-top: 0px;
}

.top__recruit__content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 60px;
    padding: 0 90px;
    text-align: center;
}

.top__recruit__content-inner p {
    font-weight: 500;
    line-height: 2.2;
    margin-top: 40px;
}


.top__recruit__content-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
    margin-top: 60px;
}

/*
.top__recruit__content-button {
    margin-top: 60px;
    background-color: #fff;
    color: #000;
    padding: 12px 36px;
    border-radius: 100vh;
    font-weight: bold;
    transition: background-color 0.3s;
}
    */

.top__recruit__content-button .content__button {
background-color: #fff;
    color: var(--c-black);
}

.top__recruit__content-button-link {
    font-weight: bold;
}

@media (max-width: 768px) {

    .top__recruit__content {
        background-size: auto 730px;
        height: 730px;
        border-radius: 30px;
    }

    .top__recruit__content-inner {
        padding: 0 20px;
        top: 104px;
    }

    .top__recruit__content-title {
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .top__recruit__content-inner p {
        margin-top: 20px;
        font-size: 13px;
    }

    .top__recruit__content-button{
        margin-top: 20px;
    }

    .top__recruit__bg__text {
        bottom: -35px;
        font-size: 36px;
    }

}



/*---------------------------------------------
top_contact
---------------------------------------------*/


.top__contact {
    width: 100%;
    height: 100%;
    background-color: var(--c-black);
    color: #fff;
    padding: 80px 0 120px;
}


.top__contact__content-category {
    color: #fff;
    text-align: center;
    margin-top: -50px;
    margin-bottom: 60px;
}

.top__contact__content-inner {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: stretch; 
    border: 1px solid #9F9F9F;
    padding: 70px 0;
    position: relative; 
}

.top__contact__content-inner .content__button {
    background-color: #fff;
    color: var(--c-black);
}

.top__contact__content-inner-left,
.top__contact__content-inner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top__contact__content-inner-left-tel {
    font-size: 36px;
    font-weight: bold;
    margin: 15px 0;
    line-height: 1;
}

.top__contact__content-inner-left-tel p{
    color: #ffffff;
}


.top__contact__content-inner-line {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background-color: #9F9F9F;
}


@media (max-width: 768px) {

    .top__contact {
        padding: 60px 20px 100px;
    }

    .top__contact__content-category{
        margin-top: 0px;
        margin-bottom: 40px;
    }

    .top__contact__content-inner {
        flex-direction: column;
        gap: 50px 0;
        padding: 48px 0;
    }

    .top__contact__content-inner-line {
    /*90°回転*/
        transform: translateX(-50%) rotate(90deg);
        top: 40px;
    }

    }




/*---------------------------------------------
footer
---------------------------------------------*/

footer{
    background-color: var(--c-lightgray);
    width: 100%;
}

.footer__inner__menu{
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    height: 100px;
    border-bottom: 1px solid #d0d0d0;
    margin: 0 auto;
}


.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
    padding: 20px 0;
}

.footer__inner img{
    width: 150px;
    mix-blend-mode: darken;
}

.footer__inner__info-title{
    font-size: 21px;
    font-weight: bold;
    margin: 10px 0;
}

.footer__inner__info-address{
    font-size: 14px;
    padding-bottom: 10px;
}


.footer__inner__info{
    display: flex;
    font-size: 14px;
    gap: 10px;
}

.footer__inner__copyright{
    font-size: 10px;
}





/*---------------------------------------------
Lower page jenelar
---------------------------------------------*/

.lower__container {
    width: 100%;
    height: 100%;
    margin-top: 150px;
}


.lower__subheading h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}


.lower__heading__img img{
    width: 100%;
    height: 100%;
    /*margin-bottom: 100px;*/
    object-fit: contain;
}

.lower__inner__heading h2{
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 80px;
}

.lower__heading__bottom__none{
    margin-bottom: 0px !important;
}

.lower__inner__subheading{
    font-size: 21px;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
}

.lower__inner__subheading::before{
    content: "";
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: #000; /* 線の色 */
    margin-right: 15px; /* 線とテキストの間隔 */
}

.lower__inner__title{
    font-size: 36px;
    font-weight: bold;
}


.lower__inner__title__center{
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}

.lower__inner__text__center{
    text-align: center;
    line-height: 2.5;
}

.lower__bottom__mr{
    margin-bottom: 100px;
}


@media screen and (max-width: 768px) {

    .lower__container{
        margin-top: 100px;
    }

    .lower__heading__img{
        padding: 0 20px;
    }

    .lower__inner__heading h2{
        font-size: 40px;
        margin-bottom: 40px;
        margin-top: -10px;
    }

    .lower__inner__title{
        font-size: 21px;
    }

    .lower__inner__subheading{
        font-size: 16px;
        margin-bottom: 10px;
    }

    .lower__inner__subheading::before{
        width: 45px;
    }

    .lower__inner__title__center{
        font-size: 30px;
    }

    .lower__inner__text__center{
        line-height: 2;
         font-size: 13px;
    }

    .lower__bottom__mr{
        margin-bottom: 60px;
    }

    .lower__no__padding{
        padding: 0px;
    }

    .lower__left__me{
        margin-left: 20px;
    }

    .lower__se__padding{
        padding:0 20px;
    }


}








/*---------------------------------------------
company page
---------------------------------------------*/


.company__bg{
    width: 100%;
    min-height: 400px;
    background: url(../img/company_01.jpg) no-repeat center center;
    background-position: right;
    background-size: contain;
    margin-top: -280px;
    z-index: -1;
}


.company__message__flex{
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.company__message__flex__left{
    width: 35%;
}

.company__message__flex__left img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company__message__flex__right{
    width: 65%;
}


.company__info__bg{
    width: 100%;
    min-height: 400px;
    background: url(../img/company_03.jpg) no-repeat center center;
    background-size: cover;
    margin-bottom: -35px;
}



.company__info__table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .company__info__table tr {
    border-bottom: 1px solid #ddd;
  }
  
  .company__info__table th,
  .company__info__table td {
    padding: 20px 0;
    font-weight: normal;
  }
  
  .company__info__table th {
    width: 20%;
    text-align: left;
    vertical-align: top;
    font-weight: bold;
  }
  
  .company__info__table td {
    width: 80%;
  }
  
  /* レスポンシブ対応 */
  @media screen and (max-width: 768px) {

    .company__bg{
        display: none;
    }

    .company__message__flex{
        flex-direction: column;
    }

    .company__message__flex__right,
    .company__message__flex__left{
        width: 100%;
    }

    .company__message__text{
        line-height: 2;
        font-size: 13px;
        margin-top: 15px;
    }

    section.company__info__section{
        padding: 0px;
    }

    .company__info__heading{
        margin-left: 20px;
    }

    .company__info__table{
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    .company__info__table th,
    .company__info__table td {
      display: block;
      width: 100%;
    }
    
    .company__info__table th {
      padding-bottom: 5px;
    }
    
    .company__info__table td {
      padding-top: 5px;
      font-size: 13px;
    }

    .company__info__bg{
        min-height: 180px;
        margin-bottom: -18px;
    }

    .company__history__image{
        display: none;
    }
    

  }



  .company__history__outline {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 0 100px 0;
  }


  
.company__history__container{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.company__history__image {
    width: 50%;
    padding-left: 80px;
    position: relative;
    flex-shrink: 0;
}

.company__history__image img {
    width: 100%;
    height: auto;
    display: block;
    /*max-height: 420px;*/
}


.company__history__wrap__content {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0px 0;
}

.company__history__wrap__content__inner {
    max-width: 550px;
    width: 100%;
    margin-left: auto;
}



  .company__history {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
  }
  
  .company__history__items {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 20px;
  }
  
  .company__history__items::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .company__history__item {
    flex: 0 0 250px;
    position: relative;
    padding: 0px;
  }
  
  .company__history__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--c-gold);
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 2;
  }
  
  .company__history__line {
    height: 2px;
    background-color: #dddddd;
    position: absolute;
    top: 9px;
    left: 20px;
    right: 0;
    z-index: 1;
  }
  
  .company__history__year {
    margin-top: 30px;
    font-weight: bold;
    font-size: 24px;
    color: var(--c-black);
  }
  
  .company__history__content {
    margin-top: 10px;
    font-size: 16px;
    padding-right: 30px;
  }
  
  /* スクロールバー */
  .company__history__scrollbar {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    position: relative;
    margin-top: 20px;
    cursor: pointer;
  }
  
  .company__history__scrollbar-thumb {
    height: 100%;
    background-color: var(--c-gold);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20%; /* 初期幅、JavaScriptで調整 */
  }



  
  /* メディアクエリ - スマホ */
  @media screen and (max-width: 768px) {
    .company__history__wrap__content {
      flex-direction: column;
    }
    
    .company__history__image,
    .company__history__wrap__content {
      width: 100%;
    }
    
    .company__history__wrap__content {
      padding: 40px 20px;
    }
    
    .company__history__wrap__content__inner {
      margin-left: 0;
      padding-right: 0;
    }
  }







/*---------------------------------------------
service page
---------------------------------------------*/


  
  .service__parallax-bg {
    position: relative;
    /*height: 450px;  */
    overflow: hidden;
  }

  /* スクロールに応じて横方向に動く背景セクション */
.service__parallax {
    position: relative;
    width: 100%;
    margin-top: 0px;
  }
  
  .service__parallax-bg {
    position: relative;
    padding-top: 50%; /* アスペクト比を設定（高さを幅の40%に） */
    overflow: hidden;
  }
  
  .service__parallax-bg__inner {
    position: absolute;
    top: 0;
    left: -10%; /* 初期位置を左に少しずらす */
    width: 120%; /* 表示領域より広く設定 */
    height: 120%; /* 表示領域より高く設定 */
    background-image: url('../img/service_02.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    will-change: transform; /* パフォーマンス最適化 */
  }
  


  .service__flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }

  .service__flex__box{
    width: calc(50% - 10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
  }

  .service__flex__box__title{
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .service__flex__box__title::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100vh;
    background-color: var(--c-gold);
  }

  .service__flex__box__text{
    font-size: 16px;
  }

  .service__flex__box img{
    width: 250px;
    height: 100%;
    object-fit: contain;
  }

  .service__flex__box__img{
    box-shadow: none!important;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  @media screen and (max-width: 768px) {

    .service__flex__box{
        width: 100%;
        padding: 25px;
    }

    .service__flex__box__title{
        font-size: 15px;
    }

    .service__flex__box__text {
        font-size: 13px;
    }

    .service__flex__box img{
        display: none;
    }
}




/*---------------------------------------------
recruit page
---------------------------------------------*/

.recruit__flex__1{
    flex: 1;
}


.recruit__job__bg{
    background: var(--c-lightgray);
    padding-top: 80px;
}

.recruit__job__title h2{
    color: var(--c-black);
}

.recruit__work__bg{
    width: 100%;
    min-height: 400px;
    background: url(../img/recruit_02.jpg) no-repeat center center;
    background-size: cover;
    margin-bottom: -35px;
}





@media screen and (max-width: 768px) {
    .recruit__bg__text {
        bottom: 210px;
    }

    .recruit__work__bg {
        min-height: 200px;
        margin-bottom: -15px;
    }
    
    
}


/*---------------------------------------------
form
---------------------------------------------*/

:root {
    --apple-blue: #0071e3;
    --apple-blue-dark: #0062c3;
    --apple-gray: #f5f5f7;
    --apple-gray-dark: #86868b;
    --apple-border: #f0f0f0;
    --apple-error: #ff3b30;
  }
  

.apple-form-container {
    max-width: 1100px;
    margin: 30px auto;
  }
  
  .apple-form {
    background-color: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
  }
  
  .apple-form-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .apple-form-group {
    margin-bottom: 24px;
  }

  .apple-form-group a{
    background: var(--apple-gray);
    display: block;
    text-align: center;
    font-size: 10px;
    padding: 10px;
    margin-top: 15px;
}
  
  
  .apple-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1d1d1f;
  }
  
  .apple-form-input, 
  .apple-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--apple-border);
    border-radius: 12px;
    background-color: var(--apple-gray);
    transition: border-color 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .apple-form-input:focus, 
  .apple-form-textarea:focus {
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
  }
  
  .apple-form-textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .apple-form-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .apple-form-radio,
  .apple-form-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  
  .apple-form-radio input,
  .apple-form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .apple-form-radio label,
  .apple-form-checkbox label {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding-left: 30px;
    cursor: pointer;
  }
  
  .apple-form-radio label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid var(--apple-border);
    border-radius: 50%;
    background-color: var(--apple-gray);
  }
  
  .apple-form-radio input:checked + label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--apple-blue);
  }
  
  .apple-form-checkbox label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid var(--apple-border);
    border-radius: 6px;
    background-color: var(--apple-gray);
  }
  
  .apple-form-checkbox input:checked + label:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    width: 5px;
    height: 10px;
    border-bottom: 2px solid var(--apple-blue);
    border-right: 2px solid var(--apple-blue);
  }
  
  .apple-form-zip {
    display: flex;
    gap: 8px;
  }
  
  .apple-button-primary,
  .apple-button-secondary {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    outline: none;
    text-align: center;
  }
  
  .apple-button-primary {
    background-color: var(--apple-blue);
    color: white;
  }
  
  .apple-button-primary:hover {
    background-color: var(--apple-blue-dark);
  }
  
  .apple-button-secondary {
    background-color: var(--apple-gray);
    color: var(--apple-blue);
    border: 1px solid var(--apple-border);
  }
  
  .apple-button-secondary:hover {
    background-color: #ebebf0;
  }
  
  .apple-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  
  @media (max-width: 768px) {
    .apple-form-container {
      margin: 30px auto;
    }
    
    .apple-form {
      padding: 24px;
      border-radius: 14px;
    }
    
    .apple-form-title {
      font-size: 24px;
    }
    
    .apple-form-radio-group {
      flex-direction: column;
      gap: 10px;
    }
    
    .apple-form-zip {
      flex-direction: column;
    }
  }







  
/*---------------------------------------------
contact page
---------------------------------------------*/

.contact__tel__section{
    margin-top: 0px !important;
}

.contact__tel__bg{
    background: var(--c-gray);
    padding: 80px 0;
}

.contact__tel__flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact__tel__flex__left{
    width: 50%;
    text-align: center;
}

.contact__tel__flex__right{
    width: 50%;
    text-align: center;
}

.contact__tel__flex__right h2,
.contact__tel__flex__left h2{
    font-size: 26px;
    font-weight: bold;
}

.contact__tel__flex__right p,
.contact__tel__flex__left p{
    font-size: 16px;
}


@media screen and (max-width: 768px) {

    .contact__tel__flex {
        flex-direction: column;
        gap: 20px;
    }

    .contact__tel__flex__left,
    .contact__tel__flex__right{
        width: 100%;
    }


}





/*---------------------------------------------
privacy page
---------------------------------------------*/

.privacy-policy {
    padding: 60px 0;
  }
  
  .privacy-content {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.8;
  }
  
  .privacy-intro {
    margin-bottom: 30px;
  }
  
  .privacy-section {
    margin-bottom: 40px;
  }
  
  .privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
  }
  
  .privacy-list {
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .privacy-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
  }
  
  .privacy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
  }
  
  .privacy__company-info {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
  }
  
  .privacy__company-info p {
    margin-bottom: 10px;
  }