@charset "UTF-8";

/* =============================================
   ユーティリティ：改行制御
   sp-br = モバイルのみ表示 / pc-br = デスクトップのみ表示
============================================= */
.sp-br { display: none; }
.pc-br { display: inline; }
@media (max-width: 430px) {
  .sp-br { display: inline; }
  .pc-br { display: none; }
}

/* =============================================
   リセット
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  color: #555555;
  line-height: 1.8;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =============================================
   共通レイアウト
============================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 28px;
  }
}
