/* CSSリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans JP', sans-serif; /* 基本フォントをNoto Sans JPに設定 */
    font-weight: 400;
    font-style: normal;
}

.sp{
	display: none;

}
@media (max-width: 768px) {
	.sp{
	display: block;

}
	.pc{
	display: none;

}
}

/* ヘッダー */
.header {
    position: fixed;
    top: 16px;
    right: 0;
    left: 0;
    height: 80px;
    width: 90%;
    margin: 0 auto;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 微妙なドロップシャドウ */
    border-radius: 50px;
    background: #ffffff;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px; /* 左右40pxのパディング */
}
.logo {
    height: 40px;
}
.menu-list ul{
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}
.menu li {
    padding: 10px 0;
}
.menu a {
    text-decoration: none;
    color: #31384A;
    font-size: 16px;
    font-weight: bold;
}
.menu a:hover {
    color: #00A6CA;
}

/* 取り扱い商品をみるボタン */
.cta-button {
    background: #00A6CA;
    color: #fff !important;
    text-decoration: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #fff;
    margin-top: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 薄いボックスシャドウ */
}
.cta-button img {
    margin-left: 10px;
    width: 16px;
    height: auto;
}



/* お問い合わせリンク */
.contact-link {
    background: #00A6CA;
    color: #fff !important;
    text-decoration: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 薄いボックスシャドウ */
}
.contact-link img {
    margin-left: 10px;
    width: 16px;
    height: auto;
}

/* ハンバーガーメニュー（デフォルトでは非表示） */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.hamburger span {
    width: 30px;
    height: 4px;
    background-color: #31384A;
    border-radius: 5px;
}

/* PC向け: メニューはそのまま表示 */
@media (min-width: 769px) {
    .menu-list {
        display: flex;
    }
    .hamburger {
        display: none; /* ハンバーガーメニューを非表示 */
    }
}

/* モバイル向け: メニューは非表示、ハンバーガーメニューは表示 */
@media (max-width: 768px) {
    /* メニューを非表示 */
    .menu-list {
        display: none;
        flex-direction: column;
        gap: 16px;
        position: absolute;
        top: 100px;
        right: 20px;
        background-color: #ffffff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* ハンバーガーメニューを表示 */
    .hamburger {
        display: flex;
    }

    /* メニューの表示（ハンバーガーをクリックした時） */
    .menu.show-menu .menu-list {
        display: flex;
    }
}

/* メニューリンクのスタイル */
.menu li {
    padding: 10px 0;
}
.menu a {
    text-decoration: none;
    color: #31384A;
    font-size: 16px;
    font-weight: bold;
}
.menu a:hover {
    color: #00A6CA;
}

.fv {
    background-image: url('../img/fv-back.png');
    background-size: cover;
    height: 100vh;
    background-position: bottom;
    
}
.fv-container {
    display: flex;
    height: 100vh;
    width: 90%; /* 90%の幅に設定 */
    margin: 0 auto; /* 中央揃え */
    max-width: 1400px;
}
.fv-left, .fv-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}
.fv-left {
    align-items: flex-start;
    text-align: left;
    margin-top:  80px;
}
.subheading {
    font-size: 20px;
    color: #00A6CA;
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
font-weight: 400;
font-style: normal;
}
h1 {
    font-size: 41px;
    color: #31384A;
    font-family: 'Noto Sans JP', sans-serif; /* Noto Sans JPを指定 */
}
.description {
    margin-top: 24px;
    font-size: 15px;
    color: #31384A;
    line-height: 2;
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
font-weight: 400;
font-style: normal;
}
.cta-button {
    background: #00A6CA;
    color: #fff;
    text-decoration: none;
    padding: 24px 40px;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #fff;
    margin-top: 40px; /* 上に80pxのマージン */
    border-radius: 50px; /* 丸ボタン */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 薄いボックスシャドウ */
}

.cta-button img {
    margin-left: 10px; /* アイコンとテキストの間に隙間を追加 */
    width: 16px; /* アイコンのサイズ調整 */
    height: auto;
}
.fv-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}
.fv-right .swiper {
    width: 100%;
    overflow:visible;
}
.fv-right .swiper-slide{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
}
/* ページネーションを非表示にする */
.fv-right .swiper-pagination {
    display: none;
}
.fv-right .swiper-slide img {
    width: 60%;
    margin: 0 auto;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transform: translate(100%, -100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    
}
.fv-right .swiper-slide-active img {
    opacity: 1;
    transform: translate(0, 0);
}
.fv-right .swiper-slide-prev img {
    opacity: 0;
    transform: translate(-100%, 100%);
}
/* お知らせセクション */
.news-container {
	display:grid;
    max-width: 1100px;
    width: 80%;
    margin: 128px auto;
    gap: 64px;
    }
    .news-title h2{
    font-size: 72px;
    margin-bottom: 16px;
}
.news-title {
	font-weight:bold;
}
.news-title p {
    font-size: 18px;
}
.news-list{
display:flex;
list-style:none;
justify-content: space-between;
}
.news-list a {
    text-decoration: none;
	color:#1F2439;
}
.news-list li{
width:32%;
position: relative;
}
.news-list li:hover{
	opacity:0.7;
}
.news-category{
	text-align:center;
	background-color:#E8ECF9;
    border-radius: 50px;
	padding: 4px 16px 5px;
	font-size:12px;
}
.news-info a{
	text-decoration: none;
    color:#1F2439;
    font-size:14px;
 }
.news-info{
	display:flex;
    flex-wrap: wrap; 
    gap:16px;
    margin-bottom:16px;
    margin-top:32px;
    align-items: center;
}
.news-date, .news-category, .news-title {
    text-decoration: none; /* 下線を削除 */
	color:#1F2439;
}

.news-thumbnail {
	display: flex;
    justify-content: center;
    width: 100%;
    height: 200px; 
    overflow: hidden;
    border-radius:8px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.news-list li:hover .news-thumbnail img {
    transform: scale(1.1); /* 画像を1.1倍に拡大 */
    transition: transform 0.3s ease-in-out; /* スムーズな遷移を追加 */
}
.news-top-button a{
	 display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background-color: #006BB5;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
}
.news-top-button a::after {
    content: "→";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #fff;
    color: #006BB5;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
}
.news-top-button{
    display: flex;
    justify-content: right;
    margin-top: 16px;
}


/* Strengthセクション */
.strength {
    padding-top: 80px;
    padding-bottom: 160px; /* 下のパディングを160px */
    position: relative;
    background: linear-gradient(to bottom, #F5F7FC 70%, #FFFFFF 30%);
}
.strength-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.strength-left,
.strength-right {
    width: 50%;
}
.strength-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}
.strength-title {
    font-size: 14px;
    font-weight: bold;
    color: #00A6CA !important;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.strength-title::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #00A6CA;
    border-radius: 50%;
}

.strength-left h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}



.strength-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.strength-features {
    max-width: 1100px;
    width: 80%;
    margin: 140px auto 0; /* 上部に140pxのマージンを追加 */
    display: flex;
    gap: 48px;
}

.feature {
    width: calc(33.333% - 32px); /* 3カラムでgap48pxを考慮 */
    text-align: left;
}
.feature p {
    font-size: 16px;
    line-height: 1.6;
}
.feature-title {
    font-size: 18px !important; /* フォントサイズを18pxに */
    font-weight: bold;
    color: #000; /* テキストは黒 */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center; /* 中央揃え */
    height: 56px;
    gap: 8px;
}

.feature-title::before {
    content: "";
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-color: #00A6CA;
    border-radius: 50%;
}


.feature img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.product-section {
    background: url('../img/top-productsback.png') no-repeat center / cover;
    padding: 100px 0 150px;
}

.product-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.product-heading {
    font-size: 40px;
    color: #006BB5;
    text-align: center;
    padding: 0 16px; /* 左右に16pxのパディング */
}

.product-heading span {
    background: white;
    padding: 16px; /* paddingを16pxに変更 */
    display: inline-block; /* inlineに変更 */
    margin-top: 24px;
}




.product-title-box {
    margin-top: 40px;
    text-align: left;
    color: white;
}

.product-title {
    font-size: 72px;
}

.product-description {
    font-size: 18px;
    margin-top: 10px;
}


/* top-productセクション */
.top-product {
    margin-top: -70px;
    padding-bottom: 100px;
}

.top-product-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-box {
    width: 320px;
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

.product-box div {
    display: flex;
    align-items: flex-end;
    gap: 10px; /* 番号とタイトルの間に適度な余白を追加 */
}

.product-box h3 {
    font-size: 72px;
    font-weight: bold;
    margin: 0;
}

.product-box p {
    font-size: 18px;
    margin-bottom: 20px;
}


/* 製品説明セクション */
.product-details {
    padding: 80px 0;
    background: #fff;
}

.product-details-container {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}

.product-detail-box {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #ddd; /* 灰色のボーダー */
    align-items: center;
}

.product-detail-left,
.product-detail-right {
    width: 50%;
}

/* Swiperスライド */
.product-swiper,.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-swiper .swiper-slide img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* スライド送りボタン */
.product-swiper-prev,
.product-swiper-next{
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #31384A;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.product-swiper-prev::after {
    content: "←";
    color: #31384A;
    font-size: 18px;
    

}
.product-swiper-next::after {
    content: "→";
    color: #31384A;
    font-size: 18px;
    

}

.product-swiper-prev {
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-swiper-next {
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    


}

/* 右側のコンテンツ */
.product-detail-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-number {
    font-size: 32px;
    color: #00A6CA; /* 水色 */
    font-weight: bold;
    margin-bottom: 0px;
}

.product-name {
    font-size: 32px;
    color: #31384A;
    margin-bottom: 0px;
}
.product-header {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    gap: 10px; /* 余白を調整（適宜変更） */
    margin-bottom: 12px;
}
.productdescription {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-bottom: 30px;
}

/* 詳しく見るリンク */
.detail-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #00A6CA;
    text-decoration: none;
    justify-content: flex-end;
}

.detail-icon {
    width: 30px;
    height: 30px;
    background: #00A6CA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon::after {
    content: "→";
    color: #fff;
    font-size: 18px;
}
.product-details-button {
    display: flex;
    justify-content: center;
    margin-top: 80px; /* 適宜調整 */
}



.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px; /* アイコンとの間隔 */
    padding: 16px 64px;
    background-color: #006BB5;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
}

.product-btn::after {
    content: "→";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #fff;
    color: #006BB5;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
}
.contact-section {
    background: url('../img/contact-sec.png') no-repeat center center/cover;
    padding: 140px 0;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1100px;
    width: 80%;
    display: flex;
    justify-content: space-between; /* 両端揃え */
    align-items: center;
}
.contact-left {
    max-width: 60%; /* 左カラムの幅調整 */
}

.contact-left h2 {
    font-size: 72px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 20px;
    color: #fff;
    line-height: 2;
}
.contact-right {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    align-items: center;
    width: 40%;
}

.contact-seclink{
    background-color: #006BB5;
    padding: 20px 72px;
}
.service-section {
    background-color: #F5F7FC;
    padding: 120px 0;
    text-align: center;
}

.service-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.service-title {
    margin-bottom: 40px;
    text-align: left;
}

.service-title h2 {
    font-size: 72px;
    margin-bottom: 16px;
}

.service-title p {
    font-size: 18px;
}

.support-container {
    text-align: center;
}
.support-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.support-label2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 24px;
    text-align: left;
}
.support-title {
    font-size: 36px;
    margin-bottom: 40px;
}
.support-title2 {
    font-size: 24px;
    margin-bottom:16px;
    display: inline-block;
    padding: 2px 6px;
    border-bottom: 2px solid #00A6CA;
}

.support-boxes {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.support-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    max-width: 350px;
    flex: 1;
    align-items: center;
    display: flex
;
    flex-direction: column;
}

.support-box img {
   
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.support-box h4 {
    font-size: 24px;
    color: #00A6CA;
    margin-bottom: 24px;
    text-align:center;
}
.support-box h4 strong{
	font-size:14px;
}
.support-box span{
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    color: #9fa3ae;
    margin-right:12px;
}

.support-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.process {
    padding: 120px 0;
    background-color: #F5F7FC;
  }
  
  .process-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  
  .process-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  
  .process-subtitle {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  
  
  .process-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .process-flow {
    display: flex;
    flex-direction: column;  /* 縦並びに変更 */
    gap: 16px;
    width: 100%;  /* 横幅を100%に */
  }
  
  .flow-item {
    display: flex;
    gap: 16px;
    width: 100%;  /* 横幅を100%に */
  }
  
  .flow-left {
    width: 60px;
   
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
  }
  .flow-item:nth-child(1) .flow-left{
  background-color: #23BEE0;  /* 1つ目のフローの水色部分 */
}

.flow-item:nth-child(2) .flow-left{
  background-color: #1D87B7;  /* 2つ目のフローの水色部分 */
}

.flow-item:nth-child(3) .flow-left{
  background-color: #175493;  /* 3つ目のフローの水色部分 */
}
  
  .flow-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    
    
    width: 100%;  /* 横幅を100%に */
    gap: 16px;
  }
  
  
  
  .flow-icon {
    width: 54px;
  }
  
  .flow-text {
    text-align: left;  /* テキストを左寄せ */
  }
  
  .flow-top,
  .flow-bottom {
    padding: 20px 70px;
    background-color: #fff;
    display: flex;
    gap: 50px;
    align-items: center;
    border-radius: 8px;
  }
  
  
  .flow-title {
    color: #1F2439;  /* テキストの色を黒に変更 */
    font-size: 20px;
    position: relative;
  }
  
  .flow-title::before {
    content: "";
    width: 8px;
    height: 8px;
    
    border-radius: 50%;  /* 丸にする */
    position: absolute;
    left: -12px;  /* 丸をテキストの前に配置 */
    top: 50%;
    transform: translateY(-50%);  /* テキストと縦中央揃え */
  }
  .flow-item:nth-child(1) .flow-title::before{
    background-color: #23BEE0;  /* 1つ目のフローの水色部分 */
  }
  
  .flow-item:nth-child(2) .flow-title::before{
    background-color: #1D87B7;  /* 2つ目のフローの水色部分 */
  }
  
  .flow-item:nth-child(3) .flow-title::before{
    background-color: #175493;  /* 3つ目のフローの水色部分 */
  }
  
  .flow-description {
    font-size: 14px;
    color: #1F2439;
    margin-top: 8px;  /* flow-descriptionに上マージンを追加 */
  }
  .company {
    padding: 120px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .company-title-box {
    margin-bottom: 40px;
  }
  
  .company-label {
    font-size: 18px;
    color: #1F2439;
  }
  
  .company-title {
    font-size: 36px;
    font-weight: bold;
    color: #1F2439;
  }
  
  .company-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
  }
  
  .company-image {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  
  .company-box {
    display: flex;
    gap: 60px;
    align-items: flex-end;
  }
  
  .company-info {
    flex: 60%;
  }
  
  .company-list {
    display: flex;
    flex-direction: column;
  }
  
  .company-list li {
    display: flex;
    padding: 32px 0;
    border-bottom: 1px solid #9DBDCE;
    text-align: left;
  }
  
  .company-list-left {
    width: 30%;
    font-size: 18px;
    font-weight: bold;
    color: #1F2439;
  }
  
  .company-list-right {
    width: 70%;
    font-size: 16px;
    color: #1F2439;
  }
  
  .company-map {
    flex: 40%;
  }
  
  .company-map iframe {
    width: 100%;
    height: 500px;
    border-radius: 8px;

  }
  .footer {
    background: #2F3033;
    padding: 160px 0;
  }
  
  .footer-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-left {
    text-align: left;
  }
  
  .footer-logo {
    width: 400px;
    margin-bottom: 16px;
  }
  
  .footer-company {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
  }
  
  .footer-address {
    font-size: 14px;
    color: #fff;
  }
  
  .footer-right {
    text-align: right;
  }
  
  .footer-menu {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
  }
  
  .footer-menu li {
    list-style: none;
  }
  
  .footer-menu a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
  }
  
  .footer-policy {
    display: block;
    font-size: 14px;
    color: #A7AFB6;
    text-decoration: none;
    margin-bottom: 8px;
  }
  
  .footer-copy {
    font-size: 14px;
    color: #fff;
  }



  /*products*/
  .hero-area {
    background: url('../img/hero-area.webp') no-repeat center/cover;
    padding-top: 180px;
    padding-bottom: 130px;
  }
  
  .hero-content {
    width: 80%;
    text-align: left;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 64px;
    color: white;
  }
  
  .hero-content h2 {
    font-size: 20px;
    color: white;
  }
  
  .hero-content p {
    font-size: 14px;
    color: white;
    margin-top: 24px;
  }
  .product-about {
    background: url('../img/page-haikei.png') no-repeat center/cover;
    padding: 100px 0;
  }
  
  .product-about-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .product-about-text {
    width: 45%;
    color: #333;
  }
  
  .product-about-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .product-about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .product-list-button-container{
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      background-color: #00A6CA;
      padding: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      border-radius: 8px;
  }
  .product-list-button{
      background-color: white;
      padding: 24px;
      display: flex;
      gap: 8px;
      align-items: center;
      width: 19%;
      justify-content: center;
      text-decoration: none;
      color: #00A6CA;
      border-radius: 8px;
  }



  .product-list-number {
    font-size: 40px;
    color: #00A6CA;
    font-weight: bold;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    align-items: center;
    margin-bottom: 4px;
}
.product-list-name {
    font-size: 48px;
    color: #31384A;
    margin-bottom: 0px;
    line-height: 1;
}
.product-list-number span{
    font-size: 13px;
    display: block;
}

  .product-about-image {
    width: 45%;
  }
  
  .product-about-image img {
    width: 100%;
    height: auto;
  }
  .product-list-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
  .products-list{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
  }
  .product-list-box{
      text-align: left;
  }
  .product-list-contentbox{
      position: relative;
      padding-top: 48px;
  }
.product-list-content-img{
    width: 100%;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}
.product-list-content{
    position: relative;
    background-color: #F5F7FC;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
}

.product-list-content img{
    height: 300px;
    object-fit: contain;
    
}
.product-detail-button {
    background: #00A6CA;
    color: #fff !important;
    text-decoration: none;
    padding: 12px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-list-content p{
    font-size: 14px;
}
.product-list-group{
    width: 95%;
    margin: 0 auto;
    display: flex;
    gap: 12px;
	overflow: hidden;
}
.product-list-content-title {
    font-size: 24px !important;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin: 0 auto;
    margin-bottom: 32px;
    display: flex
;
width: 95%;

    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.product-list-content-title::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}
.product-list-box{
    margin-top: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #AAB8D7;
}

/*商品詳細*/


.hero-area-detail {
    background: url('../img/hero_area2.png') no-repeat center/cover;
    padding-top: 180px;
    padding-bottom: 130px;
  }
  .product-detail-about {
    background: url('../img/page-haikei.png') no-repeat center/cover;
    padding: 100px 0;
  }
  
  .product-detail-about-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .product-detail-about-text {
    width: 45%;
    color: #333;
  }
  
  .product-detail-about-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .product-detail-about-text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
  }
  .product-detail-about-image {
    width: 45%;
  }
  .product-detail-about-image img{
    width: 100%;
    height: auto;
  }

  .products-detail-list{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
  }

  .feature-list{
    display: grid;
    gap: 16px;
    text-align: left;
    list-style: none;
    padding: 40px ;
    background-color:#F5F7FC;
    border-radius: 8px;
  }
   .feature-list p{
   line-height:2;
   }
  .feature-list-title{
    display: flex;
    align-items: center;
    gap:18px;
  }
  .feature-list-number{
    font-weight: 600;
    font-size: 48px;
    color: #00A6CA;
  }
  .feature-list-title h3{
    font-size: 24px;
  }
  .feature-list-line{
    height: 1px;
    width: 100%;
    background-color: #A2B3C1;
  }
  .feature-list-box{
    display: grid;
    gap:40px;
    margin-bottom: 120px;
  }

  .spec {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    overflow-x: auto;
}
.spec-block {
    display: flex;
    margin-top: 16px;
}
.spec-block-item{
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
}
.spec-block-item-list{
    width: 240px;
    border-radius: 8px;
    background-color:#DDEEF8;
    flex: 0 0 auto;
}
.spec-block-item-name{
    border-bottom: 1px solid #BCCFE2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-wrap: wrap;
    padding: 10px;
}
.spec-block-item-name p{
    width: 100%;
    overflow-wrap: break-word;
    text-align: left;
}
.spec-block-item-name:not(:first-child){
    height: 72px;
}
.spec-block-item-name:first-child{
    height: 184px;
}
.spec-block-item-name:first-child img{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.spec-block-item-list-wrapper{
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 2px;
}
.spec-block-item-list-wrapper .spec-block-item-list:nth-child(odd) {
    background-color: #DDEEF8; /* 奇数番目の背景色 */
}

.spec-block-item-list-wrapper .spec-block-item-list:nth-child(even) {
    background-color: #F0F8FD; /* 偶数番目の背景色 */
}


/* お問い合わせ 他商品ボタン */
.detail-contact-container{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}
.detail-contact-container p{
    font-size: 20px;
}
.contact-cta{
    place-items: center;
    margin-bottom: 64px;
}
.contact-cta a{
    display: flex;
    padding: 16px 48px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 0px;
    background-color: #006BB5;
    color: #fff;
    margin-top: 16px;
    text-decoration: none;
}
.other-product-button p{
    margin-bottom: 20px;
}
.showroom-section{
    background-image: url('../img/showroom-bg.png');
    background-repeat: no-repeat;
	background-size: cover;
    object-fit: cover;
    padding-top: 104px;
    padding-bottom: 104px;
}
.showroom-section-container{
    width: 680px;
    margin: 0 auto;
}
.showroom-section-container h2{
    margin-bottom: 24px;
    margin-top: 8px;
}
.showroom-section-container img:first-child{
    width: 100%;
    margin-bottom: 24px;
}
.showroom-cta{
    display: flex;
    margin-top: 40px;
    margin-bottom: 64px;
    gap: 64px;
}
.contact-button{
    display: flex;
    white-space: nowrap;
    padding: 16px 48px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 0px;
    background-color: #006BB5;
    color: #fff;
    margin-top: 16px;
    text-decoration: none;
}
.showroom-button{
    display: flex;
    white-space: nowrap;
    padding: 16px 48px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 0px;
    background-color: #fff;
    color: #006BB5;
    margin-top: 16px;
    text-decoration: none;
}
/* プライバシーポリシー */

.privacy-policy{
	background-color:#F5F7FC;
	padding-top:80px;
	font-size:14px;
	line-height:1.6;
	padding-bottom:120px;
}
.policy-container {
    background-color: #FFF;
	max-width:80%;
	padding:120px;
	border-radius:8px;
	margin: 0 auto;
}
.policy-container-item h3 {
            font-size: 16px;
            font-weight: bold;
            padding-bottom: 5px;
			padding-top:16px;
        }
        .policy-container ul {
        padding-left: 20px;
        }
        .policy-container li {
		list-style:none;
}
.swiper-wrapper{
        align-items: center;
    }
    
/* news詳細ページセクション*/
.news_box{
    max-width: 1100px;
    width: 80%;
    margin: 128px auto;
    gap: 64px;
    }
.news_box h1{
	font-size:36px;
	padding-bottom:24px;
	border-bottom:1px solid #A2B3C1;
}
.news-image{
	text-align:center;
	margin: 64px auto;
}
.news_box img{
	max-width:680px;
	width:100%;
	height:auto;
}
.news-content p{
	line-height:2;
}
.news-content h2{
	border-left: 10px solid #00A6CA;
    border-bottom: 1px solid #00A6CA;
    padding-left: 8px;
    padding-bottom: 8px;
    margin-bottom: 16px;
		margin-top:24px;
}
.news-content h3{
		border-bottom: 1px solid #CFD7DE;
    padding-bottom: 8px;
    margin-bottom: 8px;
		margin-top: 8px;
}

/*NEWS一覧*/
  .hero-area_2 {
    background-color:#F5F7FC;
    padding-top: 180px;
    padding-bottom: 130px;
  }
  .hero-content_2 {
    width: 80%;
    text-align: left;
    margin: 0 auto;
  }
  .hero-content_2 h1 {
    font-size: 64px;
  }
  .hero-content_2 h2 {
    font-size: 20px;
  }

.news-list_2 {
    display: grid; /* gridレイアウトに変更 */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
	width:90%;
    margin: 0 auto 200px;
}

.news-item {
	display: flex;
    flex-direction: column; /* 縦並びにする */
    justify-content: flex-start;
}
.news-list_2:only-child .news-item {
    grid-column: span 1; /* 1つのアイテムが1つのカラムを占める */
}
.news-item a{
    text-decoration: none;
    }

.news-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-details {
    padding: 16px 0px;
}

.news-date {
    font-size: 14px;
    color:#1F2439;
}

.news-title_2 {
    font-size: 18px;
    color:#1F2439;
	margin-top: 20px;
}
.news-category-list{
	max-width:1100px;
	width:80%;
	margin:64px auto 64px;
}
.news-category-list ul{
	display:flex;
	flex-wrap: wrap;
	gap:8px;
}
.news-category-list ul li{
	list-style:none;
	background-color:#E8ECF9;
	padding:4px 24px; 
	border-radius:50px;
}
.news-category-list ul li a{
	text-decoration:none;
	color:#1F2439;
}
    
    
/*PCここまで*/


  @media (max-width: 900px) {
    .fv-container {
        flex-direction: column; /* 縦並びに変更 */
        height: auto; /* 高さを自動調整 */
    }

    .fv-left, .fv-right {
        width: 100%; /* 幅を100%に変更 */
        padding: 20px;
    }
    
    .fv-left {
       
        margin-top: 120px; /* 上の余白を減らす */
    }

    .subheading {
        font-size: 18px; /* 小さい画面に合わせてフォントサイズを調整 */
    }

    h1 {
        font-size: 48px; /* 小さい画面に合わせてフォントサイズを調整 */
    }

    .description {
        font-size: 20px; /* 小さい画面に合わせてフォントサイズを調整 */
        margin-top: 16px;
    }

    .cta-button {
        font-size: 16px; /* ボタンのフォントサイズを調整 */
        padding: 16px 30px; /* ボタンのパディングを調整 */
    }

    .fv-right .swiper-slide img {
        width: 45%; /* 画像の幅を100%に変更 */
        object-fit: contain; /* 画像の比率を保ちながら表示 */
    }
/* newsセクション */
.news-list{
        display: flex;
        flex-direction: column;
        gap: 40px;
}
.news-list li{
margin:auto;
width:70%;
}
.news-info{
margin-top:16px;
}

    /* Strengthセクション */
    .strength {
        padding-top: 80px; /* 上のパディングを縮小 */
        padding-bottom: 80px; /* 下のパディングを縮小 */
    }

    .strength-container {
        flex-direction: column; /* 縦並びに変更 */
        gap: 40px; /* ギャップを減らす */
        padding: 0 16px; /* 左右のパディングを追加 */
    }

    .strength-left,
    .strength-right {
        width: 100%; /* 幅を100%に変更 */
        
    }
    .strength-right {
        text-align: center;
        
    }
    .strength-title {
        font-size: 16px; /* 小さな画面に合わせてフォントサイズ調整 */
    }

    .strength-left h2 {
        font-size: 40px; /* 小さな画面に合わせてフォントサイズ調整 */
        margin-bottom: 40px;
    }

    .strength-left p {
        font-size: 20px; /* 小さな画面に合わせてフォントサイズ調整 */
    }

    .strength-right img {
        width: 90%; /* 画像を少し縮小 */
        margin: 0 auto;
        height: auto;
    }

    /* Strength特徴セクション */
    .strength-features {
        flex-direction: column; /* 縦並びに変更 */
        gap: 60px; /* ギャップを縮小 */
    }

    .feature {
        width: 100%; /* 幅を100%に変更 */
        text-align: center;
    }

    .feature p {
        font-size: 20px;
        line-height: 2;
        text-align: left;
    }
    .feature-title {
        font-size: 32px !important; /* フォントサイズを小さく変更 */
        margin-bottom: 32px;
        height: auto;
    }

    .feature img {
        width: 90%; /* 画像を縮小 */
        margin-bottom: 12px;
    }

    /* Productセクション */
	  .product-list-name {
    font-size: 32px;
    
}
	 .product-list-contentbox .product-swiper-prev{
    left: -10px;
}
	  .product-list-contentbox .product-swiper-next{
    right: -10px;
}
	  .product-list-content-title {
    font-size: 20px !important;
    
}
	  
	  .product-about-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex
;
		  gap: 40px;
		  flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
}
	  .product-about-text {
    width: 100%;
}
	  .product-about-image {
    width: 80%;
}
	  
    .top-product-container {
        max-width: 1100px;
        width: 90%;
        margin: 0 auto;
        display: flex
    ;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .product-section {
        padding: 80px 0 100px; /* パディングを調整 */
    }

    .product-heading {
        font-size: 48px; /* フォントサイズを調整 */
    }

    .product-heading span {
        
        padding: 10px; /* パディングを調整 */
    }
    .product-container{
        width: 90%;
    }
    .product-title-box{
        
    }
    .product-title {
        font-size: 48px; /* フォントサイズを調整 */
    }

    .product-description {
        font-size: 16px; /* フォントサイズを調整 */
        margin-top: 8px;
    }
    .product-details-container{
        margin-top: 64px;
    }
    .product-detail-box {
        display: flex
    ;
        gap: 40px;
        padding: 40px 0;
        border-bottom: 1px solid #ddd;
        align-items: center;
        flex-direction: column;
    }
    .product-detail-left, .product-detail-right {
        width: 100%;
    }
    /* 商品詳細ページ */
    .product-detail-about-container{
        display: block;
        width:90%;
    }
    .product-detail-about-text{
        width: 100%;
    }
    .product-detail-about-image {
        width: 100%;
    }
	.contact-cta p{
		font-size:16px;
	}
	.other-product-button p {
		font-size:16px;
	}
	.product-list-button-container {
		display:grid;
		gap:8px;
	}
	.product-list-button{
		width:100%;
	}
	.spec{
	width: 90%;
}
.products-detail-list {
	width: 90%;
}

    .contact-container{
        flex-direction: column;

    }
    .contact-left{
        max-width: 100%;
    }
    .contact-right{
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }
    .support-boxes {
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: center;
    }
    .support-box {
        max-width: 100%;
    }
    .process-container {
        width: 100%;
    }
    .company-box{
        flex-direction: column;
    }
    .company-info {
        width: 100%;
    }
    .company-map{
        width: 100%;
    }
    .footer-container{
        flex-direction: column;
    }
    .footer-right{
        margin-top: 64px;
        width: 100%;
    }
    .footer-menu {
        justify-content: flex-end;
    }
/* プラポリ */
.policy-container {
    padding: 40px;
}

/* news詳細 */
	.news_box{
    width: 90%;
	}
	.news_box h1{
	font-size:24px;
}
	.news-image{
	margin: 24px auto;
}
.news-list_2 {
        grid-template-columns: repeat(2, 1fr); /* 2カラムに変更 */
    }
}

@media (max-width: 480px) {
	.hero-area-detail {
    padding-top: 100px;
    padding-bottom: 60px;
}
	
	.products-detail-list {
    width: 90%;
    
    padding: 40px 0;
}
	.hero-content h1 {
    font-size: 32px;
    color: white;
}
	.hero-area {
    
    padding-top: 80px;
    padding-bottom: 40px;
}
    .fv-left {
        padding: 0;
        margin-top: 100px;
    }
    .subheading {
        font-size: 10px;
    }
    .description {
        font-size: 13px;
        margin-top: 16px;
    }
    h1 {
        font-size: 32px;
    }
    .header-container {
    padding:0 32px;
    }
    .logo {
        height: 24px;
    }
    .header {
        
        height: 60px;
       
    }
    .cta-button {
       margin-top: 20px;
    }
    .fv-right .swiper-slide img {
        width: 60%; /* 画像の幅を100%に変更 */
        object-fit: contain; /* 画像の比率を保ちながら表示 */
    }

	.news-container {
    width: 90%;
    margin: 80px auto;
    gap:40px;
    }
    .news-title h2{
        font-size: 40px;
        margin-bottom: 0px;
    }
    .news-title p{
    font-size:16px;
    }
   .news-list {
        gap: 32px;
    }
    .news-list li {
    width: 100%;
    border-bottom: 1px solid #A2B3C1;
    padding-bottom: 32px;
    }
    .news-category {
    padding: 4px 24px 5px;
    }
	.news-top-button{
		justify-content:center;
	}
    
    .strength-left h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .strength-container {
        width: 90%;
        padding: 0;
        gap: 0;
    }
    .strength-left p {
        font-size: 16px;
    }
    .feature p {
        font-size: 14px;
        line-height: 2;
        text-align: left;
    }
    .feature-title {
        font-size: 20px !important;
        margin-bottom: 32px;
    }
    .strength-features {
        width: 90%;
        gap: 60px;
        margin: 60px auto 0;
    }
    .feature img {
        width: 100%;
        margin-bottom: 12px;
    }


    
    .strength-right img {
        width: 100%;
       
    }
	    .product-about-container {
        
        width: 90%;
        
    }
	.pro{
		width: 100% !important;
		margin: 0 !important;
	}
	.product-list-group {
    
    margin: 0 auto;
    display: flex
;
    gap: 0px;
    overflow: hidden;
}
	.product-list-name {
        font-size: 20px;
    }
	    .product-list-content-title {
        font-size: 16px !important;
			width: 90%;
    }
	.products-list {
    
    width: 90%;
    
    padding: 40px 0;
}
	.product-about {
    
    padding: 40px 0;
}
	.product-about-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
	.product-about-text p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 10px;
}
    .product-heading {
        font-size: 24px;
    }
    .product-section {
        padding: 64px 0 80px;
    }
    .product-title {
        font-size: 32px;
    }
    .product-description {
        font-size: 14px;
        margin-top: 8px;
    }
    .top-product-container {
       
        width: 95%;
        margin-top: 20px;
    }
    .product-box {
        width: 160px;
        height: 160px;
        
        padding: 8px;
        
    }
    .product-box h3 {
        font-size: 32px;
        font-weight: bold;
        margin: 0;
    }
    .product-box p {
        font-size: 10px;
        margin-bottom: 5px;
    }
    .product-details-container {
        margin-top: 40px;
    }
    .product-detail-box {
        gap: 32px;
        padding: 40px 0;
       
    }
    .product-swiper .swiper-slide img {
        width: 95%;
       
    }
    .product-swiper-prev, .product-swiper-next {
        width: 45px;
        height: 45px;
    }
    .product-number {
        font-size: 18px;
        
        font-weight: normal;
        
    }
    .product-name {
        font-size: 24px;
    }
    .productdescription {
        font-size: 14px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }
/* 商品詳細ページ */

    .product-detail-about{
        padding: 40px 0;
    }
    .product-detail-about-text p {
        font-size: 14px;
    }
    .product-detail-about-text h2{
        font-size: 24px;
    }
    .feature-list{
        padding: 20px;
    }
    .feature-list p{
        font-size: 14px;
    }
    .feature-list h3{
        font-size: 18px;
    }
    .feature-list-number {
        font-size: 32px;
    }
    .spec-block{
        font-size: 14px;
    }
    .spec-block-item-name:not(:first-child) {
        height: 60px;
    }
    .spec-block-item {
        width: 120px;
    }


    .detail-link {
        
        font-size: 16px;
        
    }
    .service-title h2 {
        font-size: 40px;
        margin-bottom: 16px;
    }
    .service-container {
        max-width: 1100px;
       width: 90%;
        margin: 0 auto;
    }
    .service-title p {
        font-size: 14px;
    }
    .support-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .support-label {
        font-size: 14px;
        
    }
    .process-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .process-title {
        font-size: 12px;
        font-weight: bold;
        color: #333;
    }
    .flow-top, .flow-bottom {
        padding: 10px;
        background-color: #fff;
        display: flex
    ;
        gap: 20px;
        align-items: center;
        border-radius: 8px;
    }    
    .flow-title {
        color: #1F2439;
        font-size: 14px;
        position: relative;
    }
    .flow-description {
        font-size: 12px;
        color: #1F2439;
        margin-top: 8px;
    }
    .flow-icon img{
        width: 34px;
    }
    .flow-icon {
        width: 34px;
    }
    .flow-title::before {
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50%;
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
    }
    .flow-left {
        
        font-size: 14px;
        
    }
    .company-label {
        font-size: 12px;
        color: #1F2439;
    }
    .company-title {
        font-size: 20px;
        font-weight: bold;
        color: #1F2439;
    }
    .process {
        padding-top: 120px;
        padding-bottom: 0px;
    }
    .company {
        padding: 80px 0;
    }
    .company-list-left {
        width: 30%;
        font-size: 12px;
        
    }
    .company-list-right {
       
        font-size: 12px;
    }
    .company-list li {
        display: flex
    ;
        padding: 20px 0;
        border-bottom: 1px solid #9DBDCE;
        text-align: left;
    }
    .contact-left h2 {
        font-size: 40px;
        color: #fff;
        margin-bottom: 20px;
    }
    .contact-left p {
        font-size: 12px;
    }
    .contact-section {
        padding: 64px 0;
    }
    /* プラポリ */
    .privacy-policy {
        font-size: 12px;
        line-height: 2.0;
        padding-top: 40px;
        padding-bottom: 64px;
    }
    .policy-container {
        padding: 24px;
        max-width: 90%;
    }
    .policy-container ul {
        padding-left: 8px;
    }
    .policy-container-item h3 {
        font-size: 14px;
    }
	    .hero-area_2 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	    .hero-content_2 h1 {
        font-size: 32px;
	}
	.hero-content_2 h2 {
    font-size: 20px;
	}
    	.news-content h1{
		font-size:20px;
	}
	.news-content h2 {
		font-size: 18px;
	}
		.news-content h3 {
		font-size: 16px;
	}
	.news-list_2 {
        grid-template-columns: 1fr; /* 1カラムに変更 */
    }
    
    .footer-logo {
        width: 200px;
        margin-bottom: 16px;
    }
    .footer {
        background: #2F3033;
        padding: 64px 0;
    }
    .footer-company {
        font-size: 16px;
    }
    .footer-address {
        font-size: 12px;
        color: #fff;
    }
    .footer-menu {
        justify-content: flex-end;
        flex-direction: column;
    }
}







/* サービスページ追加CSS - styles.cssに追記 */

/* サービス概要セクション */
.service-overview {
    background-color: #F5F7FC;
    padding: 120px 0;
}

.service-overview-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.service-header {
    text-align: left;
    margin-bottom: 80px;
}

.service-header h2 {
    font-size: 72px;
    margin-bottom: 16px;
    color: #31384A;
}

.service-header p {
    font-size: 18px;
    color: #31384A;
}

/* サービスカード */
.service-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
}

.service-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    flex: 1;
    width: 32%;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.service-card-image {
    padding: 24px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 16px;
    background-color: white;
}

.service-card-image img {
    height: 200px;
    object-fit: cover;
}

.service-card-content {
 
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3 {
    font-size: 24px;
    color: #00A6CA;
    margin-bottom: 16px;
    font-weight: bold;
}

.service-card .service-description {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.service-card .service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.service-description-button {
    text-align: right;
    margin-top: auto;
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 16px 24px;
    background: #00A6CA;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-detail-link::after {
    content: "→";
    font-size: 16px;
}

.service-detail-link:hover {
    background: #00A6CA;
    color: #fff;
}

/* サービス詳細セクション */
.service-detail-section {
    background: #fff;
    padding: 120px 0;
}

.service-detail-section:nth-child(even) {
    background: #fff;
}

.service-detail-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h3 {
    color: #00A6CA;
    font-size: 16px;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 32px;
    color: #31384A;
    font-weight: bold;
}

.detail-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.detail-left-gradient {
    width: 60px;
    background: linear-gradient(to bottom, #00A6CA 0%, rgba(0, 166, 202, 0.3) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 8px;
    padding-top: 40px;
    flex-shrink: 0;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.detail-right-content {
    flex: 1;
    background: #fff;
}

.detail-image {
    margin-bottom: 32px;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 詳細セクション */
.detail-section {
    margin-bottom: 48px;
}

.detail-section h4 {
    font-size: 32px;
    color: #333;
    margin-bottom: 32px;
    position: relative;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.detail-section h4::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #00A6CA;
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-items-grid {
    display: grid;
    gap: 32px 24px;
}

.detail-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    background: #fff;
    border-radius: 0;
    border-left: none;
}

.service-iconbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.service-icon {
    width: 150px;
    height: 150px;
    background-color: #F5F7FC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-icon img {
    width: 50px;
    height: 50px;
    filter: sepia(1) saturate(5) hue-rotate(175deg);
}

.detail-text h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: bold;
}

.detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* 各ステップの固有スタイル */
.step2-gradient {
    background: linear-gradient(to bottom, #1D87B7 0%, rgba(29, 135, 183, 0.3) 100%);
}

.step3-gradient {
    background: linear-gradient(to bottom, #175493 0%, rgba(23, 84, 147, 0.3) 100%);
}

/* アニメーション効果 */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.detail-item:nth-child(1) {
    animation-delay: 0.1s;
}

.detail-item:nth-child(2) {
    animation-delay: 0.2s;
}

.detail-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* レスポンシブ対応 - PDFに合わせて調整 */
@media (max-width: 900px) {
    .service-overview {
        padding: 80px 0;
    }
    
    .service-overview-container {
        width: 90%;
    }
    
    .service-header h2 {
        font-size: 48px;
    }
    
    .service-cards {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
        width: 90%;
    }
    
    .service-detail-container {
        width: 90%;
    }
    
    .detail-content {
        gap: 32px;
    }
    
    .detail-left-gradient {
        width: 5px;
        padding-top: 0;
        align-items: center;
        justify-content: center;
    }
    
    .vertical-text {
        display: none;
    }
    
    .detail-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-item {
        gap: 12px;
    }
    
    .service-card-image {
       
        margin-bottom: 16px;
    }
    
    .service-card-content {
        margin-top: 16px;
        border-radius: 12px;
    }
}

/* スマートフォン対応 - PDFレスポンシブ版に合わせて最適化 */
@media (max-width: 480px) {
    .detail-section h4 {
        font-size: 18px;
        color: #333;
        margin-bottom: 32px;
        position: relative;
        text-align: left;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .detail-text h5 {
        font-size: 16px;
        color: #333;
        margin-bottom: 12px;
        font-weight: bold;
    }
    
    .detail-text p {
        font-size: 14px;
        line-height: 1.8;
        color: #333;
    }
    
    .service-iconbox {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0px;
    }
    
    .service-overview {
        padding: 60px 0;
    }
    
    .service-overview-container {
        width: 90%;
    }
    
    .service-header {
        margin-bottom: 40px;
    }
    
    .service-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .service-header p {
        font-size: 16px;
    }
    
    .service-cards {
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .service-card {
        width: 100%;
    }
    
    .service-card-image {
        
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .service-card-content {
        
        border-radius: 12px;
		margin-bottom: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
        
    }
    
    .service-card .service-description p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .service-description-button {
        
		text-align: center;
    }
    
    .service-detail-link {
        font-size: 14px;
        
    }
    
    .service-detail-section {
        padding: 60px 0;
    }
    
    .service-detail-container {
        width: 90%;
    }
    
    .section-title {
        margin-bottom: 32px;
    }
    
    .section-title h3 {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .detail-content {
        gap: 12px;
    }
    
    .detail-items-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .detail-item {
        gap: 12px;
        align-items: center;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
    }
    
    .service-icon img {
        width: 30px;
        height: 30px;
    }
    
    /* ショールームセクションもモバイル対応 */
    .showroom-section {
        padding: 60px 0;
    }
    
    .showroom-section-container {
        width: 90%;
        max-width: none;
    }
    
    .showroom-section-container h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .showroom-section-container p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .showroom-cta {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }
    
    .showroom-button,
    .contact-button {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}








/* ABOUT USページ専用CSS */

/* 企業理念セクション */
.philosophy-section {
    background: url('../img/page-haikei.png') no-repeat center/cover;
    padding: 80px 0;
    text-align: center;
}

.philosophy-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.philosophy-title {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-title h2 {
    font-size: 36px;
    color: #31384A;
    margin-top: 8px;
}

/* 企業理念専用ラベル */
.philosophy-label {
    font-size: 14px;
    font-weight: bold;
    color: #00A6CA !important;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.philosophy-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #00A6CA;
    border-radius: 50%;
}

/* TOYOROBO Inc. ヒーロー画像 */
.philosophy-hero {
    margin-bottom: 60px;
}

.philosophy-hero img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Vision, Mission, Value 3列レイアウト */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-item {
    text-align: center;
}

.philosophy-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.philosophy-item h4 {
    font-size: 18px;
    color: #31384A;
    line-height: 1.4;
    font-weight: normal;
}

/* Visionセクション */
.vision-section {
    background: #fff;
    padding: 120px 0;
}

.vision-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.vision-title {
    text-align: center;
    margin-bottom: 60px;
}

.vision-label {
    font-size: 18px;
    color: #00A6CA;
    margin-bottom: 8px;
}

.vision-title h2 {
    font-size: 36px;
    color: #31384A;
}

.vision-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.vision-text {
    flex: 1;
    text-align: left;
}

.vision-text h3 {
    font-size: 32px;
    color: #31384A;
    margin-bottom: 24px;
    line-height: 1.4;
    font-weight: bold;
}

.vision-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.vision-image {
    flex: 1;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Missionセクション */
.mission-section {
    background: #F5F7FC;
    padding: 120px 0;
}

.mission-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.mission-title {
    text-align: center;
    margin-bottom: 60px;
}

.mission-label {
    font-size: 18px;
    color: #00A6CA;
    margin-bottom: 8px;
}

.mission-title h2 {
    font-size: 36px;
    color: #31384A;
}

.mission-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mission-text {
    flex: 1;
    text-align: left;
}

.mission-text h3 {
    font-size: 32px;
    color: #31384A;
    margin-bottom: 24px;
    line-height: 1.4;
    font-weight: bold;
}

.mission-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Valueセクション */
.value-section {
    background: #fff;
    padding: 120px 0;
}

.value-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.value-title {
    text-align: center;
    margin-bottom: 60px;
}

.value-label {
    font-size: 18px;
    color: #00A6CA;
    margin-bottom: 8px;
}

.value-title h2 {
    font-size: 36px;
    color: #31384A;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.value-item-image {
    width: 100%;
    margin-bottom: 24px;
}

.value-item-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.value-item-content h4 {
    font-size: 20px;
    color: #00A6CA;
    margin-bottom: 16px;
    font-weight: bold;
}

.value-item-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 代表挨拶専用ラベル */
.ceo-label {
    font-size: 14px;
    font-weight: bold;
    color: #00A6CA !important;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ceo-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #00A6CA;
    border-radius: 50%;
}

/* 代表挨拶セクション */
.ceo-message {
    background: #F5F7FC;
    padding: 120px 0;
}

.ceo-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.ceo-title {
    margin-bottom: 60px;
    text-align: center;
}

.ceo-title h2 {
    font-size: 36px;
    color: #31384A;
    margin-top: 8px;
}

.ceo-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.ceo-image {
    width: 400px;
    flex-shrink: 0;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ceo-text {
    flex: 1;
}

.ceo-info {
    margin-bottom: 32px;
    padding-bottom: 24px;
}

.ceo-company {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.ceo-info h3 {
    font-size: 28px;
    color: #31384A;
    margin-bottom: 8px;
    font-weight: bold;
}

.ceo-name-en {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.ceo-message-text p {
    font-size: 16px;
    color: #333;
    line-height: 2;
    margin-bottom: 20px;
}

/* アクセスセクション */
.access-section {
    background: #F5F7FC;
    padding: 80px 0;
}

.access-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
}

.access-title {
    margin-bottom: 40px;
    text-align: center;
}

.access-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.access-info {
    flex: 1;
}

.access-info div {
        gap: 150px;
    display: flex;
    margin-top: 40px;
}

.access-info h4 {
    font-size: 20px;
    color: #31384A;
    margin-bottom: 16px;
    font-weight: bold;
}

.access-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* パートナーセクション */
.partner-section {
    background: #fff;
    padding: 80px 0;
}

.partner-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.partner-title {
    margin-bottom: 40px;
    text-align: center;
}

.partner-content {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    border-bottom: 1px solid #9DBDCE;
    display: flex;
    
    align-items: center;
    gap: 80px;
}

.partner-company {
    font-size: 20px;
    color: #31384A;
    margin: 0;
    font-weight: bold;
}

.partner-contract {
    font-size: 20px;
    color: #31384A;
    margin: 0;
    font-weight: normal;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .philosophy-container,
    .vision-container,
    .mission-container,
    .value-container,
    .ceo-container,
    .access-container,
    .partner-container,
    .company-container {
        width: 90%;
    }
    
    .philosophy-section,
    .vision-section,
    .mission-section,
    .value-section,
    .ceo-message,
    .access-section,
    .partner-section,
    .company {
        padding: 60px 0;
    }
    
    .philosophy-grid,
    .value-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .philosophy-title h2,
    .vision-title h2,
    .mission-title h2,
    .value-title h2,
    .ceo-title h2,
    .company-title {
        font-size: 28px;
    }
    
    .vision-content,
    .mission-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .mission-content {
        flex-direction: column-reverse;
    }
    
    .vision-text h3,
    .mission-text h3 {
        font-size: 28px;
    }
    
    .philosophy-item h4 {
        font-size: 16px;
    }
    
    .philosophy-icon {
        width: 120px;
        height: 120px;
    }
    
    .ceo-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .ceo-image {
        width: 250px;
        margin: 0 auto;
    }
    
    .partner-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .partner-company,
    .partner-contract {
        font-size: 16px;
    }
    
    .access-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .partner-content p {
        font-size: 16px;
    }
    
    .company-list-left {
        font-size: 14px;
    }
    
    .company-list-right {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .philosophy-section,
    .vision-section,
    .mission-section,
    .value-section,
    .ceo-message,
    .access-section,
    .partner-section,
    .company {
        padding: 40px 0;
    }
    
    .philosophy-title h2,
    .vision-title h2,
    .mission-title h2,
    .value-title h2,
    .ceo-title h2,
    .company-title {
        font-size: 24px;
    }
    
    .vision-text h3,
    .mission-text h3 {
        font-size: 24px;
    }
    
    .philosophy-item h4 {
        font-size: 14px;
    }
    
    .philosophy-icon {
        width: 100px;
        height: 100px;
    }
    
    .value-item-content h4 {
        font-size: 18px;
    }
    
    .value-item-content p {
        font-size: 13px;
    }
    
    .ceo-company {
        font-size: 14px;
    }
    
    .ceo-info h3 {
        font-size: 20px;
    }
    
    .ceo-message-text p {
        font-size: 14px;
    }
    
    .access-info h4 {
        font-size: 18px;
    }
    
    .access-info p {
        font-size: 14px;
    }
    
    .company-list-left {
        font-size: 12px;
    }
    
    .company-list-right {
        font-size: 12px;
    }
    
    .company-list li {
        padding: 20px 0;
    }
}


/* AGENCY PAGE CSS - styles.cssに追記 */

/* 代理店募集ページ専用スタイル */

/* 代理店紹介セクション */
.agency-intro {
    background: #F5F7FC;
    padding: 100px 0;
}

.agency-intro-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.agency-intro-header {
    margin-bottom: 40px;
}

.agency-intro-header h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #31384A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.agency-intro-header h2::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #00A6CA;
    border-radius: 50%;
    flex-shrink: 0;
}

.agency-intro-image {
    text-align: center;
    margin-bottom: 40px;
}

.agency-intro-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
}

.agency-intro-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.agency-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.agency-intro-text .agency-mission {
    color: #00A6CA;
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
}

/* 代理店メリットセクション */
.agency-benefits {
    background: #fff;
    padding: 120px 0;
}

.agency-benefits-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.agency-benefits-title {
    margin-bottom: 60px;
}

.agency-benefits-title h2 {
    font-size: 36px;
    color: #31384A;
    margin-top: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-item h3 {
    font-size: 18px;
    color: #31384A;
    margin-bottom: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.benefit-item h3::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #00A6CA;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-text {
    text-align: left;
}

.benefit-text p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* 最後のメリットアイテムは横幅50%で左寄せ */
.benefit-item-full {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 20px 0 0 0;
}

/* 最後のメリットアイテムは横幅100% */
.benefit-item-full {
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 20px auto 0;
}

/* 代理店種類セクション */
.agency-types {
    background: url('../img/agency-recruitback.png') no-repeat center/cover;
    padding: 120px 0;
    position: relative;
}

.agency-types-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.agency-types-title {
    margin-bottom: 60px;
}

.agency-types-title h2 {
    font-size: 36px;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 24px;
}

.agency-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.agency-type-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.agency-type-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agency-type-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agency-type-card h3 {
    font-size: 20px;
    color: #00A6CA;
    margin-bottom: 16px;
    font-weight: bold;
}

.agency-type-card > p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 24px;
}

.agency-type-examples h4 {
    font-size: 16px;
    color: #31384A;
    margin-bottom: 16px;
    font-weight: bold;
}

.agency-type-examples ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.agency-type-examples li {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.agency-types-footer {
    text-align: center;
}

.agency-types-footer p {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* 代理店サポートセクション */
.agency-support {
    background: #F5F7FC;
    padding: 120px 0;
}

.agency-support-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.agency-support-title {
    margin-bottom: 60px;
}

.agency-support-title h2 {
    font-size: 36px;
    color: #31384A;
    margin-top: 8px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.support-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon img {
    width: 100%;
}

.support-content {
    flex: 1;
}

.support-content h3 {
    font-size: 20px;
    color: #31384A;
    margin-bottom: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
}

.support-number {
    color: #00A6CA;
    font-size: 20px;
    font-weight: bold;
}

.support-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-top: 16px;
}

/* 代理店プロセスセクション */
.agency-process {
    background: #fff;
    padding: 120px 0;
}

.agency-process-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.agency-process-title {
    margin-bottom: 60px;
}

/* 代理店プロセスセクション */
.agency-process {
    background: #fff;
    padding: 120px 0;
}

.agency-process-container {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.agency-process-title {
    margin-bottom: 60px;
}

.agency-process-title h2 {
    font-size: 36px;
    color: #31384A;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}



.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    background: #F5F7FC;
    padding: 40px;
    border-radius: 12px;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 100px;
    height: calc(100% - 250px);
    width: 2px;
    background-color: #CCD4EA;
    z-index: 1;
}

.process-step {
    padding: 40px 0;
    text-align: left;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.process-step-number {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(1) .process-step-number,
.process-step:nth-child(2) .process-step-number,
.process-step:nth-child(3) .process-step-number,
.process-step:nth-child(4) .process-step-number,
.process-step:nth-child(5) .process-step-number {
    background: #002F65;
}

.process-step:nth-child(6) .process-step-number {
    background: #00A6CA;
}

.process-step-content {
    flex: 1;
}

.process-step h3 {
    font-size: 20px;
    color: #31384A;
    margin-bottom: 16px;
    font-weight: bold;
}

.process-step p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* 代理店募集（下部CTA）セクション */
.agency-recruitment {
    background: url('../img/page-haikei.png') no-repeat center/cover;
    padding: 120px 0;
}

.agency-recruitment-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.agency-recruitment-title {
    margin-bottom: 60px;
}

.agency-recruitment-title h2 {
    font-size: 36px;
    color: #31384A;
    margin-top: 8px;
}

.recruitment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.recruitment-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recruitment-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recruitment-card h3 {
    font-size: 20px;
    color: #00A6CA;
    margin-bottom: 16px;
    font-weight: bold;
}

.recruitment-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    text-align: left;
}

.recruitment-cta {
    margin-top: 40px;
}

.recruitment-cta p {
    font-size: 16px;
    color: #00A6CA;
    font-weight: bold;
}

/* 契約フローセクション（シンプル版） */
.contract-flow {
    background: #F5F7FC;
    padding: 120px 0;
}

.contract-flow-container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.contract-flow-title {
    margin-bottom: 60px;
}

.contract-flow-title h2 {
    font-size: 36px;
    color: #31384A;
    margin-top: 8px;
}

.flow-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-item {
    text-align: center;
    min-width: 120px;
}

.flow-number {
    background: #00A6CA;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 12px;
}

.flow-item h3 {
    font-size: 14px;
    color: #31384A;
    font-weight: bold;
}

.flow-arrow {
    font-size: 24px;
    color: #00A6CA;
    font-weight: bold;
}

/* レスポンシブデザイン */
@media (max-width: 900px) {
    .agency-intro-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .agency-intro-content h2 {
        font-size: 32px;
    }
    
    .benefits-grid,
    .agency-types-grid,
    .recruitment-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .benefit-item:nth-child(5) {
        max-width: 100%;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .flow-items {
        flex-direction: column;
        gap: 16px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .agency-benefits-container,
    .agency-types-container,
    .agency-support-container,
    .agency-process-container,
    .agency-recruitment-container,
    .contract-flow-container {
        width: 90%;
    }
    
    .agency-benefits,
    .agency-types,
    .agency-support,
    .agency-process,
    .agency-recruitment,
    .contract-flow {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .agency-intro {
        padding: 60px 0;
    }
    
    .agency-intro-content h2 {
        font-size: 24px;
    }
    
    .agency-intro-text p {
        font-size: 14px;
    }
    
    .agency-benefits-title h2,
    .agency-types-title h2,
    .agency-support-title h2,
    .agency-process-title h2,
    .agency-recruitment-title h2,
    .contract-flow-title h2 {
        font-size: 24px;
    }
    
    .benefit-item,
    .agency-type-card,
    .support-item,
    .process-step,
    .recruitment-card {
        padding: 24px 16px;
    }
    
    .benefit-icon,
    .agency-type-icon,
    .recruitment-image {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }
    
    .support-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-item h3,
    .agency-type-card h3,
    .recruitment-card h3 {
        font-size: 18px;
    }
    
    .support-content h3 {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .process-step h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .process-step p,
    .benefit-item p,
    .agency-type-card p,
    .support-content p,
    .recruitment-card p {
        font-size: 13px;
    }
    
    .agency-type-examples li {
        font-size: 13px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .flow-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .flow-item h3 {
        font-size: 12px;
    }
    
    .agency-benefits,
    .agency-types,
    .agency-support,
    .agency-process,
    .agency-recruitment,
    .contract-flow {
        padding: 60px 0;
    }
}