/* Base CSS - 共通要素の定義 */

/* カスタムプロパティ（変数）の定義 */
:root {
  /* カラー */
  --color-primary: #e95377;
  --color-secondary: #23546c;
  --color-text-light: #6a6969;
  --color-text-dark: #3e3a39;
  --color-background-light: #fff;
  --color-shadow: rgba(0, 0, 0, 0.1);

  /* レイアウト */
  --container-max-width: 1200px;
  --container-padding: 0 20px;

  /* ブレークポイント */
  --breakpoint-mobile: 768px;

  /* フォント */
  --font-size-small: 12px;
  --font-size-normal: 15px;
  --font-size-pc-small: 13px;
  --font-size-pc-large: 20px;
  --line-height-normal: 1.5;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-dark);
}

select {
  color: var(--color-text-dark);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  font-family: inherit;
}

select option {
  color: var(--color-text-dark);
}

/* 共通コンテナ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* フレックスボックスユーティリティ */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* テキストユーティリティ */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* リンクスタイル */
.text-link {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.text-link:hover {
  opacity: 0.8;
}

.line {
  border-width: 1px 0 0;
  border-style: solid;
  border-color: var(--color-primary);
  margin: 0;
}

@media screen and (min-width: 768px) {
  .line {
    border-width: 3px 0 0;
  }
}

/* レスポンシブユーティリティ */
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media (max-width: 769px) {
  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }
}

/* 共通マージン・パディング */
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}
