/* ベース設定 */
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: #333;
  }

  h1,h2,h3{
    margin: 0 auto;
  }
  
  /* ////////　header ///////////// */
  .header {
    position: absolute;
    z-index: 100;
    background-color: #fff;
    width: 100%;
    height: auto;
  }
  

  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: 70px;
    padding: 10px 0;
  }
  .header-logo {
     margin: -2px 0;
  }
  
  .header-logo img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .header-text {
    font-size: 25px;
    font-weight: bold;
  }
  @media (max-width: 768px) {
    .header-inner {
      margin-left: 10px;
    }
  
    .header-text {
      font-size: 14px;
    }
  }
  

  /* ////////fv ///////////// */
.fv {
    position: relative;
    overflow: hidden;
    
    
  }

  .fv-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .fv-title{
    position: absolute;
    top: 65%;
    left: 5%;
    transform: translate(-5%, -65%);
  }
  
  
  @media (max-width: 768px) {
    .fv-sp{
      width: 100%;
      height: auto;
      overflow: hidden;
      margin-bottom: 0;
      padding-top: 90px;
    }
  }

/* //////// cpmtact-links //////////////// */
.contact-links {
  
  }
  .contact-bgy{
    background-color: #FFFBED;
    padding: 64px 0;
  }  
  .contact-inner {
    background-color: #DDF0FD;
    max-width: 1300px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 20px;
    padding: 20px 0;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
   .contact-inner-border{
    border:solid 1px #fff;
    max-width: 1250px;
    width: 100%;
    border-radius: 5px;
    padding: 40px 0 60px;
   }
  .contact-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    font-size: 30px;
  }
  .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; 
  }

  .btn-wrap::before {
    content: "";
    position: absolute;
    left: 10%;
    bottom: -32%;
    width: 120px;
    height: 170px;
    background: url("image/icon5.png") no-repeat center bottom;
    background-size: contain;
  }
  

  .btn-wrap::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: -32%;
    width: 120px;
    height: 170px;
    background: url("image/icon4.png") no-repeat center bottom;
    background-size: contain;
  }
  .btn-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    border-radius: 80px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  

  .btn-orange {
    background-color: #f39800;
    width: 35%;
    font-size: 45px;
    padding: 7px 75px;
    margin-bottom: 30px;
    position: relative;
  }

  .btn-orange:after {
    content: "";
    position: absolute;
    right: 35px;
    top: 50%;
    width: 20px;
    height: 20px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
  }
  
  .btn-blue {
    background-color: #0078d7;
    font-size: 30px;
    padding: 15px 60px;
    margin-left: 35px;
    position: relative;
  }
  .btn-lightblue{
    background-color: #45ADEA;
    padding: 15px 60px;
    font-size: 30px;
    position: relative;
  }
  .btn-blue:after,
  .btn-lightblue:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
  }


  .btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  /*---------------- レスポンシブ---------------- */
  @media (max-width: 768px) {
    .contact-links {
      margin-bottom: 40px;
    }
    .contact-bgy{
      background-color: #FFFBED;
      padding: 64px 0;
    }  
    .contact-inner {
      width: auto;
      padding: 20px 0;
      flex-direction: column;
    }
     .contact-inner-border{
      width: auto;
     }
    .contact-title {
      margin-bottom: 20px;
      font-size: 25px;
    }
 
    .btn-wrap::before {
      left: 5%;
      bottom: -24%;
    }
    
    .btn-wrap::after {
      right: 5%;
      bottom: -24%;
    }
    .btn-orange {
      width: 25%;
      font-size: 25px;
      padding: 14px 30px;
      margin-bottom: 20px;
    }
  
    .btn-orange:after {
      right: 35px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
 
    }
    .btn-lightblue{
      padding: 14px 30px;
      font-size: 25px;
      margin-bottom: 20px;
    }
    .btn-blue {
      background-color: #0078d7;
      font-size: 30px;
      padding: 15px 60px;
      margin-left: 35px;
      position: relative;
    }
    .btn-blue:after,
    .btn-lightblue:after {
      content: "";
      position: absolute;
      right: 25px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      transform: translateY(-50%) rotate(45deg);
      transition: 0.3s;
    }
  
  
    .btn:hover {
      opacity: 0.85;
      transform: translateY(-2px);
    }
  }
/* //////// features //////// */
  .features {
    background-color: #fff;
    color: #333;
  }
  
  .features-inner {
    padding: 40px 0;
  }
  
  .features-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-bottom: solid 5px #55A2F0;
    width: 570px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 80px;
  }
  
  .features-title em {
    color: #333;
    font-size: 80px;
  }
  
  .features-title span {
    color: #0078d7;
    font-size: 50px;
  }
  
  /* 各ボックス */
  .feature-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #e8f3fc;
    border-radius: 20px;
    padding:  120px 46px 43px 102px;
    margin-bottom: 40px;
    position: relative;
    width: 750px;
    margin-left: auto;
  }
  
  .feature-box-reverse {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #e8f3fc;
    border-radius: 10px;
    padding: 120px 87px 43px 60px;
    margin-bottom: 40px;
    position: relative;
    flex-direction: row-reverse;
    width: 750px;
  }

  .feature-box-reverse .feature-img img {
    width: 100%;
    max-width: 360px;
    border-radius: 10px;
    height: auto;
    position: absolute;
    top: 15%;
    left: 90%;
    transform: translate(0%, -15%);
  }
  .feature-img img {
    width: 100%;
    max-width: 360px;
    border-radius: 10px;
    height: auto;
    position: absolute;
    top: 12%;
    left: -31%;
    transform: translate(0%,-12%);
  }
  
  .feature-text {
    flex: 1;
  }
  
  .feature-text .point {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    background: #0078d7;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 1.4;
    padding-top: 12px;
    top: -10%;
    left: 15%;
    transform: translate(-15%,10%);
    position: absolute;
  }

  .feature-text-reverse .point{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    background: #0078d7;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
    padding-top: 12px;
    top: -25%;
    left: 10%;
    transform: translate(-10%, 0%);
    position: absolute;
  }
  
  .feature-text .point span {
    font-size: 1.4rem;
    display: block;
  }
  .feature-text-reverse  .point span{
    font-size: 1.4rem;
    display: block;
  }
  
  .feature-text h3 {
    font-size: 35px;
    color: #0078d7;
    margin-bottom: 12px;
    font-weight: 700;
  }
  .feature-text-reverse  h3{
    font-size: 35px;
    color: #0078d7;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .feature-text,
  .feature-text-reverse p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
  }
  
  /*---------------- レスポンシブ対応---------------- */
  @media (max-width: 768px) {

    /* ====== セクション全体 ====== */
    .features-title {
      font-size: 20px;
      width: 300px;
      margin: 0 auto 40px;
      text-align: center;
    }
  
    .features-title em {
      font-size: 40px;
    }
  
    .features-title span {
      font-size: 30px;
    }
   
    .feature-box-reverse {
      display: flex;
      align-items: center;
      gap: 30px;
      background-color: #e8f3fc;
      border-radius: 10px;
      padding: 120px 87px 43px 60px;
      margin-bottom: 40px;
      position: relative;
      flex-direction: row-reverse;
      width: 750px;
    }
  
    .feature-box-reverse .feature-img img {
      width: 100%;
      max-width: 360px;
      border-radius: 10px;
      height: auto;
      position: absolute;
      top: 15%;
      left: 90%;
      transform: translate(0%, -15%);
    }
  
    /* ====== 各 feature-box の共通設定 ====== */
    .feature-box,
    .feature-box-reverse {
      display: flex;
      flex-direction: column-reverse; /* 画像を下に */
      align-items: center;
      text-align: center;
      width: 100%;
      padding: 40px 20px;
      background-color: #e8f3fc;
      border-radius: 15px;
      margin-bottom: 40px;
    }
  
    /* ====== 画像エリア ====== */
    .feature-img img {
      position: static; /* 絶対配置解除 */
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 10px;
      margin-top: 20px; /* テキストとの余白 */
    }
  
    /* ====== テキストエリア ====== */
    .feature-text,
    .feature-text-reverse {
      position: static;
      text-align: left;
      margin: 0;
    }
  
    /* 見出し */
    .feature-text h3,
    .feature-text-reverse h3 {
      font-size: 20px;
      color: #0078d7;
      margin-bottom: 12px;
    }
  
    /* 本文 */
    .feature-text p,
    .feature-text-reverse p {
      font-size: 0.9rem;
      line-height: 1.8;
    }
  
    /* ====== POINTバッジ ====== */
    .feature-text .point,
    .feature-text-reverse .point {
      position: static;
      margin: 0 auto 15px;
      transform: none;
      width: 70px;
      height: 70px;
      font-size: 0.9rem;
      font-weight: bold;
      background-color: #0078d7;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
  
    .feature-text .point span,
    .feature-text-reverse .point span {
      font-size: 1.2rem;
    }
  
  }
  
  /* //////// results//////// */
  .results {
    background-color: #e8f3fc;
    text-align: center;
    padding: 60px 20px;
  }
  .results-title {
    font-size: 30px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 60px;
    position: relative;
  }
  
  .results-title em {
    font-size: 44px;
    font-weight: bold;
    color: #333;
  }
  
  .results-title span {
    color: #f39800;
    font-weight: bold;
    font-size: 40px;
  }
  
  .results-title::before,
  .results-title::after {
    content: "";
    position: absolute;
    top: 10%;
    width: 45px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .results-title::before {
    background-image: url("/image/img-item1.png");
    left: 18%;
  }
  
  .results-title::after {
    background-image: url("/image/img-item2.png");
    right: 18%;
  }
  
  .results-inner {
  
  }
  .results-graphs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
  }
  
  .graph-item {
    background: #fff;
    border-radius: 10px;
    width: 330px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .graph-caption {
    font-size: 23px;
    color: #005bac;
    font-weight: bold;
  }
  .graph-image img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  
  .results-note {
    text-align: right;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
  }
  
  .results-info {
    background: #fff;
    border: 3px solid #B6DAFF;
    border-radius: 20px;
    padding: 30px 0;
    margin: 0 auto;
    max-width: 1040px;
    
  }
  
  .results-info p {
    color: #005bac;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 23px;
  }
  
  .results-tags {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    background-color: #E4F1FF;
    padding: 30px;
    width: 640px;
    margin: 0 auto;
  }
  
  /* ===== レスポンシブ対応 ===== */
 
  @media (max-width: 768px) {
     .results {
      padding: 20px 10px;
    }
    .results-title {
      font-size: 18px;
      line-height: 1.4;
      margin-bottom: 30px;
    }
    
    .results-title em {
      font-size: 22px;
    }
    
    .results-title span {
      font-size: 20px;
    }
    
    .results-title::before,
    .results-title::after {
      content: "";
      position: absolute;
      top: 10%;
      width: 25px;
      height: 60px;
    }
    
    .results-title::before {
      left: 3%;
    }
    
    .results-title::after {
      right: 3%;
    }
    .results-graphs {
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
    
    .graph-item {
      width: 250px;
    }
    
    .graph-caption {
      font-size: 18px;
    }
    .results-note {
      font-size: 14px;
      margin-bottom: 10px;
    }
    
    .results-info {
      padding: 15px 0;
      margin: 0 auto;
      max-width: 568px;
      
    }
    
    .results-info p {
      margin-bottom: 15px;
      font-size: 17px;
    }
    
    .results-tags {
      font-size: 15px;
      padding: 15px;
      width: auto;
    }
    
  }
  
   /* //////// trouble ///////////// */
   .trouble {
    text-align: center;
    padding: 60px 20px;
    
  }
  
  .trouble-title {
    font-size: 45px;
    font-weight: 700;
    color: #333;
    margin-bottom: 70px;
    position: relative;

  }
  
  .trouble-title::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background-color: #0074c9;
    margin: 5px auto 0;
    border-radius: 2px;
  }
  
  .trouble-image {
    width: 50%;
    margin: 0 auto;
  }
  
  .trouble-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ===== レスポンシブ ===== */
  @media (max-width: 768px) {
    .trouble {
      padding: 30px 10px;
    }
    
    .trouble-title {
      font-size: 20px;
      margin-bottom: 40px;
  
    }
    
    .trouble-title::after {
      width: 75%;
      height: 4px;
    }
    
    .trouble-image {
      width: 100%;
    }
  }
  

  /* //////// support ///////////// */
  .support {

  }
  .support-inner{
    background: #e8f3fc;
    padding: 80px 20px;
    border-radius: 35% 35% 0 0;
  }
  
  .support-lead {
    text-align: center;
    font-size: 30px;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 60px;
  }
  
  .support-lead em {
    font-weight: bold;
    font-size: 62px;
  }
  
  .support-lead span {
    color: #0074c9;
    font-size: 50px;
    font-weight: bold;
  }
  
  .support-lead .highlight {
    color: #f39800;
  }
  
  .support-title {
    font-size: 55px;
    font-weight: bold;
    color: #005bac;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
  }
  
  .support-sub {
    display: block;
    font-weight: bold;
    font-size: 25px;
    color: #f5b900;
    text-transform: uppercase;
    margin-top: 4px;
  }
  
  .support-list {
    max-width: 1310px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    justify-content: center;
  }
  
  .support-item {
    background: #fff;
    border-radius: 12px;
    padding: 60px 20px 40px; 
    position: relative;
    transition: transform 0.3s ease;
    text-align: center;
  }

  .support-item::before {
    content: attr(data-number);
    position: absolute;
    top: -25px; /* カードより上に出す */
    left: 10%;
    transform: translate(-50%, -10%);
    color: #f5b900;
    font-size: 1.8rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  

  .support-item img {
    width: 167px;
    height: 167px;
    object-fit: contain;
    margin-bottom: 15px;
   
  }

  
  .support-item h3 {
    font-size: 25px;
    font-weight: bold;
    color: #005bac;
    margin-bottom: 10px;
  }
  
  .support-item p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    text-align: left;
  }
  
  /* 特別枠（お弁当） */
  .special {
    position: relative;
    text-align: center;
  }
  .special-text{
    text-align: center !important;
  }
  .special {
    position: relative;
    text-align: center;
    overflow: visible;
  }
  .special::before {
    content: "";
    position: absolute;
    top: -40px;         
    right: -30px;       
    width: 130px;       
    height: 130px;
    background-image: url("image/Group 183.png"); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .support-inner{
      background: none;
      border-radius: 0% 0% 0 0;
    }
    .sp-bk-image{
      background-image: url(./image/bk1.png);
      background-position: center center;
      background-repeat: no-repeat;
      background-size:cover;
      margin-bottom: 0;
    }
    
    .support-lead {
      font-size: 15px;;
      margin-bottom: 30px;
    }
    
    .support-lead em {
      font-size: 31px;
    }
    
    .support-lead span {
      font-size: 25px;
    }
  
    .support-title {
      font-size: 25px;
      margin-bottom: 30px;
    }
    
    .support-sub {
      font-size: 18px;
    }
    
    .support-list {
      max-width: 568px;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
    }
    
    .support-item {
      padding: 30px 10px 20px; 
    }
  
    .support-item::before {
      content: attr(data-number);
      position: absolute;
      top: -10px; /* カードより上に出す */
      left: 10%;
      transform: translate(-25%, -10%);
      width: 15px;
      height: 15px;
    }
    
  
    .support-item img {
      width: 100px;
      height: 100px;
      margin-bottom: 10px;
     
    }
    .support-item h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }
    
    .support-item p {
      font-size: 14px;

    }
    
    /* 特別枠（お弁当） */

    .special::before {
      content: "";
      position: absolute;
      top: -40px;         
      right: -30px;       
      width: 100px;       
      height: 100px;

    }
  }
  
  /* //////// schedule ////////*/
  .schedule{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 143px;
  }
  .schedule-inner{
    padding: 40px 0;

  }
  .schedule-title {
    font-size: 55px;
    font-weight: bold;
    color: #005bac;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
  }
  
  .schedule-sub {
    display: block;
    font-weight: bold;
    font-size: 25px;
    color: #f5b900;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .schedule-image img{
    width: 100%;
    height: auto;
  }
  @media (max-width: 768px) {
    .schedule{
      display: block;
      margin-bottom: 70px;
    }
    .schedule-inner{
      padding: 20px 0;
  
    }
  
    .schedule-title {
      font-size: 25px;
      margin-bottom: 30px;

    }
    .schedule-sub {
      font-size: 18px;
    }
    .schedule-image{
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding: 0 20px;
    }
    schedule-image img{
       width: 540px;
       height: auto;
    }
    .schedule-image-woman{
      margin-bottom: 20px;
    }
  }

  /* //////// voice ////////*/
  .voice {
    background-color: #fdf6e7;
    padding: 70px 0 95px;
    text-align: center;
  }
  
  .voice-inner {

  }
  
  .voice-title {
    font-size: 55px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
  }
  
  .voice-sub {
    display: block;
    font-weight: bold;
    font-size: 25px;
    color: #f5b900;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .voice-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .voice-item {
    background-color: #fff;
    border: 2px solid #B6DAFF;
    border-radius: 10px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 50px;
  }
  
  .voice-profile {
    flex-shrink: 0;
    text-align: center;
    width: 120px;
  }
  
  .voice-img img{
    width: 130px;
    height: 130px;
    margin: 0 auto 10px;
  }
  
  .voice-info {
    font-size: 0.9rem;
    color: #333;
  }
  
  .voice-content {
    flex: 1;
  }
  
  .voice-tag {
    display: inline-block;
    background-color: #E4F1FF;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    padding: 7px 45px;
    border-radius: 6px;
    margin-bottom: 25px;
  }
  
  .voice-heading {
    font-size: 25px;
    font-weight: bold;
    color: #0074c9;
    margin-bottom: 30px;
  }
  
  .voice-text {
    color: #000;
    font-size: 20px;
    line-height: 1.8;
  }
  
  /* ===== レスポンシブ ===== */
  @media (max-width: 768px) {
    .voice {
      padding: 35px 0 45px;
    }
    .voice-title {
      font-size: 25px;
      margin-bottom: 30px;
    }
    
    .voice-sub {
      font-size: 18px;
      margin-top: 4px;
    }
    .voice-list {
      gap: 15px;
      padding: 0 20px;
    }
    
    .voice-item {
      display: block;
      padding: 10px 15px;
      gap: 25px;
    }
    
    .voice-profile {
      width: 100px;
      margin-right: auto;
      margin-left: auto;
    }
    
    .voice-img img{
      width: 120px;
      height: 120px;
      margin: 0 auto 10px;
    }
    
    .voice-info {
      font-size: 15px;
    }
    
    
    .voice-tag {
      font-size: 18px;
      padding: 15px 25px;
      margin-bottom: 15px;
    }
    
    .voice-heading {
      font-size: 20px;
      margin-bottom: 18px;
    }
    
    .voice-text {
      font-size: 15px;
      line-height: 1.4;
    }
  }
  
  
 /* /////// intro /////// */
.intro {
    background: url("image/bk2.jpg") no-repeat center center / cover;
    text-align: center;
    padding: 40px 0 90px;
    position: relative;
  }
    
  .intro-inner {
   
  }
  
  .intro-heading {
    font-size: 45px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
  }
  
.dot-text {
  text-emphasis: filled double-circle #ffb703;
  padding-top: 12px; 
}
  
  .intro-box {
    max-width: 1160px;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .intro-sub {
    color: #0074c9;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: -15px;
  }
  
  .intro-title {
    font-size: 110px;
    font-weight: bold;
    color: #333;
    margin-bottom: 65px;
  }
  
  .intro-subtitle {
    display: block;
    font-size: 23px;
    color: #000;
    margin-top: -15px;
  }
  
  .intro-description {
    border: 1.5px solid #0074c9;
    border-radius: 20px;
    padding: 70px 46px 50px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
  }
  
  .intro-label {
    background-color: #0074c9;
    color: #fff;
    display: inline-block;
    padding: 30px 0px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 15px;
    width: 70%;
    position: absolute;
    top: -27%;
    left: 15%;

  }
  
  .intro-text {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
  }
  
  /* ===== レスポンシブ対応 ===== */
  @media (max-width: 768px) {
    .intro {
      padding: 25px 0 45px;
    }
      
    .intro-heading {
      font-size: 25px;
      margin-bottom: 20px;
    }
    
  .dot-text {
    text-emphasis: filled double-circle #ffb703;
    padding-top: 10px; 
  }
    
    .intro-box {
      max-width: 568px;
      padding: 20px 18px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .intro-sub {
      font-size: 18px;
      margin-bottom: -10px;
    }
    
    .intro-title {
      font-size: 60px;
      margin-bottom: 65px;
    }
    
    .intro-subtitle {
      font-size: 15px;
      margin-top: -5px;
    }
    
    .intro-description {
      padding: 50px 23px 25px;
      max-width: 568px;
    }
    
    .intro-label {
      padding: 13px 15px;
      font-size: 14px;
      margin-bottom: 15px;
      width: 70%;
      top: -20%;
  
    }
    .intro-text {
      font-size: 18px;
      line-height: 1.6;
    }
    
  }
  

  /* /////// company /////// */
.company {
    background-color: #fff;
    text-align: center;
    padding: 80px 20px;
  }
  
  .company-inner {
  
  }
  
  .company-title {
    font-size: 55px;
    font-weight: bold;
    color: #005bac;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
  }
  
  .company-sub {
    display: block;
    font-weight: bold;
    font-size: 25px;
    color: #f5b900;
    text-transform: uppercase;
    margin-top: 4px;
  }
  
  .company-catch {
    color: #0074c9;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
  }
  .company-catch::before,
  .company-catch::after {
    content: "";
    position: absolute;
    top: 10%;
    width: 45px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .company-catch::before {
    background-image: url("/image/img-item3.png");
    left: 29%;
  }
  
  .company-catch::after {
    background-image: url("/image/img-item4.png");
    right: 29%;
  }
  
  .company-image-top {
    margin-bottom: 30px;
  }
  
  .company-image-top img {
    max-width: 200px;
    height: auto;
  }
  
  .company-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .company-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #eaf3fc;
    padding: 30px 40px;
    border-radius: 10px;
    flex-wrap: nowrap;
    width: 640px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .company-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .company-table {
    border-collapse: separate; /* ← collapseをやめる */

    text-align: left;
    font-size: 0.95rem;
    border-spacing: 0 20px;   /* ← 行の間に20pxの余白を追加 */

  }
  
  .company-table th {
    display: inline-block;
    align-items: center;
    background-color: #0074c9;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    white-space: nowrap;
    vertical-align: top;
    text-align: center;
    font-size: 20px;
  }
  
  .company-table td {
    padding: 10px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
  }
  
  /* ===== レスポンシブ対応 ===== */
  @media (max-width: 768px) {
    .company {
      padding: 40px 15px;
    }
    
    .company-title {
      font-size: 25px;
      margin-bottom: 30px;
    }
    
    .company-sub {
      font-size: 18px;
      margin-top: 4px;
    }
    
    .company-catch {
      font-size: 25px;
      margin-bottom: 20px;
    }
    .company-catch::before,
    .company-catch::after {
      top: 0%;
    }
    
    .company-catch::before {
      left: 5%;
    }
    
    .company-catch::after {
      right: 5%;
    }
    
    .company-image-top {
      margin-bottom: 25px;
    }
    
    .company-text {
      font-size: 16px;
      line-height: 1.8;
    }
    
    .company-info {
      gap: 20px;
      padding: 18px 20px;
      width: auto;
      display: block;
    }
    
    .company-photo img {
      width: 180px;
      height: 180px;
    }
    
    .company-table {
      font-size: 18px;
      border-spacing: 0 15px;  
    }
    .company-table tr{
      display: block;
    }
    
    .company-table th {
      padding: 5px 10px;
      border-radius: 30px;
      font-size: 18px;
    }
 
    .company-table td {
      padding: 10px 15px;
      font-size: 18px;
    }
  }
  

  
   /* //////// footer ///////////// */
.footer {
    background-color: #0078d7; 
    color: #fff;             
    text-align: center;       
    padding: 25px 0;
}
  
  .footer p {
    font-size: 18px;  
  }
  
  @media (max-width: 768px) {
    .footer {      
      padding: 20px 0;
  }
    
    .footer p {
      font-size: 12px;  
    }
  }
  
  
  /* 共通パーツ */
  .inner{
    max-width: 1300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .inner{
      max-width: 768px;
      width: 100%;
      height: auto;
      margin: 0 auto;
    }
  }

.lp-on{
  display: block;
}
@media (max-width: 768px) {
  .lp-on{
    display: none;
  }
}
.sp-on{
  display: none;
}
@media (max-width: 768px) {
  .sp-on{
    display: block;
  }
}


/*----------------------- 追加分 ---------------------------------*/

.flow {
  background-color: #FFFBED;
}

.flow-container {
  padding: calc(72vw / 16) calc(58vw / 16) calc(107vw / 16);
}

@media (max-width: 768px) {
  .flow-container {
    padding: 80px 20px;
  }
}

  .flow-title {
  font-size: 55px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .flow-title {
    font-size: 30px;
  }
}

.flow-sub-title {
  display: block;
  font-weight: bold;
  font-size: 25px;
  color: #FFDD54;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.flow-list {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  list-style: none;
  padding-left: 0;
}

@media (max-width: 768px) {
  .flow-list {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}

.flow-item {
  width: calc(260vw / 16);
  background-color: #fff;
  padding: calc(59vw / 16) calc(14.5vw / 16) calc(42vw / 16);
  position: relative;
  box-sizing: border-box;
  border-radius: 13px;
}

@media (max-width: 768px) {
  .flow-item {
    width: 100%;
    padding: 59px 20px 42px;
    max-width: 500px;
  }

  .flow-item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.flow-step {
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #55A2F0;
  border-radius: 50%;
  /* height: calc(71vw / 16);
  width: calc(71vw / 16); */
  width: 71px;
  height: 71px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 29px;
  font-weight: bold;
}

.flow-step span {
  font-size: 15px;
  font-weight: bold;
}

.flow-box-title {
  font-size: 25px;
  color: #1170D1;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

.flow-img {
  margin: 35px auto 0;
}

.flow-img img {
  display: block;
  height: calc(80vw / 16);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .flow-img img {
    height: 80px;
  }
}

.flow-box-text {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  margin: 35px 0 0 ;
}

.flow-item-img {
  display: block;
  align-self: center;
}

.flow-item-img picture {
  display: block;
}

.flow-item-img picture img {
  width: calc(29vw / 16);
}

@media (max-width: 768px) {
  .flow-item-img picture img {
    width: 60px;
  }
}


.faq-container {
  padding: calc(67vw / 16) calc(150vw / 16) calc(100vw / 16);
}

@media (max-width: 768px) {
  .faq-container {
    padding: 80px 20px;
  }
}

.faq-title {
  font-size: 55px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 30px;
  }
}

.faq-box {
  margin-top: 67px;
}

.details {
  border-radius: 15px;
  border: 3px solid #B6DAFF;
  box-sizing:border-box;
}

.details:nth-child(n+2) {
margin-top: 30px;
}

.details-summary {
position: relative;
display: block;
padding: 22px;
padding-left: calc(140vw / 16);
color: #1170D1;
font-size: 24px;
font-weight: bold;
background-color: #B6DAFF;
border-radius: 10px;
}

@media (max-width: 768px) {
.details-summary {
  padding: 16px 50px;
  font-size: 20px;
}
}

.details-summary span {
position: absolute;
left: calc(45vw / 16);
top: 0;
bottom: 0;
margin: auto;
font-family: "Zen Kaku Gothic New", sans-serif;
height: fit-content;
line-height: 1;
color: #fff;
font-weight: bold;
font-size: 40px;
}

@media (max-width: 768px) {
.details-summary span {
  font-size: 30px;
}
}

.details-summary img {
width: 33px;
position: absolute;
right: 31px;
top: 0;
bottom: 0;
margin: auto;
transition: transform 0.3s ease; /* ← アニメーションを追加 */
}

@media (max-width: 768px) {
.details-summary img {
  right: 20px;
}
}

.details-summary.is-active img {
transform: rotate(180deg); /* ← 開いたときに180度回転 */
}


.details-content {
padding: calc(47vw / 16) calc(147vw / 16) calc(43vw / 16);
}

@media (max-width: 768px) {
.details-content {
  padding: 30px 16px 30px 50px;
}
}

.details-content p {
position: relative;
margin: 0;
color: #333333;
font-size: 20px;
line-height: 1.5;
text-align: left;
font-weight: bold;
}

@media (max-width: 768px) {
.details-content p {
  font-size: 16px;
}
}

.details-content p::after {
position: absolute;
content: "A";
left: calc(-106vw / 16);
top: 0;
font-family: "Zen Kaku Gothic New", sans-serif;
height: fit-content;
line-height: 1;
color: #FFDD54;
font-weight: bold;
font-size: 40px;
}

@media (max-width: 768px) {
.details-content p::after {
  font-size: 30px;
  left: -38px;
}
}


@media (max-width: 768px) {
  .features-inner {
    padding: 20px 20px;
    box-sizing: border-box;
  }
}

.features-point {
  box-sizing: border-box;
}
.features-point {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  background: #55A2F0;
  color: #fff;
  font-size: calc(18vw / 16);
  font-weight: 700;
  border-radius: 100%;
  width: calc(110vw / 16);
  height: calc(110vw / 16);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .features-point {
    width: 80px;
    height: 80px;
    font-size: 12px;
    position: absolute;
    top: -50px;
    left: 20px;
  }
}

.features-point span {
  font-size: calc(40vw / 16);
  display: block;
  line-height: 1;
}

@media (max-width: 768px) {
  .features-point span {
    font-size: 24px;
  }
}

.features-boxes {
  width: calc(1119vw / 16);
  margin: 0 auto 100px;
}

@media (max-width: 768px) {
  .features-boxes {
    width: 100%;
  }
}

.features-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

@media (max-width: 768px) {
  .features-box {
    flex-direction: column;
    align-items: center;
  }
}

.features-box::after {
  position: absolute;
  content: "";
  background-color: #E4F1FF;
  width: calc(752vw / 16);
  height: calc(364vw / 16);
  right: calc(-46vw / 16);
  bottom: calc(-33vw / 16);
  z-index: 0;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .features-box::after {
    width: 100%;
    right: 0;
    bottom: 0;
    height: 80%;
  }
}

.features-box-img {
  width: calc(466vw / 16);
}

@media (max-width: 768px) {
  .features-box-img {
    width: 90%;
  }
}

.features-box-img img {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  max-width: 100%;
  width: 100%;
}

.features-text-box {
  box-sizing: border-box;
  position: relative;
  width: calc(630vw / 16);
  z-index: 5;
}

@media (max-width: 768px) {
  .features-text-box {
    width: 100%;
    padding: 50px 20px 20px;
  }
}

.features-box-title {
  margin-top: calc(35vw / 16);
  margin-bottom: 0;
  font-weight: bold;
  font-size: calc(35vw / 16);
  color: #1170D1;
  padding-left: calc(30vw / 16);
}

@media (max-width: 768px) {
  .features-box-title {
    font-size: 20px;
    padding-left: 0;
  }
}

.features-box-text {
  font-size: calc(18vw / 16);
  color: #333;
  line-height: 1.5;
  font-weight: bold;
  margin-top: calc(24vw / 16);
  margin-bottom: 0;
  padding-left: calc(30vw / 16);
  padding-bottom: 13px;
}

@media (max-width: 768px) {
  .features-box-text {
    font-size: 16px;
    margin-top: 16px;
    padding-left: 0;
  }
}

.features-box:nth-child(2n) {
    flex-direction: row-reverse;
}

.features-box:nth-child(2n)::after {
  position: absolute;
  content: "";
  background-color: #E4F1FF;
  width: calc(752vw / 16);
  height: calc(364vw / 16);
  left: calc(-46vw / 16);
  bottom: calc(-33vw / 16);
  z-index: 0;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .features-box:nth-child(2n)::after {
    width: 100%;
    bottom: 0;
    left: 0;
    height: 80%;
  }
}

@media (max-width: 768px) {
  .features-box:nth-child(2n) {
    flex-direction: column;
  }
}

.features-box:nth-child(n+2) {
  margin-top: 60px;
}
.c-cta {
  background-image: url(./image/cta-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  background-color: #000;
}

.c-cta-container {
  padding: calc(64vw / 16) calc(150vw / 16);
}

@media (max-width: 768px) {
  .c-cta-container {
    padding: 60px 20px;
  }
}


.c-cta-boxes {
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
}

@media (max-width: 768px) {
  .c-cta-boxes {
    padding: 10px;
  }
}

.c-cta-box {
  border: 5px solid #8FC0F0;
  border-radius: 20px;
  padding: 40px 20px 60px;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .c-cta-box {
    padding: 40px 16px 150px;
  }
}

.c-cta-title {
  font-weight: bold;
  font-size: calc(30vw / 16);
  color: #0A2A5C;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .c-cta-title {
    font-size: 24px;
  }
}

.c-cta-link {
  width: calc(795vw / 16);
  margin: 22px auto 0;
  height: calc(123vw / 16);
  border-radius: calc(80vw / 16);
  background-color: #FA9A00;
}

@media (max-width: 768px) {
  .c-cta-link {
    width: 273px;
    height: 60px;
    border-radius: 40px;
  }
}

.c-cta-link a {
  display: block;
  height: 100%;
  color: #fff;
  font-size: calc(45vw / 16);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  border-radius: calc(80vw / 16);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .c-cta-link a {
    border-radius: 40px;
    font-size: 18px;
  }
}

.c-cta-link a img {
  position: absolute;
  width: calc(33vw / 16);
  top: 0;
  bottom: 0;
  right: calc(32vw / 16);
  margin: auto;
}

@media (max-width: 768px) {
  .c-cta-link a img {
    width: 22px;
    right: 20px;
  }
}

.c-cta-min-boxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(795vw / 16);
  margin: 32px auto 0;
}

@media (max-width: 768px) {
  .c-cta-min-boxes {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
}

.c-cta-link-min {
  width: calc(380vw / 16);
  height: calc(123vw / 16);
  border-radius: calc(80vw / 16);
}

@media (max-width: 768px) {
  .c-cta-link-min {
    width: 273px;
    height: 60px;
    border-radius: 40px;
  }
}

.c-cta-link-min:first-child {
  background-color: #45ADEA;
}

.c-cta-link-min:last-child {
  background-color: #2D8EEF;
}

.c-cta-link-min a {
  display: block;
  height: 100%;
  color: #fff;
  font-size: calc(35vw / 16);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  border-radius: calc(80vw / 16);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .c-cta-link-min a {
    border-radius: 40px;
    font-size: 18px;
  }
}

.c-cta-link-min a img {
  position: absolute;
  width: calc(33vw / 16);
  top: 0;
  bottom: 0;
  right: calc(32vw / 16);
  margin: auto;
}

@media (max-width: 768px) {
  .c-cta-link-min a img {
    width: 22px;
    right: 20px;
  }
}


.c-cta-lady {
  position: absolute;
  width: calc(161vw / 16);
  bottom: -5px;
  left: calc(41vw / 16);
}

@media (max-width: 768px) {
  .c-cta-lady {
    width: 120px;
  }
}

.c-cta-man {
  position: absolute;
  width: calc(161vw / 16);
  bottom: -5px;
  right: calc(41vw / 16);
}

@media (max-width: 768px) {
  .c-cta-man {
    width: 120px;
  }
}

.c-cta-lady img, .c-cta-man img {
  max-width: 100%;
}
