@charset "UTF-8";
/* Compiled from SCSS using Live Sass Compiler */
:root {
  /* ---- カラー（主要なもののみ変数とする） ---- */
  --color-base-black: #000;
  --color-primary: #00a73c;
  /* ---- z-index（全て変数とする） ---- */
  --z-page-bottom: 1000;
  /* ---- デザインカンプのサイズ（比率計算で使用） ---- */
  --comp-sp: 390;
  --comp-pc: 1366;
  /* ---- その他 ---- */
}
/* ---- 既存スタイルのリセット&ベーススタイル ---- */
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--color-primary);
}
#contents {
  padding: 0;
}
@media screen and (min-width: 768px) {
  #contents {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  #contents > article {
    flex: 1;
  }
}

#main-contents {
  position: relative;
  color: #fff;
  font-size: 15px !important;
  line-height: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  #main-contents {
    font-size: 16px !important;
  }
}
#main-contents *,
#main-contents *::before,
#main-contents *::after {
  box-sizing: border-box;
}
#main-contents .wapper-special {
  max-width: none;
  font-size: inherit;
  line-height: normal;
  border: none;
  margin: 0;
  padding: 0;
}

:where(#main-contents) img {
  image-rendering: -webkit-optimize-contrast; /* chromeの画像ぼやけ対策 */
  vertical-align: middle !important;
  max-width: 100%;
  height: auto;
}

:where(#main-contents) button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

:where(#main-contents) a {
  color: inherit;
}
@media (any-hover: hover) {
  :where(#main-contents) a:is(:hover, :focus-visible) {
    text-decoration: none;
  }
}

nav a,
header a {
  color: var(--color-base-black);
}

#page-bottom {
  z-index: var(--z-page-bottom);
}

/* ---- ユーティリティ ---- */
@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---- インナー ---- */
.inner {
  padding-inline: 16px;
}
/* ---- .site-header ---- */
.site-header {
  margin: 0;
  padding-block: 15px;
}
@media screen and (min-width: 768px) {
  .site-header {
    padding-block: calc(20 / var(--comp-pc) * 100vw);
  }
}

.site-header_logo {
  max-width: 192px;
  line-height: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .site-header_logo {
    width: calc(299 / var(--comp-pc) * 100vw);
    max-width: none;
  }
}

.site-header_img {
  width: 100%;
}
/* ---- .hero ---- */
.hero_img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero_img {
    width: calc(1246 / var(--comp-pc) * 100vw);
  }
}

/* ---- .message ---- */
.message {
  padding-block: 26px 10px;
}
@media screen and (min-width: 768px) {
  .message {
    padding-block: calc(35 / var(--comp-pc) * 100vw) calc(20 / var(--comp-pc) * 100vw);
  }
}

.message_text {
  font-size: 18px;
}
#main-contents .wapper-special .message_text {
  text-align: center;
  line-height: 1.1;
}
.message_text em {
  font-weight: 700;
  font-style: normal;
}
.message_text span {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .message_text span {
    font-size: calc(34 / var(--comp-pc) * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .message_text {
    font-size: calc(24 / var(--comp-pc) * 100vw);
  }
}

/* ---- .video ---- */
.video {
  padding-block: 12px 13px;
}
@media screen and (min-width: 768px) {
  .video {
    padding-block: calc(17 / var(--comp-pc) * 100vw);
  }
}

.video_iframe {
  --border-width: 8px;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: var(--border-width) solid #fff;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .video_iframe {
    --border-width: calc(10 / var(--comp-pc) * 100vw);
    width: calc(680 / var(--comp-pc) * 100vw);
  }
}

/* ---- .sns ---- */
.sns {
  padding-block: 13px 50px;
}
@media screen and (min-width: 768px) {
  .sns {
    padding-block: calc(17 / var(--comp-pc) * 100vw) calc(60 / var(--comp-pc) * 100vw);
  }
}

.sns_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .sns_list {
    gap: calc(30 / var(--comp-pc) * 100vw);
  }
}

.sns_link {
  --hover-opacity: 0.6;
  display: block;
  line-height: 0;
  background-color: #fff;
  border-radius: 4px;
  padding: 9px;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .sns_link {
    border-radius: calc(4 / var(--comp-pc) * 100vw);
    padding: calc(10 / var(--comp-pc) * 100vw);
  }
}
.sns_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .sns_link:hover {
    opacity: var(--hover-opacity);
  }
}

.sns_img {
  width: 28px;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .sns_img {
    width: calc(32 / var(--comp-pc) * 100vw);
  }
}
