@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');

/* MediaQuery = SP => Tablet(600px) => PC(1024px) */
/* 1em = 1vw */

/* -------------------------
  root設定
------------------------- */
:root {
  font-size: 62.5%;

  /* カラー変数 */
  --color_main:           hsl(0, 0%, 100%);
  --color_base:           hsl(0, 0%, 100%);
  --color_baseRGB:        255, 255, 255;
  --color_baseHalf:       rgb(194, 26, 0);
  --color_baseHalfRGB:    194, 26, 0;
  --color_baseDark:       rgb(163, 22, 0);
  --color_baseDarkRGB:    163, 22, 0;
  --color_accent:         #C09A5E;
  --color_accentRGB:      192, 154, 94;
  --color_accentDark:     #996515;
  --color_accentDarkRGB:  153, 101, 21;
  --color_links:          #039be5;
  --color_text:           hsl(0, 0%, 0%);

  /* フォントファミリー変数 */
  --font_family_ENG: "Inter", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  --font_weight_ENG: 700;
  
  /* border-radius変数 */
  --radius_xs:   3px;
  --radius_sm:   6px;
  --radius_md:   8px;
  --radius_lg:  12px;
  --radius_xl:  24px;

  /* line-height変数 */
  --line_height_sm:  1.3;
  --line_height_md:  1.5;
  --line_height_lg:  1.7;
  --line_height_xl:  2.0;
  --line_height_2xl: 2.2;

  /* サイズ変数 */
  --header_height: 50px;
  --contents__maxWidth: 100%;

 /* フォントサイズ変数 */
  --font_size_xs:   1.3vw;
  --font_size_sm:   1.4vw;
  --font_size_md:   1.6vw;
  --font_size_lg:   2.0vw;
  --font_size_xl:   2.4vw;
  --font_size_2xl:  3.0vw;
  --font_size_3xl:  3.8vw;
  --font_size_4xl:  5.2vw;
}

/* タブレット変数 */
@media (min-width: 600px) {
  :root {
    font-size: 72.5%;

    /* サイズ変数 */
    --header_height: 50px;
    --contents__maxWidth: 600px;
  }
}

/* PC変数 */
@media (min-width: 1024px) {
  :root {
    font-size: 72.5%;

    /* サイズ変数 */
    --header_height: 70px;
    --contents__maxWidth: 600px;
  }
}


/* -------------------------
  デバイス判定
------------------------- */
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }
  .tablet:not(.sp) {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .tablet ~ .pc:not(.tablet) {
    display: none !important;
  }
  .sp:not(.tablet) {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .tablet:not(.pc) {
    display: none !important;
  }
}
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .landscape {
    display: none !important;
  }
}
/* デバイスが横長の向き */
@media (orientation: landscape) {
  .portrait {
    display: none !important;
  }
}


/* -------------------------
  html body
------------------------- */
html {
  touch-action: manipulation;
  background-color: var(--color_base);
  overscroll-behavior: none;
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1vw;
  font-weight: normal;
  line-height: var(--line_height_md);
  background: var(--color_base);
  color: var(--color_text);
  text-align: left;
  font-feature-settings: "palt";
  background-color: var(--color_base);
}
@media (min-width: 600px) {
  body {
    font-size: calc(1vw * 0.8);
  }
}
@media (min-width: 1024px) {
  body {
    /* font-size: calc(var(--contents__maxWidth) * 0.01); */
    font-size: calc(var(--contents__maxWidth) * 0.008);
  }
}
body * {
  letter-spacing: 0.1em;
}


/* -------------------------
  ローディング中の画面
------------------------- */
.loading__mask {
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width:  100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
  text-align: center;
  background: var(--color_base);
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 50%, 100% 50%, 100% 50%, 0 50%, 0 100%, 100% 100%, 100% 0%);
  transition: clip-path 0.75s, opacity 0s 0.75s;
  will-change: clip-path;
}
body.loaded .loading__mask {
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0%, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
  opacity: 0;
}

.loading__progress {
  --progress_percent: 0%;
  --bar_height: 4px;
  color: var(--color_text);
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
  height: auto;
  max-width: 300px;
  pointer-events: none;
}
.loading__progressText {
  position: absolute;
  top: -1.3em;
  left: 0;
  width: 100%;
  font-size: 12px;
  height: 1em;
  line-height: 1;
}
.loading__progressText::before,
.loading__progressText::after {
  content: '';
  color: currentColor;
  font-family: system-ui;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.loading__progressText::before {
  content: 'LOADING...';
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  animation: loadingText 0.75s infinite linear;
}
@keyframes loadingText {
  0%   {content: 'LOADING   ';}
  25%  {content: 'LOADING.  ';}
  50%  {content: 'LOADING.. ';}
  75%  {content: 'LOADING...';}
  100% {content: 'LOADING   ';}
}

.loading__progressText::after {
  content: attr(data-progress);
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}

.loading__progressBar {
  width: 100%;
  height: var(--bar_height);
  background-color: hsla(0, 0%, 0%, 0.1);
  border-radius: var(--bar_height);
  overflow: hidden;
}
.loading__progressBarFill {
  border-radius: var(--bar_height);
  height: 100%;
  width: var(--progress_percent);
  background-color: hsla(0, 0%, 0%, 1);
  transition: width 0.2s ease-in-out;
}


/* -------------------------
  common
------------------------- */
*:focus {
  outline: none;
}
img {
  display: block;
  /* Microsoft Edgeで画像検索無効に */
  pointer-events: none;
}
span.br {
  display: inline-block;
}
::selection {
  /* background-color: yellow; */
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
  line-height: var(--line_height_sm);
}
/* @media (any-hover: hover) {
  a[href] {
    transition: opacity 0.1s;
  }
  a[href]:hover {
    transition: opacity 0.2s;
    opacity: 0.5;
  }
} */
a[href] {
  transition: opacity 0.15s, scale 0.15s;
}
@media (any-hover: hover) {
  a[href]:hover {
    opacity: 0.7;
    transition: opacity 0.1s, scale 0.1s;
  }
}
a[href]:active {
  opacity: 0.7;
  transition: opacity 0.1s, scale 0.1s;
}

p>a[href^="http"] {
  color: var(--color_links);
}
p>a[href^="http"][target="_blank"] {
  position: relative;
  margin-left:  0.2em;
  margin-right: 0.2em;
}
p>a[href^="http"][target="_blank"]::after {
  content: "";
  position: relative;
  display: inline-block;
  width:  1em;
  height: 1em;
  aspect-ratio: 1 / 1;
  transform: translate(0, 15%);
  -webkit-mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  background-color: var(--color_links);
}

section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.inner {
  position: relative;
  padding-left:   8em;
  padding-right:  8em;
  padding-top:    8em;
  padding-bottom: 8em;
  max-width: var(--contents__maxWidth);
  margin-left:  auto;
  margin-right: auto;
}
hr {
  width: 100%;
  color: #000;
  opacity: 0.2;
}
.sectionBorder {
  position: relative;
  width: 100%;
}
.sectionBorder .inner {
  padding-top:    0;
  padding-bottom: 0;
}

/* -------------------------
  header
------------------------- */
header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}
header .logo a img {
  height: 24px;
}
@media (max-width: 1024px) {
  header {
    height: 40px;
  }
  header .logo a img {
    height: 24px;
  }
}



/* -------------------------
  main
------------------------- */
.contents__wrapper {
  position: relative;
  background-color: #FFF;
  width: 100%;
  max-width: var(--contents__maxWidth);
  margin: auto;
}
@media (min-width: 600px) {
  .contents__wrapper {
    margin: 20px auto 30px;
    border-radius: 16px;
    overflow: hidden;
  }
}
.contents__bg {
  display: none;
}
@media (min-width: 600px) {
  .contents__bg {
    display: block;
    position: fixed;
    top:  0;
    left: 0;
    width:  100%;
    height: 100%;
    height: 100lvh;
    background: url(../img/hero__bg.jpg) center / cover no-repeat;
  }
  .contents__bg::after {
    content: "";
    position: absolute;
    top:  0;
    left: 0;
    width:  100%;
    height: 100%;
    background: hsla(0, 0%, 100%, 0.3);
    /* backdrop-filter: blur(5px); */
  }
}
main {
  position: relative;
  text-align: center;
}


/* -------------------------
  hero
------------------------- */
.hero {
}
.hero h1 {
  position: relative;
  width: 100%;
}
.hero h1 img {
  width: 100%;
  max-width: var(--contents__maxWidth);
  margin: auto;
}


/* -------------------------
  package
------------------------- */
.package {

}
.package .inner {
  padding-bottom: 0;
}
.package img {
  width: 80%;
  margin: auto;
}


/* -------------------------
  stores
------------------------- */
.stores {
  padding-bottom: 10px;
}
.stores .inner {

}
.stores h2 {
  font-weight: bold;
  font-size: 20px;
}
.storeList {
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 15px 0;
}
.storeList li {
  width: 100%;
  background-color: hsl(0, 0%, 90%);
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.storeList li:nth-child(even) {
  background-color: hsl(0, 0%, 95%);
}
.storeList li p {
  font-size: 15px;
  font-weight: bold;
}
.storeList li .storeList__address {
  font-size: 12px;
  font-weight: normal;
  color: hsl(0, 0%, 50%);
}
.storeList li a {
  font-size: 12px;
  color: var(--color_links);
  text-decoration: underline;
  word-break: break-all;
  word-break: break-word;
  display: inline;
  margin: auto;
}
.storeList li hr {
  margin: 10px 0;
}
.caution {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.caution li {
  font-size: 11px;
  color: hsl(0, 0%, 50%);
  line-height: var(--line_height_sm);
}
@media (min-width: 600px) {
  .stores h2 {
    font-size: 26px;
  }
  .storeList li p {
    font-size: 18px;
  }
  .storeList li .storeList__address {
    font-size: 14px;
  }
  .storeList li a {
    font-size: 14px;
  }
  .caution li {
    font-size: 13px;
  }
}

/* -------------------------
  contact
------------------------- */
.contact {
  padding: 10px 0;
}
.contact h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1em;
}
.contact__name {
  font-size: 16px;
}
.contact__tel {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.075em;
}
.contact__tel span {
  user-select: none;
  margin-right: 0.1em;
}
@media (min-width: 600px) {
  .contact h2 {
    font-size: 26px;
  }
  .contact__name {
    font-size: 22px;
  }
  .contact__tel {
    font-size: 32px;
  }
}

/* -------------------------
  footer
------------------------- */
footer {
  text-align: center;
  background-color: hsl(0, 0%, 90%);
  color: hsla(0, 0%, 0%, 0.7);
}
footer .inner {
  display: flex;
  flex-direction: column;
  gap: 2.67em;
}
.footer__logo {
  display: block;
  width: 48em;
  margin: auto;
  margin-bottom: 2.67em;
}
.footer__logo img {
  width: 100%;
}
.footer__notice {
  font-size: 1.0rem;
  opacity: 0.8;
  line-height: var(--line_height_lg);
}
.footer__copyright {
  font-size: 1.0rem;
  opacity: 0.8;
  line-height: var(--line_height_lg);
}


/* -------------------------
  pagetop
------------------------- */
.fixed__btnWrap {
  position: fixed;
  bottom: 10px;
  left:   0;
  right:  0;
  padding: 0 10px;
  width: auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.3s;
  pointer-events: none;
}
@media (min-width: 600px) {
  .fixed__btnWrap {
    bottom: 20px;
    padding: 0 20px;
  }
}
.fixed__btnWrap > * {
  pointer-events: all;
}
.fixed__btnWrap.aos-init:not(.aos-animate) {
  bottom: -50px;
}
.fixed__btnWrap .btn__pageTop {
  width:  50px;
  height: 50px;
  line-height: 1;
  text-align: right;
  background: rgba(0,0,0,0.4);
  border-radius: 25px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  opacity: 1;
}
.fixed__btnWrap .btn__pageTop img {
  margin-top: 2px;
}
@media (any-hover: hover) {
  .fixed__btnWrap .btn__pageTop:hover {
    background: rgba(0,0,0,1);
    opacity: 1;
  }
}
.fixed__btnWrap .btn__pageTop:active {
  background: rgba(0,0,0,1);
  opacity: 1;
}

.fixed__btnWrap .btn__apply {
  height: 50px;
  width: auto;
  max-width: calc(100% - 60px);
}
@media (min-width:600px){
  .fixed__btnWrap.aos-init:not(.aos-animate) {
  bottom: -60px;
  }
  .fixed__btnWrap .btn__apply {
    height: 60px;
  }
}
@media (min-width:1024px){
  .fixed__btnWrap.aos-init:not(.aos-animate) {
    bottom: -60px;
    }
    .fixed__btnWrap .btn__apply {
    height: 60px;
  }
}
