*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Yu Gothic","Hiragino Sans","Noto Sans JP",sans-serif;
    color:#333;
    line-height:1.8;
    background:#fff;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===========================
   header
=========================== */

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 0 140px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.6s;
  opacity: 1;
}
header .header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}
header .header-menu li {
  position: relative;
  height: 20px;
}

header .header-menu li .menu-sublist {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  
  padding: 10px 15px; 
  transition: 0.4s;
  text-align: center;

  width: max-content;
  min-width: 180px;
  background-color: transparent;
  border-radius: 4px;
}
header .header-menu li .menu-sublist:hover {
  opacity: 1;
  pointer-events: auto;
}
header .header-menu li .menu-sublist li {
  height: 28px;
}
header .header-menu li .menu-sublist a {
  color: #fff;
  display: block;
  width: 100%;
  line-height: 28px;
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;  }
header .header-menu .item-sub:hover ul {
  opacity: 1;
  pointer-events: auto;
}
header .header-menu span {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  display: block;
  line-height: 20px;
}
header .header-menu a {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  transition: 0.3s;
  display: block;
  line-height: 20px;
}
header .header-menu a:hover {
  opacity: 0.6;
}
header.show {
  opacity: 1;
}
header.scrolled {
  position: fixed;
  height: 60px;
  background-color: #fff;
}
header.scrolled .header-menu li {
  height: 60px;
}
header.scrolled .header-menu li .menu-sublist {
  top: 60px;
  background-color: #333;
}
header.scrolled .header-menu li .menu-sublist li {
  height: 28px;
}
header.scrolled .header-menu li .menu-sublist a {
  line-height: 28px;
}
header.scrolled .header-menu a {
  color: #2E2E2E;
  line-height: 60px;
}
header.scrolled .header-menu span {
  color: #2E2E2E;
  line-height: 60px;
}

.fv {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  height: 100vh;
  background-image: url("../assets/img/fv-img.jpg?v=1");
  background-size: cover;
  z-index: 7;
}

.fv-cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-cover img {
  width: 58vw;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.fv-cover.show img {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  opacity: 1;
}

.slider-images {
  width: 100%;
  box-sizing: border-box;
  height: 40vw;
  position: relative;
  z-index: 1;
}

.slider-item {
  width: 100%;
  height: 40vw;
  background-size: cover;
  background-position: center;
}
.slider-item1 {
  background-image: url("../img/fv1.jpg");
}
.slider-item2 {
  background-image: url("../img/fv2.jpg");
}
.slider-item3 {
  background-image: url("../img/fv3.jpg");
}
.slider-item4 {
  background-image: url("../img/fv4.jpg");
}

@media screen and (max-width: 768px) {
  header {
    height: 60px;
    padding: 0 20px;
  }
  header .header-menu {
    display: none;
  }
  header.scrolled {
    background-color: #000;
  }
  .fv-cover img {
    width: 80vw;
  }
  .fv-text {
    right: 20px;
    font-size: 13px;
    line-height: 30px;
    text-align: right;
  }
  .fv-text span {
    font-size: 19px;
  }
  .fv-text span.num {
    font-size: 30px;
    margin-right: 4px;
  }
  .slider-images {
    height: calc(100vh - 110px);
  }
  .slider-item {
    height: calc(100vh - 110px);
  }
}
.section-head {
  max-width: 1120px;
  margin: auto;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: 48px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  color: #989898;
  position: relative;
  display: inline-block;
}
.section-head h2 span {
  opacity: 0;
  transition-delay: 0.4s;
}
.section-head h2:after {
  content: "";
  background-color: #000;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.section-head .title-sub {
  display: block;
  font-weight: bold;
  font-size: 18px;
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.3s;
  transform: translateY(5px);
}
.section-head.show h2 span {
  opacity: 1;
}
.section-head.show h2:after {
  -webkit-animation: imagewipe 0.8s ease-in-out both;
          animation: imagewipe 0.8s ease-in-out both;
  opacity: 1;
}
.section-head.show .title-sub {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .section-head {
    margin-bottom: 30px;
  }
  .section-head h2 {
    font-size: 30px;
  }
  .section-head .title-sub {
    font-size: 15px;
  }
}
.section-content {
  width: auto;
  max-width: 1120px;
  margin: auto;
}



/* ===========================
   COMMON
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:100px 0;
}

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

.section-title span{
    display:block;
    color:#8b1e3f;
    font-size:14px;
    font-weight:bold;
    letter-spacing:3px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
}

p{
    font-size:16px;
}

/* ===========================
   BUTTON
=========================== */

.hero-btn,
.contact-btn{

    display:inline-block;

    margin-top:40px;

    padding:18px 48px;

    background:#8b1e3f;

    color:#fff;

    border-radius:50px;

    transition:.4s;
}

.hero-btn:hover,
.contact-btn:hover{

    background:#b72f57;

    transform:translateY(-4px);

}

/* ===========================
   HERO
=========================== */

.service-hero{

    height:100vh;

    background:url(images/hero.jpg) center center/cover;

    position:relative;

    display:flex;

    align-items:center;

}

.service-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.service-hero__inner{

    position:relative;

    z-index:2;

    width:90%;

    max-width:1200px;

    margin:auto;

    color:#fff;

}

.service-hero__sub{

    letter-spacing:5px;

    color:#fff;

    margin-bottom:20px;

}

.service-hero h1{

    font-size:64px;

    margin-bottom:25px;

    font-weight:700;

}

.service-hero__lead{

    font-size:22px;

    line-height:2;

    max-width:700px;

}

.service-hero{

    height:100vh;

    background:url("assets/img/tekikaku1.png") center center / cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

}
@media screen and (max-width: 768px) {
    .service-hero h1 {
        font-size: 70px;
    }
	   .service-hero__lead {
        font-size: 16px;
    }
	    .service-hero {
        min-height: 65vh;
        height: auto;
        padding: 100px 20px;
    }
	    .service-hero__inner {
        width: 92%;
        max-width: none;
    }
}
@media screen and (max-width: 480px) {
    .service-hero h1 {
        font-size: 33px;
    }
	    .service-hero__lead {
        font-size: 15px;
    }
	    .service-hero {
        min-height: 55vh;
        padding: 80px 20px;
    }
	    .service-hero__inner {
        width: 100%;
        max-width: none;
    }
}
/*=====================================
  ABOUT
======================================*/

.service-about{
    background:#fff;
}

.about-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about-image{
    width:50%;
}

.about-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.about-text{
    width:50%;
}

.about-text p{
    margin-bottom:25px;
    line-height:2.2;
    color:#555;
}
/*=====================================
  ABOUT SP
======================================*/
@media screen and (max-width:768px){

  .service-about{
      padding:80px 0;
  }
  
  .about-box{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:35px;
  }
  
  .about-image,
  .about-text{
      width:100%;
  }
  
  .about-image{
      text-align:center;
  }
  
  .about-image img{
      width:100%;
      max-width:420px;
      height:auto;
  }
  
  .about-text{
      text-align:center;
  }
  
  .about-text p:first-child{
      font-size:30px;
      line-height:1.4;
      margin-bottom:25px;
  }
  
  .about-text p{
      font-size:15px;
      line-height:2;
  }
  
  .about-text p br{
      display:none;
  }
  
  }
  
  /*=========================
   小さいスマホ
  =========================*/
  @media screen and (max-width:480px){
  
  .about-text p:first-child{
      font-size:24px;
  }
  
  .about-text p{
      font-size:14px;
  }
  
  }

/*=====================================
  SYNERGY
======================================*/

.service-synergy{
  padding:120px 0;
  background:#fafafa;
}

.synergy-lead{
  max-width:820px;
  margin:35px auto 70px;
  text-align:center;
  line-height:2;
  font-size:17px;
  color:#555;
}

/*=========================
全体
=========================*/

.synergy-wrap{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:70px;
  position:relative;
}

/*=========================
共通BOX
=========================*/

.lafool-box,
.tekikaku-box{
  width:420px;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/*=========================
ヘッダー
=========================*/


.tekikaku-head{
  background:#2958b8;
  padding:24px;
  text-align:center;
}

.tekikaku-head img{
  width:170px;
}

/*=========================
BODY
=========================*/

.lafool-body,
.tekikaku-body{
  padding:35px;
}

/*=========================
カード
=========================*/

.lafool-card,
.tekikaku-card{

  background:#f7f8fc;

  border:2px solid #dbe3f7;

  border-radius:18px;

  padding:25px;

  box-sizing:border-box;

}

.lafool-card + .lafool-card{
  margin-top:18px;
}

.tekikaku-card + .tekikaku-card{
  margin-top:18px;
}

.lafool-card h3,
.tekikaku-card h3{

  text-align:center;

  color:#2958b8;

  font-size:23px;

  margin-bottom:20px;

}

.lafool-card ul,
.tekikaku-card ul{

  list-style:none;

  padding:0;

  margin:0;

}

/*=========================
ラフール
=========================*/
.lafool-head,
.tekikaku-head{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:24px;
}
.lafool-head{
  background:#8b1e3f;

}


.lafool-head span,
.tekikaku-head span{

    color:rgba(255,255,255,.65);

    font-size:12px;

    letter-spacing:.3em;

    margin-bottom:8px;

}

.lafool-head h3,
.tekikaku-head h3{

    color:#fff;

    font-size:30px;

    margin:0;

    font-weight:700;

    letter-spacing:.08em;

}
.lafool-card li{

  display:flex;

  justify-content:center;

  align-items:center;

  height:44px;

  width:90%;

  margin:0 auto 10px;

  background:#e8f1ff;

  border-radius:8px;

  font-size:15px;

}

.lafool-card p{

  display:flex;

  justify-content:center;

  align-items:center;

  width:90%;

  min-height:50px;

  margin:0 auto;

  background:#e8f1ff;

  border-radius:8px;

  font-size:15px;

}

/*=========================
テキカク
=========================*/

.tekikaku-card li{

  display:flex;

  justify-content:center;

  align-items:center;

  height:44px;

  border-bottom:1px solid #ddd;

  font-size:15px;

}

.tekikaku-card li:last-child{
  border-bottom:none;
}

/*=========================
↑矢印
=========================*/

.personal-arrow{

  text-align:center;

  font-size:36px;

  color:#2958b8;

  font-weight:bold;

  margin:18px 0;

}

/*=========================
横矢印
=========================*/

.synergy-wrap{

  display:grid;

  grid-template-columns:420px 140px 420px;

  align-items:start;

  justify-content:center;

  column-gap:30px;

}
.synergy-arrow{

  display:flex;

  justify-content:center;

  align-items:center;

  height:320px;   /* ウェルビーイングの高さ付近 */

}

.arrow-line{

  position:relative;

  width:100%;
  height:4px;

  background:#f0b400;
  border-radius:10px;


}

.arrow-line::after{

  content:"";

  position:absolute;

  right:-2px;
  top:50%;

  transform:translateY(-50%);

  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-left:14px solid #f0b400;

}

/*=========================
下説明
=========================*/

.synergy-result{

  margin-top:70px;

  background:#fff;

  border-radius:20px;

  padding:35px;

  box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.synergy-result p{

  text-align:center;

  line-height:2.2;

  color:#555;

  font-size:17px;

}

/*=====================================
  SP
======================================*/
@media screen and (max-width:768px){

  .service-synergy{
      padding:80px 0;
  }
  
  .synergy-lead{
      font-size:15px;
      line-height:1.8;
      margin:25px auto 50px;
  }
  
  .synergy-wrap{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:30px;
  }
  
  /* BOX */
  
  .lafool-box,
  .tekikaku-box{
      width:100%;
      max-width:420px;
  }
  
  /* タイトル */
  
  .lafool-head,
  .tekikaku-head{
      padding:20px;
  }
  
  .lafool-head h3,
  .tekikaku-head h3{
      font-size:24px;
  }
  
  .lafool-head span,
  .tekikaku-head span{
      font-size:10px;
  }
  
  /* 本文 */
  
  .lafool-body,
  .tekikaku-body{
      padding:24px;
  }
  
  /* カード */
  
  .lafool-card,
  .tekikaku-card{
      padding:18px;
  }
  
  .lafool-card h3,
  .tekikaku-card h3{
      font-size:20px;
      margin-bottom:16px;
  }
  
  /* ラフール */
  
  .lafool-card li,
  .lafool-card p{
      width:100%;
      font-size:14px;
  }
  
  /* テキカク */
  
  .tekikaku-card li{
      font-size:14px;
  }
  
  /* ↑ */
  
  .personal-arrow{
      font-size:30px;
      margin:15px 0;
  }
  
  /* 黄色矢印 */
  
  .synergy-arrow{
      width:50px;
      height:60px;
      display:flex;
      justify-content:center;
      align-items:center;
  }
  
  .arrow-line{
      width:4px;
      height:45px;
  }
  
  .arrow-line::after{
      right:50%;
      top:auto;
      bottom:-12px;
  
      transform:translateX(50%) rotate(90deg);
  }
  
  /* 下説明 */
  
  .synergy-result{
      margin-top:50px;
      padding:25px;
  }
  
  .synergy-result p{
      font-size:15px;
      line-height:1.9;
  }
  
  }
/*=====================================
  FEATURE
======================================*/

.service-feature{
    background:#fff;
}

.feature-box{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    margin-bottom:120px;

}

.feature-box:last-child{
    margin-bottom:0;
}

.feature-box.reverse{
    flex-direction:row-reverse;
}

/* 画像 */

.feature-image{
    width:50%;
    overflow:hidden;
    border-radius:20px;
}

.feature-image img{

    width:100%;

    transition:.6s;

    display:block;

}

.feature-box:hover .feature-image img{

    transform:scale(1.06);

}

/* テキスト */

.feature-text{
    width:50%;
}

.feature-text span{

    display:inline-block;

    color:#8b1e3f;

    font-size:60px;

    font-weight:700;

    opacity:.15;

    margin-bottom:10px;

}

.feature-text h3{

    font-size:32px;

    margin-bottom:25px;

    color:#222;

}

.feature-text p{

    color:#555;

    line-height:2.2;

    font-size:16px;

}

/* ワンポイント線 */

.feature-text h3::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:#8b1e3f;

    margin-top:18px;

}
/*=====================================
  MERIT
======================================*/

.service-merit{
    background:#f8f8f8;
}

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

.merit-card{

    background:#fff;

    padding:45px 35px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.merit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.merit-card h3{

    color:#8b1e3f;

    font-size:42px;

    margin-bottom:20px;

    font-weight:700;

}

.merit-card p{

    font-size:18px;

    font-weight:600;

    color:#444;

}
/*=====================================
  FEATURE  SP
======================================*/
@media screen and (max-width:768px){


  
  .service-feature{
      padding:80px 0;
  }
  
  .feature-box{
      display:flex;
      flex-direction:column;
      gap:30px;
      margin-bottom:70px;
  }
  
  .feature-box.reverse{
      flex-direction:column;
  }
  
  .feature-image,
  .feature-text{
      width:100%;
  }
  
  .feature-image img{
      width:100%;
      display:block;
      border-radius:18px;
  }
  
  .feature-text{
      text-align:center;
  }
  
  .feature-text span{
      font-size:13px;
  }
  
  .feature-text h3{
      font-size:26px;
      line-height:1.5;
      margin:15px 0 20px;
  }
  
  .feature-text h3 br{
      display:none;
  }
  
  .feature-text p{
      font-size:15px;
      line-height:2;
  }
  

  
  /*=========================
  MERIT
  =========================*/
  
  .service-merit{
      padding:80px 0;
  }
  
  .merit-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
  }
  
  .merit-card{
      padding:30px 20px;
  }
  
  .merit-card h3{
      font-size:34px;
      margin-bottom:15px;
  }
  
  .merit-card p{
      font-size:15px;
      line-height:1.7;
  }
  
  /*=========================
  SP(480px以下)
  =========================*/
  
  @media screen and (max-width:480px){
  
      .merit-grid{
          grid-template-columns:1fr;
      }
  
      .feature-text h3{
          font-size:22px;
      }
  
  }
  
  }

/*=====================================
 FLOW（ラフールサーベイ）
======================================*/

.service-flow{
    background:#f8f8f8;
}

.flow-wrap{
    display:flex;
    flex-direction:column;
    gap:40px;
}

/* 上2つ */

.flow-item{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.flow-head{

    background:#3558d8;

    color:#fff;

    font-size:26px;

    font-weight:bold;

    text-align:center;

    padding:20px;

}

.preparation .flow-head{
    background:#7ec7ea;
}

.survey .flow-head{
    background:#3558d8;
}

.flow-body{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    padding:35px;

}

.flow-content{

    background:#fff;

    border:2px solid #3558d8;

    padding:18px 28px;

    min-width:220px;

    text-align:center;

    font-size:18px;

    font-weight:bold;

    clip-path:polygon(0 0,90% 0,100% 50%,90% 100%,0 100%,10% 50%);

}

.preparation .flow-content{
    border-color:#46b9ea;
}

.flow-arrow{

    color:#3558d8;

    font-size:32px;

    font-weight:bold;

}
/*=====================================
  FLOW
======================================*/

.service-flow{
  padding:120px 0;
  background:#f7f8fb;
}

.flow-lead{
  text-align:center;
  margin:35px auto 80px;
  color:#555;
  line-height:2;
  font-size:17px;
}

.flow-lead span{
  display:inline-block;
  color:#8b1e3f;
  font-weight:700;
  font-size:20px;
  margin-bottom:10px;
}

/*========== STEPライン ==========*/

.flow-step-line{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:70px;
}

.flow-step{
  text-align:center;
}

.flow-step span{
  display:inline-block;
  background:#2958b8;
  color:#fff;
  font-size:14px;
  letter-spacing:.08em;
  padding:8px 22px;
  border-radius:30px;
  font-weight:700;
}

.flow-step p{
  margin-top:15px;
  font-size:24px;
  font-weight:700;
  color:#2958b8;
}

.flow-line{
  width:120px;
  height:3px;
  background:#2958b8;
  margin:0 20px;
  position:relative;
}

.flow-line::after{
  content:"";
  position:absolute;
  right:-1px;
  top:50%;
  transform:translateY(-50%);
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  border-left:12px solid #2958b8;
}

/*========== カード ==========*/

.flow-card-wrap{
  display:flex;
  justify-content:space-between;
  gap:35px;
}

.flow-card{
  flex:1;
  background:#fff;
  border-radius:20px;
  padding:45px 35px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.flow-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.flow-icon{
  width:300px;
  height:300px;
  margin:0 auto ;
}

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

.flow-card h3{
  color:#2958b8;
  font-size:30px;
  margin-bottom:28px;
  font-weight:700;
}

.flow-card p{
  font-size:17px;
  color:#555;
  line-height:2;
  margin-bottom:20px;
}

.flow-card small{
  display:block;
  color:#888;
  font-size:14px;
  line-height:1.8;
}

/*========== SP ==========*/

@media screen and (max-width:768px){

.service-flow{
  padding:80px 0;
}

.flow-step-line{
  flex-direction:column;
  gap:20px;
  margin-bottom:50px;
}

.flow-line{
  width:3px;
  height:50px;
  margin:0;
}

.flow-line::after{
  top:auto;
  bottom:-10px;
  left:50%;
  transform:translateX(-50%) rotate(90deg);
}

.flow-card-wrap{
  flex-direction:column;
}

.flow-card{
  padding:35px 25px;
}

.flow-card h3{
  font-size:24px;
}

.flow-step p{
  font-size:20px;
}

}
    /*=====================================
  OPTION
======================================*/
.option-card{

  position:relative;

    height:170px;

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:18px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start; /* 上寄せ */

    align-items:center;

    text-align:center;

    padding-top:45px;
}


.option-icon{

  position:absolute;

  bottom:20px;

  width:35px;
  height:35px;

}


.option-icon img{

  width:100%;

  height:100%;

  object-fit:contain;

}


.service-option{

    padding:100px 0;

}


.option-lead{

    text-align:center;

    font-size:18px;

    line-height:2;

    color:#555;

    margin-bottom:55px;

}
.option-card h3{

  font-size:18px;

  line-height:1.6;

  margin:0;

  transform:translateY(-10px);

}

/* カード配置 */

.option-list{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.option-card:hover{

    transform:translateY(-5px);

    border-color:#8b1e3f;

}



/* 番号 */

.option-card span{

    position:absolute;

    top:15px;

    left:20px;

    font-size:13px;

    font-weight:700;

    color:#8b1e3f;

}



/* タイトル */

.option-card h3{

    font-size:18px;

    line-height:1.6;

    color:#333;

    margin:0;

}

/*=====================================
  OPTION SP
======================================*/
@media screen and (max-width:768px){

  .service-option{
      padding:80px 0;
  }
  
  .option-lead{
      font-size:15px;
      line-height:1.8;
      margin-bottom:40px;
  }
  
  .option-lead br{
      display:none;
  }
  
  .option-list{
      grid-template-columns:repeat(2,1fr);
      gap:16px;
  }
  
  .option-card{
  
      height:auto;              /* ←170pxを解除 */
  
      min-height:180px;         /* 最低限の高さだけ確保 */
  
      padding:40px 15px 70px;   /* 下にアイコン分の余白 */
  
  }
  
  .option-card span{
      top:12px;
      left:15px;
      font-size:12px;
  }
  
  .option-card h3{
      font-size:16px;
      line-height:1.5;
      transform:none;
  }
  
  .option-card h3 br{
      display:none;
  }
  
  .option-icon{
      bottom:18px;
      width:32px;
      height:32px;
  }
  
  }
  
  /* 小さいスマホ */
  @media screen and (max-width:480px){
  
  .option-list{
      grid-template-columns:1fr;
  }
  
  .option-card{
  
      min-height:160px;
  
  }
  
  }
  /*=====================================
  OPTION SP
======================================*/
@media screen and (max-width:768px){

  .service-option{
      padding:80px 0;
  }
  
  .option-lead{
      font-size:15px;
      line-height:1.8;
      margin-bottom:40px;
  }
  
  .option-lead br{
      display:none;
  }
  
  .option-list{
      grid-template-columns:repeat(2,1fr);
      gap:16px;
  }
  
  .option-card{
  
      height:auto;              /* ←170pxを解除 */
  
      min-height:180px;         /* 最低限の高さだけ確保 */
  
      padding:40px 15px 70px;   /* 下にアイコン分の余白 */
  
  }
  
  .option-card span{
      top:12px;
      left:15px;
      font-size:12px;
  }
  
  .option-card h3{
      font-size:16px;
      line-height:1.5;
      transform:none;
  }
  
  .option-card h3 br{
      display:none;
  }
  
  .option-icon{
      bottom:18px;
      width:32px;
      height:32px;
  }
  
  }
  
  /* 小さいスマホ */
  @media screen and (max-width:480px){
  
  .option-list{
      grid-template-columns:1fr;
  }
  
  .option-card{
  
      min-height:160px;
  
  }
  
  }

/*=====================================
 CONTACT
======================================*/

.service-contact{

  position:relative;

  padding:85px 20px;

  text-align:center;

  background-image:
  linear-gradient(
      rgba(40,40,40,.75),
      rgba(40,40,40,.75)
  ),
  url("assets/img/contact.png");

  background-size:cover;

  background-position:center;

  overflow:hidden;

}



.contact-inner{

  position:relative;

  z-index:1;

}



/* CONTACT */

.contact-label{

  display:block;

  color:#d0d0d0;

  font-size:12px;

  letter-spacing:.5em;

  margin-bottom:20px;

}



/* タイトル */

.service-contact h2{

  color:#fff;

  font-size:32px;

  font-weight:600;

  letter-spacing:.08em;

  margin-bottom:20px;

}



/* 説明 */

.service-contact p{

  color:#eee;

  font-size:15px;

  line-height:2;

  margin-bottom:35px;

}



/* ボタン */

.contact-btn{

  display:inline-flex;

  justify-content:center;

  align-items:center;


  width:280px;

  height:60px;


  background:#fff;

  color:#333;


  font-size:16px;

  font-weight:600;


  text-decoration:none;


  transition:.3s;

}



.contact-btn:hover{

  background:#8b1e3f;

  color:#fff;

}



/* スマホ */

@media screen and (max-width:768px){

  .service-contact{

      padding:60px 20px;

  }


  .service-contact h2{

      font-size:24px;

  }


  .contact-btn{

      width:270px;

  }

}
/*フッター*/
footer {
  background-color: #151515;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer p {
  font-size: 13px;
  color: #fff;
}

/*バーガーメニュー*/
.burgermenu {
    display: none;
    position: fixed;
    width: 100vw;
    pointer-events: none;
    top: 0;
    left: 0;
  }
  @media screen and (max-width: 768px) {
    .burgermenu {
      display: block;
    }
  }
  .burgermenu__trigger {
    position: absolute;
    z-index: 120;
    right: 20px;
    top: 15px;
    display: block;
    width: 32px;
    height: 30px;
    pointer-events: auto;
  }
  .burgermenu__trigger:hover {
    cursor: pointer;
  }
  .burgermenu__trigger span {
    display: block;
    position: absolute;
    width: 32px;
    height: 3px;
    border-radius: 1.5px;
    background: #fff;
    transition: 0.3s ease-in-out, top 0.5s ease;
  }
  .burgermenu__trigger span:nth-child(1) {
    top: 0;
  }
  .burgermenu__trigger span:nth-child(2) {
    top: 11px;
  }
  .burgermenu__trigger span:nth-child(3) {
    top: 22px;
  }
  .burgermenu__content {
    display: block;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    opacity: 0;
    transition: 0.6s;
    background-color: #000;
    z-index: 110;
    padding: 80px 0 40px;
  }
  .burgermenu__content ul {
    position: relative;
    z-index: 3;
  }
  .burgermenu__content .link-item {
    height: 66px;
  }
  .burgermenu__content .link-item a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 0.06em;
    width: 100%;
    text-align: center;
    line-height: 66px;
    box-sizing: border-box;
    display: block;
    position: relative;
  }
  .burgermenu__content .item-sub {
    min-height: 66px;
    padding-top: 17px;
    box-sizing: border-box;
    text-align: center;
  }
  .burgermenu__content .item-sub span {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    line-height: 32px;
    position: relative;
  }
  .burgermenu__content .item-sub span:after {
    content: "▼";
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
  }
  .burgermenu__content .item-sub .menu-sublist_burger {
    padding: 10px 0;
    display: none;
  }
  .burgermenu__content .item-sub .menu-sublist_burger a {
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.06em;
    width: 100%;
    display: block;
    line-height: 32px;
    text-align: center;
  }
  .burgermenu__content .item-sub .menu-sublist_burger a:after {
    display: none;
  }
  .burgermenu__content .item-sub.open span:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .burgermenu.open {
    pointer-events: auto;
  }
  .burgermenu.open .burgermenu__trigger span:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
  }
  .burgermenu.open .burgermenu__trigger span:nth-child(2) {
    opacity: 0;
  }
  .burgermenu.open .burgermenu__trigger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
  }
  .burgermenu.open .burgermenu__content {
    opacity: 1;
    pointer-events: auto;
  }
  
  .fade-action {
    transition: 0.6s;
    opacity: 0;
    transform: translateY(20px);
  }
  .fade-action.show {
    opacity: 1;
    transform: translateY(0);
  }