@charset "UTF-8";

/* set variables */
:root {
  --mainColor: #d19100;
  --subColor: #BB0015;
  --pickupColor: #bb0115;
  --darkColor: #bb0115;
  --navColor: ;
  --bgColorlight: #f5f5f5;
  --bgColordark: #000;
  --rightColor: #f7e6ac;
  --txtColor: #2e2722;
  --linkColor: #fff;
  --borderColor: #f1d57f;

  --textNormal: 16px;
  --textMiddle: 18px;
  --textMiddle2: 20px;
  --textBig: 24px;
  --textLarge: 30px;
  --textSmall: 14px;

  --gap: 60px;
  --gaps: 30px;
  --gap_sp: 30px;
  --sectionPadding: 100px;
  --sectionPadding_sp: 3rem;
  --contentWidth: 1000px;
  --innerWidth: 1010px;
  --innerWidth_s: 900px;
}
body {
  font-size: 10px;
  color: var(--txtColor);
  font-weight: 500;
  background-color: #fff;
  text-align: justify;
}
body#lp {
  font-family: "Noto Serif JP", serif;
}
body#form {
  font-family: "Noto Sans JP", sans-serif;
}
.font_sans {
  font-family: "Noto Sans JP", sans-serif ;
}
.font_serif {
  font-family: "Noto Serif JP", serif ;
}
p {
  line-height: 1.8;
}
h2,
h3,
p {
  margin-top: 0;
  margin-bottom: 0;
}
.p_center {
  text-align: center;
}
.p_bold {
  font-weight: 900;
}
.p_bolder {
  font-weight: 900;
}
.m_bold {
  font-weight: 600;
}
.p_left {
  text-align: justify;
}
.p_right {
  text-align: right;
}
.br-sp {
  display: none;
}
a {
  color: var(--linkColor);
  transition: 0.3s;
}
a:hover {
  color: #999999;
}
a img {
  transition: 0.2s;
}
a:hover img {
  opacity: 0.6;
}
.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  width: 0;
}
.flt_right {
  float: right;
}
.flt_left {
  float: left;
}
.img_right {
  float: right;
}
.img_left {
  float: left;
  margin-right: var(--gap);
}
.p_white {
  color: #fff;
}

#main img {
  max-width: 100%;
}

/* PC . SP 切り替え */
@media screen and (max-width: 600px) {
  .sp_none {
    display: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .sp_left {
    text-align: justify !important;
  }
}
@media screen and (min-width: 601px) {
  .pc_none {
    display: none;
  }
}

.wrap {
  width: 100%;
  max-width: var(--contentWidth);
  margin-left: auto;
  margin-right: auto;
}
.wrap_s {
  width: 100%;
  max-width: var(--innerWidth);
  margin-left: auto;
  margin-right: auto;
}
.wrap_ss {
  width: 100%;
  max-width: var(--innerWidth_s);
  margin-left: auto;
  margin-right: auto;
}
.mt_0 {
  margin-top: 0 !important;
}
.mt_10 {
  margin-top: 1rem;
}
.mt_20 {
  margin-top: 2rem;
}
.mt_30 {
  margin-top: 3rem;
}
.mt_40 {
  margin-top: 4rem;
}
.mt_50 {
  margin-top: 5rem;
}
.mt_100 {
  margin-top: 10rem;
}
.mb_0 {
  margin-bottom: 0 !important;
}
.mb_10 {
  margin-bottom: 1rem;
}
.mb_20 {
  margin-bottom: 2rem;
}
.mb_30 {
  margin-bottom: 3rem;
}
.mb_40 {
  margin-bottom: 4rem;
}
.mb_50 {
  margin-bottom: 5rem;
}
.mb_70 {
  margin-bottom: 7rem;
}
.mb_100 {
  margin-bottom: 10rem;
}
.p12 {
  font-size: 12px;
  line-height: 200%;
}
.p14 {
  font-size: 14px;
  line-height: 200%;
}
.p15 {
  font-size: 15px;
  line-height: 200%;
}
.p16 {
  font-size: 16px;
  line-height: 200%;
}
.p18 {
  font-size: 18px;
  line-height: 200%;
}
.p20 {
  font-size: 20px;
  line-height: 200%;
}
.p22 {
  font-size: 22px;
  line-height: 200%;
}
.p24 {
  font-size: 24px;
  line-height: 200%;
}
.p26 {
  font-size: 24px;
  line-height: 200%;
}
.p26 {
  font-size: 26px;
  line-height: 200%;
}
.p28 {
  font-size: 28px;
  line-height: 200%;
}
.p30 {
  font-size: 30px;
  line-height: 200%;
}
.p35 {
  font-size: 35px;
  line-height: 200%;
}
.p38 {
  font-size: 38px;
  line-height: 150%;
}
.p40 {
  font-size: 40px;
  line-height: 150%;
}
.p50 {
  font-size: 50px;
  line-height: 150%;
}
.p60 {
  font-size: 60px;
  line-height: 100%;
}
.p_light {
  color: var(--rightColor);
}
.p_subcolor {
  color: var(--subColor) !important;
}
.p_maincolor {
  color: var(--mainColor);
}
.p_lightcolor {
  color: var(--rightColor);
}
.sec_padding {
  padding-top: var(--sectionPadding);
  padding-bottom: var(--sectionPadding);
}
@media (max-width: 600px) {
  .sec_padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.bg_light {
  background-color: var(--bgColorlight);
}
.bg_dark {
  background-color: var(--bgColordark);
}
.bg_white {
  background-color: #fff;
}

@media screen and (max-width: 999px) {
  .wrap {
    width: auto;
    max-width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  #contact .wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .wrap_s {
    width: auto;
    max-width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  #faq .wrap_s {
    margin-left: auto;
    margin-right: auto;
  }
  .wrap_ss {
    width: auto;
    max-width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  #access .wrap_ss {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1040px) {
  #contact .wrap {
    margin-left: 20px;
    margin-right: 20px;
  }
  #faq .wrap_s {
    margin-left: 20px;
    margin-right: 20px;
  }
  #access .wrap_ss {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 800px) {
  .p16 {
    font-size: 14px;
    line-height: 200%;
  }
  .p20,
  .p18 {
    font-size: 16px;
    line-height: 200%;
  }
  .p26,
  .p24,
  .p22,
  .p28 {
    font-size: 18px;
    line-height: 200%;
  }
  .p30,
  .p35,
  .p40 {
    font-size: 20px;
  }
  .p38,
  .p50 {
    font-size: 5vw;
  }
  .mb_50 {
    margin-bottom: 2rem;
  }
  .mt_30 {
    margin-top: 1rem;
  }
  .mb_30,
  .mb_20 {
    margin-bottom: 1rem;
  }
  .img_left {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  .pb_30{
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .wrap {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
  }
  .p16, .p18, .p20, .p22, .p24, .p26, .p28 {
    line-height: 180%!important;
  }
  .mt_10 {
    margin-top: 0.7rem!important;
  }
  .mt_20, .mt_30, .mt_40, .mt_50 {
    margin-top: 1rem!important;
  }
  .mt_70, .mt_100 {
    margin-top: 2rem!important;
  }
  .mb_10 {
    margin-bottom: 0.7rem!important;
  }
  .mb_20, .mb_30, .mb_40, .mb_50 {
    margin-bottom: 1rem!important;
  }
  .mb_70, .mb_100  {
    margin-bottom: 2rem!important;
  }
  section#benefits,
  section#worries {
    padding-bottom: 30px!important;
  }
}

/* ハンバーガーボタンのデザイン */
@media screen and (min-width: 1001px) {
  .drawer__button {
    display: none;
  }
}
.drawer__button {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: var(--darkColor);
  border: none;
  cursor: pointer;
  z-index: 99999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  background-color: #fff;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.3rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.3rem));
  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:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.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(--subColor);
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px;
  overflow: auto;
  overflow-y: scroll;
  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: #fff;
  padding: 10px 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;
}
/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .drawer__nav__menu {
    font-size: 6vw;
  }
}

/* ヘッダー */
#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  /* padding: 40px 50px; */
  padding: 20px 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  box-sizing: border-box;
}
#header .gnav {
  margin-left: auto;
}
#header .gnav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  font-weight: bold;
}
#header .gnav li {
  position: relative;
}
#header .gnav li::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: url(../img/zznb_gnav_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 19px auto;
  transition: opacity 0.3s ease;
  transform: rotateY(0deg);
}
#header .gnav a {
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: inline-block; /* transformを効かせるために必要 */
  transform: scale(1);
  filter: brightness(1);
}

#header .gnav a:hover {
  filter: brightness(1.2) drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

#header .gnav li:hover::after {
  opacity: 1;
  animation: spin 1.2s linear infinite;
}

/* ナビゲーションの回転アニメーション */
@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* キービジュアル */
#kv {
  background-color: #000;
  max-height: 980px;
  position: relative;
  z-index: 2;
}
#kv .kv_wrap {
  position: relative;
  line-height: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  height: 980px;
}
#kv .kv_wrap h2 {
  height: 100%;
  position: relative;
}
#kv .kv_wrap h2 img {
  height: 787px;
  object-fit: cover;
}
#kv .kv_wrap h2.sp_kv {
  display: none;
}
#kv .kv_wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1426px;
  height: 100%;
  background-image: url(../img/zznb_kv_txt.png);
  background-position: bottom center;
  background-size: 95% auto;
  background-repeat: no-repeat;
  z-index: 3;
}
#kv .ranking_list_wrap {
  position: absolute;
  top: 670px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: var(--innerWidth);
  margin-left: auto;
  margin-right: auto;
  z-index: 4;
}
#kv .ranking_list {
  list-style: none;
  line-height: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #kv .ranking_list {
    gap: 0;
  }
}
@media screen and (max-width: 900px) {
  #kv {
    height: 100%;
    max-height: none;
    position: relative;
  }
  #kv .kv_wrap {
    height: auto;
    padding-bottom: 20px;
    flex-direction: column;
  }
  #kv .kv_wrap::after {
    content: "";
    background: none;
  }
  #kv .kv_wrap h2.pc_kv {
    display: none;
  }
  #kv .kv_wrap h2.sp_kv {
    display: block;
  }
  #kv .kv_wrap h2 {
    width: 100%;
    max-width: 900px;
    max-height: 100%;
    height: auto;
  }
  #kv .kv_wrap h2 img {
    width: 100%;
    min-width: 320px;
    height: auto;
    max-height: 100%;
    max-width: 900px;
  }
  #kv .ranking_list_wrap {
    position: static;
    margin-top: -60px;
  }
  #kv .ranking_list_wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1426px;
    height: 260px;
    background-image: url(../img/zznb_kv_txt.png);
    background-position: center top;
    background-size: 95% auto;
    background-repeat: no-repeat;
    z-index: 3;
  }
  .p
  #kv .ranking_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 30px 15px 0;
    position: relative;
    z-index: 4;
    box-sizing: border-box;
  }
  #kv .ranking_list li {
    width: 33.33%;
    max-width: 100%;
  }
}

/* スライダー */
section#img-slider .slider {
  position: relative;
}
section#img-slider .slider-img {
  width: 280px;
  margin: 0 10px; /* チラ見せ用に左右に隙間 */
  background-color: #fff;
  overflow: hidden;
  position: relative; /* 疑似要素の基準点として設定 */
}
section#img-slider .slider-img img {
  width: 100%;
  display: block;
}
@media (max-width: 600px) {
  section#img-slider .slider-img {
    width: 50vw; /* スマホでは画面の50% */
    margin: 0 1vw;
  }
}

/* 特典 */
section#benefits{
  background-image: url(../img/zznb_benefits_bg.jpg);
  background-position: center center;
  background-size: contain;
  background-repeat: repeat-y;
  padding-bottom: var(--sectionPadding);
}
section#worries{
  background-image: url(../img/worries_back.png) , url(../img/zznb_benefits_bg.jpg);
  background-position: bottom center , center center;
  background-size: contain;
  background-repeat: no-repeat , repeat-y;
  padding-bottom: var(--sectionPadding);
}
section#benefits .benefits_bg {
  background-image: url(../img/zznb_benefits_head_bg_02.png) , url(../img/zznb_benefits_head_bg.jpg) ;
  background-position: bottom center , top center;
  background-size: cover , 100%;
  background-repeat: no-repeat;
  width: 100%;
  text-align: center;
  padding: 70px 0;
}
section#benefits h3 {
  width: 100%;
  text-align: center;
}
section#benefits h3 img {
  width: 100%;
  max-width: 500px;
}
section#benefits h4,
section#benefits h5 {
  text-align: center;
  color: var(--darkColor);
}
section#benefits h5 {
  line-height: 1.5;
}
section#benefits .benefits_text{
  font-size: 17px;
}
section#benefits .benefits_box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
section#benefits .benefits_box .benefits_box_inner {
  width: calc((100% - 60px) / 3); /* 3列の場合、ギャップ(30px)×2を引いて3等分 */
}
section#benefits .benefits_box .item_02 .p24 {
  line-height: 1.8;
}
section#benefits .benefits_box .item_02 .p18,
section#benefits .benefits_box .item_04 .p24,
section#benefits .benefits_box .item_05 .p24 {
  line-height: 1.5;
}
section#benefits .benefits_top a {
  color: #fff;
  text-decoration: none;
}
.harf_list{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
.harf_list_01{
  gap: 30px;
}
.benefits_wrap{
  width: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1));
  padding: 50px;
  margin-bottom: 30px;
}
.benefits_no{
  position: relative;
}
.benefits_no .benefits_no_img{
  position: absolute;
  top: -40px;
  left: 20px;
  width: 80px;
}
.harf_list .benefits_list_img{
  width: 309px;
}
.harf_list .benefits_list_img .benefits_img{
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.2);
}
.harf_list .benefits_list_text {
  width: calc(100% - 339px);
}


@media screen and (max-width: 768px) {
#worries .red-belt {
  text-align: center;
  color: #fff;
  padding: 15px;
  margin: 20px calc(50% - 50vw);
  background-image: linear-gradient(90deg, rgba(94, 1, 11, 1), rgba(152, 1, 18, 1) 25%, rgba(187, 1, 22, 1) 50%, rgba(167, 1, 20, 1) 75%, rgba(94, 1, 11, 1));
  text-shadow: 0 0 15px #000;
  font-weight: 600;
}
#worries .red-belt h2,
#worries .red-belt p {
  color: #fff!important;
  margin-top: 0!important;
  margin-bottom: 0!important;
}
#worries ul li {
  position: relative;
}
#worries ul li .caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: calc(100% - 20px)!important;
  padding: 10px;
  margin: 0 10px 10px;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  z-index: 1;
}
#worries .border_box {
  border-top: 0;
  padding-top: 0!important;
}
#worries .border_box ul {
  position: relative;
}
#worries .border_box ul li.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px)!important;
  padding: 10px;
  margin: 0 10px 10px;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  z-index: 1;
}
#worries .border_box ul li.caption .mb_10 {
  margin-bottom: 0!important;
}

}
 

@media screen and (max-width: 500px) {
  .benefits_no .benefits_no_img {
    top: -30px;
    left: 10px;
    width: 60px;
}
}
@media screen and (max-width: 600px) {
  section#worries{
          padding-bottom: 40px;
      }
  section#benefits .benefits_bg {
    padding: 20px 0;
  }
  section#benefits .benefits_text{
    font-size: 3vw;
  }
}

@media screen and (max-width: 900px) {
  section#benefits {
    padding-bottom: 40px;
  }
  .benefits_wrap{
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1));
    padding: 20px;
  }
  .harf_list_01 , .harf_list_02 , .harf_list_03{
    flex-direction: column;
    gap: 20px;
  }
  .harf_list li{
  width: 100% !important;
  }
  .harf_list_03 .wide , .harf_list_03 .slim{
    width: 100% !important;
}
  section#benefits .item_logo img{
    width: 300px;
  }
  section#benefits h3 img {
    width: 100%;
    max-width: 400px;
}
}

@media screen and (max-width: 768px) {
  #worries .harf_list li img {
    width: 100%;
  }

  #worries .harf_list_01,
  #worries .harf_list_02,
  #worries .harf_list_03 {
    flex-direction: column;
    gap: 20px!important;
  }
  #worries .harf_list_03 .slim {
    aspect-ratio: 1 / 1; /* または 1.865 */
    width: 100%; /* または任意の幅 */
    overflow: hidden;
    position: relative;
  }
   #worries .harf_list_03 .slim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .border_box {
    border-top: 1px solid #000;
    border-bottom: 0!important;
    padding: 20px 0 0!important;
    margin: 20px 0 0 0!important;
  }
  #benefits .harf_list_01,
  #benefits .harf_list_02,
  #benefits .harf_list_03 {
    flex-direction: row;
    gap: 15px!important;
  }
  #benefits .harf_list li {
    width: calc(50% - 10px)!important;
  }
  #benefits .benefits_wrap {
    background-image: none;
    padding: 0;
  }
  #benefits .benefits_wrap:last-child {
    margin-bottom: 0;
  }
  #benefits .benefits_no .benefits_no_img {
    top: -25px;
    left: 10px;
    width: 50px;
  }
  #benefits .benefits_top {
    padding: 15px 20px 10px;
  }
   #benefits .benefits_top .mb_10 {
    margin-bottom: 0.3rem !important;
  }
  #benefits .benefits_top img {
    max-width: 25px;
    margin: -10px auto 0;
  }
}


@media screen and (max-width: 600px) {
  section#benefits .item_logo img{
    width: 60%;
  }
  section#benefits h3 img {
    width: 100%;
    max-width: 80%;
}
}


@media screen and (max-width: 1000px) {
  section#benefits .benefits_box {
    gap: 0;
  }
  section#benefits .benefits_box .benefits_box_inner {
    width: 50%;
  }
  section#benefits .benefits_box .benefits_box_inner .pc {
    display: none;
  }
  section#benefits .item_02,
  section#benefits .item_03,
  section#benefits .item_04,
  section#benefits .item_05 {
    width: 100%!important;
  }
  section#benefits .item_02 img,
  section#benefits .item_03 img,
  section#benefits .item_04 img,
  section#benefits .item_05 img {
    display: none;
  }
  section#benefits .item_02,
  section#benefits .item_05 {
    margin-top: 1rem;
  }
}
.benefits_top{
  text-align: center;
  color: #fff;
  padding: 30px 20px;
  background-image: linear-gradient(90deg, rgba(94, 1, 11, 1), rgba(152, 1, 18, 1) 25%, rgba(187, 1, 22, 1) 50%, rgba(167, 1, 20, 1) 75%, rgba(94, 1, 11, 1));
  text-shadow: 0 0 15px #000;
  font-weight: 600;
}
section#benefits .benefits_top_text{
  font-size: 24px;
}
@media screen and (max-width: 500px) {
  section#benefits .benefits_top_text{
    font-size: 4.7vw;
  }
}
/* 悩み */
.harf_list li {
  width: calc((100% - 50px) / 2);
}
.harf_list_02{
  gap: 30px;
}
.harf_list_03 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: flex-start;
  width: 100%;
}
.harf_list_03 .wide {
  width: calc(100% - 341px);
}
.harf_list_03 .slim {
  width: 311px;
}
.border_box {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 30px 0;
  margin: 30px 0 0 0;
}
.worries_title_height{
  min-height: 4.4rem;
}
@media screen and (max-width: 900px) {
  .worries_title_height{
    min-height: auto;
  }
}
/* 商品 */
section#item {
  background-image: url(../img/zznb_item_bg.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #efefef;
}
section#item .item_inner {
  width: 100%;
  max-width: 1000px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #fff;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 2);
}
section#item .item_inner .item_logo {
  width: 247px;
  margin-bottom: 20px;
}
section#item h3{
  margin-top: 0!important;
  height: 120px!important;
  padding-top: 20px;
}
section#item #recommend-item h3 {
  line-height: 1;
  gap: 0;
}
section#item h3.item_01_bg{
  background-image: url(../img/zznb_item01_txt_bg.png)!important;
}
section#item h3.item_03_bg{
  background-image: url(../img/zznb_item03_txt_bg.png)!important;
}
section#item h3.item_04_bg{
  background-image: url(../img/zznb_item04_txt_bg.png)!important;
}
section#item h3.item_05_bg{
  background-image: url(../img/zznb_item05_txt_bg.png)!important;
}
section#item .item_inner h3.shadow , section#item .item_inner p.shadow{
  position: relative;
  color: #fff;
  text-shadow: 2px 2px 15px rgb(0, 0, 0, 0.2), -2px 2px 15px rgb(0, 0, 0, 0.2), 2px -2px 15px rgb(0, 0, 0, 0.2), -2px -2px 15px rgb(0, 0, 0, 0.2);
}
section#item .item_inner h3 img {
  position: absolute;
  bottom: 33px;
  left: 50%;
  transform: translateX(-50%);
}
section#item #limited-item,
section#item #limited-item.opened {
  background-image: url(../img/zznb_limited_head_open.jpg);
}
section#item #recommend-item, section#item #recommend-frame,
section#item #recommend-item.opened, section#item #recommend-mattress, section#item #recommend-frame.opened {
  background-image: url(../img/zznb_recommend_head_open.jpg);
}
section#item .hidden_inner {
  background-color: transparent;
  margin-top: 160px;
  padding: 20px 20px 40px;
}
section#item .hidden_inner .img_wrap.hidden {
  transition-duration: 0.01s;
}
section#item .hidden_inner .img_wrap {
  opacity: 1;
  transition-duration: 0.5s;
}
section#item .btn_wrap {
  padding: 30px 0 50px;
}
section#item div.opened .btn_wrap {
  padding: 20px 0;
}
section#item #limited-item.opened .btn_wrap {
  background: linear-gradient(to bottom, #f1d57f 0%, #816305 100%);
}
section#item #recommend-item.opened .btn_wrap , section#item #recommend-mattress.opened .btn_wrap , section#item #recommend-frame.opened .btn_wrap{
  background: linear-gradient(to bottom, #bb0116 0%, #5e010b 100%);
}
section#item .btn_more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(145deg, #a06a1a 0%, #4d220a 100%);
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  width: 252px;
  height: 64px;
  padding-left: 32px;
  border-radius: 32px;
  font-size: 18px;
  margin: 0 auto;
}
section#item .btn_more:hover {
  background: linear-gradient(145deg, #b67a2a 0%, #5d321a 100%);
  color: #f7f7f7;
}
section#item .btn_more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 32px;
  border: 4px solid transparent;
  background: linear-gradient(145deg, #4d220a 0%, #a06a1a 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
section#item .btn_more:hover::before {
  background: linear-gradient(145deg, #5d321a 0%, #b67a2a 100%) border-box border-box;
}
section#item .btn_more::after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: normal;
  line-height: 1;
  pointer-events: none;
}
section#item div.opened .btn_more::after {
  content: "-";
  top: 45%;
  vertical-align: middle;
}
section#item div.opened .btn_more {
  justify-content: center;
  padding-left: 0;
}
section#item .btn_more:active {
  filter: brightness(0.95);
}
#recommend-mattress .hidden_inner {
  display: block !important; /* 常に表示 */
}
#recommend-mattress .img_wrap {
  display: block !important; /* 非表示にならないように */
}
@media screen and (max-width: 768px) {
  section#item h3{
    padding-top: 10px;
  }
  section#item .item_inner {
    padding: 2rem 0.7rem 0;
  }
  section#item .item_inner .item_logo {
    width: 60%;
    margin-bottom: 0!important;
  }
  section#item .hidden_inner {
    padding: 20px 0;
  }
  section#item .btn_wrap {
    padding: 20px 0 30px!important;
  }
  section#item #limited-item,
  section#item #limited-item.opened,
  section#item #recommend-frame,
  section#item #recommend-frame.opened,
  section#item #recommend-mattress,
  section#item #recommend-mattress.opened {
    background-position: top -160px center!important;
  }
  section#item #recommend-item,
  section#item #recommend-item.opened {
    background-position: top -130px center!important;
  }
  section#item .hidden_inner {
    margin-top: 50px;
  }
  section#item #recommend-item.opened .btn_wrap,
  section#item #recommend-mattress.opened .btn_wrap,
  section#item #recommend-frame.opened .btn_wrap {
    margin: 0 -20px;
    background: linear-gradient(to bottom, #bb0116 0%, #5e010b 100%);
  }
}

@media (max-width: 600px) {
  section#item .item_inner .item_logo {
    width: 50%;
    margin-bottom: 0;
  }
  section#item #recommend-mattress h3,
  section#item #recommend-frame h3 {
    height: 80px !important;
  }
  section#item #recommend-item h3 {
    height: 110px !important;
  }
  section#item .item_inner h3 img {
    bottom: 20px;
  }
  section#item .btn_more {
    width: 180px;
    height: 48px;
    padding-left: 24px;
    border-radius: 24px;
    font-size: 12px;
    margin: 0 auto;
  }
  section#item .btn_wrap {
    padding: 40px 0 20px;
  }
  section#item .btn_more::before {
    border-radius: 24px;
    border: 2px solid transparent;
  }
  section#item .btn_more::after {
    right: 15px;
    font-size: 24px;
  }
  section#item .item_inner h3 img {
    width: 1.8rem;
  }
}

/* ご利用者の声 */
section#voice {
  background-image: url(../img/zznb_voice_bg.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: var(--darkColor);
}
section#voice h3  , section#item h3{
  color: #fff;
  background-image: url(../img/zznb_voice_txt_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  height: 83px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  margin-top: -40px;
}
section#voice h3 img {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
section#voice .voice_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  list-style: none;
  width: 100%;
}
section#voice .voice_list li {
  background-color: #fff;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.2);
  padding: 30px 50px;
  display: flex;
  gap: 50px;
  align-items: center;
}
section#voice .voice_list .left {
  width: 210px;
}
section#voice .voice_list .right {
  flex: 1;
}
@media screen and (max-width: 600px) {
  section#voice h3 {
    justify-content: center;
  }
  section#voice h3 img {
    width: 1.8rem;
  }
  section#voice .voice_list {
    gap: 20px;
  }
  section#voice .voice_list li {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  }
}

/* よくある質問 */
section#faq {
  background-image: url(../img/zznb_faq_bg.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #f8f1d5;
}
section#faq h3{
  color: #2e2722;
  background-image: url(../img/zznb_faq_txt_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  height: 109px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: -40px;
  padding-bottom: 10px;
}
section#faq h3 img {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
section#faq .faq_dl .inner {
  margin-top: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
  background-color: #fff;
}
section#faq .faq_dl dt {
  padding: 1rem 4rem 1rem 4rem;
  position: relative;
  cursor: pointer;
  color: #fff;
  background-color: var(--darkColor);
}
section#faq .faq_dl dt::before {
  content: "Q";
  display: block;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  font-size: 25px;
  line-height: 30px;
  margin-top: -18px;
  color: #fff;
  font-weight: bold;
  font-family: "Noto Serif JP", sans-serif;
}
section#faq .faq_dl .btn {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 1.5rem;
}
section#faq .faq_dl .btn span {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}
section#faq .faq_dl .btn span::before,
section#faq .faq_dl .btn span::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
section#faq .faq_dl .btn span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
section#faq .faq_dl dt.highlight .btn span::before {
  opacity: 0;
}
section#faq .faq_dl dt.highlight .btn span::after {
  transform: translateY(-50%) rotate(180deg);
}
section#faq .faq_dl dd {
  display: none;
  background-color: var(--bgColorlight);
  font-size: 80%;
  padding: 1rem 2rem;
  line-height: 180%;
  font-weight: 500;
}
section#faq .faq_dl dd a {
  color: #fff;
}
section#faq .faq_dl dd a:hover {
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  section#faq h3 {
    justify-content: center;
  }
  section#faq h3 img {
    width: 1.8rem;
  }
}




@media screen and (max-width: 768px) {
  section#faq .faq_dl dt {
    padding: 0.7rem 3rem;
  }
  section#faq .faq_dl dd {
    padding: 0.7rem 1rem;
  }
  section#faq .faq_dl dt::before {
    left: 1rem;
    top: 50%;
    font-size: 20px;
    line-height: 30px;
    margin-top: -18px;
  }
  section#faq .faq_dl .btn {
    right: 1rem;
  }
}

@media screen and (max-width: 850px) {
  section#faq .faq_dl .inner {
    margin-top: 10px;
  }
}

/* アクセス */
section#access .access_kv {
  position: relative;
  line-height: 0;
}
section#access .access_kv .bg {
  position: relative;
  z-index: 1;
}
section#access .box {
  padding: 30px;
}
section#access .access_kv h3 {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  margin-top: -100px;
  z-index: 3;
}
section#access .googlemap {
  position: relative;
  width: 100%;
  height: 550px;
}
section#access .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  section#access .googlemap {
    padding-bottom: 56.25%; /* 16:9 = 9 / 16 = 0.5625 → 56.25% */
    height: 0;
    overflow: hidden;
  }
}
section#access .phone_wrap {
  margin: 55px auto 50px;
}
section#access .phone_wrap .italic {
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  color: #bb0015;
  font-size: 50px;
}
section#access .phone_wrap .italic .tel {
  font-size: 35px;
}
section#access .address_wrap img {
  max-width: 200px;
  width: 50%;
}
section#access .address_wrap .detail {
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  section#access .access_kv .bg {
    display: none;
  }
  section#access .access_kv {
    background-image: url(../img/zznb_access_header_bg_sp.jpg);
    background-position: center center;
    background-size: cover;
    height: 400px;
  }
  section#access .access_kv h3 {
    margin-top: -67px;
  }
  section#access .access_kv h3 img {
    width: 280px;
  }
  section#access .pad_20 {
    padding: 1rem;
  }
  section#access .phone_wrap {
    margin: 20px auto;
  }
  section#access .phone_wrap .italic {
    font-size: 40px;
    line-height: 1.3;
  }
  section#access .phone_wrap .italic .tel {
    font-size: 30px;
  }
}

/* フッター */
#footer {
  text-align: center;
  padding: 30px 0 70px;
  background-color: var(--darkColor);
  color: #fff;
}
@media screen and (max-width: 600px) {
  #footer {
    padding-top: 30px;
  }
}

/* フォーム */

.sec_contact {
  background-image: url(../img/zznb_item_bg.png);
  background-position: top center;
  background-size: contain;
  background-color: #efefef;
  padding: 70px 0 30px;
}
.contact_wrap {
  position: relative;
  padding: 20px;
  z-index: 1;
  max-width: 1000px;
}
.contact_wrap::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  width: 230px;
  height: 210px;
  background-image: url(../img/zznb_form_txt_bg.png);
  background-position: right bottom;
  background-size: 100% auto;
  bottom: -1px;
  right: 0;
}
#contact .contact_wrap::after {
  display: none;
}
.contact_wrap .inner {
  padding: 50px 20px;
  z-index: 1;
}
.contact_wrap h2 {
  background-image: url(../img/zznb_form_txt_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px;
  position: relative;
}
.contact_wrap h2 img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1268px) {
  #header {
    gap: 20px;
    padding: 30px 30px;
  }
  #header .gnav ul {
    gap: 15px;
    font-size: 15px !important;
  }
}
@media screen and (max-width: 1000px) {
  /* #header .gnav {
    display: none;
  } */
  #header .gnav ul {
    display: none;
  }
  .contact_wrap h2 {
    background-size: contain;
  }
  .sec_contact {
    padding: 50px 0 30px;
  }
  .contact_wrap::after {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .contact_wrap h2 img {
    width: 1.5rem;
  }
  #header {
    padding: 20px;
  }
  #header h1 img {
    width: 150px;
    height: auto;
  }
  .mt_20 {
    margin-top: 10px;
  }
  .mt_40,
  .mt_50 {
    margin-top: 30px;
  }
  .sec_contact {
    padding: 50px 0 30px;
  }
  .contact_wrap {
    padding: 5px;
  }
  .contact_wrap .inner {
    padding: 20px;
  }
  .contact_wrap::before {
    width: 100px;
    height: 100px;
    background-position: left top;
    background-size: 100% auto;
    top: -18px;
    left: -20px;
  }
  .contact_wrap::after {
    display: none;
  }
  .contact_wrap .contact_btn a {
    padding: 10px 20px;
  }
  .contact_wrap h2 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

#form_wrap {
  font-size: 16px;
}
#form_wrap .check input,
#form_wrap .radio input {
  margin-right: 5px;
}
#form_wrap .contact_txt {
  text-align: center;
}
#form_wrap .footer_bottom {
  padding-bottom: 20px !important;
}
#form_wrap h3 {
  text-align: center;
  margin-bottom: 20px;
}
.privacy_wrap {
  text-align: justify;
  background-color: #ffffff;
  height: 200px;
  overflow: auto;
  overflow-y: scroll;
  overflow-x: auto;
  padding: 45px 35px;
}
.error-message {
  list-style: none;
  padding: 1rem;
}
.form span.form_required {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  height: 23px;
  font-size: 0.8rem;
  color: #fff;
  padding: 3px 7px;
  background-color: #bb0115;
  border-radius: 2px;
  margin-left: 8px;
}
input[type="submit"] {
  border: 0;
  box-shadow: 0;
}
input[type="button"] {
  border: 0;
  box-shadow: 0;
}
.form div.validation-error {
  display: block;
  color: #d00303;
  text-align: left;
  padding: 5px 0;
  width: 100%;
  font-size: 0.9rem;
}
.form .error-message {
  background-color: #efefef;
  color: #d00303;
}
#form_wrap input,
#form_wrap textarea,
#form_wrap select {
  background-color: #fff;
}
#form_wrap .btn_wrap input{
  background-color: #d70019;
}
#header_contact {
  text-align: center;
  padding: 50px;
  margin: 0 20px;
}
#header_contact h1 {
  line-height: 0;
  margin: 0;
}
#privacy-check input{
  margin-right: 10px;
}
#form_wrap .btn_wrap {
  padding: 60px 0 50px;
}
#form_wrap .btn_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(145deg, #BB0116 0%, #4D0109 100%);
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  width: 252px;
  height: 64px;
  border-radius: 32px;
  font-size: 15px;
  margin: 0 auto 10px;
}
#form_wrap .btn_submit:hover {
  background: linear-gradient(145deg, #d70019 0%, #8b0110 100%);
  color: #f7f7f7;
}
#form_wrap .btn_submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 32px;
  border: 4px solid transparent;
  background: linear-gradient(145deg, #4D0109 0%, #BB0116 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
#form_wrap .btn_submit:hover::before {
  background: linear-gradient(145deg, #8b0110 0%, #d70019 100%) border-box border-box;
}
#form_wrap .btn_submit:active {
  filter: brightness(0.95);
}
#form_wrap #privacy-check label {
  justify-content: center;
  width: 100%;
}

select.is_empty {
  color: gray;
}

.form .input {
  display: flex;
  /* flex-direction: column; */
  flex-direction: center;
  width: 100%;
}


/* media query : desktop
---------------------------------------------*/
@media screen and (min-width: 768px) {
  .form {
    margin: 0 auto;
  }
  .form form {
    margin-top: 50px;
  }
  .form .input-wrap {
    display: flex;
    padding-bottom: 25px;
  }
  .form .input-wrap:first-of-type {
    padding-top: 25px;
  }
  .form .input-wrap label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: justify;
    width: 210px;
    padding: 0 15px 0 0;
    box-sizing: border-box;
  }
  .form .input-wrap div.input {
    display: flex;
    flex: 1;
    padding: 0 0 0 15px;
    box-sizing: border-box;
  }
  .form .input-wrap div.input input::placeholder {
    font-size: 1rem;
  }
  .form .input-wrap div.input > input,
  .form .input-wrap div.input > textarea {
    width: 100%;
    font-size: 1rem;
    padding: 18px;
    box-sizing: border-box;
  }
  .form .input-wrap div.input div {
    display: flex;
    width: 33.33%;
  }
  .form .input-wrap div.input div.validation-error {
    width: 100%;
  }
  .form .a_column.input-wrap div.input div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .form .privacy_02 .input-wrap div.input div {
    width: 100%;
    align-items: center;
  }
  .form .input-wrap div.input select {
    width: 100%;
    font-size: 1rem;
    padding: 18px;
    box-sizing: border-box;
  }
  .form .input-wrap div.input select option {
    padding: 3px 7px;
  }
  .form dl.confirm {
    display: flex !important;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  .form dl.confirm dt,
  .form dl.confirm dd {
    padding: 35px 15px;
    border-bottom: 1px solid #e3e3e3;
    box-sizing: border-box !important;
    margin-left: 0 !important;
  }
  .form dl.confirm dt:first-of-type,
  .form dl.confirm dd:first-of-type {
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }
  .form dl.confirm dt {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 25%;
    box-sizing: border-box !important;
  }
  .form dl.confirm dd {
    width: 75%;
    box-sizing: border-box !important;
    margin-left: 0 !important;
  }
  .form .form-submit_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .form.complete .content {
    max-width: 780px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .form .return_button {
    margin-top: 50px;
  }
  .form .return_button a {
    color: #fff;
  }
}

/* media query : mobile
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .sp_mr {
    margin-top: 10px !important;
  }
  .form {
    width: auto;
    box-sizing: border-box;
  }
  .form .title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vw;
    height: 220px;
    text-align: center;
    margin: 0 calc(50% - 50vw) 50px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .form .title:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/property-intro_title_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom 30%;
    z-index: -1;
  }
  .form .title h2 {
    font-size: 1.9rem;
    margin-bottom: 0;
  }
  .form form {
    margin-top: 30px;
  }
  .form .input-wrap {
    margin-bottom: 20px;
  }
  .form .input-wrap:first-of-type {
    padding-top: 20px;
  }
  .form .input-wrap label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: justify;
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  .form .input-wrap label .required {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 21px;
    font-size: 0.8rem;
    color: #fff;
    padding: 3px 7px;
    background-color: #bb0115;
    border-radius: 2px;
  }
  .form .input-wrap div.input {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }
  .form .input-wrap div.input input::placeholder {
    font-size: 1rem;
  }
  .form .input-wrap div.input > input,
  .form .input-wrap div.input > textarea {
    width: 100%;
    font-size: 1rem;
    padding: 15px;
    box-sizing: border-box;
  }
  .form .input-wrap div.input div {
    display: flex;
    width: 100%;
    /* justify-content: center; */
    align-items: center;
  }
  .form .input-wrap div.input div.validation-error {
    justify-content: flex-start;
  }
  .form .privacy_02 .input-wrap div.input div {
    width: 100% !important;
  }
  .form .input-wrap div.input select {
    width: 100%;
    font-size: 1rem;
    padding: 15px;
    box-sizing: border-box;
  }
  .form .input-wrap div.input select option {
    padding: 3px 7px;
  }
  .form .form-submit_button {
    margin-top: 40px;
  }
  .form .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 59px;
    font-size: 1rem;
    color: #fff;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 0 !important;
    background-color: #d70019;
    filter: drop-shadow(0 5px 0 rgb(128, 0, 15, 1));
    border: 0;
  }

  .form dl.confirm {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box !important;
    margin-top: 30px;
  }
  .form dl.confirm dt,
  .form dl.confirm dd {
    display: flex;
    box-sizing: border-box !important;
    margin: 0 !important;
    flex-wrap: wrap;
    padding: 25px 0;
    border-bottom: 1px solid #e3e3e3;
    box-sizing: border-box;
  }
  .form dl.confirm dt:first-of-type,
  .form dl.confirm dd:first-of-type {
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }
  .form dl.confirm dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    box-sizing: border-box;
  }
  .form dl.confirm dd {
    width: 70%;
    padding-left: 15px;
    box-sizing: border-box;
    margin-left: 0 !important;
  }
  .form .form-submit_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .form p.form-submit_button .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 7.5px);
    height: 59px;
    font-size: 1rem;
    color: #fff;
    border-radius: 10px;
    background-color: #d70019;
    filter: drop-shadow(0 5px 0 rgb(128, 0, 15, 1));
  }
  dd {
    margin-inline-start: 0 !important;
  }

  .form.complete .content {
    max-width: 780px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .form .return_button {
    margin-top: 40px;
  }
  .form .return_button a {
    color: #fff;
  }
  #form_wrap .btn_wrap {
    padding: 10px 0;
  }
  .privacy_wrap {
    margin-top: 30px;
  }
}


/* cv
---------------------------------------------*/
@media screen and (max-width: 768px) {
  #header .gnav ul.gnav-cv {
    display: flex!important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    margin: 0!important;
    gap: 5px;
    z-index: 999;
  }
  #header .gnav ul.gnav-cv li {
    width: 50%;
    text-align: center;
    background-color: #D9B43F;
  }
  #header .gnav ul.gnav-cv li a {
    display: block;
  }
  #header .gnav ul.gnav-cv li img {
    height: 60px;
  }
  #header .gnav li::after {
    display: none;
  }


}
@media screen and (min-width: 768px) {
  #header .gnav {
    height: 65px;
    margin-left: auto;
    display: flex;
    align-items: center;
  }
  #header .gnav ul li {
    height: 43px;
  }
  #header .gnav ul.gnav-cv {
    max-width: 450px;
    gap: 10px;
    margin-left: 30px;
  }
  #header .gnav ul.gnav-cv li {
    height: auto;
    width: calc(50% - 5px);
  }
  #header .gnav ul.gnav-cv li::after {
    display: none;
  }
  #header .gnav ul.gnav-cv li img {
    width: 200px;
    height: 65px;
    vertical-align: top;
    object-fit: cover;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 1200px) {
    #header .gnav ul.gnav-cv li img {
    width: 160px;
    height: 65px;
    vertical-align: top;
    object-fit: cover;
  }
  #header .gnav ul.gnav-cv {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1000px) {
  #header .gnav ul {
    display: none;
  }
}

