:root {
  --base: #3e3a39;
  --base2: #2c3138;
  --base3: #3E3C3C;
  --white: #ffffff;
  --light: #f6f5f4;
  --gray: #efecec;
  --pink: #C2185B;
  --yellow: #fbcb00;
  --red: #d63a5;
  --green: #5ed5bf;
}

* {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--base);
  background: #d7d3d1;
  line-height: 1.6;
  display: flex;
  justify-content: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.kv_title img,
.cta_area img,
.cta_bnr img {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.site_wrap {
  width: 500px;
  max-width: 100%;
  background: var(--white);
  overflow: clip;
  position: relative;
}

.section_inner {
  width: calc(100% - 48px);
  margin: 0 auto;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: var(--base2);
  border-bottom: 1px solid #3c434d;
}

.header_inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 0;
}

footer .copyright {
  background: #2c3138;
  padding: 20px 0;
  text-align: center;
  font-size: 10px;
  color: #fff;
}

.kv {
  position: relative;
  min-height: 646px;
  padding-top: 52px;
  background: var(--base2);
}

.kv_inner {
  position: relative;
  color: var(--white);
  padding-top: 88px;
}
.kv_title {
  line-height: 0;
}
.kv .note {
  padding-bottom: 20px;
}

.cta_area {
  margin-top: -16px;
  line-height: 0;
  position: relative;
}
.cta_area .cta_bnr a {
  top: 65px;
  height: 110px;
}
.note {
  padding: 10px 20px;
}
.note li {
  color: var(--white);
  font-size: 12px;
  line-height: 1.7;
  text-indent: -1em;
  padding-left: 1em;
}

.cta_float {
  background: rgba(0,0,0,0.2);
  width: 600px;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  line-height: 1;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cta_float img {
  width: 100%;
}
.cta_float a {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100px;
  overflow: hidden;
  text-indent: -1000px;
}
.cta_float a:nth-of-type(2) {
  left: auto;
  right: 0;
}
.safe_area {
  background: #f4f4f4;
  padding-bottom: 20px;
}

.section_title {
  width: 100%;
  text-align: center;
}

.section_text {
  font-size: 12px;
  font-weight: 500;
}

.safe_box {
  width: calc(100% -  48px);
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.safe_card {
  width: calc(50% - 10px);
  min-height: 161px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.safe_card:nth-child(1):after,
.safe_card:nth-child(3):after {
  content: "";
  display: block;
  height: calc(100% - 12px);
  border-right: 1px solid #1F2329;
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
}
.safe_card:nth-child(3):after {
  transform: translateY(calc(-50% - 10px));
}
.safe_card:nth-child(2):after {
  content: "";
  display: block;
  width: calc(100%);
  border-bottom: 1px solid #1F2329;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.safe_card:nth-child(3):before {
  content: "";
  display: block;
  width: calc(100% - 12px);
  border-top: 1px solid #1F2329;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.safe_card .icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safe_card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--pink);
  height: 40px;
}

.cta_bnr {
  line-height: 0;
  position: relative;
  z-index: 1;
}
.cta_bnr a {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  width: 50%;
  height: 120px;
  overflow: hidden;
  text-indent: -1000px;
}
.cta_bnr a:nth-of-type(2) {
  left: auto;
  right: 0;
}

.cta_bnr .note {
  background: var(--base2);;
}

.safe_card h3 small {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 8px;
  color: var(--base);
}

.flow_area {
  background: #EFECEC;
  padding: 0 0 40px;
}
.flow_area h2 {
  margin-bottom: 30px;
}

.lead_icon {
  margin-bottom: 10px;
}

.figure {
  margin-top: 20px;
}
.figure img {
  width: 100%;
}

.flow_step {
  width: 100%;
  background: var(--white);
  border: 1px solid #e3dfde;
  border-radius: 8px;
  padding: 12px 16px;
}

.flow_mark {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.flow_mark span {
  font-size: 28px;
  margin-left: 4px;
}

.flow_step p:last-child {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.facility_area {
  background: var(--base) url(../img/bg_facility.png) repeat-y center top / cover;
  color: var(--white);
  padding: 40px 10px 20px;
}

.facility_title {
  margin-bottom: 20px;
  text-align: center;
}
.facility_title img {
  max-width: 256px;
}
.facility_title + p {
  font-weight: 700;
}
.machine_nav {
  display: flex;
  gap: 4px;
  margin-top: 20px;
}

.tab_btn {
  width: calc((100% - 3px) / 4);
  border: 3px solid #828282;
  background: transparent;
  height: 40px;
  color: #828282;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  border-radius: 40px;
  font-weight: 900;
}
.tab_btn:nth-child(1){
  width: 35%;
}

.tab_btn.is_active {
  background: #fff;
  border-color: var(--pink);
  color: var(--pink);
}

.machine_panel_wrap {
  margin: 16px 0 40px;
  font-size: 13px;
}
.machine_panel {
  display: none;
}
.machine_panel.is_active {
  display: block;
}
.machine_panel h3 {
  padding: 10px 0;
  font-weight: bold;
  font-size: 15px;
}
.machine_panel dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}
.machine_panel dl dt {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 2px;
}
.machine_panel dl dd {
  width: calc(100% - 60px - 10px);
}
.machine_panel .subject {
  background: #fff;
  width: 100%;
  margin-top: 25px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  color: var(--base);
}

.facility_row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 10px;
}

.facility_card {
  width: calc(50% - 5px);
  height: 100%;
}

.facility_card p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
}

.facility_card .photo {
  width: 100%;
  height: 180px;
}
.facility_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.facility_card .subject {
  background: #fff;
  color: var(--base);
}

.option_box {
  margin: 20px auto 0;
  padding-top: 12px;
  position: relative;
}
.option_box:before {
  content: "";
  display: block;
  width: calc(100% - 120px);
  position: absolute;
  top: 0;
  right: 0;
  border-top: 1px solid #fff;
}

.option_box h3 img {
  display: block;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.option_box p {
  padding: 10px 10px 15px;
  font-size: 13px;
  border-bottom: 1px solid #fff;
}

.price_area {
  background: var(--base3);
  color: var(--white);
  padding: 46px 0 42px;
}

.section_kicker_inline {
  font-size: 15px;
  font-weight: 500;
}

.section_text.strong {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 900;
}

.price_area {
  border-top: 1px solid #707070;
}
.price_area .note {
  padding: 10px 0 0;
}

.plan_area {
  background: #514f4f url(../img/bg_plan.png) no-repeat center top / cover;
  padding: 50px 0 0;
  color: #fff;
}
.plan_row {
  background: linear-gradient(to left top, #E26E9D, #C2185B, #FBCB00);
  margin-top: 20px;
  padding: 5px 0;
}
.plan_card {
  background: #3E3A39;
  padding: 30px 20px;
}
.plan_card h3 {
  text-align: center;
}
.plan_card .text {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.plan_card .check_list {
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.plan_card .check_list li {
  margin-bottom: 8px;
}
.plan_card .check_list li img {
  vertical-align: middle;
  margin-right: 6px;
}
.plan_card .note {
  padding: 0;
}
.plan_row + .plan_row {
  margin-top: 20px;
  border-bottom: 40px solid #514f4f;
}

.campaign_area {
  background: #FEC0CD;
}
.campaign_area .content {
  line-height: 0;
}
.campaign_area .content img {
  width: 100%;
}
.campaign_area .note {
  background: #006879;
}
.campaign_area .note li {
  color: #fff;
}

.reason_area {
  background: url(../img/bg_reason.png) no-repeat center top / 100%;
  padding: 40px 0 48px;
}

.tab_nav {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.reason_area .section_inner {
  width: calc(100% - 20px);
}
.reason_area .tab_btn {
  background: #fff;
  width: calc((75% - 4px) / 2);
  height: 45px;
}
.reason_area .tab_btn:last-child {
  width: 25%;
}
.tab_panel_wrap {
  margin-top: 18px;
}
.reason_box {
  margin-top: 60px;
  padding: 40px 20px 30px;
  border: 7px solid #3E3A39;
  border-radius: 35px 0 0 0;
  font-size: 16px;
}
.reason_box h2 {
  width: 340px;
  margin-top: -75px;
  margin-left: -43px;
}
.reason_box .flex {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(62,58,57,0.35);
}
.reason_box .flex .photo {
  width: 64px;
}
.reason_box .flex .text {
  width: calc(100% - 64px);
}
.reason_box .heading {
  background: url(../img/reason_heading_bg.png) no-repeat center top / contain;
  width: 100%;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -5px 0 0;
  padding-bottom: 2.3vw;
  font-size: 4vw;
  font-weight: normal;
  color: #fff;
}
.reason_box .aim {
  padding-left: 10px;
}
.reason_box .info {
  font-size: 14px;
  letter-spacing: 0;
}
.reason_box .info h3 {
  display: flex;
  align-items: center;
  margin: 20px 0 10px;
  font-size: 18px;
  letter-spacing: -1px;
  font-weight: bold;
  line-height: 1.5;
}
.reason_box .info h3 img {
  width: 32px;
  margin-right: 8px;
  vertical-align: middle;
}
.reason_box .info h3 strong {
  font-weight: bold;
  color: #C2185B;
}
.reason_box .info h3 .num {
  letter-spacing: -4px;
}

.tab_panel {
  display: none;
}
.tab_panel.is_active {
  display: block;
}
.tab_panel:nth-child(2) .reason_box {
  border-color: #908583; 
}

.tab_panel:nth-child(3) .reason_box{
  border-color: #DDDCD7; 
}

.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}

.store_area {
  background: var(--base);
  color: var(--white);
  padding: 50px 0 46px;
}
.store_area h2 {
  margin-bottom: 40px;
}
.store_row {
  background: #E26E9D;
  padding: auto;
  margin-top: 18px;
  padding: 5px 6px 1px;
}

.store_card {
  background: #fff;
  width: 100%;
  margin: 0 auto 20px;
  padding: 20px 12px;
  color: var(--base);
}

.store_card h3 {
  padding: 14px 14px 10px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.store_image {
  width: 100%;
}

.store_line {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  border-bottom: 1px solid #3E3A39;
  padding: 12px 0;
}

.store_line dt {
  width: 60px;
  flex: 0 0 auto;
  font-weight: 700;
}

.store_line dd {
  min-width: 0;
}

.store_line dd a {
  display: block;
  margin-top: 10px;
}

.store_notice {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  color: #e5e1e0;
}

.store_row + .store_row {
  background: #FBCB00;
}

.voice_area {
  background: url(../img/bg_voice.png) no-repeat center top / cover;
  position: relative;
  color: var(--white);
  padding: 40px 0 40px;
}

.voice_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.voice_inner {
  position: relative;
}

.voice_row {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice_card {
  width: 100%;
  margin: 0 auto;
  background: var(--light);
  padding: 14px;
  color: var(--base);
  border-top: 4px solid #3E3A39;
  border-bottom: 4px solid #3E3A39;
}
.voice_card h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.voice_card .profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice_person {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
}
.voice_tag {
  margin-top: 10px;
  font-size: 12px;
}
.voice_tag span {
  background: var(--pink);
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  margin-right: 6px;
  color: #fff;
}
.voice_text {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #3E3A39;
  font-size: 14px;
  line-height: 1.6;
}

.faq_area {
  background: url(../img/bg_faq.png) no-repeat center top / cover;
  padding: 50px 0 40px;
}

.faq_list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq_item {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #d9d4d3;
}

.faq_q {
  width: 100%;
  background: var(--base);
  color: var(--white);
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 20px 10px 20px 20px;
  cursor: pointer;
}

.faq_mark {
  color: var(--yellow);
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
}

.faq_q span:nth-child(2) {
  font-size: 15px;
  line-height: 1.5;
}

.faq_icon {
  margin-left: auto;
  font-size: 22px;
  color: var(--white);
  line-height: 22px;
}
.faq_icon:before {
  content: "＋";
  display: inline-block;
}
.is_open .faq_icon:before {
  content: "ー";
  font-size: 18px;
  transform: translate(-2px, -1px);
}

.faq_a {
  display: flex;
  background: var(--gray);
  padding: 20px 10px 20px 20px;
  gap: 10px;
  align-items: flex-start;
}

.faq_a p {
  font-size: 14px;
  line-height: 1.75;
}

.entry_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.entry_inner {
  position: relative;
}

.cta_bottom {
  background: var(--base);
  line-height: 0;
}
.cta_bottom img {
  width: 100%;
}
.cta_bottom .cta_bnr a {
  top: auto;
  bottom: 80px;
}

.top_link {
  position: fixed;
  left: 10px;
  bottom: 10px;
  width: 78px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.is_show {
  opacity: 1;
}

@media (min-width: 500px) {
  .reason_box {
    border-radius: 45px 0 0 0;
    font-size: 20px;
  }
  .reason_box .heading {
    width: 350px;
    height: 53px;
    padding-bottom: 11px;
    font-size: 22px;
  }
  .reason_box .info {
    font-size: 16px;
  }
  .reason_box .info h3 {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  * {
    font-size: 16px !important;
  }
  body {
    padding-bottom: 10.6%;
  }
  .note li {
    font-size: 14px !important;
  }
  .header,
  .site_wrap {
    width: 600px;
  }
  .voice_card .profile img {
    width: 80px;
  }
  .faq_item .faq_mark img {
    width: 30px;
  }
  .site_wrap h2 img,
  .site_wrap h3 img,
  .site_wrap ul img {
    width: auto;
  }
  .safe_card {
    min-height: 270px;
  }
  .safe_card .icon {
    height: 180px;
  }
  .lead_icon img {
    width: 50%;
  }
  .facility_title img {
    max-width: 356px;
  }
  .facility_card .photo {
    height: 285px;
  }
  .reason_area h2 img {
    width: 400px;
    margin-bottom: 20px;
  }
  .reason_box {
    margin-top: 70px;
    border-radius: 70px 0 0 0;
  }
  .reason_box * {
    font-size: 18px !important;
  }
  .reason_box h2 {
    margin-top: -87px;
    margin-left: -45px;
  }
  .reason_box .heading {
    width: 100%;
    height: 80px;
    margin-bottom: -10px;
    padding-bottom: 25px;
    font-size: 22px !important;
  }
  .reason_box .info {
    font-size: 20px !important;
  }
  .reason_box .info h3 span,
  .reason_box .info h3 strong {
    font-size: 24px !important;
  }
  .store_line img {
    width: 150px;
  }
  .store_line dt {
    width: 90px;
  }
  .faq_icon {
    font-size: 22px !important;
  }
  .top_link {
    left: 50%;
    transform: translateX(-400px);
  }
  .machine_panel dl dt {
    width: 75px;
  }
  .machine_panel dl dd {
    width: calc(100% - 75px - 10px);
  }
}

@media (max-width: 767px) {
  
  body {
    padding-bottom: 25%;
  }
  .safe_box {
    width: 100%;
  }
  .cta_bottom .cta_bnr a {
    top: auto;
    bottom: 56px;
  }
  .top_link {
    width: 50px;
    height: 50px;
    bottom: 95px;
    left: 10px;
    transform: none;
  }
  .cta_bnr a {
    top: 42px;
    max-height: 110px;
    height: 19vw;
  }
  .cta_float {
    width: 100%;
  }
  .cta_float a {
    max-height: 110px;
    height: 16vw;
  }
  .cta_area .cta_bnr a {
    top: 42px;
    height: 20vw;
  }
  .note {
    padding: 10px 10px;
  }
}
