@charset "UTF-8";
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
}
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
}
/* CSS Document */
/** ==============================
 * ローディング画面スタイル start
 * ============================== **/

#loading-screen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #0380c6, #04b0aa, #a8cc82);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}

.loading-logo {
  width: 120px;
  height: auto;
  opacity: 1;
  transition: opacity 1s ease;
}

/* フェードアウト用クラス */
.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* 本文初期状態（非表示） */
#main-content {
  visibility: hidden;
  opacity: 0;
  background-color: #fdfdfc;
}

/* 本文フェードイン用 */
#main-content.fade-in {
  visibility: visible;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/** ==============================
 * ローディング画面スタイル end
 * ============================== **/


/* =========================================
 * common.css（初期設定・汎用スタイル）
 * ========================================= */

/* ボックスサイズをborder-boxに統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ベースリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5要素をブロックとして扱う（古いブラウザ対応） */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
/* ボディの初期設定 */
html {
  font-size: 1.25vw; /* 1280px時に約16px */
  font-feature-settings: "palt";
}
}

/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
/* ボディの初期設定 */
html {
  font-size: 4.103vw; /* 390px時に約16pxになる */
  font-feature-settings: "palt";
}
}
body {
  font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
  line-height: 1.618;
  color: #333;
  background-color: #fff;
}

/* ゴシック体用クラス */
.gothic {
  font-family: 'Noto Sans JP', sans-serif;
}

/* 明朝体用クラス */
.serif {
  font-family: 'Noto Serif JP', serif;
}

/* 英文用クラス（Jost） */
.jost {
  font-family: 'Jost', sans-serif;
}

/* リスト初期化 */
ol, ul {
  list-style: none;
}

/* リンクの初期設定 */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* 画像の基本スタイル */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 見出しタグの初期フォントウェイト */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit; /* ← bodyの値を使う */
}

/* 汎用ユーティリティクラス（必要に応じて） */
.text-center {
  text-align: center;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}