/* ============================================
   リセット & ベーススタイル
   ============================================ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", sans-serif;
    color: #333;
    line-height: 120%;
    -webkit-text-size-adjust: 100%;
}

/* ============================================
   ヘッダー
   ============================================ */
   header {
    height:106px;
   }
.main_header {
    background-color: #fff;
    position: fixed;
    z-index: 1000;

    padding: 6px 40px 6px 60px;
    width: 100%;
}

.header_container {
    /* max-width: 1340px; */
    margin: 0 auto;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:94px;
}

.header_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 155px;
}
.header_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header_nav {
    position: relative;
}


.header_menu{
    list-style: none;
    display: flex;
    gap: 32px;
}

.menu_open {
    position: relative;
  }
.header_menu li a,
.menu_open {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}
.header_menu li a span,
.menu_open span{
    font-size: 15px;
    text-align: center; 
    font-weight: 500;
}
.header_menu li a img,
.menu_open img {
    display: block;
    height: 26px;
    object-fit: contain;
    margin-bottom: 2px;
}

.header_menu li a:hover {
    opacity: 0.7;
}

.header_menu_with_detail {
    position: relative;
  }
  
  .menu_detail {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 760px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 100;
  
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .header_menu_with_detail:hover .menu_detail {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  

  /* ===== モーダル制御 ===== */
#menuToggle:checked ~ .menu_modal,
#menuToggle:checked ~ .menu_modal_bg {
  opacity: 1;
  pointer-events: auto;
}

.menu_modal,
.menu_modal_bg {
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

/* ===== 背景 ===== */
.menu_modal_bg {
  position: fixed;
  inset: 0;
  background: rgba(129, 181, 246,0.9);

  z-index: 900;
}

/* ===== モーダル本体 ===== */
.menu_modal {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 1180px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  z-index: 1050;
}



/* ▲ */
.menu_modal_arrow {
    position: absolute;
    top: -27px;
    left: 0;        /* 初期値 */
    right: auto;    /* ← 重要 */
    border-left: 27px solid transparent;
    border-right: 27px solid transparent;
    border-bottom: 27px solid #1e6fd9;
  }

/* ヘッダー */
.menu_modal_header {
  background: #1e6fd9;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;

  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.menu_modal_header_title {
    display:flex;
    gap:12px;
    align-items: center;
}

.menu_modal_header_title img {
    height:26px;
    object-fit: contain;
}

.menu_modal_header span {
    font-size:21px;
}
/* 閉じる */
.menu_close {
  width:45px;
  height:45px;
  cursor: pointer;
  border-radius: 50%;

}

/* 中身 */
.menu_modal_content {
  display: flex;
  background: #f6f9ff; /* 元画像の薄いブルー */
  padding: 40px 32px;
  gap:58px;
  border-radius: 8px;
  letter-spacing: -1px;
}


.menu_title {
  font-size: 21px;
  font-weight: bold;
  margin-bottom:20px;
}

/* 左カード */
.menu_card {
  display: flex;
flex-direction: column;
  padding: 24px 70px 24px 22px;
  border: 3px solid #1e6fd9;
  border-radius: 8px;
  background-color: #E7F5FB;
  text-decoration: none;
  max-width: 242px;
  position: relative;

}

.menu_card::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #1D71DB;
    border-right: 2px solid #1D71DB;
    transform: rotate(45deg);
    box-sizing: border-box;

}
.menu_card img {
  width: 98px;
  margin-bottom:10px;
}
.menu_card span {
    font-size: 18px;
    font-weight: bold;
    color:#333;
    letter-spacing: 0;
}

.sub_menu_btn {
    display: flex;
  flex-direction: column;
    padding: 18px 80px 18px 24px;
    border: 3px solid #1e6fd9;
    border-radius: 8px;
   
    text-decoration: none;
    max-width: 260px;
    position: relative;

    font-size:18px;
    font-weight: bold;
    color:#333;
  }
  
  .sub_menu_btn::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 22px;
      width: 9px;
      height: 9px;
      margin: auto;
      border-top: 2px solid #1D71DB;
      border-right: 2px solid #1D71DB;
      transform: rotate(45deg);
      box-sizing: border-box;
  
  }

  .menu_col_inner._top {
    margin-bottom:36px;
  }
.menu_col a:not(.menu_card) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  text-decoration: none;

}

.sub_menu_link {
    font-size:18px;
    font-weight: bold;
    color:#333;
    position: relative;
    padding-left:36px;
}
.sub_menu_link::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #1D71DB;
    border-right: 2px solid #1D71DB;
    transform: rotate(45deg);
    box-sizing: border-box;
}
.sp_only {
    display: none;
}
#drawer {
    position: relative;
    z-index: 1000;
}

#navTgl {
    display: none;
}

#drawer .open {
    display: block;
    width:45px;
    height: 45px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top:16px;
    background-color:#1D71DB;
    border-radius: 50%;
}

#drawer .open span,
#drawer .open span:before {
    content: '';
    display: block;
    height: 2px;
    width: 28px;
    background: #fff;
    position: absolute;
    left: 0;
}

#drawer .open span {
    top: 25px;
    left: 8px;
}

#drawer .open span:before {
    top: -6px;
}


#drawer .close {
    display: none;
}

#drawer .menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: .5s;
    padding: 16px 0;
    box-sizing: border-box;
    overflow-y: scroll;
}
#drawer .menu_modal_content {
    flex-direction: column;
    background-color: #1D71DB;
    border-radius: 0%;
    width: 100%;
    padding:32px 20px 40px;
    gap:30px;

}
#drawer .menu_title {
    color:#fff;
    margin-bottom:14px;
}
#drawer .sub_menu_btn {
    background-color: #fff;
    border-color: #fff;
    max-width: 100%;
}
#drawer .menu_card {
    max-width: 100%;
}

#drawer .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
    width: 100%;
    flex-wrap: wrap;
}

#drawer .menu ul li {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
    border-bottom: 1px solid #81B5F6;
    padding:20px 14px;
    position: relative;
}

#drawer .menu ul li a {
    flex-direction: row;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 18px;
    font-weight: bold;
    gap:22px;
}
#drawer .menu ul li a img {
    width: 54px;
}
  #drawer .menu ul.header_nav_sp li:nth-child(3){
    width:100%;
}

#drawer .header_menu {
    gap:0;
    background-color: #F4F9FF;
}
#drawer .header_submenu {
    margin-top: 8px;
    display: block;
    width: 100%;

}
#drawer .menu ul.header_submenu {
    gap:0;
}

#drawer .menu ul.header_submenu li {
    position: relative;
    padding-left:25px;
   width:100%;
}

#drawer .header_submenu li::before {
    content:"";
    background-image: url(../images/list_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 10px;
   
}
#drawer .hero_buttons {
    padding:54px 20px;
}
#navTgl:checked~.menu {
    right: 0;
}

#navTgl:checked~.open {
    display: none;
}

#navTgl:checked~.close {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1;
    background-color:#1D71DB;
    border-radius: 50%;
    
}

#navTgl:checked~.close:before,
    #navTgl:checked~.close:after {
    content: '';
    display: block;
    height: 2px;
    width: 28px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

#navTgl:checked~.close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#navTgl:checked~.close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}



/* ============================================
  メインビジュアルセクション
   ============================================ */
.mv {
    position: relative;
    max-height: 616px;
    
    overflow: hidden;
}

.hero_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero_background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero_content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* padding: 100px 20px 60px; */
    color: #fff;
}

.mv_subtitle {
    color:#333;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
}

.hero_range {
    display: inline-block;
    padding: 4px 18px;
    background-color: #FFE74A; /* 黄色背景 */
    color: #006DEA;            /* 青文字 */
    border-radius: 2px;
    font-size: 28px;
    font-weight: bold;
    
}

.hero_range_2 {
    font-size: 38px;
    font-weight: bold;
    background-color: #FFE74A; /* 黄色背景 */
    color: #006DEA;            /* 青文字 */
}
.mv_range_3 {
    font-size:32px;
}
.mv_title {
    font-size: 80px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #006DEA; 
    text-shadow:
    -6px -6px 0 #fff,
     6px -6px 0 #fff,
    -6px  6px 0 #fff,
     6px  6px 0 #fff;

}

.hero_features {
    display: flex;
    gap: 20px;
    margin-top:16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.feature_badge {
    background-color: #FFF15A;
    border:2px solid #FFD400;
    border-radius: 50%;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #08377E;
}

.feature-icon {
    font-size: 20px;
}

.feature_text {
    font-size:18px;
    text-align: center;
    line-height: 1;
}

.dot_s {
    font-size:14px;
}
.mv_price_title {
    font-size:16px;
    color:#333;
    font-weight: bold;
    line-height:1;
    border-top:1px solid #C1C1C1;
    padding-top:14px;
    width:fit-content;
}
.mv_price {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #F82649;
}
.mv_price_ja {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #F82649;
}
.hero_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
   padding-top:24px;
   padding-bottom:28px;
    flex-wrap: wrap;
    background-color: #05479B;
}

.btn {
    display: inline-block;
    padding: 20px 52px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    text-align: center;
    background-color: #fff;
    color: #333;
    /* border:3px solid #1D71DB; */
}

.btn_primary {
    background-color: #F62F55;
    border-color: #F62F55;
    color:#fff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 50px;
    border-bottom: solid 6px #EBB4BE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 52px;
    width: 400px;
    position: relative;
    font-size: 24px;
}

.btn_secondary {
    background-color: #FF6600;
    border-color: #FF6600;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 50px;
    border-bottom: solid 6px #FCC7B4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 52px;
    width: 400px;
    position: relative;
    font-size: 24px;
}

.btn_primary:hover {
    transform: translateY(3px);
    border-bottom: solid 2px #F62F55;
}

.btn_secondary:hover {
    transform: translateY(3px);
    border-bottom: solid 2px #EBB4BE;

}


.btn_arrow_right a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.btn_arrow_link a::after {
    content: '';
    background-image: url(assets/images/link_icon.png);
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    width: 20px;
    height: 20px;
    margin: auto;
    box-sizing: border-box;
}

.arrow_b a::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #1D71DB;
    border-right: 2px solid #1D71DB;
    transform: rotate(45deg);
    box-sizing: border-box;
}
.achievement_badge {
    position: absolute;
    right: 20px;
    bottom: 28px;
    padding: 20px;
    text-align: center;
    max-width:400px;
    z-index: 1;
}

.achievement_number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.achievement_text {
    font-size: 14px;
}

/* ============================================
   セクション共通スタイル
   ============================================ */
section {
    padding: 100px 120px;
}
.section_title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
    color: #333;
}

/* ============================================
   サービスセクション
   ============================================ */
.services {
    background-color: #EFF7FF;
}

.services .section_title {
    max-width: 1120px;
    margin: 0 auto 48px;
}

.service_grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;    
    gap: 30px;

}

.service_card {
    border:2px solid #81B5F6;
    background-color: #fff;
    border-radius: 8px;
    padding:32px 28px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 540px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service_image {
    width: 100%;
    overflow: hidden;
}

.service_image img {
    max-width: 322px;
    margin:0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom:20px;
    color: #333;
    text-align: center;
}

.service_price {
    font-size: 28px;
    font-weight: bold;
    color: #F82649;
    padding: 20px 20px;
  
    text-align: center;
}

.service_price_ja {
    font-size:15px;
    color:#333;
    
}
.service_price_text {
    font-size: 18px;
    color:#333;
    font-weight: bold;
    text-align: center;
    padding: 20px 20px;
}

.btn_service {
    display: block;
    font-size:14px;
    background-color: #1D71DB;
    color: #fff;
    padding: 14px 52px;
    margin: 20px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
}

.btn_service:hover {
   opacity: 0.7;
}

.service_links {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.top_service_btn_wrap {
    display: flex;
    gap:18px;
}
.btn_link {
    display: inline-block;
    margin-top:56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    border: 3px solid #0066CC;
   
}

.btn_link:hover {
   opacity: 0.7;
}

.top_news_link {
    margin-top:64px;
    width:260px;
}
.info_button_wrap {
    background-color:#FBFBFB;
    padding:64px 0;
    position:relative;
}
.info_buttons {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    width:1080px;
    margin:0 auto;
}

.btn_info {
    background-color: #fff;
    color: #333;
    width:360px;
    border: 3px solid #0066CC;
    padding: 18px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.btn_info:hover {
   opacity: 0.7;
}

.info_buttons .btn_arrow_right {
    margin:0;
}
.info_button_wrap img {
    position: absolute;
    bottom:0;
    right:10%;
    height:60%;
}
/* ============================================
   キャンペーンセクション
   ============================================ */
.campaign {
    background-color: #FFFBCC;
}

.campaign_title_group {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.campaign_title_wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.campaign_title {
    font-size:44px;
    color:#1D71DB;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    display: inline-block;
}
.campaign_frame {
    display: block;
    font-size:26px;
    color:#333;
    position: relative;
    padding: 0 50px;
    margin-bottom:8px;
    width:fit-content;
    margin:0 auto 8px;

}

.campaign_frame:before,
.campaign_frame:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.campaign_frame:before {
    background-image: url(assets/images/campaign_frame_l.png);
    left: 10px;
}

.campaign_frame:after {
    background-image: url(assets/images/campaign_frame_r.png);
    right: 10px;
}

.campaign_title_group p {
    font-size:17px;
    font-weight: 500;
}

.campaign_title_wrapper .campaign_img1 {

    max-height:79px;
    max-width: 267px;
    margin:0 auto;
}

.campaign_title_wrapper .campaign_img2 {
    position: absolute;
    max-width:138px;
    max-height:141px;
    top: 50%;
    left: calc(100% + 20px);
    transform: translateY(-50%);
}
.campaign_grid {
    max-width: 1200px;
    margin: 0 auto;
    padding:48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.campaign_grid img{
    height:100%;
    object-fit: contain;
}
.campaign_banner {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.campaign_banner:hover {
    transform: translateY(-5px);
}

.campaign_image {
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.campaign_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign_content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign_discount {
    color: #DC143C;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.campaign_label {
    color: #0066CC;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.campaign_price {
    font-size: 32px;
    font-weight: bold;
    color: #0066CC;
    margin-bottom: 10px;
}

.campaign_text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   お客様の声セクション
   ============================================ */
.top_voices {
    background-color: #fff;
    position: relative;
    padding-top:40px;
}
.top_voice_title_wrap {
    position: relative;
    padding: 60px 0 80px;
}

.top_voice_title_wrap p {
    text-align: center;
    margin-top:24px;
}

.voice_title_sub {
    font-size:20px;
    font-weight: bold;
    color:#fff;
    background-color: #004295;
    padding:6px 10px;
    border-radius: 4px;
    display: block;
    width:fit-content;
    margin:0 auto 8px;
}
.top_voice_title {
    font-size:44px;
    color:#004295;
    text-align: center;
}
.top_voice_profiles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.profile_circle {
      border-radius: 50%;
    background-color: #ddd;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.profile_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_voice_profiles_l {
    display:flex;
    top: 0;
    left: 0;
    /* transform: translate(50%, -0); */
    position:absolute;
}

.top_voice_profiles_r {
    display:flex;
    top: 0%;
    right:0;
    /* transform: translate(-50%,0); */
    position:absolute;
}
.profile_circle_1 {
    width: 147px;
    height: 147px;
   
}

.profile_circle_2 {
    width: 124px;
    height: 124px;
    margin-top: 40%;
}


.top_voice_grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.top_voice_card {
    background-color: #fff;
   
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.top_voice_header {
    position: relative;
    background-color: #CEE2FC;
    padding: 6px 8px;
    margin: 0 20px 20px 20px;
    border-radius: 8px;
}

.top_voice_header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #CEE2FC;
}

.top_voice_header_text {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height:120%;
    text-align: center;
}

.top_voice_body {
    padding: 32px 40px;
    background-color: #fff;
    border:3px solid #81B5F6;
    flex: 1;
    border-radius: 8px;
}

.top_voice_rating_date {
    display: flex;
    align-items: center;
    gap:4%;
    margin-bottom: 20px;
}

.top_voice_stars {
    color: #FFCC00;
    font-size: 16px;
    letter-spacing: 2px;
}

.top_voice_date {
    font-size: 16px;
    color: #646464;
}

.top_voice_high_rating {
    font-size: 14px;
    color: #646464;
    margin-bottom: 20px;
    font-weight: 500;
}

.voice_text_b {
    color:#333;
    font-weight:bold;
}
.top_voice_text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.top_voice_service {
    font-size: 14px;
    color: #646464;
    font-weight: 500;

}

.btn_more {
    display: block;
    margin: 40px auto 0;
 
    padding: 14px 52px;

    text-align: center;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.btn_more:hover {
   opacity: 0.7;
}

.btn_voice_more {
    display: flex;
    margin: 56px auto 0;
    border: 3px solid #0066CC;
    padding: 18px 16px 18px 70px;
    width:fit-content;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    gap:30px;
    align-items: center;
}


.btn_voice_more img {
    width:20px;
    height:20px;
    object-fit: contain;
}
.btn_note {
    text-align: center;
    margin-top:24px;
}
/* ============================================
   施工実績セクション
   ============================================ */
.works {
    background-color: #EFF7FF;
}
.works .section_title {
    font-size: 44px;
    color: #004295;
}

.section_title_en {
    font-family: "Poppins";
    font-size:16px;
    font-weight: bold;
    display: block;
    color:#333333;
    margin-top:8px;
}
.works_grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.work_card {
    border:2px solid #81B5F6;
    background-color: #fff;
    border-radius: 10px;
    padding:32px 40px;
    overflow: hidden;
    flex:1;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    transition: transform 0.3s, box-shadow 0.3s;

}

.work_image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.work_title {
    font-size: 20px;
    font-weight: bold;
    padding: 26px 0;
    color: #333;
}

.work_item_inner {
    display:flex;
    gap:14px;
}
.work_date {
    font-size: 15px;

    color:#0088FF
}

.work_place {
    font-size:15px;
    color:#707070;

}
.work_link {
    display: block;

    margin-left: auto;
    text-decoration: none;
    width:34px;
    height:34px;
}

.work_link:hover {
    opacity: 0.7;
}

/* ============================================
   最新情報セクション
   ============================================ */
/* --- 最新情報セクション全体のスタイル --- */
.news {
    max-width: 1120px; /* 必要に応じて調整してください */
    margin: 0 auto;
    padding: 88px 0px;
}

/* --- ヘッダー部分（タイトルとボタン）のスタイル --- */
.top_news_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:140px;
}

.news .section_header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news .section_title {
    font-size: 44px;
    color: #004295;
    margin-bottom:0;
}

.section_title_en {
    font-family: "Poppins";
    font-size:16px;
    font-weight: bold;
    display: block;
    color:#333333;
    margin-top:8px;
}

/* --- リスト全体のスタイル --- */
.news_list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 720px;
}

/* --- 各リストアイテムのスタイル --- */
.news_item {
   position: relative;
    padding: 20px;
    border-bottom: 2px solid #CAE0FC; /* アイテム間の下線 */
}

.news_item::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #1D71DB;
    border-right: 2px solid #1D71DB;
    transform: rotate(45deg);
    box-sizing: border-box;
}


/* --- 日付のスタイル --- */
.news_date {
    font-size: 15px;
    font-weight: 500;
    color: #0088FF; /* 日付の文字色を少し薄く */
    margin-bottom:8px;
}

/* --- タイトルリンクのスタイル --- */
.news_title_link {
    flex-grow: 1; /* 残りのスペースを埋める */
    text-decoration: none;
    color: #333; /* タイトルの文字色 */
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 長すぎるタイトルは省略記号(...)で表示 */
}

.news_title_link:hover .news_title {
    text-decoration: underline; /* ホバーで下線を引く */
}

/* --- 矢印のスタイル --- */
.news_arrow {
    font-size: 18px;
    color: #007bff; /* 矢印の色を青に */
    margin-left: 20px;
    /* 画像の矢印は少し右にずれているため、視覚的に調整 */
    transform: translateX(5px); 
}

/* --- 投稿がない場合のスタイル --- */
.no_post {
    text-align: center;
    padding: 20px;
    color: #555;
}


/* ============================================
   フッター
   ============================================ */
.footer {
    background-color: #EFF7FF;
    padding: 60px 20px 16px;
}

.footer_content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer_company {
   width: 280px;
    margin-bottom: 40px;
    text-align: center;
}

.footer_info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.footer_info_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color:#1D71DB;
    text-align: center;
    line-height:100%;
}

.footer_info_text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    gap:16px;
    flex-wrap: wrap;
}

.payment_methods {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
    justify-content: center;
    
}

.payment_methods  img {
    height: 41px;
    width: auto;

    object-fit: contain;
}
.pay_text {
    margin-top:32px;
    margin-bottom:32px;
    text-align: center;
}
.cancellation_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #999999;
    margin-top:14px;
    margin-bottom:14px;
}

.cancellation_table td {
    border: 1px solid #999999;
    padding: 4px 20px;
    font-size: 16px;
    color: #333;
}

.cancellation_table tr:first-child td {
    border-top: 1px solid #999999;
    text-align: center;
}

.cancellation_table tr:last-child td {
    border-bottom: 1px solid #999999;
    text-align: center;
}

.cancellation_table td:first-child {
    border-left: 1px solid #999999;
 
    font-weight: bold;
    text-align: center;

}

.cancellation_table td:last-child {
    border-right: 1px solid #999999;
    text-align: center;
}


.btn_footer {
    display: block;
   position: relative;
    padding: 12px 52px;
    border: 3px solid #0066CC;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
    width: fit-content;
    margin:0 auto;
}

.btn_footer:hover { 
    opacity: 0.7;
}

.footer_contact {
    margin-bottom: 40px;
}

.footer_contact_title {
    font-size: 24px;
    color:#1D71DB;
    font-weight: bold;
    text-align: center;
}
.footer_contact_title_note {
    margin-top:16px;
    text-align: center;

}

.contact_grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 48px;
    max-width: 776px;
    margin: 0 auto;
    margin-top: 40px;
}

.contact_item {
    text-align: center;
    border:3px solid #81B5F6;
    border-radius:8px;
    background-color: #fff;
    padding:32px;
    max-height:208px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact_item.phone {
    padding:32px 22px;
}
.contact_note {
    display: block;
    margin-top:10px;
    font-size:13px;
    font-weight: 500;
}
.contact_label {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
   
}
.contact_phone_wrap {
    display:flex;
    gap:10px;
    align-items: center;
}
.contact_phone {
    font-size: 36px;
    font-weight: bold;
    color: #1D71DB;
    font-family: "Poppins";
}
.phone_icon {
    width: 28px;
    height:28px;
}
.contact_hours {
    font-size: 16px;
    color: #333;
}

.btn_contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s;
    border: none;
    position: relative;
}

.btn_contact:hover {

    transform: translateY(3px);
}



.btn_icon img{
    height:22px;
    object-fit: contain;
}

.btn_text {
    display: inline-block;
    line-height: 1;
    font-size:22px;
}

.btn_text_form {
    font-size:20px;
    letter-spacing: 2%;
}
.btn_red {
    background-color: #F62F55;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 50px;
    border-bottom: solid 6px #EBB4BE;
}

.btn_red:hover {
    border-bottom: solid 2px #F62F55;
}

.btn_green {
    background-color: #06C755;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 50px;
    border-bottom: solid 6px #8FBEA2;
}

.btn_green:hover {
    border-bottom: solid 2px #06C755;
}

.btn_blue {
    background-color: #1D71DB;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 50px;
    border-bottom: solid 6px #ABBCD1;
}

.btn_blue:hover {
    border-bottom: solid 2px #1D71DB;
    margin-bottom:4px;
}


.footer_nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* margin-bottom: 30px; */
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.footer_nav_link {
    font-weight:500;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}


.footer_copyright {
    text-align: center;
    font-size: 12px;
    color: #333;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ============================================
   レスポンシブ対応
   ============================================ */
@media (max-width: 768px) {
    .sp_only {
        display: block;
    }
    .pc {
        display: none;
    }
    header,.header_container {
        height:auto;
    }
    .main_header {
        padding:7px 20px;
    }
    .header_logo {
        width: 120px;
    }
    .header_nav {
        display: none;
    }
    section {
        padding:80px 20px;
    }    
    .mv {
        height:auto;
        max-height: 100%;
        padding-bottom: 26px;
    }
    .hero_content {
        margin-top:32px;
    }
    .hero_buttons {
        flex-direction: column;
        gap:38px;
        padding:48px 20px;
        align-items: center;
    }
    .mv_price_title {
        margin-top:136px;
        padding-top:0;
        border:none;
        margin-left: auto;
    }
    .mv_price_title img {
        height:50px;
        object-fit: contain;
    }
    .achievement_badge {
        position: relative;
        transform: none;
        margin-top: 9px;
        right: auto;
        bottom:auto;
        padding:0;
        max-width: 100%;
    }

    .info_buttons {
        width:100%;
    }
    .info_button_wrap img {
        height:160px;

    }
    .info_button_wrap {
        padding-bottom:200px;
    }
    .campaign_title_wrapper .campaign_img2 {
        width:90px;
        height:90px;
        top: -35%;
    left: calc(82% + 20px);
    }

    .top_service_btn_wrap {
        flex-direction: column;
    }
    .service_grid,
    .campaign_grid,
    .top_voice_grid,
    .works_grid {
        grid-template-columns: 1fr;
    }
    .news {
        padding:88px 20px;
    }
    .top_news_wrap {
        flex-direction: column;
        gap:40px;
    }
    .top_news_link {
        display:block;
        margin:40px auto;
    }
    .footer_info_grid,
    .contact_grid {
        grid-template-columns: 1fr;
    }
    
    .footer_nav {
        flex-direction: column;
        gap: 15px;
    }
    
    /* お客様の声セクションのレスポンシブ対応 */
    .top_voice_title_wrap {
        padding: 40px 0 60px;
    }
    
    .profile_circle {
        width: 80px;
        height: 80px;
    }
    
    .profile_circle_1 {
        top: 5%;
        left: 5%;
    }
    
    .profile_circle_2 {
        bottom: 5%;
        left: 5%;
    }
    
    .profile_circle_3 {
        top: 5%;
        right: 5%;
    }
    
    .profile_circle_4 {
        bottom: 5%;
        right: 5%;
    }
}
@media (max-width: 375px) {
    .btn_primary,.btn_secondary {
        max-width: 335px;
        font-size: 22px;
        padding:25px;
        }
}