@charset "UTF-8";
/*!
Theme Name: Hyper Casual Base
Version: 1.0.0
Author: adog
*/
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*----- LINKS -----*/
a {
  color: #006fbc;
  text-decoration: underline;
}
a:hover {
  color: #050e1a;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}
a[href^="tel:"] {
  cursor: default;
}

/*----- IMAGES -----*/
img {
  max-width: 100%;
  vertical-align: bottom;
}
img[src$=".svg"] {
  width: 100%;
}

/*----- MISC -----*/
::-moz-selection {
  background: #cedae3;
  color: #050e1a;
  text-shadow: none;
}
::selection {
  background: #cedae3;
  color: #050e1a;
  text-shadow: none;
}

::-webkit-selection {
  background: #cedae3;
  color: #050e1a;
  text-shadow: none;
}

::-moz-selection {
  background: #cedae3;
  color: #050e1a;
  text-shadow: none;
}

/*----- FONT SIZE -----*/
:root {
  --primary: #3cb9b1;
  --dark: #111;
}
:root .mb-30 {
  margin-bottom: clamp(0px, 5vw, 30px);
}
:root .mt-50 {
  margin-top: clamp(0px, 7vw, 50px);
}

/* Document
========================================================================== */
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  height: 100%;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(
    16px,
    -3px + 0.05 * 100vw,
    24px
  );
  color: var(--dark);
  background-color: #fff;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Sections
========================================================================== */
header {
  background-color: var(--primary);
}
header .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(0px, 6vw, 40px) 0;
}
header .logos img {
  width: 90%;
  max-width: 480px;
}

main#mainwraper {
  width: 90%;
  max-width: 480px;
  margin: auto;
  text-align: center;
  padding: clamp(0px, 15vw, 100px) 0;
}
main#mainwraper h2 {
  font-weight: 700;
  font-size: clamp(
    30px,
    6.25px + 0.0625 * 100vw,
    40px
  );
  margin-bottom: clamp(0px, 12vw, 80px);
}
main#mainwraper h2 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0px, 2vw, 10px) 0;
  position: relative;
}
main#mainwraper h2 span::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(0px, 1.5vw, 7px);
  border-radius: 500px;
  background-color: var(--dark);
}
main#mainwraper .ticket {
  color: #fff;
  background-color: #dd0019;
  font-weight: 700;
  font-size: clamp(
    26px,
    7px + 0.05 * 100vw,
    34px
  );
  padding: 5px 0 6px;
  border-radius: 7px;
  margin-bottom: clamp(0px, 12vw, 70px);
}
main#mainwraper .item h3 {
  font-weight: 700;
  font-size: clamp(
    22px,
    17.25px + 0.0125 * 100vw,
    24px
  );
  margin-bottom: clamp(0px, 8vw, 40px);
}
main#mainwraper .item h3 span {
  display: inline-block;
  color: #fff;
  background-color: var(--primary);
  border-radius: 7px;
  padding: 10px 35px;
  letter-spacing: 7px;
}
main#mainwraper .item h4 {
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(
    24px,
    19.25px + 0.0125 * 100vw,
    26px
  );
  margin-bottom: clamp(0px, 2vw, 10px);
}
main#mainwraper .item a.tel {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(
    32px,
    27.25px + 0.0125 * 100vw,
    34px
  );
  margin-bottom: clamp(0px, 5vw, 30px);
  display: block;
}
main#mainwraper .item p.justify {
  text-align: justify;
}
main#mainwraper .item div.bank {
  width: 90%;
  margin: clamp(0px, 5vw, 30px) auto;
  padding: clamp(0px, 2.5vw, 15px) 0;
  border: 8px solid #d9d9da;
}
main#mainwraper .item p.note {
  text-align: center;
  font-size: clamp(
    14px,
    -5px + 0.05 * 100vw,
    22px
  );
}
main#mainwraper .item hr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  margin: clamp(0px, 12vw, 70px) 0;
}
main#mainwraper .item hr::after {
  content: "";
  display: block;
  width: 110px;
  height: clamp(0px, 1.5vw, 7px);
  border-radius: 500px;
  background-color: var(--dark);
}
main#mainwraper .footer {
  font-size: clamp(
    12px,
    -2.25px + 0.0375 * 100vw,
    18px
  );
}
main#mainwraper .footer p ~ p {
  margin-top: 2em;
}