@charset "utf-8";
#concept {
  padding: 50px 0;
}
#concept .main_title {
  padding: 0 20px;
}
#concept .kv_wrap {
  width: 100%;
  text-align: center;
}
#concept .kv_wrap img {
  width: 100%;
}
#concept p {
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  color: var(--mainColor);
}

#reason {
  overflow: clip;
}
#reason .cts_title {
  margin-bottom: 150px!important;
}
#reason .reason_box {
  position: relative;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
#reason .reason_box:last-of-type {
  margin-bottom: 60px;
}
#reason .reason_box:before {
  content: '';
  width: 100vw;
  height: 100%;
  background: #f0f0eb;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%,0);
}
#reason .reason_box.reverse:before {
  content: none;
}
#reason .reason_box .image {
  width: calc((100% - 40px)/2);
  text-align: right;
  position: relative;
  z-index: 3;
}
#reason .reason_box.reverse .image {
  text-align: left;
}
#reason .reason_box .image img {
  filter: drop-shadow(6px 6px 15px rgba(0, 0, 0, .2));
  transform: scale(1.2);
  transform-origin: center right;
}
#reason .reason_box.reverse .image img {
  transform-origin: center left;
}
#reason .reason_box .contents {
  width: calc((100% - 40px)/2);
  color: var(--mainColor);
  padding: 0 0 0 80px;
  position: relative;
  z-index: 3;
}
#reason .reason_box.reverse .contents {
  padding: 0 60px 0 0;
}
#reason .reason_box .contents h3 {
  position: relative;
  font-size: 28px;
  line-height: 1.6em;
  font-weight: 500;
  margin: 0 0 50px;
  z-index: 2;
}
#reason .reason_box .contents h3 .num {
  color: #897d55;
  font-size: 120px;
  line-height: 1em;
  font-weight: 600;
  position: absolute;
  left: -20px;
  bottom: 10px;
  opacity: .2;
  z-index: 1;
}
#reason .reason_box .contents p {
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
}


#suggestion .wrap {
  padding-bottom: 150px;
}
#suggestion .acc_wrap {
  width: 100%;
  border-top: 1px solid #cdcdcd;
  color: var(--mainColor);
}
#suggestion .acc_wrap:last-of-type {
  border-bottom: 1px solid #cdcdcd;
}
#suggestion .acc_wrap .acc_tab {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#suggestion .acc_wrap .acc_tab span.btn {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--mainColor);
  position: relative;
}
#suggestion .acc_wrap .acc_tab span.btn:before,
#suggestion .acc_wrap .acc_tab span.btn:after {
  content: '';
  width: 14px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: .3s;
}
#suggestion .acc_wrap .acc_tab span.btn:after {
  transform: translate(-50%,-50%) rotate(90deg);
  transform-origin: center;
}
#suggestion .acc_wrap .acc_tab.open span.btn:after {
  transform: translate(-50%,-50%) rotate(180deg);
}
#suggestion .acc_wrap .acc_cts {
  width: 100%;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
}
#suggestion .acc_wrap h3 {
  max-width: calc(100% - 60px);
}
#suggestion .acc_wrap .acc_cts h4 {
  width: 100%;
  background: #e1e1e1;
  padding: 5px 20px;
  margin: 0;
}
#suggestion .acc_wrap .acc_cts h5 {
  width: 100%;
  border-bottom: 1px solid #cdcdcd;
  padding: 10px 10px;
  margin: 0;
}
#suggestion .acc_wrap .acc_cts .inner {
  width: 100%;
  padding: 10px 10px 15px;
}

#flow .wrap {
  padding: 140px 0 100px;
}
#flow .flow_box {
  width: 100%;
}
#flow .flow_box th {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  background: #fafaf4;
  text-align: center;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  line-height: 1.4em;
  vertical-align: middle;
  position: relative;
  padding: 20px 30px;
  width: 260px;
}
#flow .flow_box th:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fafaf4;
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translate(-50%, 100%);
  z-index: 2;
}
#flow .flow_box th:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #000;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 100%);
  z-index: 1;
}
#flow .flow_box tr:last-child th:before,
#flow .flow_box tr:last-child th:after {
  content: none;
}
#flow .flow_box td {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  line-height: 1.4em;
  vertical-align: middle;
  position: relative;
  padding: 20px 30px;
}
#flow .flow_box td p {
  min-height: 40px;
  display: flex;
  align-items: center;
}


/* ========================================================================================================
   1349px以下
   ========================================================================================================*/
@media screen and (max-width: 1349px) {
}


/* ========================================================================================================
   999px以下
   ========================================================================================================*/
@media screen and (max-width: 999px) {
  #reason .cts_title {
    margin-bottom: 80px !important;
  }
  #reason .reason_box .contents,
  #reason .reason_box.reverse .contents {
    padding: 0;
  }
  #reason .reason_box .contents h3 .num {
    font-size: 80px;
    left: -10px;
  }
  #reason .reason_box .contents h3 {
    margin: 0 0 20px;
  }
  
}

/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #concept {
    padding: 50px 0 0;
  }
  #concept .wrap {
    padding: 30px 0;
  }
  #concept p {
    font-size: 12px;
  }
  #reason .wrap {
    padding-bottom: 0;
  }
  #reason .cts_title {
    margin-bottom: 50px !important;
  }
  #reason .reason_box {
    gap: 20px 0;
  }
  #reason .reason_box:last-of-type {
    margin-bottom: 0;
  }
  #reason .reason_box .image,
  #reason .reason_box.reverse .image {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }
  #reason .reason_box .image img {
    transform-origin: center;
    transform: translate(-35%, -30px) scale(1);
  }
  #reason .reason_box.reverse .image img {
    transform-origin: center;
    transform: translate(35%, -30px) scale(1);
  }
  #reason .reason_box .contents,
  #reason .reason_box.reverse .contents {
    padding: 0 0 50px 0;
    width: 100%;
  }
  #reason .reason_box:last-of-type .contents {
    padding: 0 0 30px 0;
  }
  #reason .reason_box .contents h3 {
    text-align: center;
    font-size: 21px;
  }
  #reason .reason_box .contents h3 .num {
    font-size: 60px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -30%);
  }
  #reason .reason_box .contents p {
    font-size: 12px;
  }
  #suggestion .wrap {
    padding-bottom: 60px;
  }
  #suggestion .acc_wrap .acc_tab span.btn {
    width: 35px;
    height: 35px;
    border-radius: 35px;
  }
  #suggestion .acc_wrap .acc_tab span.btn:before,
  #suggestion .acc_wrap .acc_tab span.btn:after {
    width: 10px;
  }
  #suggestion .acc_wrap .acc_tab {
    padding: 10px;
    font-size: 14px;
  }
  #suggestion .acc_wrap h3 {
    max-width: calc(100% - 45px);
  }
  #suggestion .acc_wrap .acc_cts {
    font-size: 12px;
  }
  #suggestion .acc_wrap .acc_cts h4 {
    padding: 5px 10px;
  }
  #suggestion .acc_wrap .acc_cts .sp_col_1 {
    gap: 0;
  }
  #suggestion .acc_wrap .acc_cts .sp_col_1 .col {
    display: flex;
    border-bottom: 1px solid #cdcdcd;
    padding: 10px
  }
  #suggestion .acc_wrap .acc_cts .sp_col_1 .col:last-of-type {
    border-bottom: none;
  }
  #suggestion .acc_wrap .acc_cts .sp_col_1 .col h5 {
    border-bottom: none;
    width: 40%;
    padding: 0;
  }
  #suggestion .acc_wrap .acc_cts .sp_col_1 .col .inner {
    width: 60%;
    padding: 0;
  }


  #flow .wrap {
    padding: 45px 0 50px;
  }
  #flow .flow_box tr th,
  #flow .flow_box tr td {
    display: block;
    width: 100%;
    border: 1px solid #000;
  }
  #flow .flow_box tr th {
    border: 1px solid #000;
    padding: 20px 15px;
    font-size: 12px;
  }
  #flow .flow_box tr td {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top: none;
    border-bottom: none;
    padding: 10px 15px;
    font-size: 12px;
  }
  #flow .flow_box tr:last-child td {
    border-bottom: 1px solid #000;
  }
  #flow .flow_box td:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #fff;
    position: absolute;
    left: 50%;
    bottom: 1px;
    transform: translate(-50%, 100%);
    z-index: 2;
  }
  #flow .flow_box td:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #000;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 100%);
    z-index: 1;
  }
  #flow .flow_box tr th:before,
  #flow .flow_box tr th:after,
  #flow .flow_box tr:last-child td:before,
  #flow .flow_box tr:last-child td:after {
    content: none;
  }
  
}
/* ========================================================================================================
   499px以下
   ========================================================================================================*/
@media screen and (max-width: 499px) {

}