*{
    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/surveylafool1.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:35%;
}

.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;
      gap:35px;
      align-items:center;
  }
  
  .about-image,
  .about-text{
      width:100%;
  }
  
  .about-image img{
      width:100%;
      max-width:420px;
      margin:0 auto;
      display:block;
  }
  
  .about-text{
      text-align:center;
  }
  
  .about-text p{
      font-size:15px;
      line-height:2;
  }
  
  .about-text p br{
      display:none;
  }
  
  }


/*=====================================
  PROBLEMS
======================================*/

.service-problem{
    background:#f7f7f7;
}

.problem-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.problem-item{

    position:relative;

    background:#fff;

    padding:35px 35px 35px 75px;

    border-radius:18px;

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

    transition:.35s;

    font-size:18px;

    font-weight:600;

}

.problem-item::before{

    content:"✓";

    position:absolute;

    left:30px;

    top:50%;

    transform:translateY(-50%);

    width:28px;

    height:28px;

    border-radius:50%;

    background:#8b1e3f;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

}

.problem-item:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

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

  .problem-list{
      display:grid;
      grid-template-columns:1fr;
      gap:18px;
  }
  
  .problem-item{
  
      width:100%;
      box-sizing:border-box;
  
      padding:22px 20px 22px 58px;
  
      font-size:16px;
      line-height:1.7;
  }
  
  .problem-item::before{
  
      left:18px;
  
      width:24px;
      height:24px;
  
      font-size:12px;
  }
  
  }
/*=====================================
  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;

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

  .service-feature{
      padding:80px 0;
  }
  
  .feature-box,
  .feature-box.reverse{
  
      display:flex;
      flex-direction:column;
      gap:30px;
      margin-bottom:70px;
  
  }
  
  .feature-image,
  .feature-text{
      width:100%;
  }
  
  .feature-image{
      text-align:center;
  }
  
  .feature-image img{
      width:100%;
      max-width:420px;
  }
  
  .feature-text{
      text-align:center;
  }
	
	  .feature-text span{
      font-size:37px
  }
  
  .feature-text h3{
      font-size:24px;
      line-height:1.5;
  }
  
  .feature-text h3 br,
  .feature-text p br{
      display:none;
  }
  
  .feature-text p{
      font-size:15px;
      line-height:2;
  }
  
  }
/* =========================
   Survey Type
========================= */


.survey-lead{

  text-align:center;
  
  line-height:2;
  
  margin:40px 0 70px;
  
  }
  
  
  
  /* 2つ並び */
  
  .survey-intro{
  
  display:flex;
  
  gap:60px;
  
  }
  
  
  
  .survey-item{
  
  width:50%;
  
  text-align:center;
  
  }
  
  
  
  
  /* 画像部分 */
  
  .survey-image-wrap{
  
  position:relative;
  
  }
  
  
  
  .survey-image-wrap img{
  
  width:100%;
  
  height:280px;
  
  object-fit:contain;
  
  }
  
  
  
  /* 右上丸枠 */
  
  .survey-circle-info{
  
  position:absolute;
  
  right:20px;
  
  top:0;
  
  display:flex;
  
  gap:12px;
  
  z-index:2;
  
  }
  
  
  
  .survey-circle-info span{
  
  width:80px;
  
  height:80px;
  
  border-radius:50%;
  
  border:2px solid #8b1e3f;
  
  background:#fff;
  
  display:flex;
  
  flex-direction:column;
  
  justify-content:center;
  
  align-items:center;
  
  font-size:18px;
  
  font-weight:bold;
  
  line-height:1.2;
  
  }
  
  
  
  .survey-circle-info small{
  
  font-size:11px;
  
  font-weight:normal;
  
  margin-top:5px;
  
  }
  
  
  
  
  .survey-item h3{
  
  font-size:28px;
  
  margin-top:30px;
  
  margin-bottom:10px;
  
  }
  
  
  
  .survey-label{
  
  color:#8b1e3f;
  
  font-weight:bold;
  
  }
  
  
  
  
  /* =========================
     Compare Table
  ========================= */
  
  
  .survey-table{
  
  margin-top:80px;
  
  }
  
  
  
  .survey-table table{
  
  width:100%;
  
  border-collapse:collapse;
  
  background:#fff;
  
  }
  
  
  
  .survey-table th,
  .survey-table td{
  
  border:1px solid #ddd;
  
  padding:20px;
  
  text-align:center;
  
  line-height:1.8;
  
  }
  
  
  
  .survey-table tr:first-child th{
  
  background:#8b1e3f;
  
  color:#fff;
  
  font-size:18px;
  
  }
  
  
  
  .survey-table tr th:first-child{
  
  width:25%;
  
  background:#faf7f7;
  
  color:#333;
  
  }
  
  
  
  
  /* =========================
     Operation Image
  ========================= */
  
  
  .operation-image{
  
  margin-top:100px;
  
  }
  
  
  
  .operation-image img{
  
  width:100%;
  
  display:block;
  
  margin-top:40px;
  
  }
  /*=====================================
  SURVEY TYPE SP
======================================*/
@media screen and (max-width:768px){

  .survey-intro{
      display:flex;
      flex-direction:column;
      gap:50px;
  }
  
  .survey-item{
      width:100%;
  }
  
  .survey-image-wrap img{
      width:100%;
      
  }
  
  .survey-circle-info{
      gap:20px;
  }
  
  .survey-circle-info span{
      width:85px;
      height:85px;
      font-size:18px;
  }
  
  .survey-circle-info small{
      font-size:12px;
  }
  
  .survey-lead{
      font-size:15px;
      line-height:2;
  }
  
  .survey-lead br{
      display:none;
  }
  
  /* テーブル横スクロール */
  
  .survey-table{
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
  }
  
  .survey-table table{
      min-width:650px;
  }
  
 .operation-image{
        width:100%;
        overflow-x:auto;
        overflow-y:hidden;
        -webkit-overflow-scrolling:touch;
    }

    .operation-image img{
        width:800px;
        max-width:none;
        height:auto;
        display:block;
    }
  
  }
/*=====================================
  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;

}

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

  .merit-grid{
      grid-template-columns:1fr;
      gap:20px;
  }
  
  .merit-card{
      padding:30px 20px;
  }
  
  .merit-card h3{
      font-size:34px;
  }
  
  .merit-card p{
      font-size:17px;
  }
  
  }
/*=====================================
 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 共通
======================================*/

.preparation,
.survey,
.flow-cycle{
    background:#fafafa;
    border:1px solid #e5e5e5;
    border-radius:28px;
    padding:35px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}


/*----------------------------
  ご準備・調査
----------------------------*/

.preparation .flow-body,
.survey .flow-body{

    text-align:center;

    font-size:15px;
    font-weight:400;

}
.flow-wrap{

    display:flex;
    flex-direction:column;
    align-items:center;

}
.flow-arrow{
    font-size:40px;
    color:#8b1e3f;

    height:40px;
    line-height:40px;

    display:flex;
    justify-content:center;
    align-items:center;
}

/*=====================================
  改善サイクル
======================================*/
.preparation,
.survey{
  
    position:relative;
    margin-bottom:30px;
    padding:50px 25px 25px;
}

.preparation .cycle-items,
.survey .cycle-items{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

    

}

.preparation .flow-item,
.survey .flow-item{

    display:flex;
    margin:0 auto;

    background:#fff;
    border:1px solid #ddd;
    border-radius:14px;

    width:250px;
    height:65px;
    align-items:center;      
    justify-content:center; 

    box-shadow:0 3px 10px rgba(0,0,0,.05);
    
}

.flow-cycle{

    position:relative;
    margin-top:40px;
    padding:70px 30px 35px;

}

.cycle-top{

    position:absolute;

    top:-18px;
    left:50%;

    transform:translateX(-50%);

    background:#f7f7f7;

    padding:0 20px;

    color:#8b1e3f;

    font-size:22px;
    font-weight:700;
    letter-spacing:.08em;
    white-space:nowrap;

}

.cycle-items{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.cycle-items .flow-item{

    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.cycle-items .flow-head{

    background:#8b1e3f;

    color:#fff;

    border-radius:18px 18px 0 0;

    padding:20px;

    text-align:center;

    font-size:22px;

    font-weight:700;

}

.cycle-items .flow-body{

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:120px;

    padding:25px;

    text-align:center;

    color:#444;

    line-height:1.8;

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

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

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

    .preparation,
    .survey{
        width:100%;
        padding:35px 15px 15px;
        box-sizing:border-box;
    }


    /* タイトル */

    .cycle-top{
        font-size:18px;
        padding:0 15px;
        white-space:normal;
        text-align:center;
        width:90%;
    }


    /* ご準備・調査の項目 */

    .preparation .cycle-items,
    .survey .cycle-items{
        grid-template-columns:1fr;
        gap:10px;
    }


    /* ご準備・調査のカード */

    .preparation .flow-item,
    .survey .flow-item{
        width:100%;
        height:48px;
        min-height:0;
        margin:0 auto;
        box-sizing:border-box;
    }


    /* ご準備・調査の文字 */

    .preparation .flow-body,
    .survey .flow-body{
        padding:10px 15px;
        font-size:14px;
        line-height:1.4;
    }

    .flow-cycle{
        width:100%;
        margin-top:25px;
        padding:45px 15px 20px;
        box-sizing:border-box;
    }


    .flow-cycle .cycle-items{
        grid-template-columns:1fr;
        gap:18px;
    }


    .flow-cycle .flow-head{
        font-size:18px;
        padding:16px;
    }


    .flow-cycle .flow-body{
        min-height:auto;
        padding:20px;
        font-size:15px;
        line-height:1.8;
    }

.flow-arrow{
    font-size:26px;
    height:24px;
    line-height:24px;
    margin:2px 0;
}

}

    /*=====================================
  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;
  
  }
  
  }

/*=====================================
 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);
  }
