@charset "utf-8";

/*Reset*/
html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
img,
embed,
object,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
  font-weight: 500;
}

/* ---- iOSでのデフォルトスタイルをリセット ---- */
button,
input[type='submit'],
input[type='button'] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ---- Webフォント ---- */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/common/fonts/notosansjp/NotoSansJP-Regular.woff2?rd=202507161000') format('woff2');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/common/fonts/notosansjp/NotoSansJP-Bold.woff2?rd=202507161000') format('woff2');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/common/fonts/notosansjp/NotoSansJP-Black.woff2?rd=202507161000') format('woff2');
}
@font-face {
  font-family: 'YakuHanJPs';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/common/fonts/yakuhanjps/YakuHanJPs-Regular.woff2?rd=202507161000') format('woff2');
}
@font-face {
  font-family: 'YakuHanJPs';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/common/fonts/yakuhanjps/YakuHanJPs-Bold.woff2?rd=202507161000') format('woff2');
}

/* ---- Default ---- */
:root {
  --color-primary: #004098;
  --color-primary-rgb: 0 64 152;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  font-family: YakuHanJPs, 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Helvetica Neue', Arial, Meiryo, sans-serif;
  font-size: 1.6rem;
  background: #fff;
  color: #000;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
body.scroll-stop {
  height: 100vh;
  overflow: hidden;
}
.debug {
  z-index: 300052 !important;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ---- Utility ---- */
.block {
  margin-bottom: 2.4rem;
  overflow: hidden;
  clear: both;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.center {
  justify-content: center;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.bold {
  font-weight: 700;
}
.clearfix {
  clear: both;
}
.clear:after,
.clearfix:after,
.block:after,
.box::after {
  content: ' ';
  display: table;
  clear: both;
}
.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;
}

/* ---- 引用ツイート ---- */
#twitter-share-btn {
  --hover-transform: scale(1.05);
  width: 80px;
  height: 40px;
  font-size: 1.25rem;
  background-color: #000;
  cursor: pointer;
  border-radius: 0.25em;
  border: none;
  margin: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  transition: all 0.3s ease-in-out;
  -webkit-animation: a 0.3s;
  animation: a 0.3s;
}
#twitter-share-btn:focus-visible {
  transform: var(--hover-transform);
}
@media (any-hover: hover) {
  #twitter-share-btn:hover {
    transform: var(--hover-transform);
  }
}
#twitter-share-btn span {
  pointer-events: none;
}
#twitter-share-btn span svg {
  width: 22px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
@keyframes a {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    transform: translateY(0);
    opacity: 1;
  }
}
.p-event-none {
  pointer-events: none;
}
