@charset "utf-8";

/* =========================================
  - Mobile First
  - min-width 768px  tablet - PC
  - clamp(), vw, dvh
========================================= */

/* -----------------------------
Box sizing & Base
----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: clamp(14px, 3.5vw, 18px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: #fff;
  line-height: 1.6;
  min-height: 100dvh;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

/* -----------------------------
PC/SP切り替え
----------------------------- */
.pc {
  display: none;
}
.sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

/* -----------------------------
画像・メディア
----------------------------- */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* -----------------------------
リンク・テキスト
----------------------------- */
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

/* -----------------------------
リスト
----------------------------- */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* -----------------------------
フォーム
----------------------------- */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* -----------------------------
ヘッダー・ナビ
----------------------------- */
header {
  position: relative;
  width: 100%;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

nav a {
  font-size: clamp(14px, 4vw, 18px);
  padding: 8px 12px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: flex-end;
  }
}

/* -----------------------------
ボタン共通
----------------------------- */
.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: clamp(10px, 3vw, 18px) clamp(20px, 5vw, 40px);
  border-radius: 9999px;
  font-size: clamp(14px, 4vw, 18px);
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .btn {
    font-size: clamp(14px, 1.2vw, 18px);
  }
}

/* -----------------------------
フッター
----------------------------- */
footer {
  padding: clamp(20px, 5vw, 60px);
  text-align: center;
  font-size: clamp(12px, 3vw, 16px);
}

/* -----------------------------
Swiper
----------------------------- */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  position: relative;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* -----------------------------
マテリアルアイコン
----------------------------- */
.material-icons,
.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* -----------------------------
レイアウト
----------------------------- */
#wrapper {
  width: 100%;
  margin: 0 auto;
}
.contents {
  margin: 3rem 0;
}

@media screen and (min-width: 768px) {
  .inner_under {
    padding-bottom: 6rem;
  }
  .inner {
    padding: 3rem 0;
  }
}

/* -----------------------------
コンテンツヘッダー
----------------------------- */
.contents_header {
  padding: 3rem 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}

.contents_header h1 {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}
.contents_header p.title {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
}
.contents_header p {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .contents_header {
    padding: 2rem 0;
  }
  .contents_header h1,
  .contents_header p.title {
    font-size: 1rem;
  }
  .contents_header p {
    font-size: 2rem;
  }
}

/* -----------------------------
パンくず
----------------------------- */
.breadcrumb {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 0.75rem;
}
.breadcrumb span {
  margin: 0 0.5rem;
}
.breadcrumb span:first-child {
  margin: 0 0.5rem 0 0;
}

/* -----------------------------
タイトル
----------------------------- */
.cont_titile {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  padding: 2.5rem 0 1rem;
}

.cont_titile span {
  font-size: 2rem;
  line-height: 1;
  display: block;
  padding-bottom: 0.25rem;
}

.cont_titile a {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.cont_titile a img {
  width: 2rem;
  height: auto;
}

@media screen and (min-width: 768px) {
  .cont_titile {
    padding: 2.5rem 0 1.5rem;
  }
}
