@charset "UTF-8";
/* ------------------------------------------------
 fonts
------------------------------------------------ */
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanmp.css");
.ff_mincho {
  font-family: YakuHanMP, "Shippori Mincho", serif;
}
.ff_mincho .num {
  font-family: inherit !important;
}

.ff_mincho2 {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-style: normal;
}

.ff_num {
  font-family: Helvetica, Arial, sans-serif;
}

/* ------------------------------------------------
 vars
------------------------------------------------ */
:root {
  --nvw: 1vw;
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutBack: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ------------------------------------------------
 reset
------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  font-size: 1em;
  margin: 0;
}

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

input, button,
textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

img {
  vertical-align: top;
}

/* -------------------------------------------------------
 base
---------------------------------------------------------- */
html {
  position: relative;
}
html.is-locked {
  touch-action: none;
  overflow: hidden;
}

body {
  color: #303030;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.5;
  letter-spacing: 0.15em;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  position: relative;
}

.ff_en {
  font-family: var(--ff_base_enja);
}

body a {
  color: #303030;
  text-decoration: none;
}
body a:visited {
  color: #303030;
}
body a:hover {
  color: #303030;
}
body img {
  max-width: 100%;
  height: auto;
}
body sup {
  font-size: 0.5em;
}
body h1, body h2, body h3, body h4, body h5, body h6, body b {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .sp_show {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  body {
    letter-spacing: 0.1em;
  }
  .pc_show {
    display: none;
  }
  sup {
    font-size: 8px;
  }
}
/* ------------------------------------------------
 font-size
------------------------------------------------ */
body .section {
  font-size: min(1.25vw, 20px);
}
@media screen and (max-width: 767.9px) {
  body .section {
    font-size: 4vw !important;
  }
}

/* ------------------------------------------------
 utility
------------------------------------------------ */
.note {
  font-size: 0.5em;
}
.note > li {
  list-style-type: none;
  text-indent: -1em;
  padding-left: 1em;
}

/* ------------------------------------------------
 basic_btn
------------------------------------------------ */
.basic_btn {
  text-decoration: none !important;
  line-height: 1;
  margin: 0;
  padding: 0;
  display: inline-block;
}

button.basic_btn {
  color: #303030;
  font-size: 1em;
  border-width: 0;
  background-color: transparent;
  cursor: pointer;
}
button.basic_btn[disabled] {
  cursor: default;
}

/* ----------------------------
 arrow_next
------------------------------*/
.basic_btn.arrow_next {
  display: inline-flex;
  align-items: center;
  gap: 1.2em;
}
.basic_btn.arrow_next .txt {
  letter-spacing: 0.25em;
}
@media screen and (any-hover: hover) {
  .basic_btn.arrow_next .arrow::after {
    transition: opacity 0.4s var(--easeOutCubic);
  }
  .basic_btn.arrow_next:hover .arrow::after {
    opacity: 1;
  }
}

/* ------------------------------------------------
 icon
------------------------------------------------ */
.icon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}
.icon.arrow {
  border: 1px solid #d6d6d6;
  border-radius: 60px;
  width: 3em;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.icon.arrow::before, .icon.arrow::after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-color: rgba(255, 255, 255, 0.2);
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.icon.arrow::after {
  background-image: url(../images/common/icon_arrow_wh.svg);
  background-color: #303030;
  opacity: 0;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .icon.arrow {
    width: 2.4em;
  }
}

/* ------------------------------------------------
 rayout
------------------------------------------------ */
.section {
  position: relative;
  z-index: 1;
  scroll-snap-align: start;
}
.section img {
  max-width: unset;
  width: 100%;
}
.section .ff_mincho {
  letter-spacing: 0.2em;
}
.section .ff_mincho .kana {
  letter-spacing: 0.05em;
}
.section > .inner {
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .section {
    max-height: none;
  }
}

/* ------------------------------------------------
 slide-in スクロール連動エフェクト
------------------------------------------------ */
.section .js-anime-ready {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: ease;
}
.section .js-anime-active {
  animation-name: fadein_up;
}
.section .js-anime-fadein-up {
  animation-name: fadein_up;
}
.section .js-anime-fadeout-down {
  animation-name: fadeout_down;
}

@keyframes fadein_up {
  0% {
    opacity: 0;
    transform: translateY(2.5em);
    filter: blur(1em);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes fadeout_down {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2.5em);
    filter: blur(1em);
  }
}
/* ----------------------------
 keyframe-animation
------------------------------*/
/*----- header/footer -----*/
/* ------------------------------------------------
  HEADER
------------------------------------------------ */
.section .logo {
  width: 7.25em;
  max-height: none;
  margin-top: 2.5em;
  display: block;
  position: absolute;
  left: 2.5em;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .section .logo {
    margin-top: 1.4em;
    width: 5.1333333333em;
    left: 1.3333333333em;
  }
}

#header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 101;
}
#header > .inner {
  max-width: 80em;
  position: relative;
}
#header .btn_menu {
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0;
  width: 3em;
  aspect-ratio: 1/1;
  position: fixed;
  right: 2.5em;
  top: 2.3em;
  z-index: 3;
  transform-origin: 100% 0;
  box-shadow: 0 0.15em 0.15em rgba(37, 71, 108, 0.1);
}
#header .btn_menu .icon {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#header .btn_menu .icon i {
  background-color: #505155;
  width: 1em;
  height: 1px;
  display: block;
  position: absolute;
  left: 1em;
  top: 50%;
  transition: top 0.2s ease, transform 0.2s ease, top 0.2s ease;
}
#header .btn_menu .icon i:nth-child(1) {
  top: calc(50% - 0.3em);
}
#header .btn_menu .icon i:nth-child(3) {
  top: calc(50% + 0.3em);
}
@media screen and (any-hover: hover) {
  #header .btn_menu .icon {
    transition: transform 0.2s var(--easeOutBack);
  }
  #header .btn_menu:hover {
    opacity: 1;
  }
  #header .btn_menu:hover .icon {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 767.9px) {
  #header > .inner {
    width: auto;
  }
  #header .btn_menu {
    width: 2.6666666667em;
    right: 1em;
    top: 0.9333333333em;
  }
  #header .btn_menu .icon i {
    width: 1em;
    left: 0.8333333333em;
  }
  #header .btn_menu .icon i:nth-child(1) {
    top: calc(50% - 0.3666666667em);
  }
  #header .btn_menu .icon i:nth-child(3) {
    top: calc(50% + 0.3em);
  }
  #header.fixed .btn_menu {
    transform: scale(0.9) translate3d(0.6666666667em, -0.6666666667em, 0);
  }
}

/* ------------------------------------------------
 navi
------------------------------------------------ */
#navi {
  background-color: #fff;
  align-content: center;
  width: 100%;
  min-height: unset;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 0;
  visibility: hidden;
  transform-origin: 50% 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 2;
  pointer-events: initial;
  align-content: normal;
}
#navi * {
  visibility: inherit;
}
#navi::-webkit-scrollbar {
  display: none;
}
#navi > .inner {
  margin: 0 auto;
  padding-top: 5em;
  padding-bottom: 5em;
}
@media screen and (max-width: 767.9px) {
  #navi {
    height: 100dvh;
  }
  #navi > .inner {
    padding-top: 4em;
    padding-bottom: 2.3333333333em;
  }
  #navi a {
    outline: none !important;
  }
}

/* ----------------------------
 #header.open
------------------------------*/
#header.open .btn_menu i:nth-child(1) {
  top: 50%;
  transform: rotate(30deg) scaleX(1.4);
}
#header.open .btn_menu i:nth-child(2) {
  opacity: 0;
}
#header.open .btn_menu i:nth-child(3) {
  top: 50%;
  transform: rotate(-30deg) scaleX(1.4);
}
#header.open #navi {
  opacity: 1;
  visibility: visible;
}
#header.open #menu_overlay {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------
 #header.fixed
------------------------------*/
#header.fixed .logo {
  position: absolute;
}

/* ------------------------------------------------
  FOOTER
------------------------------------------------ */
.forPC {
  display: none;
}

@media all and (min-width: 768px) {
  .forPC {
    display: inherit;
  }
  .forSP {
    display: none !important;
  }
}
footer.footer {
  letter-spacing: normal;
  background: #c5c7cc;
  position: relative;
  z-index: 1;
}

@media all and (min-width: 768px) {
  footer.footer {
    padding: 0 20px;
  }
}
.footer_container {
  max-width: 1200px;
  margin: auto;
}

@media all and (min-width: 768px) {
  .footer_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer_commonLinkList {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
}

@media all and (min-width: 768px) {
  .footer_commonLinkList {
    display: block;
  }
}
.footer_commonLinkItem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font-size: 12px;
  background-color: #f8f8fa;
  border-bottom: 1px solid #cdd3d9;
  border-left: 1px solid #cdd3d9;
}

.footer_commonLinkItem:nth-child(1), .footer_commonLinkItem:nth-child(2) {
  border-top: solid 1px #cdd3d9;
}

.footer_commonLinkItem:nth-child(2n) {
  border-right: solid 1px #cdd3d9;
}

.footer_commonLinkItem::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  display: inline-block;
  content: "";
  border-top: solid 5px transparent;
  border-bottom: solid 5px transparent;
  border-left: 5px solid #46484b;
}

.footer_commonLinkItem a {
  display: inline-block;
  width: 100%;
  padding: 17px 20px 17px 3.6%;
  font-size: 13px;
  color: black;
}

@media all and (min-width: 768px) {
  .footer_commonLinkItem {
    width: auto;
    margin-right: 20px;
    background-color: transparent;
    border: none !important;
  }
  .footer_commonLinkItem::after {
    position: unset;
    margin-left: -2px;
    content: "＞";
    border: none;
  }
  .footer_commonLinkItem a {
    width: auto;
    padding: 0;
  }
}
@media all and (max-width: 339px) {
  .footer_commonLinkItem a {
    font-size: 3.4666vw;
  }
}
.footer_copyWrap {
  max-width: 375px;
  padding: 20px 0;
  margin: 0 auto;
}
.footer_copyWrap img {
  display: block;
}

@media all and (min-width: 768px) {
  .footer_copyWrap {
    margin: 0;
  }
}
/* ==============================
 購入方法（フッター上部）
 ============================== */
.footer_area {
  background-color: #fff;
  position: relative;
}

.howToBuy {
  letter-spacing: normal;
  max-width: 1000px;
  margin: auto;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "メイリオ", meiryo, verdana, sans-serif;
  background-color: #edeef0;
}

@media all and (min-width: 768px) {
  .howToBuy a {
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .howToBuy a:hover {
    color: #000;
    opacity: 0.7;
  }
}
.howToBuy_title {
  font-size: 15px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  background-color: #8c8c8c;
}

@media all and (min-width: 768px) {
  .howToBuy_title {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) {
  .howToBuy_boxWrap {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 18px 23px;
  }
}
.howToBuy_box {
  width: 100%;
  padding: 15px 20px;
}

.howToBuy_box:nth-child(2) {
  border: solid #bfc2c9;
  border-width: 2px 0;
}

.howToBuy_box .caption {
  font-size: 12px;
}

@media all and (min-width: 768px) {
  .howToBuy_box {
    width: 31%;
  }
  .howToBuy_box:nth-child(1) {
    padding: 0 3% 0 0;
  }
  .howToBuy_box:nth-child(2) {
    padding: 0 3%;
    border-width: 0 1px;
    width: 36%;
  }
  .howToBuy_box:nth-child(3) {
    padding: 0 0 0 3%;
  }
}
.howToBuy_box_title {
  padding: 5px 0;
  font-size: 13px;
}

.howToBuy_box_title p {
  line-height: 1.3;
}

@media all and (min-width: 768px) {
  .howToBuy_box_title {
    font-size: 14px;
  }
}
.howToBuy_flexBox,
.howToBuy_whiteBox {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: black;
  background-color: white;
  border-radius: 6px;
}

.howToBuy_flexBox:visited,
.howToBuy_whiteBox:visited {
  color: black;
}

@media all and (min-width: 768px) {
  .howToBuy_flexBox,
  .howToBuy_whiteBox {
    height: 45px !important;
  }
}
.howToBuy_flexBox {
  padding: 10px;
}

.howToBuy_flexBox div {
  width: 35%;
  padding: 0 15px;
  margin: 0;
}

.howToBuy_flexBox div img {
  width: auto;
  max-width: 100%;
}

.howToBuy_flexBox p {
  width: 65%;
}

@media all and (min-width: 768px) {
  .howToBuy_flexBox div img {
    width: 100%;
  }
}
.howToBuy_whiteBox {
  height: 58px;
  line-height: 1.2;
  text-align: center;
}

.howToBuy_tel {
  display: flex;
  align-items: center;
  color: black;
}

.howToBuy_tel div {
  width: 49px;
  margin-right: 5px;
}

.howToBuy_tel p {
  font-size: 24px;
}

@media all and (min-width: 768px) {
  .howToBuy_tel {
    margin-bottom: 5px;
  }
}
.howToBuy_box2 {
  margin-bottom: 20px;
  border-top: 4px solid white;
}

@media all and (min-width: 768px) {
  .howToBuy_box2 {
    display: flex;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 25px;
    margin-bottom: 60px;
  }
}
.howToBuy_box2Title {
  margin: 24px auto 10px;
  font-size: 15px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .howToBuy_box2Title {
    margin: 0;
  }
}
.howToBuy_box2List {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  row-gap: 1em;
  flex-wrap: wrap;
  padding: 10px 0 33px;
  margin: 0 20px;
  font-size: 13px;
}

.howToBuy_box2List a {
  color: black;
  border-bottom: solid 1px;
}

@media all and (min-width: 768px) {
  .howToBuy_box2List {
    justify-content: start;
    -moz-column-gap: 0;
         column-gap: 0;
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .howToBuy_box2List div {
    margin: 0 20px;
  }
}
/* ------------------------------------------------
  kodawari_menu
------------------------------------------------ */
.kodawari_menu {
  background-color: #fff;
}
.kodawari_menu > .inner {
  margin: 0 auto;
  display: grid;
  align-content: start;
  grid-template-columns: 8.75em 1fr;
}
@media screen and (any-hover: hover) {
  .kodawari_menu .sbody a .arrow::after, .kodawari_menu aside a .arrow::after {
    transition: opacity 0.4s var(--easeOutCubic);
  }
  .kodawari_menu .sbody a:hover .arrow::after, .kodawari_menu aside a:hover .arrow::after {
    opacity: 1;
  }
}
.kodawari_menu .sheader {
  padding-top: 0.8em;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
.kodawari_menu .sheader .title {
  font-size: 1.8em;
  letter-spacing: 0.25em;
  line-height: 1.3;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin-left: -0.2em;
  margin-bottom: -0.5em;
}
.kodawari_menu .sheader .title .l1 {
  font-size: 0.7em;
}
.kodawari_menu .sheader .title .l2 {
  padding-top: 1em;
}
.kodawari_menu .sbody {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
}
.kodawari_menu .sbody .list {
  display: flex;
  justify-content: space-between;
}
.kodawari_menu .sbody .list li a {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kodawari_menu .sbody .list li a::before {
  content: "";
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 9.5em;
  height: 8.75em;
  display: block;
}
.kodawari_menu .sbody .list li a .img {
  height: 8.75em;
  display: none;
}
.kodawari_menu .sbody .list li a .img img {
  max-width: unset;
  width: auto;
  height: 100%;
}
.kodawari_menu .sbody .list li a .txt {
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-top: 1.2em;
}
.kodawari_menu .sbody .list li a .arrow {
  margin-top: 0.7em;
}
.kodawari_menu .sbody .list li:nth-child(even) {
  margin-top: 2.5em;
}
.kodawari_menu .sbody .list li:nth-child(1) a::before {
  background-image: url(../images/common/menu_k1.png);
}
.kodawari_menu .sbody .list li:nth-child(2) a::before {
  background-image: url(../images/common/menu_k2.png);
}
.kodawari_menu .sbody .list li:nth-child(3) a::before {
  background-image: url(../images/common/menu_k3.png);
}
.kodawari_menu .sbody .list li:nth-child(4) a::before {
  background-image: url(../images/common/menu_k4.png);
}
.kodawari_menu .sbody .list li:nth-child(5) a::before {
  background-image: url(../images/common/menu_k5.png);
}
.kodawari_menu aside {
  border-top: 1px solid #d6d6d6;
  margin-top: 4em;
  padding-top: 3.5em;
  grid-row: 2/span 1;
  grid-column: 1/span 2;
  align-self: start;
}
.kodawari_menu aside .link {
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .kodawari_menu > .inner {
    grid-template-columns: 4.8333333333em 1fr;
  }
  .kodawari_menu .sheader {
    align-self: start;
  }
  .kodawari_menu .sheader .title {
    font-size: 1.5333333333em;
  }
  .kodawari_menu .sbody {
    grid-row: 1/span 1;
    grid-column: 2/span 1;
  }
  .kodawari_menu .sbody .list {
    justify-content: space-between;
    flex-direction: column;
    row-gap: 1.2em;
  }
  .kodawari_menu .sbody .list li {
    margin-right: -0.5em;
  }
  .kodawari_menu .sbody .list li a {
    text-align: center;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .kodawari_menu .sbody .list li a::before {
    background-position: 0 0;
    width: 6.4666666667em;
    height: 5.7333333333em;
  }
  .kodawari_menu .sbody .list li a .txt {
    text-align: left;
    letter-spacing: 0.1em;
    margin: 0 0 0 0.3333333333em;
    flex-grow: 1;
    flex-basis: 0;
  }
  .kodawari_menu .sbody .list li a .arrow {
    flex-basis: 2.3333333333em;
    margin-top: 0;
  }
  .kodawari_menu .sbody .list li:nth-child(even) {
    margin-top: 0;
  }
  .kodawari_menu .sbody .list li:nth-child(1) a::before {
    background-image: url(../images/common/menu_k1-sp.png);
  }
  .kodawari_menu .sbody .list li:nth-child(2) a::before {
    background-image: url(../images/common/menu_k2-sp.png);
  }
  .kodawari_menu .sbody .list li:nth-child(3) a::before {
    background-image: url(../images/common/menu_k3-sp.png);
  }
  .kodawari_menu .sbody .list li:nth-child(4) a::before {
    background-image: url(../images/common/menu_k4-sp.png);
  }
  .kodawari_menu .sbody .list li:nth-child(5) a::before {
    background-image: url(../images/common/menu_k5-sp.png);
  }
  .kodawari_menu aside {
    margin-top: 2.3333333333em;
    padding-top: 1.6666666667em;
  }
  .kodawari_menu aside .link {
    text-align: center;
  }
  .kodawari_menu aside .link a {
    width: 100%;
    justify-content: space-between;
  }
}