@charset "utf-8";

:root {
  --color-main: #36364C;
  --color-text: #303149;
  --color-red: #FF8989;
  --color-line: #4cc764;
  --color-muted: #777;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Fredoka", sans-serif;
  --header-height: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text);
  font-family: var(--font-ja);
  line-height: 1.8;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.text__link {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-red);
  font-weight: bold;
}
.asterisk a.text__link {
  display: inline;
}
a.text__link.footer__link {
  font-weight: 400;
  color: #fff;
}
.asterisk {
  display: inline-block;
  color: var(--color-muted);
  font-size: .85rem;
  padding-left: 1em;
  text-indent: -1em;
}

/* ------------------------------------------- */

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, 380px);
  padding: 14px 20px;
  color: #fff;
  font-size: clamp(1.125rem, 2vw, 1.2rem);
  font-weight: 500;
  background: var(--color-line);
  border-radius: 999px;
}
.cta__button img {
  max-width: 55px;
}
.cta__button span {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
}

/* header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 16px;
}

.site-header__logo {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.site-header__logo img {
  max-width: 120px;
}
.header-cta {
  display: flex;
}
.header-cta .cta__button {
  padding: 0 1.5em;
  font-size: clamp(12px, 3vw, 16px);
  box-shadow: none;
  gap: 0;
  transition: .3s;
}
.header-right {
  gap: 16px;
}
.header-cta .cta__button img {
  max-width: 40px;
}
.site-header__logo-main {
  font-family: var(--font-en);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.site-header__logo-sub {
  font-size: 7px;
  letter-spacing: 0.16em;
}

.menu-button {
  position: relative;
  z-index: 1002;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button__line {
  width: 100%;
  height: 1px;
  background: var(--color-red);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-button__text {
  font-size: 8px;
  color: var(--color-red);
  line-height: 1;
}

.menu-button.is-active .menu-button__line:nth-child(1) {
  transform: translateY(5px) rotate(35deg);
}

.menu-button.is-active .menu-button__line:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active .menu-button__line:nth-child(3) {
  transform: translateY(-5px) rotate(-35deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 80px 24px 32px;
  color: #fff;
  background: rgba(48, 49, 73, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__inner {
  width: min(100%, 420px);
  text-align: center;
}

.drawer__label {
  margin: 0 0 24px;
  font-family: var(--font-en);
  font-size: 32px;
  letter-spacing: 0.18em;
}

.drawer__list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawer__link {
  display: block;
  padding: 8px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.drawer__button {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 32px;
  padding: 14px 20px;
  color: #fff;
  font-weight: 500;
  background: var(--color-red);
  border-radius: 999px;
}

.section-heading {
  margin-bottom: 24px;
  display: inline-block;
}

.section-heading__en {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 100;
  font-size: clamp(32px, 10vw, 40px);
  line-height: 1;
  color: var(--color-main);
}

.section-heading__ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-heading__ja::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--color-main);
}
.section-heading__ja.white::before  {
  background: #fff;
}
.section-heading--light .section-heading__en,
.section-heading--light .section-heading__ja {
  color: #fff;
}

.style_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(1200px, 98%);
  margin: 0 auto 60px;
  padding-top: calc( var(--header-height) + 20px );
}

.style-img_wrap, .style-text_wrap {
  width: 49%;
}

.style-img_main {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 5px;
}

.style-img_window {
  display: flex;
  column-gap: 5px;
}

.style-img_window_inner {
  width: calc( calc( 100% - 10px ) / 3 );
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}

.style-accessory .style-img_window_inner img {
  transform: translateY(-15%);
}


.model_h {
  margin-top: .5em;
}

.style-title_wrap {
  margin-bottom: .8em;
}

.style-no {
  display: block;
  margin-bottom: 4px;
  border-bottom: solid var(--color_b) 2px;
  font-size: var(--font_subtitle);
  font-weight: 600;
}

.style-title {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font_title);
  font-weight: 600;
}

.style-text {
  margin-bottom: 2em;
}

.style-spec {
  width: 100%;
  font-size: var(--font_small);
  font-weight: 500;
  text-align: center;
  border-collapse: collapse;
}


.dummy {
  visibility: hidden;
}

.name, .price {
  width: 30%;
}

.color, .size {
  width: 20%;
}

.table-h_wrap {
  background-color: var(--color-main);
  color: #fff;
}

th, td {
  padding: 1em 0;
}

tbody > .table-r:not(:last-child) > td, .style-accessory td {
  border-bottom: solid #CCC 1px;
}

.link_accessory {
  color: var(--color_main);
  font-weight: 700;
  transition: .2s;
}

@media (hover: hover) and (pointer: fine) {
  .link_accessory:hover {
    opacity: .5;
  }
}

.total_wrap {
  background-color: #ffe7e7;
  font-size: 1.125rem;
  font-weight: 700;
}

.notes_ul {
  padding-left: 1.5em;
  font-size: var(--font_small);
}

.notes_li {
  position: relative;
  margin-top: 1em;
  list-style: none;
}

.notes_li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: -1.5em;
}

@media screen and (max-width: 780px) {
  .style-img_wrap {
    max-width: 480px;
  }
  .style-img_wrap, .style-text_wrap {
    width: 100%;
  }
  .style_wrap {
    justify-content: center;
    width: 95%;
    margin: 0 auto 60px;
  }
  
  .style-title_wrap {
    margin-bottom: .5em;
  }
  
  .style-no {
    font-size: var(--font_subtitle);
  }
  
  .style-title {
    font-size: var(--font_title_sp);
  }
  
  .style-text {
    margin-bottom: 1em;
  }
  
  .style-spec_inner {
    padding-bottom: 10px;
    overflow-x: scroll;
  }
  
  .style-spec_inner::-webkit-scrollbar {
    height: 8px;
  }
  .style-spec_inner::-webkit-scrollbar-track {
    background-color: var(--color_light-g);
    border-radius: 100vh;
  }
  .style-spec_inner::-webkit-scrollbar-thumb {
    background-color: var(--color_main);
    border-radius: 100vh;
  }
}

#howto-online, .style-link_wrap {
  width: min(90%, 600px);
  margin: 0 auto;
}

.howto-online_wrap {
  margin-bottom: 40px;
}

.howto-online-text:not(:last-child) {
  margin-bottom: 1em;
}

.howto-online-subheading {
  margin-bottom: .5em;
  font-weight: 700;
  text-align: center;
}

.howto-online-img {
  margin-bottom: 2em;
}
/* Link Buttons */

.link-buttons__inner {
  display: grid;
  gap: 18px;
  width: min(100%, 360px);
  margin-inline: auto;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--color-red);
  border-radius: 5px;
}
.link-button.btn_back {
  background: var(--color-main);
  border-radius: 999px;
}
.arrow-white {
  width: 34px;
  height: 1px;
  background: currentColor;
}
.arrow-white::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
}
.style-link_inner {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.btn_top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 100%;
  box-shadow: 0px 0px 30px -15px #aaa;
  font-weight: 700;
  text-decoration: none;
  transition: .15s;
  width: 50px;
  border: none;
  background-color: var(--color-main);
  cursor: pointer;
}
.triangle {
    width: 0;
    height: 0;
    margin-bottom: 4px;
    border-style: solid;
    border-width: 0 10px 17.3px 10px;
    border-color: transparent transparent #fff transparent;
}

@media screen and (max-width: 600px) {
  .howto-online-subheading {
    text-align: left;
  }
}

/* Footer */
.footer {
  padding: 68px 16px 44px;
  color: #fff;
  text-align: center;
  background: var(--color-main);
}

.footer__inner {
  width: min(100%, 760px);
  margin-inline: auto;
}
.footer__logo {
  margin-bottom: 1rem;
}
.footer__logo img{
  max-width: 320px;
  margin: 0 auto;
}

.footer__company {
  margin: 0 0 14px;
}

.footer__company a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-cta .cta__button, .color-change,
.btn_back, .btn_top {
  transition: .3s;
}

/* ========================================
  Hover
======================================== */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    cursor: pointer;
  }

  .header-cta .cta__button:hover,
  .btn_back:hover, .btn_top:hover {
    transform: scale(0.94);
  }

  .color-change:hover {
    background-color: var(--color-main);
  }
}
