@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #fff;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

h1 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

html {
  scroll-behavior: smooth;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

body {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1B1945;
  background: #f9f9f9;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: underline;
}

a:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.underline {
  text-decoration: underline;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}

.left-side {
  width: calc((100% - 375px) / 2);
  background: url(../../images/202509/shop.webp) no-repeat center/cover;
  height: 100dvh;
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
}

.left-side::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.center-side {
  margin: 0 auto;
  width: 375px;
  background: #f9f9f9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.right-side {
  width: calc((100% - 375px) / 2);
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
}

.section {
  margin-top: 40px;
  scroll-snap-align: start;
  scroll-margin-top: 60px;
}

.section_title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}

.small {
  font-size: 0.8em;
}

.left_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  padding: 24px;
}

.nav_logo {
  width: 100%;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.nav-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  font-size: 16px;
}

.nav-list li a {
  color: #fff;
  font-size: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

.nav-list li::before {
  content: url(../../images/202509/arrow-right.svg);
  width: 25px;
}

.nav-list li a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

.header {
  width: 375px;
  position: fixed;
  z-index: 1;
}

.mv-cta {
  margin-top: -100px;
  width: 100%;
  position: relative;
}

.cta_button {
  margin-top: -1px;
  padding: 8px 15px 24px;
  text-align: center;
  background-color: #051532;
}
.cta_button p {
  font-size: 13px;
  color: #fff;
  margin-top: 10px;
}
.cta_button a {
  text-decoration: underline;
}

.campaign {
  padding: 24px 0 0;
}
.campaign h2 {
  font-size: 16px;
}
.campaign p {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 1em;
}

.banner_link {
  display: block;
  margin-top: 1em;
}

.strong_text {
  margin-top: 20px;
  font-size: 24px;
  text-align: center;
}
.strong_text span {
  font-size: 15px;
}

.shop_img {
  width: 90%;
  margin: 24px auto 0;
}

.strength-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.strength-text {
  margin: 24px 0;
  text-align: justify;
}

.suit_img {
  margin-top: -320px;
}

.flow {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding: 40px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#151361), to(#1B1945));
  background: linear-gradient(#151361, #1B1945);
  border-radius: 0 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
.flow .section_title {
  color: #fff;
  text-align: left;
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
.flow-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.flow-list li .flow-item {
  width: 100%;
}
.flow-list li p {
  color: #fff;
  line-height: 1.6;
  font-size: 13px;
  margin-top: 4px;
  text-align: right;
}
.flow-list li p a {
  text-align: right;
  text-decoration: underline;
}

.cp_qa02 {
  margin: 0 auto;
}

.cp_qa02 .cp_actab input[type=checkbox] {
  display: none;
}

.cp_qa02 .cp_actab {
  padding: 1em 0;
  border-bottom: 1px dashed #b0b8ca;
}

.cp_qa02 label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin: 0 0 0 30px;
  cursor: pointer;
}

/*＋アイコン*/
.cp_qa02 label::before {
  position: absolute;
  content: "+";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6em;
  font-weight: 400;
  margin-left: -30px;
  padding: 0 0 0 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  color: #5E6C9C;
}

.cp_qa02 .cp_actab input[type=checkbox]:checked ~ label::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*答えテキスト*/
.cp_qa02 .cp_actab-content {
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 0;
  padding: 0 0 0 20px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
  text-align: justify;
}

.cp_qa02 .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  height: auto;
  padding: 10px 0 0 20px;
  opacity: 1;
}

.shop_info {
  padding: 80px 0;
  background-color: #EFEFEF;
  border-radius: 40px 0 0 0;
}
.shop_info .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.shop_info-list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shop_info dt {
  width: 30%;
}
.shop_info dd {
  width: 70%;
}

.googlemap {
  width: 100%;
  aspect-ratio: 4/3;
}
.googlemap .googlemap_link {
  text-align: right;
  margin-top: 4px;
  font-size: 13px;
}
.googlemap .googlemap_link a {
  text-decoration: underline;
}

.logo_img {
  width: 40%;
  margin: 0 auto;
}

.website_link {
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .left-side {
    width: 100%;
    z-index: -1;
    background-position: 30%;
  }
  .left_nav, .right-side {
    display: none;
  }
  .cta_button {
    width: 100%;
  }
  .campaign {
    margin: 0 auto;
  }
  .suit_img {
    margin-top: -300px;
  }
}
@media screen and (max-width: 480px) {
  .right-side, .left-side {
    display: none;
  }
  .center-side {
    width: 100vw;
  }
  .header {
    width: 100vw;
  }
}
a {
  text-decoration: none;
}

.button_list {
  display: none;
}

@media screen and (max-width: 480px) {
  .button_list {
    width: 100vw;
    background-color: #fff;
    display: -ms-grid;
    display: grid;
    gap: 5px;
    padding: 5px;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: repeat(2, 1fr);
    z-index: 3;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .button_list li {
    padding: 10px;
    color: #fff;
    background-color: #1B1945;
    text-align: center;
    border-radius: 4px;
  }
  .button_list .reserve {
    background-color: #E8420F;
  }
}