@charset "utf-8";
:root{
  /* Base Font Size 1.0rem = 10px */
  font-size: 10px;

  /* フォントカラー */
  --color-primary: #222;
  --color-wht: #fff;
  --color-grn: #007047;
  --color-dark_grn: #526054;
  --color-yellow: #f7ae00;
  --color-yellow02: #ffb80a;
  --color-red: #eb3a24;

  --bg-a: #fff; /* 背景_白 */
  --bg-b: #025bac; /* 背景_青 */
  --bg-c: #00b0ed; /* 背景_水色 */
  --bg-d: #3db135; /* 背景_緑 */
  --bg-e: #fff000; /* 背景_黄 */
  --bg-f: #e9e9e9; /* 背景_ライトグレー */
  --bg-red: #ff4503; /* 背景_赤 */

  --ff: "Noto Sans JP", sans-serif;
  --ff_serif: "Noto Serif JP", serif;
  --ff-en: "Inter", sans-serif;
}
/* 320対応（374以下は、ルートベースフォントサイズを9pxに） */
@media screen and (max-width: 374px){
    :root{
        font-size: 8px;
    }
}
*{box-sizing: border-box;}
html{
  scroll-behavior: smooth;
}
body {
  position: relative;
  background: var(--color-wht);
  font-family: "Inter", "Noto Sans JP", "Meiryo", "Yu Gothic", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-primary);
  overflow-x: hidden;
}
img{
  width: 100%;
  height: auto;
}
p{
  position: relative;
  text-align: justify;
  font-size: 1.6rem;
}

a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover img{opacity: 0.9;}
ul,ol{
  padding-inline-start: 0;
  list-style-position: inside;
}
.wrapper{
  max-width: 1040px;
  width: 92.1875%;
  padding: 60px 0;
  margin-inline: auto;
}
.item_container,
.item_container_r{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.item_container_r{
  flex-direction: row-reverse;
}
.itembox02{width: 48%;}
.itembox03{width: 32%;}
.itembox04{width: 23%;}

.pc_case{display: block;}
.sp_case{display: none;}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .wrapper{
    padding: 30px 0;
    /* padding: 20px 10px; */
  }
  p{font-size: 1.6rem;}
  .pc_case{display: none;}
  .sp_case{display: block;}
  .itembox02,
  .itembox03,
  .itembox04{
    width: 100%;
  }
}

/* タイトル文字を飛ばす */
.visuall_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.title_img img{
  display: block;
  width: 90%;
  height: auto;
}

/* ==============================
    header
=============================== */
header{
  position: relative;
  height: 100%;
}
header::after{
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/head_yajirushi.svg) no-repeat;
  width: 30px;
  height: 50px;
}
header .pc_case,
header .sp_case{
  width: 100%;
  height: 100%;
  line-height: 0;
}
.head_logo{
  position: absolute;
  top: 10px;
  left: 20px;
  width: 260px;
  height: 80px;
}
.head_logo img{
  width: auto;
  max-width: 224px;
  height: 100%;
  max-height: 54px;
}

.head_btn{
  position: fixed;
  top: 2%;
  right: 30px;
  bottom: auto;
  display: flex;
  gap: 15px;
  align-items: center;
  max-width: 600px;
  width: 45%;
  z-index: 999;
}
.foot_btn{display: none;}
.head_btn_date,
.head_btn_mail{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  color: var(--color-wht);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 50px;
  margin: 0;
  padding: 0;
  transition: transform .3s ease;
}
.head_btn_date{
  background-image: linear-gradient(0deg, rgba(194, 31, 5, 1), rgba(235, 65, 37, 1));
}
.head_btn_mail{
  background-image: linear-gradient(0deg, rgba(46, 105, 27, 1), rgba(80, 175, 53, 1));
}
.head_btn_date:hover,
.head_btn_mail:hover{
  transform: translateY(-3px);
  filter: brightness(1.15);
}
/* .head_btn_date:hover{
  background-image: linear-gradient(0deg, #e74c3c, #ff7f66);
}
.head_btn_mail:hover{
  background-image: linear-gradient(0deg, #5dbd43, #89e66c);
} */
.head_btn_date::after,
.head_btn_mail::after{
  content: " → ";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  transition: transform .3s ease;
}
.head_btn_date:hover::after,
.head_btn_mail:hover::after{
  transform: translate(10px, -50%);
}

.head_btn_icon{
  width: 23px;
  height: 23px;
}
.head_btn_date:hover,
.head_btn_mail:hover{
  opacity: 0.95;
}

.head_man_left,
.head_man_right{
  position: absolute;
  bottom: -5px;
}
.head_man_left{
  left: 10%;
  width: 20%;
  max-width: 130px;
}
.head_man_right{
  right: 10%;
  width: 20%;
  max-width: 130px;
}

@media (max-width: 768px) {
  .head_btn {
    display: none;
/*    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;*/
  }
  .head_btn_date,
  .head_btn_mail{
    width: 50%;
    border-radius: 0;
    font-size: 1.4rem;
  }
  .head_btn_date::after,
  .head_btn_mail::after{
    right: 10px;
    font-size: 1.2rem;
  }
  .head_btn_icon{
    width: 16px;
    height: 16px;
  }

  .foot_btn{
    background: var(--bg-b);
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 15px 30px;
    z-index: 999;
  }
  .foot_btn p{
    color: var(--color-wht);
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .foot_btn .head_btn_tel,
  .foot_btn .head_btn_mail{
    display: inline-block;
    width: 300px;
    text-align: center;
    color: var(--color-wht);
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 70px;
    margin: 0;
    padding: 0;
  }
  .foot_btn .head_btn_tel{
    background: var(--bg-d);
  }
  .foot_btn .head_btn_mail{
    background: var(--bg-red);
  }
  .foot_btn .head_btn_tel,
  .foot_btn .head_btn_mail{
    width: 49%;
    border-radius: 3px;
    border: 1px solid #fff;
    font-size: 1.5rem;
    line-height: 40px;
  }
  .foot_btn .head_btn_tel{
    margin-right: 2%;
  }

}

/* ==============================
    共通
=============================== */
.bg_wht{
  background: var(--color-wht);
  padding: 40px;
}
.bg_grn{background: var(--color-grn);}
.bg_gry{background: #c7c7c8;}
.bg_yel{background: var(--color-yellow);}
.bg_lightgrn{
  background: rgba(0, 213, 71, .1);
}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.txt_c{text-align: center;}


/* ==============================
    graph
=============================== */
#graph{
  position: relative;
  background: url(../images/graph_bg.png) no-repeat top center /cover;
  width: 100%;
  min-height: 800px;
  padding-bottom: 40px;
  z-index: 10;
}
#graph .title_img img{
  margin-bottom: 20px;
}

/* 棒グラフ */
.chart_wrapper {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 20px;
}
.y_axis {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  text-align: right;
  font-size: 12px;
  color: #666;
}
.graph_left{
  position: relative;
}
.graph_left::before{
  content: "(百万円)";
  position: absolute;
  top: -15px;
  right: 0;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
}
.chart_container {
  display: flex;
  align-items: flex-end;
  height: 300px;
  gap: 8%;
  width: 100%;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  padding-left: 8%;
}
.bar {
  flex: 1;
  max-width: 8%;
  background: var(--color-grn);
  border-radius: 4px 4px 0 0;
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: growUp 1.5s ease-out forwards;
}

/* 各棒の高さ（data-valueから比率を計算） */
.bar:nth-child(1) { height: 73.56%; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 76.57%; animation-delay: 0.3s; }
.bar:nth-child(3) { height: 79.69%; animation-delay: 0.3s; }
.bar:nth-child(4) { height: 82.72%; animation-delay: 0.5s; }
.bar:nth-child(5) { height: 87.87%; animation-delay: 0.7s; }
.bar:nth-child(6) {
  position: relative;
  height: 91.78%;
  animation-delay: 0.9s;
  background: #ff9520;
}

@keyframes growUp {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
.bar::after,
.bar:nth-child(6)::after {
  content: attr(data-value);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-grn);
  font-weight: bold;
  font-size: 14px;
  opacity: 0;
  animation: fadeInLabel 1s ease-out 1.5s forwards;
}
.bar:nth-child(6)::after{
  color: var(--color-yellow);
}
.bar:nth-child(6)::before{
  content: "";
  background: url(../images/chosen_point.svg) no-repeat;
  position: absolute;
  top: -45px;
  right: -17px;
  width: 18px;
  height: 30px;
}

@keyframes fadeInLabel { to { opacity: 1; } }

.bar_label {
  position: absolute;
  top: 102%;
  /* bottom: -30px; */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
  width: max-content;
}

.graph_txt{
  font-size: 1.3rem;
  padding: 30px 30px 0;
}

@media (max-width: 768px) {
  #graph .title_img img{
    display: block;
    width: 100%;
    margin: 20px auto;
  }
  #graph .bg_wht{
    padding: 15px 0 0;
  }

  .chart_wrapper{
    gap: 5px;
    padding: 20px 5px;
  }
  .y_axis{
    font-size: 10px;
    height: 260px;
  }
  .chart_container{
    height: 260px;
    gap: 7%;
    padding-left: 2%;
  }
  .graph_txt{
    padding: 30px 20px 15px;
  }
  .graph_left::before {font-size: 10px;}
  .bar{
    max-width: 10%;
  }
  .bar_label{font-size: 0.7rem;}
  .bar::after,
  .bar:nth-child(6)::after {
    font-size: 12px;
  }
  .bar:nth-child(6)::before{
    top: -38px;
    width: 15px;
    height: 20px;
  }

}

/* ==============================
    お客様の声
=============================== */
#voice{
  background: #f4f4f4;
  padding: 60px 0;
  margin-top: -60px;
}
#voice h2 img{
  display: block;
  width: 80%;
  max-width: 630px;
  margin: 0 auto;
}
.customer-slider {
  width: 100%;
  margin: 0 auto;
}
.slide {
  background: #fff;
  padding: 20px;
  margin: 0 10px;
}
@media (max-width: 768px) {
  #voice{
    width: 100%;
    overflow: hidden;
  }
  #voice img{
    width: 100%;
  }
  .slide{margin: 0;}
}

/* ==============================
    選ばれる理由
=============================== */
.bg_pattern{
  background: url(../images/pattern_bg.webp) no-repeat top center / cover;
  padding-bottom: 100px;
}
#chosen h2 img{
  max-width: 880px;
  width: 90%;
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  #chosen h2 img{
    width: 100%;
    margin: 20px auto 40px;
  }
}
a.chosen_list{
  position: relative;
  display: block;
  width: 24%;
  background: var(--color-wht);
  border-radius: 10px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 15px;
}
a.chosen_list::before{
  content: "";
  position: absolute;
  right: 20px;
  bottom: 10px;
  background: url(../images/chosen_yajirushi.svg) no-repeat;
  width: 30px;
  height: 20px;
  transition: transform .3s ease;
}
a.chosen_list:hover{
  background: rgba(80, 175, 53, .2);
}
a.chosen_list:hover::before{
  transform: translateX(10px);
}

.chosen_list h3{
  color: var(--color-grn);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.chosen_list span{
  position: absolute;
  top: -18px;
  left: 10px;
  color: var(--color-yellow);
  font-family: var(--ff-en);
  font-size: 5.0rem;
  font-weight: 500;
}

/* chosen_box */
.chosen_item {
  display: flex;
  gap: 50px;
  margin-bottom: 100px;
}
.chosen_item:last-of-type{
  margin-bottom: 0;
}
/* 数字部分 */
.chosen_num {
  position: relative;
  width: 70px;
  text-align: center;
}
.chosen_num {
  color: var(--color-grn);
  text-align: center;
  font-family: var(--ff-en);
  font-size: 7.0rem;
  font-weight: bold;
  line-height: 1.0;
  margin-bottom: 10px;
}
/* 数字の下へ縦線を伸ばす */
.chosen_line {
  width: 2px;
  background: var(--color-grn);
  height: 100%;
  margin: 0 auto;
}

/* 右側テキスト */
.chosen_text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.6;
}
.chosen_textbox{
  width: 48%;
}
.title_chosen{
  color: var(--color-grn);
  text-align: left;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.title_chosen span{
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-wht);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 5px;
  margin-top: 5px;
}
.title_chosen span b{
  color: var(--color-yellow02);
}
.chosen_box_wht{
  position: relative;
  background: var(--color-wht);
  padding: 20px 60px;
}
ul.list_cheac{
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.list_cheac li{
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
  padding-left: 30px;
  margin-bottom: 5px;
}
ul.list_cheac li::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/icon_cheac.svg) no-repeat;
  width: 28px;
  height: 24px;
}

.chosen_box.wrapper{
  padding: 60px 50px 0;
}
#chosen01 .itembox02,
#chosen02 .itembox02,
#chosen03 .itembox02,
#chosen04 .itembox02,
#chosen05 .itembox02,
#chosen06 .itembox02,
#chosen07 .itembox02,
#chosen08 .itembox02{
  width: 48.5%;
}

/* #chosen01 */
#chosen01 .bg_wht{
  padding: 20px;
}
/* #chosen02 */
#chosen02 .chosen_box_wht{
  position: relative;
}
.chosen02_img{
  position: absolute;
  top: -60%;
  right: -5%;
  width: 50%;
  height: auto;
}
/* #chosen03 */
#chosen03 h4{
  position: relative;
}
.chosen03_img{
  position: absolute;
  top: -45%;
  right: 0;
  display: block;
  width: 45%;
  height: auto;
}
.chosen03_img_sp{display: none;}
#chosen03 .itembox03{
  position: relative;
  width: 32%;
}
.maru_grn{
  position: absolute;
  top: -15px;
  right: 10px;
  background: var(--color-grn);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-yellow);
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 8px;
}
/* #chosen04 */
#chosen04 .itembox05{
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
#chosen04 .itembox05 p{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
#chosen04 .itembox05 img{
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  margin-top: auto;
}
#chosen04 .chosen_box_wht{
  padding: 20px 30px;
}
#chosen04 .itembox02 img{
  display: block;
  margin: 10px auto;
}
.pd_lr30{
  padding: 0 30px;
}
.subtitle_rgb_grn{
  display: inline-block;
  /* display: flex;
  align-items: center;
  gap: 5px; */
  background: #69e4d0;
  color: var(--color-wht);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px;
  margin-bottom: 20px;
}
.equal {
  display: inline-block;
}
/* #chosen05 */
#chosen05 .bg_grn{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
#chosen05 .bg_grn img{
  display: block;
  width: 40%;
  height: auto;
}
.chosen05_why{
  position: absolute;
  top:0;
  left: 3%;
  display: inline-block;
  width: 50px;
  height: auto;
}
/* #chosen07 */
#chosen07 .itembox02{
  position: relative;
}
#chosen07 .itembox02 .item_container::after{
  content:"";
  display: block;
  width:32.333%;
}
#chosen07 .itembox03{
  width: 32.333%;
  background: var(--color-wht);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 5px;
  margin-bottom: 7px;
}
#chosen07 .itembox03 span{
  color: var(--color-grn);
  font-size: 3.2rem;
  font-weight: 700;
}
.chosen07_img{
  position: absolute;
  bottom: 0;
  right: -15%;
  width: 55%;
  height: auto;
}
/* #chosen08 */
#chosen08 .itembox02 img{
  display: block;
  margin-top: -50px;
}
.subtitle_chosen08{
  color: var(--color-grn);
  text-align: center;
  font-size: 4.6rem;
  font-weight: 500;
  margin: 80px auto 30px;
}
.dots {
  background-image: radial-gradient(circle at center, orange 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .4em;
}
.subtitle_chosen08 b{
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-wht);
  font-weight: 500;
  line-height: 1.2;
  padding: 3px 5px;
  margin-left: 5px;
}

/* table */
#chosen08 table{
  background: var(--color-wht);
  border-collapse: separate;
  border-spacing: 2px;
  width: 100%;
  margin-bottom: 30px;
}
#chosen08 table th,
#chosen08 table td{
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  vertical-align: middle;
  padding: 25px 10px;
}
#chosen08 table th{
  background: var(--color-primary);
  color: var(--color-wht);
  width: 25%;
}
#chosen08 table td{
  width: 25%;
}
#chosen08 table td.bg_grn{
  background: var(--color-grn);
  color: var(--color-yellow02);
}
#chosen08 table td.bg_gry{
  background: #c7c7c8;
}
#chosen08 table tr:not(:first-child) td {
  background: #eee;
  color: inherit;
}
#chosen08 table td span{
  color: var(--color-red);
}
/* table end */

#chosen08 .bg_yel{
  padding: 30px 80px;
}
#chosen08 h4{
  margin-bottom: 30px;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .bg_pattern{
  background: url(../images/pattern_bg_sp.gif) repeat-y top center / 100%;
  padding-bottom: 40px;
}
  #chosen h2 img{width: 100%;}
  .flow_left {
    display: none;
  }
  a.chosen_list{
    width: 49%;
    padding: 40px 10px;
  }
  .chosen_list h3{
    font-size: 1.8rem;
  }
  .chosen_list span{
    top: -15px;
    font-size: 4.0rem;
  }
  a.chosen_list::before{
    right: 10px;
    bottom: 5px;
  }

  .chosen_box.wrapper{
    padding: 40px 0 0;
  }
  #chosen01 .itembox02,
  #chosen02 .itembox02,
  #chosen03 .itembox02,
  #chosen04 .itembox02,
  #chosen05 .itembox02,
  #chosen06 .itembox02,
  #chosen07 .itembox02,
  #chosen08 .itembox02{
    width: 100%;
  }
  .chosen_left{display: none;}
  .chosen_textbox{
    width: 100%;
  }
  .title_chosen{
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .title_chosen span{font-size: 2.4rem;}
  .chosen_item{margin-bottom: 30px;}
/* #chosen02 */
  #chosen02 .chosen_box_wht{
    padding: 10px;
  }
  .chosen02_img{
    position: relative;
    display: block;
    width: 100%;
    margin: auto;
  }
/* #chosen03 */
.chosen03_img{display: none;}
  #chosen03 .itembox03{
    width: 90%;
    margin: 20px auto 0;
  }
  .maru_grn{
    right: -10px;
  }
  .chosen03_img_sp{
    display: block;
    width: 100%;
    height: auto;
    margin: 10px auto 0;
  }
/* #chosen04 */
  #chosen04 .itembox05{
    width: 45%;
  }
  #chosen04 .itembox05 img{
    width: 80%;
    margin: auto auto 0;
  }
  #chosen04 .chosen_box_wht{
    padding: 10px;
  }
  .subtitle_rgb_grn {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    font-size: 2.0rem;
  }
  .equal {
    transform: rotate(90deg);
    font-size: 2.0rem;
    line-height: 1;
  }
/* #chosen05 */
  #chosen05 .chosen_box_wht{
    padding: 20px 10px;
  }
  #chosen06 .title_chosen span.pc_case{
    padding: 5px 5px 5px 0;
    margin-left: -5px;
  }
/* #chosen07 */
  #chosen07 .itembox02{
    margin-bottom: 10px;
  }
  #chosen07 .itembox03{
    font-size: 1.8rem;
    padding: 5px;
  }
  .chosen07_img{
    bottom: 10%;
    right: -2%;
    width: 36%;
  }
/* #chosen08 */
  #chosen08 h4{
    margin-bottom: 10px;
  }
  #chosen08 h4 .sp_case img{
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  #chosen08 .itembox02 img{
    margin-top: 10px;
  }
  .subtitle_chosen08{
    font-size: 2.6rem;
  }
  #chosen08 table th,
  #chosen08 table td{
    font-size: 1.3rem;
    padding: 15px 0;
  }


  #chosen08 .bg_yel{
    padding: 30px 20px 0;
  }
  #chosen08 .bg_yel .itembox02{
    margin-bottom: 20px;
  }
}


/* ==============================
    CTA
=============================== */
.ctaArea{
  background: var(--color-grn);
}
.ctaArea h2{
  margin-bottom: 30px;
}
.ctaArea h2.title_cta02{
  color: var(--color-yellow02);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
}
.ctaArea h2.title_cta02 .pc_case{
  display: inline-block;
}
.ctaArea .item_container{
  width: 80%;
  margin: 0 auto;
}
.ctaArea .itembox02{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ctaArea .itembox02 a{
  margin-top: auto;
}
.subtitle_cta{
  color: var(--color-wht);
  text-align: center;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: auto;
}
.btn_red{
  position: relative;
  display: block;
  width: 80%;
  max-width: 360px;
  background: var(--color-red);
  color: var(--color-wht);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 60px;
  border-radius: 30px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}
.btn_red::after{
  content: "→";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: var(--color-wht);
  font-size: 2.0rem;
}
.btn_red:hover{
  background: var(--color-yellow);
}
@media (max-width: 768px) {
  .ctaArea h2.title_cta02{
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .ctaArea h2.title_cta02 .pc_case{
    display: none;
  }
  .ctaArea .item_container{
    width: 100%;
  }
  .subtitle_cta{
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .ctaArea .itembox02{
    margin-bottom: 20px;
  }
  .btn_red{
    width: 90%;
    font-size: 2.0rem;
  }
}


/* ==============================
    確かな理由
=============================== */
.bg_lightgrnArea{
  position: relative;
  background: rgba(0, 213, 71, .1);
  padding: 40px 0;
}
.bg_lightgrnArea::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -60px;
  height: 60px;
  width: 100%;
  clip-path: polygon(0 0,50% 100%,100% 0);
  background: rgba(0, 213, 71, .1);
}
#key_reasons h2{
  color: var(--color-grn);
  text-align: center;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
#key_reasons h2 span{
  background: var(--color-wht);
  display: inline-block;
  color: var(--color-primary);
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.4;
  padding: 2px 10px;
  margin-bottom: 5px;
}
#key_reasons h2 img{
  display: block;
  width: 90%;
  max-width: 340px;
}
#key_reasons .itembox02 .item_container .itembox02{
  border-radius: 20px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  padding: 40px 20px;
  margin-bottom: 20px;
}
#key_reasons .itembox02 .item_container .itembox02:nth-child(1),
#key_reasons .itembox02 .item_container .itembox02:nth-child(2),
#key_reasons .itembox02 .bg_wht:nth-child(1){
  min-height: 250px;
}
#key_reasons .itembox02 .item_container .itembox02:nth-child(3),
#key_reasons .itembox02 .item_container .itembox02:nth-child(4),
#key_reasons .itembox02 .bg_wht:nth-child(2){
  min-height: 210px;
}
#key_reasons .itembox02 .item_container .itembox02:last-child{
  background: var(--color-wht);
}
#key_reasons h3{
  color: var(--color-wht);
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.4;
}
#key_reasons h3 span{
  color: var(--color-yellow);
  font-family: var(--ff-en);
  font-size: 7.0rem;
  font-weight: 700;
  line-height: 1.2;
}
#key_reasons h3 span b{
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}
#key_reasons h3.title_key_s span{
  font-size: 4.8rem;
}
#key_reasons h3 b{
  font-size: 3.6rem;
  font-weight: 500;
}
#key_reasons h3 b.txt_s{
  font-size: 2.4rem!important;
}
#key_reasons p.txt_c{
  color: var(--color-wht);
  font-weight: 500;
}
.subtitle_key{
  color: var(--color-grn);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
}
#key_reasons h4,
#key_reasons .key_box h3.title_key_r{
  color: var(--color-grn);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}
#key_reasons .key_box h3.title_key_r{
  font-size: 4.8rem;
}
#key_reasons h4 span,
#key_reasons .key_box h3.title_key_r span{
  background: var(--color-yellow);
  color: var(--color-primary);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 2px 3px;
  margin: 5px auto;
}
#key_reasons .key_box h3.title_key_r span{
  display: block;
  color: var(--color-grn);
  font-weight: 700;
}

#key_reasons .bg_wht{
  border-radius: 20px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin-bottom: 20px;
}
.key_box{
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
}
.subtitle_grn{
  display: inline-block;
  background: var(--color-grn);
  color: var(--color-wht);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 3px 10px;
  margin-bottom: 5px;
}
.subtitle_grn span{
  color: var(--color-yellow);
}
ul.list_square{
  list-style: none;
  text-align: left;
  padding: 20px;
}
ul.list_square li{
  color: var(--color-grn);
  font-size: 2.4rem;
  font-weight: 500;
}
ul.list_square li::before{
  content: "■";
  font-size: 2.2rem;
  margin-right: 5px;
}

@media (max-width: 768px) {
  #key_reasons h2{
    font-size: 3.6rem;
  }
  #key_reasons h2 span{
    font-size: 2.0rem;
  }
  #key_reasons .itembox02 .item_container .itembox02:nth-child(1),
  #key_reasons .itembox02 .item_container .itembox02:nth-child(2),
  #key_reasons .itembox02 .bg_wht:nth-child(1),
  #key_reasons .itembox02 .item_container .itembox02:nth-child(3),
  #key_reasons .itembox02 .item_container .itembox02:nth-child(4),
  #key_reasons .itembox02 .bg_wht:nth-child(2){
    min-height: auto;
  }

  #key_reasons .itembox02 .item_container .itembox02{
    width: 48%;
    min-height: auto;
    padding: 20px 10px;
  }
  #key_reasons h3,
  .subtitle_key{
    font-size: 1.6rem;
  }
  #key_reasons h3 span{
    font-size: 4.8rem;
  }
  #key_reasons h3 span b{
    font-size: 2.4rem;
  }
  #key_reasons p.txt_c{
    font-size: 1.4rem;
  }
  #key_reasons h3.title_key_s span{
    font-size: 3.2rem;
  }
  #key_reasons h4,
  #key_reasons .key_box h3.title_key_r,
  #key_reasons h4 span,
  #key_reasons .key_box h3.title_key_r span{
    font-size: 2.4rem;
  }
  ul.list_square li{
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* ==============================
    安心のサービス
=============================== */
#service h2 img{
  display: block;
  width: 80%;
  margin: 0 auto 30px;
}
#service .itembox03{
  background: var(--color-wht);
  border: 2px solid var(--color-grn);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
#service .itembox03 h3{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: var(--color-grn);
  font-size: 3.2rem;
  line-height: 1.4;
  min-height: 2.5em;
  margin-bottom: 10px;
}
#service .itembox03 h3 span{
  font-size: 2.0rem;
}
#service .itembox03 img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  #service h2 img{
    width: 90%;
  }
  #service .itembox03{
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  #service .itembox03 h3{
    min-height: auto;
  }
}

/* ==============================
    サポート
=============================== */
#support{
  position: relative;
  margin-top: -50px;
  z-index: 3;
}
#support h2 img{
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 50px;
}
#support img{
  display: block;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #support img{
    width: 100%;
  }
}

/* ==============================
    よくある質問
=============================== */
.title_grn{
  color: var(--color-grn);
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.faq_box{
  background: rgba(0, 70, 47, .2);
  padding: 40px 50px;
  margin-bottom: 20px;
}

.faq_q,
.faq_a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.faq_q{
  margin-bottom: 20px;
}

/* 丸アイコン */
.faq_icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: var(--color-grn);
  color: var(--color-yellow02);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* A の色を変えたい場合 */
.faq_icon.a {
  background: var(--color-yellow);
  color: var(--color-grn);
}

.faq_text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .title_grn{
    font-size: 3.6rem;
    margin-bottom: 20px;
  }
  .faq_box{
    padding: 15px;
  }
}

/* ==============================
    footer
=============================== */
footer .item_container{
  align-items: center;
}
.title_fot{
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.subtitle_fot{
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.com_table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.com_table th{
  width: 15%;
  background: var(--color-grn);
  color: var(--color-wht);
  font-size: 1.7rem;
  font-weight: 500;
  padding: 5px 20px;
  vertical-align: middle;
  text-align: justify;
  text-align-last: justify;
  text-justify: distribute;
}
.com_table td{
  width: 85%;
  font-size: 1.7rem;
  line-height: 1.6;
  padding: 5px 20px;
}
.com_table td a:link,
.com_table td a:visited{
  color: var(--color-primary);
}
.com_table td p strong{
  font-size: 1.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .com_table th,
  .com_table td{
    font-size: 1.4rem;
    padding: 5px 10px;
  }
  .com_table th{
    width: 25%;
  }
  .com_table td{
    width: 75%;
  }
    .com_table td p{
    font-size: 1.4rem;
  }
  .com_table td p strong{
    font-size: 1.6rem;
  }
}

/* fotend */
#fotend .wrapper{
  width: 92.1875%;
  max-width: 720px;
  padding: 40px 0;
  margin: 0 auto;
}
.title_fotend{
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
#fotend a.itembox02,
#fotend a.itembox02:visited{
  background: var(--color-wht);
  border: 2px solid var(--color-grn);
  text-align: center;
  color: var(--color-grn);
  font-size: 1.8rem;
  line-height: 60px;
}
#fotend a.itembox02:hover{
  background: rgba(0, 213, 71, .1);
}
.copy{
  text-align: center;
  font-size: 1.4rem;
}


@media (max-width: 768px) {
  #fotend .wrapper{
    padding: 30px 0 70px;
  }
  .title_fotend{
    font-size: 1.8rem;
  }
  #fotend a.itembox02,
  #fotend a.itembox02:visited{
    margin-bottom: 10px;
  }
  #fotend item_container .mb30{
    margin-bottom: 10px;
  }
  .copy{
    padding-bottom: 80px;
  }
}
