@charset "UTF-8";
/*
Theme Name: 七海ゆきオフィシャルサイト
*/
/* フォントのインポート */
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;800;900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* カスタムプロパティ定義 */
:root {
  /* フォントの太さ */
  --Light: 300;
  --Regular: 400;
  --Medium: 500;
  --SemiBold: 600;
  --Bold: 700;
  --ExtraBold: 800;
  --Black: 900;
  /* 画面サイズ関連 */
  --min-window: 1200px; /* ウィンドウサイズがこれより小さい場合は */
  --inner: 1000px; /* ニュース等の横幅 */
}

/* html全体に関わるもの */
html,
body {
  margin: 0;
  /* font-family: "Noto Serif JP", serif; */
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
  min-width: var(--min-window);
  /* 横幅1920pxのときに10pxになる */
  /* font-size: calc(100vw / 192); */
}

@media screen and (max-width: 767px) {
  html,
  body {
    width: auto;
    min-width: auto;
    /* 横幅768pxのときに10pxになる */
    /* font-size: calc(100vw / 76.8); */
  }
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  word-wrap: break-word;
}
a:hover {
  opacity: 0.6;
}

img {
  vertical-align: top;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 0;
}
nav ul li {
  cursor: pointer;
}

section[id^=page] {
  width: var(--inner);
  margin: 0 auto;
}

/* rechaptchaの非表示 */
/*
.grecaptcha-badge {
  visibility: hidden;
}
*/
#front-page {
  width: 100%;
}
#front-page img {
  width: 100%;
}
