/* 
 * common.css
 * コンポーネント以外で使用する共通スタイル
 */

:root {
  /* 基準フォントサイズ */
  --root-font-size: 16;
  /* remスケーリング */
  --scale-rem: calc(1rem / var(--root-font-size));
  /* ヘッダーの高さ（JSで取得） */
  --header-height: 0px;
}

body,
html {
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  background-image: url('../img/page_bg.jpg');
  background-blend-mode: multiply;
  background-size: 100%;
  background-repeat: repeat;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-style: normal;
}
body.s {
  background-size: 200%;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  transition: opacity 0.3s;
}

main.page {
  /* padding-top: 120px; */
}

img {
  width: 100%;
}

.l ._sp {
  display: none;
}
.s ._sp {
  display: block;
}
.l ._pc {
  display: block;
}
.s ._pc {
  display: none;
}

.font-heading {
  font-family: ta-fuga-fude, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/**************************************
 * アプリ
**************************************/
.app {
  background-color: rgba(241, 224, 195, 0.6);
}
.app-inner {
  display: flex;
  padding: 100px 40px;
}
.s .app-inner {
  flex-direction: column;
  padding: 15% 5% 30% !important;
  gap: 20px;
}

.app-left {
  width: 565px;
}
.s .app-left {
  width: 100%;
}

.app-btnArea {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 50px;
}
.s .app-btnArea {
  gap: 24px;
  margin-top: 24px;
}

.apple-btn,
.google-btn {
  width: 202px;
}
.s .apple-btn,
.s .google-btn {
  width: calc(154 / var(--design-width-sp) * 100vw);
}

.app-title {
  width: clamp(
    calc(270 / var(--root-font-size) * 1rem),
    calc(460 / var(--design-width) * 100vw),
    calc(460 / var(--root-font-size) * 1rem)
  );
}
.s .app-title {
  margin: 0 auto;
  width: 100%;
}

.app-text {
  color: #841b2a;
  font-size: clamp(
    calc(14 / var(--root-font-size) * 1rem),
    calc(24 / var(--design-width) * 100vw),
    calc(24 / var(--root-font-size) * 1rem)
  );
  font-weight: bold;
  margin-top: 23px;
}
.s .app-text {
  margin-top: 0;
  font-size: calc(20 / var(--design-width-sp) * 100vw);
}
.app-point {
  margin-top: 23px;
}
.app-pointIcon {
  width: 33px;
  height: 34px;
}

.app-point > li {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  align-items: center;
  font-size: clamp(
    calc(14 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
  font-weight: bold;
}

.s .app-point > li {
  font-size: calc(18 / var(--design-width-sp) * 100vw);
}
