﻿/*-------------------- setting --------------------*/
:root {
  --f-ja: "Noto Sans JP", sans-serif;
  --f-number: "Quicksand", "Noto Sans JP", sans-serif;
  --f-serif: "YuMincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --c-primary: #EB5E40;
  --c-secondry: #FFE9CB;
  --c-yellow: #EEA836;
  --c-yellow02: #F4A61C;
  --c-base: #FAF6F2;
  --c-font: #F2634D;
  --c-white: #ffffff;
  --c-black: #000000;
  --c-beige: #FAF7F3;
  --c-txt: #69352F;
}

body {
  width: 100%;
  height: auto;
  font-family: var(--f-ja);
  font-size: min(3.75vw, 15px);
  font-weight: 500;
  line-height: 2;
  color: var(--c-txt);
  background-color: var(--c-beige);
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box !important;
}
body.is_open {
  overflow: hidden;
}

h1,h2,h3,h4,h5,span,p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

.site_wrapper {
  position: relative;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-center_pc {
  text-align: left !important;
}
@media screen and (min-width: 768px){
  .text-center_pc {
    text-align: center !important;
  }
}

.text-center_sp {
  text-align: center !important;
}
@media screen and (min-width: 768px){
  .text-center_pc {
    text-align: left !important;
  }
}

.br_sp {
  display: block;
}
@media screen and (min-width: 768px){
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media screen and (min-width: 768px){
  .br_pc {
    display: block;
  }
}

.br_catch {
  display: block;
}
@media screen and (min-width: 600px){
  .br_catch {
    display: none;
  }
}

.container-base {
  width: 100%;
  padding: 0 min(11.5vw, 46px) 0 min(11.25vw, 45px);
  margin: 0 auto;
}
/*-------------------- setting --------------------*/
/*-------------------- contents --------------------*/
.container {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px){
  .container {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px){
  .container {
    margin: 0 auto 0 36.796875vw;
  }
}
.container::before {
  content: "";
  position: fixed;
  background-color: #0000004D;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.container.is_open::before {
  opacity: 1;
}

.main {
  width: 100%;
  position: relative;
  background-color: var(--c-base);
}

.btn {
  width: 100%;
  height: min(13.25vw, 53px);
  max-width: 328px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  border: 1px solid var(--c-white);
  background-color: transparent;
  position: relative;
  margin: 0 auto;
}
.btn::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
  mask-image: url(../img/common/icon_arrow.svg);
  display: block;
  width: min(3vw, 12px);
  height: min(5vw, 20px);
  background: var(--c-white);
  transition: translate 0.2s ease-out;
  position: absolute;
  top: 50%;
  right: min(7vw, 28px);
  translate: 0 -50%;
}
.txt {
  font-weight: 500;
  font-size: min(4vw, 16px);
  line-height: 1.63;
  text-align: center;
  color: var(--c-white);
  position: absolute;
  top: 50%;
  left: min(9vw, 36px);
  translate: 0 -50%;
}
@media screen and (min-width: 768px){
  .btn {
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
  .btn:hover {
    background-color: var(--c-white);
  }
  .btn:hover .txt {
    color: var(--c-yellow);
  }
  .btn:hover::after {
    background: var(--c-yellow);
  }
}

/*---------- mobile_nav ----------*/
.mobile_nav {
  width: 100%;
  height: min(7.5vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--c-beige);
  padding: 3px 8px 3px 5px;
  position: fixed;
  top: 0;
  z-index: 11;
}
@media screen and (min-width: 768px){
  .mobile_nav {
    display: none;
  }
}
.mobile_nav::after {
  content: "";
  position: absolute;
  background-color: #0000004D;
  width: 100%;
  height: min(7.5vw, 30px);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.mobile_nav a {
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 768px){
  .mobile_nav a:hover {
    opacity: 0.5;
  }
}

.openbtn {
  width: min(6vw, 24px);
  height: min(6vw, 24px);
  display: flex;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.logo {
  width: min(24.5vw, 98px);
  height: min(4.25vw, 17px);
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 768px){
  .logo {
    margin: 0 min(29.75vw, 119px) 0 auto;
  }
}
.mobile_nav_info {
  display: flex;
}
.mobile_nav_info a {
  width: min(4.5vw, 18px);
  height: min(4.5vw, 18px);
  display: flex;
  position: relative;
}
.mobile_nav_info a::after {
  content: "0";
  background-color: #8D2A1B;
  width: 7px;
  height: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 5px;
  line-height: 1;
  text-align: center;
  color: var(--c-white);
  position: absolute;
  top: 0;
  right: 0;
}

.mobile_nav_menu {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  translate: 100% 0;
  z-index: 12;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 768px){
  .mobile_nav_menu {
    display: none;
  }
}

.mobile_nav_menu_container {
  width: 89%;
  height: 100%;
  padding: min(7.75vw, 31px) min(6vw, 24px) 0 min(7.5vw, 30px);
  background-color: var(--c-white);
  margin: 0 0 0 auto;
}
.closebtn {
  width: min(5.25vw, 21px);
  height: min(5.25vw, 21px);
  display: flex;
  cursor: pointer;
  margin: 0 0 min(9vw, 36px) auto;
}
.mobile_nav_menu_list {
  margin: 0 0 min(9.5vw, 38px);
  border-top: 1px solid var(--c-primary);
}
.mobile_nav_menu_list li {
  border-bottom: 1px solid var(--c-primary);
}
.mobile_nav_menu_link {
  width: 100%;
  height: min(13.75vw, 55px);
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.09em;
  color: #666666;
}
.mobile_nav_menu_sns {
  display: flex;
  align-items: center;
  gap: min(5.25vw, 21px);
}
.snsLink {
  width: min(7.5vw, 30px);
  height: min(7.5vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile_nav.is_open::after {
  opacity: 1;
}
.openbtn.is_open {
  opacity: 0;
}
.mobile_nav_menu.is_open {
  translate: 0 0;
}
@media screen and (min-width: 768px){
  .mobile_nav_menu.is_open {
    opacity: 1;
    translate: 0 0;
  }
}

/*---------- header ----------*/
.header {
  width: 100%;
  height: min(7.5vw, 30px);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 21;
}
@media screen and (min-width: 768px){
  .header {
    height: 100vh;
    position: fixed;
    bottom: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 768px){
  .header::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(238, 168, 54, 0) 0%, rgba(238, 168, 54, 0.5) 100%);
    width: 100%;
    height: 24.296875vw;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
  }
}
.header a {
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.header a:hover {
  opacity: 0.5;
}

.header_mobile {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 8px 3px 5px;
  background-color: var(--c-beige);
  position: relative;
}
@media screen and (min-width: 768px){
  .header_mobile {
    display: none;
  }
}
.header_mobile::after {
  content: "";
  position: fixed;
  background-color: #0000004D;
  width: 100%;
  height: min(7.5vw, 30px);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  left: -20px;
}
.openbtn {
  width: min(6vw, 24px);
  height: min(6vw, 24px);
  display: flex;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.logo {
  width: min(24.5vw, 98px);
  height: min(4.25vw, 17px);
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 768px){
  .logo {
    margin: 0 min(29.75vw, 119px) 0 auto;
  }
}
.mobile_nav_info {
  display: flex;
}
.mobile_nav_info a {
  width: min(4.5vw, 18px);
  height: min(4.5vw, 18px);
  display: flex;
  position: relative;
}
.mobile_nav_info a::after {
  content: "0";
  background-color: #8D2A1B;
  width: 7px;
  height: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 5px;
  line-height: 1;
  text-align: center;
  color: var(--c-white);
  position: absolute;
  top: 0;
  right: 0;
}

.header_mobile_menu {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  translate: 100% 0;
  z-index: 12;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 768px){
  .header_mobile_menu {
    display: none;
  }
}
.header_mobile_menu_container {
  width: 89%;
  height: 100%;
  padding: min(7.75vw, 31px) min(6vw, 24px) 0 min(7.5vw, 30px);
  background-color: var(--c-white);
  margin: 0 0 0 auto;
}
.closebtn {
  width: min(5.25vw, 21px);
  height: min(5.25vw, 21px);
  display: flex;
  cursor: pointer;
  margin: 0 0 min(9vw, 36px) auto;
}
.header_mobile_menu_list {
  margin: 0 0 min(9.5vw, 38px);
  border-top: 1px solid var(--c-primary);
}
.header_mobile_menu_list li {
  border-bottom: 1px solid var(--c-primary);
}
.header_mobile_menu_link {
  width: 100%;
  height: min(13.75vw, 55px);
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.09em;
  color: #666666;
}
.header_mobile_menu_sns {
  display: flex;
  align-items: center;
  gap: min(5.25vw, 21px);
}
.snsLink {
  width: min(7.5vw, 30px);
  height: min(7.5vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_mobile.is_open::after {
  opacity: 1;
}
.openbtn.is_open {
  opacity: 0;
}
.header_mobile_menu.is_open {
  translate: 0 0;
}
@media screen and (min-width: 768px){
  .header_mobile_menu.is_open {
    opacity: 1;
    translate: 0 0;
  }
}

.header_container {
  width: 100%;
  display: none;
  justify-content: space-between;
  gap: 400px;
  position: relative;
}
@media screen and (min-width: 768px){
  .header_container {
    display: flex;
  }
}
.header_block {
  width: calc((100% - 400px) / 2);
  height: 100vh;
  display: block;
  padding: 1.66666666667vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px){
  .header_block-l {
    width: 100%;
    flex: 0 1 36.796875vw;
    padding: min(2.578125vw, 33px) min(4.375vw, 56px) 0 min(3.671875vw, 47px);
  }
  .header_block-r {
    width: 100%;
    flex: 1 1 0;
    padding: min(2.578125vw, 33px) min(3.671875vw, 47px) 0 min(4.375vw, 56px);
  }
}

.header_block_inner {
  width: 100%;
}
@media screen and (min-width: 1281px){
  .header_block_inner {
    width: fit-content;
    position: absolute;
    top: min(2.578125vw, 33px);
    left: 50%;
    translate: -50% 0;
  }
}

.header_logo {
  width: min(20.546875vw, 263px);
  height: min(3.34375vw, 42.8px);
  display: flex;
  margin: 0 auto 13.08984375vw 0;
}

.header_catch {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(0.859375vw, 11px);
  color: var(--c-font);
  margin: 0 0 6.25vw 0;
}
.header_catch span,
.header_catch p {
  font-size: min(1.333333vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.09em;
  display: block;
  width: fit-content;
}
@media screen and (min-width: 1200px){
  .header_catch span,
  .header_catch p {
    font-size: min(1.5625vw, 20px);
  }
}
.header_catch span {
  padding: 0 min(0.9375vw, 12px);
  position: relative;
}
.header_catch span::before,
.header_catch span::after {
  content: "";
  position: absolute;
  background-color: var(--c-font);
  width: 2px;
  height: min(1.384375vw, 17.72px);
  rotate: -20deg;
  top: 55%;
  left: 0;
  translate: 0 -50%;
}
.header_catch span::after {
  rotate: 20deg;
  left: auto;
  right: 0;
}
.header_catch p span {
  padding: 0;
  background: linear-gradient(transparent 60%, #EB5E401A 50%);
}
.header_catch p span::before,
.header_catch p span::after {
  content: none;
}

.header_bnr {
  display: none;
  width: 100%;
  height: auto;
  max-width: 374px;
  background-color: #EB5E40CC;
  padding: min(1.875vw, 24px) min(6.328125vw, 81px) min(2.34375vw, 30px) min(2.34375vw, 30px);
  border-radius: 20px;
  position: relative;
  margin: 0 auto 0 0;
}
@media screen and (min-width: 1200px){
  .header_bnr {
    display: block;
  }
}
@media screen and (min-width: 1281px){
  .header_bnr {
    width: 374px;
    max-width: 100%;
  }
}
.header_bnr_img {
  width: min(16.09375vw, 206px);
  height: min(16.09375vw, 206px);
  position: absolute;
  top: 45%;
  right: min(-6.25vw, -80px);
  translate: 0 -50%;
  pointer-events: none;
}
@media screen and (min-width: 1400px){
  .header_bnr_img {
    right: -80px;
  }
}
.header_bnr_inner {
  width: 100%;
}
.header_bnr_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 min(1.171875vw, 15px);
  color: var(--c-white);
}
.header_bnr_txt p {
  font-size: min(1.09375vw, 14px);
  line-height: 1.5;
  letter-spacing: 0.11em;
}
.header_bnr_txt_place {
  font-size: min(1.25vw, 16px) !important;
}
.header_bnr_txt_place strong {
  font-weight: 500;
  font-size: min(3.75vw, 48px) !important;
  line-height: 1;
  display: inline-block;
  margin: 0 2px;
}
.header_bnr_txt_place span {
  font-size: min(1.5625vw, 20px) !important;
}
.header_bnr_txt_place i {
  font-style: normal;
  margin: 0 0 0 -8px;
}
.header_bnr .btn {
  height: min(3.75vw, 48px);
}
.header_bnr .btn::after {
  right: min(1.953125vw, 25px);
}
.header_bnr .btn .txt {
  font-size: min(1.5625vw, 20px);
  line-height: 1.63;
  letter-spacing: 0.07em;
  width: 100%;
  left: 50%;
  translate: -50% -50%;
}

.header_bnr:hover {
  opacity: 1 !important;
}
.header_bnr:hover .btn {
  background-color: var(--c-white);
}
.header_bnr:hover .btn::after {
  background: var(--c-font);
}
.header_bnr:hover .btn .txt {
  color: var(--c-font);
}

.header_menu {
  width: 100%;
  display: flex;
  gap: min(2.890625vw, 37px);
  margin: 0 0 5.390625vw;
}
@media screen and (min-width: 1281px){
  .header_menu {
    width: 262px;
  }
}
.header_memu_info {
  display: flex;
  gap: min(1.328125vw, 17px);
}
.header_memu_info a {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.header_memu_info a img {
  width: min(3.75vw, 48px);
  height: min(3.75vw, 48px);
}
.header_memu_info a p {
  font-size: min(1.09375vw, 14px);
  line-height: 1.5;
  letter-spacing: -0.022em;
  text-align: center;
  color: var(--c-font);
}
.header_memu_info a#cart {
  position: relative;
}
.header_memu_info a#cart::after {
  content: "0";
  background-color: #8D2A1B;
  width: min(1.40625vw, 18px);
  height: min(1.40625vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  font-size: min(1.015625vw, 13px);
  line-height: 1;
  text-align: center;
  color: var(--c-white);
  position: absolute;
  top: -4px;
  right: 0;
}


.header_menu_sns {
  display: flex;
  gap: min(1.484375vw, 19px);
  margin: min(0.625vw, 8px) 0 0;
}
.header_menu_sns a {
  width: min(2.8125vw, 36px);
  height: min(2.8125vw, 36px);
}

.header_nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(2.34375vw, 30px);
  color: var(--c-font);
  margin: 0 0 5.546875vw;
}
.header_nav_link {
  font-size: min(1.5625vw, 20px);
  line-height: 1.35;
  letter-spacing: 0.09em;
  width: fit-content;
  display: block;
}

.header .copyright {
  font-size: min(1.015625vw, 13px);
  line-height: 1.5;
  letter-spacing: -0.022em;
  color: var(--c-font);
}

/*---------- footer ----------*/
.footer {
  padding: min(12.25vw, 49px) min(16.75vw, 67px) min(10.75vw, 43px);
  background-color: var(--c-font);
  color: var(--c-white);
}
.footer_nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(5.5vw, 22px);
}
.footer a {
  font-size: min(3.25vw, 13px);
  line-height: 1.5;
  letter-spacing: -0.022em;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 768px){
  .footer a:hover {
    opacity: 0.5;
  }
}

.footer_menu {
  width: 100%;
  display: flex;
  align-items: center;
  gap: min(2.75vw, 11px);
  margin: min(17vw, 68px) 0 min(13vw, 52px);
}
.footer_menu .snsLink {
  width: min(7vw, 28px);
  height: min(7vw, 28px);
}
.footer_menu .snsLink-ig {
  margin: 0 0 0 9px;
}

.footer_bottom .logo {
  width: min(41.5vw, 166px);
  height: min(6.75vw, 27px);
  display: flex;
  margin: 0 auto min(3.5vw, 14px) 0;
}
.copyright {
  font-size: min(3.25vw, 13px);
  line-height: 1;
  letter-spacing:-0.022em;
}

/*---------- cta_bnr ----------*/
.cta_bnr {
  width: 95%;
  height: auto;
  max-width: 380px;
  display: block;
  background-color: rgba(242, 99, 77, 0.85);
  border: 1px solid #EB5E40;
  padding: min(4.75vw, 19px) min(8vw, 32px) min(4.5vw, 18px) min(3.75VW, 15px);
  border-radius: 10px;
  position: fixed;
  bottom: min(3vw, 12px);
  left: 50%;
  translate: -50% 0;
  z-index: 9999;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 1200px){
  .cta_bnr {
    display: none;
    pointer-events: none;
  }
}
.cta_bnr_inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: min(2.5vw, 10px);
}
.cta_bnr_img {
  width: min(16.5vw, 66px);
  height: min(16.5vw, 66px);
  flex: 0 1 min(16.5vw, 66px);
}
.cta_bnr_txtArea {
  width: 100%;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(1.75vw, 7px);
}
.cta_bnr_head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: min(2vw, 8px);
}
.cta_bnr_head h2 {
  font-weight: 700;
  font-size: min(5vw, 20px);
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: var(--c-white);
}
.cta_bnr_head img {
  width: min(6.5vw, 26px);
  height: min(6.5vw, 26px);
}
.cta_bnr_txt {
  width: 100%;
  height: min(7vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-white);
  border-radius: 500px;
}
.cta_bnr_txt p {
  font-weight: 500;
  font-size: min(2.75vw, 11px);
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: var(--c-font);
  display: flex;
  align-items: center;
}
.cta_bnr_txt strong {
  font-weight: 500;
  font-size: min(6vw, 24px);
  line-height: 1;
  margin: -4px 0 0 4px;
}
.cta_bnr_txt span {
  font-size: min(3vw, 12px);
}
.cta_bnr_close {
  width: min(6.25vw, 25px);
  height: min(6.25vw, 25px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 10px 0 0;
  position: absolute;
  top: -1px;
  right: -1px;
}
.cta_bnr_close div {
  width: min(2.5vw, 10px);
  height: min(2.5vw, 10px);
  position: relative;
}
.cta_bnr_close div span {
  display: block;
  width: min(3.5vw, 14px);
  height: 2px;
  border-radius: 500px;
  background-color: #4a4a4a;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.cta_bnr_close div span:first-child {
  rotate: 45deg;
}
.cta_bnr_close div span:last-child {
  rotate: -45deg;
}
.cta_bnr.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/*---------- subPage ----------*/
.subPage {
  background-color: var(--c-base);
}

.subPage .btn {
  height: min(12.5vw, 50px);
  max-width: 300px;
  border: 1px solid var(--c-font);
  background-color: var(--c-font);
}
.subPage .btn::after {
  background: var(--c-white);
  right: min(7vw, 28px);
}
.subPage .btn .txt {
  font-size: min(5vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: var(--c-white);
  width: 100%;
  left: 50%;
  translate: -50% -55%;
}
@media screen and (min-width: 768px){
  .subPage .btn:hover {
    background-color: transparent;
  }
  .subPage .btn:hover::after {
    background: var(--c-font);
  }
  .subPage .btn:hover .txt {
    color: var(--c-font);
  }
}

.subPage_head {
  font-weight: 700;
  font-size: min(4vw, 16px);
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--c-font);
  margin: 0 auto min(8.75vw, 35px);
}

/*------------------------------*/
/* login */
/*------------------------------*/
.subPage-login {
  padding: min(17.25vw, 69px) 0 min(27.5vw, 110px);
}
.subPage-login .container-base {
  padding: 0 min(5vw, 20px);
}
.subPage-login .subPage_head {
  margin: 0 auto min(7.5vw, 30px);
}

.subPage .m-formHeading-head__stepBar {
  border-bottom: none;
  padding: 0;
  margin: 0 0 min(9vw, 36px);
}
.subPage .m-formHeading-head__stepBar-inner {
  width: 100%;
  margin: 0;
}
.subPage .c-stepbar-four {
  max-width: 100%;
  gap: min(10vw, 40px);
}
.subPage .c-stepbar-four__item {
  width: calc((100% - min(30vw, 120px)) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(1vw, 4px);
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.4;
  color: #616161;
  text-align: center;
}
.subPage .c-stepbar-four__item::after {
  width: min(10vw, 40px);
  height: 2px;
  left: auto;
  right: 100%; 
  top: min(3.5vw, 14px);
  background-color: #DBDBDB;
}
.subPage .c-stepbar-four__item:first-child::after {
  content: none;
}
.subPage .c-stepbar-four__item:last-child::after {
  content: "";
}
.subPage .c-stepbar-four__item--active {
  color: var(--c-font);
}
.subPage .c-stepbar-four__item--active::after {
  background-color: var(--c-primary);
}
.subPage .c-stepbar-four__item img {
  width: min(7vw, 28px);
  height: min(7vw, 28px);
}
.subPage .c-stepbar-four__text {
  padding: 0;
}
.subPage .c-stepbar-four__text::before {
  content: none;
}

.login_cell {
  width: 100%;
  background-color: #F5F5F5;
  border: 1px solid #C4C4C4;
  padding: min(5vw, 20px) min(5.5vw, 20px) min(6.5vw, 26px);
  margin: 0 0 min(6.5vw, 26px);
}
.login_cell-last {
  padding: min(5vw, 20px) min(5.5vw, 20px) min(24.25vw, 97px);
  margin: 0;
}

.login_cell_head {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--c-black);
  text-align: center;
  display: block;
  padding: 0 0 min(2.5vw, 10px);
  border-bottom: 1px solid #B3B3B3;
  margin: 0 0 min(3vw, 12px);
}
.login_cell_head-line {
  margin: min(17vw, 68px) 0 min(3vw, 12px);
}

.login_cell_inner {
  padding: 0 min(1vw, 4px);
}
.login_cell_inner p {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.login_form {
  margin: min(4.5vw, 18px) 0 0;
}
.login_form_cell {
  margin: 0 0 min(4vw, 16px);
}
.login_form_label {
  font-weight: 700;
  font-size: min(3.25vw, 13px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.login_form_cell input {
  width: 100%;
  background-color: var(--c-white);
  border: 2px solid #E1E1E1;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 16px;
}
.login_form_cell input::placeholder {
  color: #cacaca;
}
.login_form_check input {
  appearance: auto;
}

.login_cell_cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: min(6vw, 24px) 0 0;
}

.login_cell .p-login-body__login {
  margin: min(4.5vw, 18px) 0 0;
}
.login_cell .p-login-form__head {
  display: none;
}
.login_cell .c-formInput-itemTitle {
  font-weight: 700;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.login_cell .c-formInput-item {
  margin-top: min(1vw, 4px);
}
.login_cell input[type=text], 
.login_cell input[type=password], 
.login_cell input[type=tel], 
.login_cell input[type=email], 
.login_cell input[type=text], 
.login_cell input[type=number] {
  border: solid 1px #e1e1e1;
  background-color: var(--c-white);
  border-radius: 2px;
  font-weight: 400;
}
.login_cell input[type=text]::placeholder, 
.login_cell input[type=password]::placeholder, 
.login_cell input[type=tel]::placeholder, 
.login_cell input[type=email]::placeholder, 
.login_cell input[type=text]::placeholder, 
.login_cell input[type=number]::placeholder {
  color: #cacaca;
}
.login_cell input[type=checkbox]:checked {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}
.login_cell .c-btn-progress {
  padding: 1.5rem 1rem;
}
.login_cell .c-formInput-item__block-text {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
  margin-top: 0;
}
.login_cell .p-login-form__body-additional {
  text-align: center;
  margin: min(2.5vw, 10px) 0 0;
}
.login_cell .c-btn-socialLogin {
  border-radius: 2px;
}
.login_cell_inner-line small {
  font-weight: 400;
  font-size: min(4vw, 16px);
  letter-spacing: -0.022em;
  color: #7B7B7B;
}
.login_cell .p-login-body__social {
  margin: 0;
}
.forget_link {
  font-weight: 400;
  font-size: min(2.75vw, 11px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-font);
  padding: 0 0 min(1vw, 4px);
  border-bottom: 1px solid var(--c-font);
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 768px){
  .forget_link:hover {
    color: var(--c-font);
    opacity: 0.5;
  }
}

/*------------------------------*/
/* register */
/*------------------------------*/
.subPage-register {
  padding: min(20.5vw, 82px) 0 min(21.25vw, 85px);
}
.subPage-register .container-base {
  padding: 0 min(5vw, 20px);
}
.subPage-register .subPage_head {
  margin: 0 auto min(6vw, 24px);
}

.register_message {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
}
.register_body {
  padding: 0 min(2.5vw, 10px);
}
.register_content {
  border: 1px solid #AFAFAF;
  margin: min(9vw, 36px) 0 0;
}
.register_content_head {
  width: 100%;
  height: min(12.5vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F1F1;
}
.register_content_head h2 {
  font-weight: 700;
  font-size: min(4vw, 16px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content form {
  padding: min(5vw, 20px) min(3vw, 12px) min(4vw, 16px);
}
.register_content p {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content_lead {
  background-color: #F1F1F1;
  padding: min(11.25vw, 45px) 0 min(15.5vw, 62px) min(4vw, 16px);
  margin: min(2.5vw, 10px) 0 min(7vw, 28px);
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content_lead_title {
  font-weight: 700;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content_lead_inner {
  height: 36.2rem;
  overflow-y: scroll;
  padding-right: min(4vw, 16px);
}
.register_content_cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(2.5vw, 10px);
}
.register_content_cta .c-btn-progress {
  padding: 1.9rem 1rem;
}

.required {
  background-color: #DB2320;
  padding: 2px 6px 2px 5px;
  margin: 0 2px;
  border-radius: 2px;
  font-weight: 400;
  font-size: min(2.5vw, 10px);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.022em;
  color: var(--c-white);
}
.register_message .required {
  margin: 0 2px 0 0;
}

.register_content-input {
  border: none;
  margin: min(12vw, 48px) 0 0;
}
.register_content-input form {
  padding: 0;
}
.register_content_cell {
  border: 1px solid #AFAFAF;
  margin: 0 0 min(10vw, 40px);
}
.register_content_cell-last {
  margin: 0;
}
.register_content_cell_inner {
  padding: min(5vw, 20px) min(5vw, 20px) min(7vw, 28px);
}
.register_content_cell .p-registForm__social {
  padding: 0;
  margin-bottom: 0;
  border-top: none;
  border-bottom: none;
}
.register_content .m-userSectForm-body,
.register_content .m-userSectForm-body--wide {
  margin-top: 0;
}
.register_content .c-userSect-entry:not(:first-child) {
  margin-top: min(10vw, 40px);
}
.register_content .c-userSect-entry__title {
  font-weight: 700;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content input[type="text"],
.register_content input[type="password"],
.register_content select {
  background-color: var(--c-white);
  border: 1px solid #E1E1E1;
  border-radius: 2px;
}
.register_content input[type="text"]::placeholder {
  font-weight: 400;
  color: #cacaca;
}
.register_content .c-formInput-item__birthday {
  gap: 6px;
}
.register_content .c-formInput-item__birthday-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content select {
  padding: min(2vw, 8px);
  background-position: 95% center;
}
.register_content label {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content .c-formInput-item__zipcode {
  align-items: center;
  justify-content: flex-start;
}
.register_content .c-formInput-item__zipcode p {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content .c-formInput-item__zipcode input[type="text"] {
  width: min(34.25vw, 137px);
}
.register_content .c-formInput-item-city {
  width: min(34.25vw, 137px);
}
.register_content .c-btn {
  background-color: var(--c-primary);
  border: 1px solid var(--c-primary);
  width: min(18.5vw, 74px);
  padding: 1rem 0.5rem;
}
.register_content .c-formInput-item-tel input[type="text"] {
  width: min(46.25vw, 185px);
}
.register_content input[type=checkbox]:checked {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}
.register_content_cell-last .c-userSect-entry:not(:first-child) {
  margin-top: min(6vw, 24px);
}

.register_content .s-formContent-progress {
  padding-top: 0;
  padding: min(7.75vw, 31px) min(4.25vw, 17px) 0;
}
.register_content input[type=radio]:checked {
  border-color: var(--color-gray-middle);
}
.register_content input[type=radio]:checked:after {
  background-color: var(--c-primary);
}
.register_content .m-userSect-body {
  margin-top: 0;
}
.register_content .c-userSect-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: min(4.5vw, 18px) 0 min(5.75vw, 23px);
  border-bottom: 1px dotted #757575;
}
.c-userSect-info:not(:first-child) {
  margin-top: 0;
}
.register_content .c-userSect-info:first-of-type {
  padding: 0 0 min(5.75vw, 23px);
}
.register_content .register_content_cell-last  .c-userSect-info {
  padding: 0;
  border-bottom: none;
}
.register_content .c-userSect-info__title {
  font-weight: 700;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}
.register_content .c-userSect-info__title::after {
  content: none;
}
.register_content .c-userSect-info__text {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--c-black);
}

.subPage-register-complete .register_message {
  font-weight: 400;
}
.register_counter {
  background-color: #F1F1F1;
  padding: min(6vw, 24px) min(6vw, 24px) min(10vw, 40px);
  margin: min(6vw, 24px) 0 0;
  text-align: center;
}
.register_counter h2 {
  font-weight: 700;
  font-size: min(3.25vw, 13px);
  line-height: 1.95;
  letter-spacing: -0.022em;
  display: block;
  margin: 0 0 min(6vw, 24px);
}
.register_counter_txt {
  font-weight: 400;
  font-size: min(3.25vw, 13px);
  line-height: 1.95;
  letter-spacing: -0.022em;
}