@charset "UTF-8";

/* ------------------------------------------------------------
共通
-------------------------------------------------------------- */
.card {
  padding: 20px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 7px 7px 0px 0px rgba(255, 213, 154, 0.80);
}
.eng_title {
  color: #ffd59a;
}
/* セクションヘッダーの下線 */
.sec_header .text {
  position: relative;
}
.sec_header .text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3rem;
  width: 3rem;
  height: 3px;
  background-color: var(--subColor);
}
/* レスポンシブ：1000px以下では下線を非表示 */
@media screen and (width <= 1000px) {
  .sec_header .text::after {
    display: none;
  }
}

/* ------------------------------------------------------------
ヘッダー
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 144.2rem;
  margin: 0 auto;
  padding: 0 2rem;
}
/* ナビゲーション */
header .gnav {
  margin-left: auto;
}
header h1 img {
  width: 16.6rem;
}
header .gnav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  font-weight: bold;
}
header .gnav li {
  position: relative;
}
header .gnav li a {
  color: var(--txtColor);
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  font-weight: 700;
  text-decoration: none;
}
@media screen and (width <= 1000px) {
  header {
    height: clamp(5rem, 10vw, 7rem);
  }
  header h1 img {
    max-width: 16.6rem;
    width: auto;
    height: clamp(4rem, 8vw, 5rem);
  }
  header .header_inner {
    padding: 0 0 0 clamp(1rem, 5vw, 2rem);
  }
  header .gnav {
    display: none;
  }
}

/* ハンバーガーボタン */
.drawer_button {
  position: fixed;
  top: 0;
  right: 0;
  width: clamp(5rem, 10vw, 7rem);
  height: clamp(5rem, 10vw, 7rem);
  background-color: var(--pickupColor);
  border: none;
  cursor: pointer;
  z-index: 99999;
}
@media screen and (1001px <= width) {
  .drawer_button {
    display: none;
  }
}
.drawer_button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.6rem;
  height: 0.3rem;
  background-color: #fff;
  transform: translateX(-50%);
}
.drawer_button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.8rem));
  transition: transform 0.3s ease;
}
.drawer_button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer_button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.8rem));
  transition: transform 0.3s ease;
}
.drawer_button.active > span {
  background-color: #fff;
}
.drawer_button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer_button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer_button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* ハンバーガーメニュー展開後 */
body.active {
  height: 100%;
  overflow: hidden;
}
.drawer_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.3s ease;
  opacity: 0;
  padding: 0 !important;
  margin: 0 !important;
  visibility: hidden;
  z-index: 99995;
  background-color: var(--pickupColor);
}
.drawer_nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer_nav_inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer_nav.active .drawer_nav_inner {
  transform: translateX(0);
}
.drawer_nav_menu {
  list-style: none;
  padding-left: 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.drawer_nav_menu a {
  display: block;
  color: white;
  padding: 1rem 0;
  text-decoration: none;
}
.drawer_nav_link {
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 1rem 2rem;
  border-bottom: solid 1px white;
}

/* ------------------------------------------------------------
FV
-------------------------------------------------------------- */
#fv {
  margin-top: 7rem;
  background-color: var(--bgColordark);
  font-size: 0;
}
#fv .fv_visual{
  position: relative;
}
#fv .fv_list {
  position: absolute;
  left: clamp(6rem, 7.6vw, 11rem);
  bottom: clamp(-12rem, -8.3vw, -5rem);
  width: clamp(20rem, 38vw, 55rem);
}
#fv .fv_banner {
  display: flex;
  padding: 3rem 0;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
  gap: 2rem;
  background: linear-gradient(90deg, #600000 0%, #FC4300 50%, #600000 100%);
}
#fv .fv_banner img {
  width: 26%;
}
#fv .fv_banner img:nth-child(2) {
  width: 27.04%;
}

@media screen and (width <= 1000px) {
  #fv {
    margin-top: clamp(5rem, 10vw, 7rem);
  }
  #fv .fv_visual {
    padding-bottom: clamp(2rem, 10vw, 10rem);
    background-color: #fff3d9;
  }
  #fv .fv_list {
    position: absolute;
    left: 0;
    bottom: clamp(-23rem, -23vw, -5rem);
    width: 100%;
  }
  #fv .fv_banner {
    padding-top: clamp(6rem, 23vw, 23rem);
    flex-direction: column;
    align-items: center;
  }
  #fv .fv_banner img {
    width: 70%;
  }
  #fv .fv_banner img:nth-child(2) {
    width: 72.8%;
  }
  #fv .fv_banner img:nth-child(3) {
    width: 90%;
    max-width: 60rem;
  }
}

/* ------------------------------------------------------------
CONTACT
-------------------------------------------------------------- */
.contact_section {
  background-image: url(../img/contact_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 132, 0, 0.5);
  background-blend-mode: darken;
  color: #FFF;
  font-weight: 700;
  text-align: center;
}
.contact_section .contact_title {
  font-size: 3.2rem;
}
.contact_section .contact_subtitle {
  margin-top: 1rem;
  font-size: 2rem;
}
.contact_section .contact_card {
  width: 60rem;
  margin: 3rem auto;
}
.contact_section .header_area {
  border-radius: 5px 5px 0px 0px;
  background: var(--pickupColor);
  padding: 2rem;
  font-size: 1.6rem;
}
.contact_section .header_area span {
  font-size: 1.4rem;
  margin-top: 0.5em;
}
.contact_section .tel_area {
  font-size: 1.8rem;
  background-color: #fff;
  color: black;
  border-radius: 0px 0px 5px 5px;
}
.contact_section .tel_title {
  font-size: 2rem;
  padding: 1.5rem 0 1rem;
}
.contact_section .tel_number {
  color: var(--pickupColor);
  font-size: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  line-height: 1;
}
.contact_section .tel_number img {
  width: 3.7rem;
}
.contact_section .tel_time {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  padding-bottom: 1.5rem;
}
.contact_section .btns {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  height: 7rem;
}
.contact_section .btn_contact {
  color: #fff;
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 100vh;
  width: 48%;
  max-width: 29rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.contact_section .btn_contact.tel {
  background-color: var(--pickupColor);
}
.contact_section .btn_contact.line {
  background-color: #5ac463;
}

@media screen and (width <= 1000px) {
  .contact_section .contact_card {
    width: 100%;
    max-width: 60rem;
  }
  .contact_section .btns {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: auto;
  }
  .contact_section .btn_contact {
    width: 100%;
    max-width: 40rem;
    height: 7rem;
  }
}
@media screen and (width <= 600px) {
  .contact_section .header_area {
    font-size: clamp(1.2rem, 3.3vw, 1.6rem);
  }
  .contact_section .header_area span {
    font-size: clamp(1rem, 2.3vw, 1.4rem);
  }
  .contact_section .contact_title {
    font-size: clamp(2rem, 5.3vw, 3.2rem);
  }
  .contact_section .contact_subtitle {
    font-size: clamp(1.2rem, 3.3vw, 2rem);
  }
  .contact_section .tel_title {
    font-size: clamp(1.2rem, 3.3vw, 2rem);
  }
  .contact_section .tel_number {
    font-size: clamp(3rem, 8.7vw, 5.2rem);
  }
  .contact_section .tel_number img {
    width: clamp(2rem, 6.2vw, 3.7rem);
  }
}
@media screen and (width <= 450px) {
  .contact_section .btn_contact {
    font-size: 1.4rem;
    height: 5rem;
    width: 70%;
    padding: 1rem;
  }
}

/* ------------------------------------------------------------
ISSUE
-------------------------------------------------------------- */
#issue {
  background-color: #f4f4f4;
  text-align: center;
}
#issue .sec_header .text {
  color: var(--subColor);
  margin-bottom: 9rem;
}
#issue .sec_header .text span.partial_span {
  display: inline-block;
}
#issue .sec_header .text br.partial_br {
  display: none;
}
#issue .issue_list {
  display: flex;
  flex-wrap: wrap;
  margin: -1.5rem auto;
  flex-direction: row;
  justify-content: center;
}
#issue .issue_item {
  width: calc(33.333% - 3rem);
  margin: 1.5rem;
}
#issue .issue_item_text {
  padding: 1.5rem 0;
  font-weight: 700;
}
#issue .issue_item_text br.partial_br {
  display: none;
}

@media screen and (width <= 1000px) {
  #issue .sec_header .text {
    margin-bottom: 2rem;
  }
}
@media screen and (831px <= width <= 970px) {
  #issue .issue_item_text br.partial_br {
    display: block;
  }
}
@media screen and (width <= 830px) {
  #issue .issue_item {
    width: calc(50% - 3rem);
  }
}
@media screen and (width <= 650px) {
  #issue .issue_item {
    width: calc(100% - 3rem);
  }
}
@media screen and (width <= 540px) {
  #issue .sec_header .text br.partial_br {
    display: block;
  }
  #issue .sec_header .text span.partial_span {
    display: none;
  }
}

/* ------------------------------------------------------------
GUARANTEE
-------------------------------------------------------------- */
#guarantee {
  background-color: var(--bgColorlight);
  text-align: center;
}
#guarantee .sec_header .text {
  color: var(--subColor);
  margin-bottom: 4rem;
}
#guarantee .guarantee_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}
#guarantee .guarantee_item {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1%;
}
#guarantee .guarantee_item img {
  width: 32%;
}
@media screen and (width <= 850px) {
  #guarantee .guarantee_item {
    flex-direction: column;
    gap: 1rem;
  }
  #guarantee .guarantee_item img {
    width: 100%;
  }
}
#guarantee br.partial_br,
#guarantee br.partial_br_xs {
  display: none;
}
@media screen and (width <= 850px) {
  #guarantee br.partial_br {
    display: block;
  }
}
@media screen and (width <= 420px) {
  #guarantee br.partial_br_xs {
    display: block;
  }
}

/* ------------------------------------------------------------
BRAND
-------------------------------------------------------------- */
#brand {
  background-color: #f4f4f4;
  text-align: center;
}
#brand .sec_header .text {
  color: var(--subColor);
  margin-bottom: 9rem;
}
#brand .brand_list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
}
#brand .brand_item {
  width: calc(25% - 2.25rem);
}
#brand .brand_item_text {
  margin-bottom: 1.3rem;
  font-weight: 700;
}
#brand .brand_item_price {
  color: red;
  font-weight: 700;
}
#brand .brand_item_price .price_number {
  font-weight: 700;
}
@media screen and (width <= 850px) {
  #brand .brand_list {
    gap: 2rem;
    flex-wrap: wrap;
  }
  #brand .brand_item {
    width: calc(50% - 1rem);
  }
}
@media screen and (width <= 799px) {
  #brand .sec_header .text {
    margin-bottom: 3rem;
  }
}
@media screen and (width <= 450px) {
  #brand .brand_list {
    gap: 1rem;
  }
  #brand .brand_item {
    width: 100%;
  }
}

/* ------------------------------------------------------------
WORRY
-------------------------------------------------------------- */
#worry {
  background-color: white;
}
#worry .sec_header .text {
  color: var(--subColor);
  text-align: center;
  margin-bottom: 4rem;
}
#worry .worry_wrap {
  padding: 4rem 0 0 4rem;
  background-image: url(../img/worry_bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
#worry .worry_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  min-height: 48rem;
  padding-bottom: 4rem;
}
#worry .worry_item {
  background: rgba(255, 255, 255, 0.80);
  border-radius: 0.5rem;
  padding: 2rem;
}
#worry .worry_item_title {
  color: var(--subColor);
  font-weight: 700;
}
#worry .worry_item_text {
  font-weight: 500;
  margin-top: 1rem;
}
#worry .worry_answer {
  color: var(--subColor);
  text-align: center;
  font-weight: 700;
  background-color: var(--bgColorlight);
  padding: 3rem;
  border-radius: 5px;
  margin-top: 4rem;
}
@media screen and (width <= 1000px) {
  #worry .worry_wrap {
    padding: 4rem;
  }
  #worry .worry_list {
    padding-bottom: 0;
  }
  #worry .worry_pic {
    display: none;
  }
}

/* ------------------------------------------------------------
REASONS
-------------------------------------------------------------- */
#reasons {
  background: url(../img/reasons_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
#reasons .sec_header .text {
  color: var(--subColor);
  margin-bottom: 9rem;
}
#reasons .reasons_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 3rem;
  padding-top: 3rem;
}
#reasons .reasons_item {
  width: calc(33.333% - 2rem);
  text-align: left;
}
#reasons .reasons_item_img_wrap {
  position: relative;
}
#reasons .reasons_item_img_wrap img {
  width: 100%;
  display: block;
  border-radius: 0.5rem;
}
#reasons .reasons_item_img_wrap .img_number {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: var(--bgColordark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  z-index: 10;
}

#reasons .reasons_item_title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media screen and (width <= 1000px) {
  #reasons .sec_header .text {
    margin-bottom: 2rem;
  }
  #reasons .reasons_list {
    gap: 6rem 4rem;
  }
  #reasons .reasons_item {
    width: calc(50% - 2rem);
  }
  #reasons .reasons_item_img_wrap .img_number {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 6rem;
    height: 6rem;
    font-size: 2.5rem;
  }
}

@media screen and (width <= 600px) {
  #reasons .reasons_list {
    gap: 6rem 0;
  }

  #reasons .reasons_item {
    width: 100%;
    text-align: center;
  }

  #reasons .reasons_item_img_wrap {
    display: inline-block;
    padding: 1rem;
    width: 90%;
    max-width: 400px;
  }

  #reasons .reasons_item_img_wrap .img_number {
    top: -2rem;
    left: -2rem;
    width: 7rem;
    height: 7rem;
    font-size: 2.5rem;
  }

  #reasons .reasons_item_title,
  #reasons .reasons_item_text {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}

/* ------------------------------------------------------------
BANNER
-------------------------------------------------------------- */
.banner {
  display: flex;
  padding: 3rem 0;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(90deg, #600000 0%, #FC4300 50%, #600000 100%);
}
.banner .wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: flex-end;
}
.banner .wrap img {
  width: 26%;
}
.banner .wrap img:nth-child(2) {
  width: 26%;
}
.banner .wrap img:nth-child(3) {
  width: 35%;
  max-width: 50rem;
}

@media screen and (width <= 1000px) {
  .banner .wrap {
    flex-direction: column;
    align-items: center;
  }
  .banner .wrap img {
    width: 70%;
  }
  .banner .wrap img:nth-child(2) {
    width: 70%;
  }
  .banner .wrap img:nth-child(3) {
    width: 90%;
    max-width: 60rem;
  }
}

/* ------------------------------------------------------------
ITEMS
-------------------------------------------------------------- */
#items {
  background-color: white;
  text-align: center;
}
#items .sec_header .text {
  color: var(--subColor);
  margin-bottom: 9rem;
}
#items .items_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
#items .items_item {
  width: calc(33.333% - 2rem);
}
#items .items_item img {
  width: 100%;
}
#items .items_item_title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
#items .items_item_text {
  font-weight: 500;
  text-align: left;
}
#items .items_notice {
  margin-top: 6rem;
  padding: 2rem 0;
  width: 100%;
  text-align: center;
  background-color: #ffd59a;
  border-radius: 0.5rem;
}

@media screen and (width <= 1000px) {
  #items .sec_header .text {
    margin-bottom: 4rem;
  }
  #items .items_list {
    gap: 6rem 4rem;
  }
  #items .items_item {
    width: calc(50% - 2rem);
  }
  #items .items_notice {
    margin-top: 0;
  }
}
@media screen and (width <= 600px) {
  #items .items_list {
    gap: 6rem 0;
  }
  #items .items_item {
    width: 100%;
    text-align: center;
  }
  #items .items_item_img_wrap {
    display: inline-block;
    padding: 1rem;
    width: 90%;
    max-width: 400px;
  }
  #items .items_item_title,
  #items .items_item_text {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}

/* ------------------------------------------------------------
PROFESSIONAL
-------------------------------------------------------------- */
#professional {
  background-color: #f4f4f4;
  text-align: center;
}
#professional .sec_header .text {
  color: var(--subColor);
  margin-bottom: 9rem;
}
#professional .professional_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 9rem;
}
#professional .professional_item {
  width: calc(33.333% - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#professional .professional_item img {
  width: 100%;
  max-width: 16rem;
}
#professional .professional_item_title {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 213, 154, 0.50);
  width: auto;
  display: inline-block;
}
#professional .professional_item_text {
  text-align: left;
}
#professional .professional_notice .text_title_l {
  color: var(--subColor);
}
#professional .professional_notice_big_text {
  margin-top: 1rem;
}
@media screen and (width <= 1000px) {
  #professional .sec_header .text {
    margin-bottom: 4rem;
  }
}
@media screen and (width <= 830px) {
  #professional .professional_item {
    width: calc(50% - 2rem);
  }
}
@media screen and (width <= 500px) {
  #professional .professional_item {
    width: 100%;
  }
}

/* ------------------------------------------------------------
FLOW
-------------------------------------------------------------- */
#flow {
  background-color: white;
  text-align: center;
}
#flow .sec_header .text {
  color: var(--subColor);
  margin-bottom: 9rem;
}
#flow .flow_list {
  display: flex;
  justify-content: space-between;
  gap: 3rem;;
}
#flow .flow_item {
  width: calc(25% - 2.25rem);
  padding: 2rem;
  background-color: var(--bgColordark);
  position: relative;
  border-radius: 0.5rem;
}
#flow .flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: 2rem solid var(--bgColordark);
  z-index: 10;
}

#flow .flow_item_number {
  color: white;
}
#flow .flow_item_number span {
  font-size: clamp(2.6rem, 5.7vw, 4rem);
}

#flow .flow_item_img_wrap {
  width: 15rem;
  height: 15rem;
  margin: 1.5rem auto;
}
#flow .flow_item_title {
  padding: 0.5rem;
  background-color: white;
  display: inline-block;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}
#flow .flow_item_text {
  text-align: left;
}

@media screen and (width <= 850px) {
  #flow .sec_header .text {
    margin-bottom: 4rem;
  }
  #flow .flow_list {
    flex-direction: column;
    gap: 4rem;
  }

  #flow .flow_item {
    width: 100%;
    max-width: 45rem;
    margin: 0 auto;
  }
  #flow .flow_item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-top: 2rem solid var(--bgColordark);
    border-bottom: none;
  }
}

/* ------------------------------------------------------------
VOICE
-------------------------------------------------------------- */
#voice {
  background-color: var(--bgColorlight);
  background-image: url(../img/voice_bg_pc.png);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  text-align: center;
}
#voice .sec_header .text {
  color: var(--subColor);
  margin-bottom: 8rem;
}
#voice .sp_pic {
  margin-top: 6rem;
}
#voice .sp_pic img {
  width: 100%;
}
#voice .voice_list {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 3rem;
}
#voice .voice_item {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 80rem;
}
#voice .voice_item_img_wrap {
  flex: 0 0 16rem;
  width: 16rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#voice .voice_item_text_wrap {
  flex: 1 1 0;
  text-align: left;
  min-width: 0;
}
#voice .voice_item_title {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 213, 154, 0.50);
  width: auto;
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media screen and (width <= 1200px) {
  #voice .voice_item {
    width: 67%;
    margin-right: 2rem;
  }
}
@media screen and (width <= 1000px) {
  #voice .voice_item {
    margin-right: 0;
  }
}
@media screen and (width <= 850px) {
  #voice {
    background-image: none;
  }
  #voice .sec_header .text {
    margin-bottom: 4rem;
  }
  #voice .voice_item {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #voice .voice_item_img_wrap {
    flex: 0 0 23rem;
    width: 23rem;
    height: 23rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #voice .voice_item_title {
    display: table;
    margin: 0 auto 1.5rem;
  }
}

/* ------------------------------------------------------------
FAQ
-------------------------------------------------------------- */
#faq {
  background-color: #f4f4f4;
}
#faq .sec_header {
  color: var(--subColor);
  margin-bottom: 9rem;
  text-align: center;
}
#faq .sec_header .text {
  color: var(--subColor);
  margin-bottom: 9rem;
}
#faq .faq_dl {
  max-width: 95rem;
}
#faq .faq_dl .inner:not(:last-child) {
  margin-bottom: 3rem;
}
#faq .faq_dl dt {
  padding: 2.5rem 4rem 2.5rem 7.5rem;
  position: relative;
  cursor: pointer;
  background-color: var(--bgColordark);
  border-radius: 0.5rem;
  line-height: 1.6;
}
#faq .faq_dl dd {
  display: none;
  background-color: white;
  padding: 2.5rem 2.5rem 2.5rem 7.5rem;
  line-height: 1.6;
  position: relative;
  border-radius: 0.5rem;
}
#faq .faq_dl dd a {
  color: #fff;
}
#faq .faq_dl dd a:hover {
  text-decoration: none;
}
/* アイコン */
#faq .faq_dl dt::before,
#faq .faq_dl dd::before {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  color: var(--subColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 3.5rem;
  width: 3.5rem;
  background-color: white;
}
#faq .faq_dl dt::before {
  content: "Q";
  font-size: 2.2rem;
  line-height: 0.8;
  padding-bottom: 0.2rem;
}
#faq .faq_dl dd:before {
  content: "A";
  font-size: 2.4rem;
  border: 1px solid var(--bgColordark);
  box-sizing: border-box;
}

/* ボタン */
#faq .faq_dl .btn {
  position: absolute;
  top: 50%;
  margin-top: -1rem;
  right: 2.5rem;
}
#faq .faq_dl .btn span {
  display: block;
  position: relative;
  width: 2rem;
  height: 2rem;
}
#faq .faq_dl .btn span::before,
#faq .faq_dl .btn span::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 0.2rem;
  background-color: black;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
#faq .faq_dl .btn span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
#faq .faq_dl dt.highlight .btn span::before {
  opacity: 0;
}
#faq .faq_dl dt.highlight .btn span::after {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (width <= 1000px) {
  #faq .sec_header .text {
    margin-bottom: 4rem;
  }
  #faq .faq_dl {
    max-width: 100%;
  }
}
@media screen and (width <= 550px) {
  #faq .faq_dl dt,
  #faq .faq_dl dd {
    padding: 1.5rem 3rem 1.5rem 5.3rem;
  }
  #faq .faq_dl dt::before,
  #faq .faq_dl dd::before {
    left: 1.8rem;
    height: 2rem;
    width: 2rem;
  }
  #faq .faq_dl dt::before {
    font-size: 1.5rem;
  }
  #faq .faq_dl dd::before {
    font-size: 1.8rem;
  }
  #faq .faq_dl .btn {
    margin-top: -1rem;
    right: 1.5rem;
  }
}

/* ------------------------------------------------------------
FOOTER
-------------------------------------------------------------- */
footer {
  background-color: white;
}
footer .footer_pic {
  padding: 6rem 6rem 0 6rem;
  margin: 0 auto;
  max-width: 80rem;
}
footer .footer_wrap {
  display: flex;
  margin: 0 auto;
  padding: 5rem 10%;
  max-width: 120rem;
  justify-content: space-between;
  align-items: flex-start;
}
footer .footer_logo img {
  max-width: 249px;
}

footer .footer_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}
footer .footer_text_title {
  font-size: 1.8rem;
  font-weight: 700;
}
footer .footer_text_content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
footer .footer_text_content div {
  font-size: 1.6rem;
}
footer .footer_copyright {
  text-align: center;
  font-size: 1.3rem;
  padding: 2rem 0;
  border-top: 1px solid #afafaf;
}

@media screen and (width <= 1000px) {
  footer .footer_pic {
    padding: 4rem 2rem 0;
  }
  footer .footer_wrap {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
  }
}
@media screen and (width <= 600px) {
  footer .footer_pic {
    padding: 4rem 0 0;
  }
}
@media screen and (width <= 500px) {
  footer .footer_text_content {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* ------------------------------------------------------------
FLOATING BANNER
-------------------------------------------------------------- */
.cta_tel {
  position: fixed;
  bottom: 10px;
  right: 10px;
  max-width: 370px;
  filter: drop-shadow(5px 5px 0 rgb(0, 0, 0, 0.15));
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .cta_tel {
  bottom: 5px;
  right: 5px;
  max-width: 290px;
  filter: drop-shadow(4px 4px 0 rgb(0, 0, 0, 0.15));
}
}
@media screen and (min-width: 1920px) {
  .cta_tel {
    left: 50%;
    transform: translateX(600px);
  }
}