@charset "utf-8";

/*  Resetting
/*-------------------------------------------*/
html {
  width: 100%;
  overflow-x: hidden;
  height: 100svh;
}

body {
  font-family: yakuhanjp,"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-size: 20px;
  line-height: 1.8;
  overflow-x: clip;
  color: #000000;
  font-weight: 500;/*(ミディアム)*/
  height: 100svh;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0px;
  padding: 0px;
  word-wrap: break-word;
  list-style: none;
  text-decoration: none;
  border: 0;
  vertical-align: top;
}
h1 {
  line-height: 1;
  display: flex;
}
h2 {
  font-size: 48px;
  text-align: center;
  margin-inline: auto;
  line-height: 1.2;
}
p {
  text-align: justify;
}
/*マーカー*/
.marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline;
}
figure {
  text-align: center;
}
img {
  margin-inline: auto;
  max-width: 100%;
  height: auto;
}
a:hover img {
  opacity: 1;
}
ul li,
ol li {
  list-style: none;
}

.center {
  text-align: center;
}
.center2 {
  display: grid;
  place-items: center;
}
.inner {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
}
.bold {
  font-weight: 700;
}

.pc {
  display: block;
}

.sp,.sp2 {
  display: none;
}
.max_unset {
  max-width: unset;
  width: 100%;
}
.fit {
  margin-inline: auto;
  max-inline-size: fit-content;
}
.flex-shrink {
  flex-shrink: 0;
}
.vw100 {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

/*段落*/
.margin {
  margin-bottom: 20px;
}
.zen_maru{
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}


/*-------------------------------------------*/
/*  Wrap
/*-------------------------------------------*/
.inner-wrap {
  width: auto;
  padding: 30px 75px 30px 75px;
}
.wrap {
  margin: auto;
  overflow: hidden;
  max-width: 1000px;
}

.wrap_1098 {
  max-width: 960px;
}


/*-------------------------------------------*/
/*  ボタンアニメーション
/*-------------------------------------------*/
/*アニメーション(横、縦にフワフワ)*/
.animation {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

/*アニメーション(揺れる)*/
.animation2 {
  animation: yureru-s 2s infinite;
  scale: 1;
}

@keyframes yureru-s {
  0% {
    transform: translate(2px, 0px);
}
5% {
    transform: translate(-2px, 0px);
}
10% {
    transform: translate(2px, 0px);
}
15% {
    transform: translate(-2px, 0px);
}
20% {
    transform: translate(2px, 0px);
}
25% {
    transform: translate(-2px, 0px);
}
30% {
    transform: translate(0px, 0px);
}
}



