@charset "UTF-8";

/*---------------------------------------------

	全ページ共通

---------------------------------------------*/
/* ↓ html / body ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  color: #000000;
  line-height: 1.6;
  font-optical-sizing: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  /*bold700 Medium 500 regular400 light 300*/
  position: relative;
  min-height: 100vh;
  letter-spacing: 0.08rem;
  background-color: #fff;

}

.mincho {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

html,
body {
  height: 100%;
}

body>footer {
  position: sticky;
  top: 100vh;
}

img {
  width: 100%;
}

html,
body {
  scroll-padding-top: 70px;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  /* 必要に応じて追加 */
}

/* ↓ 色の定義------------------------*/
:root {
  --gray: #F4F5F7;
}

a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  /* opacity: 0.7; */
  cursor: pointer;
}

/* ↓ 共通アニメーション------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ↓ ぽよぽよ（ボタン用）-----------------*/

@keyframes poyopoyo {

  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }

  20%,
  50%,
  70% {
    transform: scale(0.95);
  }
}

/* ↓ ゆらゆら（FV用）-----------------*/
@keyframes yurayura {

  0%,
  100% {
    transform: rotate(0.5deg);
  }

  50% {
    transform: rotate(-0.5deg);
  }

  100% {
    transform: rotate(0.5deg);
  }
}

/* ↓ 上下する（ポイントの泡）-----------------*/
@keyframes fuwafuwajouge {
  0% {
    transform: translate(0, 0px);
  }

  100% {
    transform: translate(0, 15px);
  }
}

@media screen and (max-width: 600px) {
  @keyframes fuwafuwajouge {
    0% {
      transform: translate(0, 0px);
    }

    100% {
      transform: translate(0, 8px);
    }
  }
}

/* ↓ 上昇する泡-----------------*/
@keyframes bubble {
  0% {
    transform: translate3d(0, 0, 0) scale(0.5, 0.5);
    opacity: 0;
  }

  20% {
    opacity: 0.8;
  }

  30% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translate3d(-6%, -18rem, 0) scale(1.1, 1.1);
    opacity: 1;
  }
}

@media screen and (max-width: 540px) {
  @keyframes bubble {
    0% {
      transform: translate3d(0, 0, 0) scale(0.5, 0.5);
      opacity: 0;
    }

    20% {
      opacity: 0.8;
    }

    30% {
      opacity: 1;
    }

    50% {
      opacity: 1;
    }

    85% {
      opacity: 1;
    }

    100% {
      transform: translate3d(-50%, -18rem, 0) scale(1.1, 1.1);
      opacity: 1;
    }
  }

  @keyframes bubble02 {
    0% {
      transform: translate3d(0, 0, 0) scale(0.5, 0.5);
      opacity: 0;
    }

    20% {
      opacity: 0.8;
    }

    30% {
      opacity: 1;
    }

    50% {
      opacity: 1;
    }

    85% {
      opacity: 1;
    }

    100% {
      transform: translate3d(50%, -18rem, 0) scale(1.1, 1.1);
      opacity: 1;
    }
  }
}

/*---------------------------------------------

	レイアウト調整ユーティリティ

---------------------------------------------*/
/* textalign */
.util-textalignCenter {
  text-align: center;
}

.util-textalignLeft {
  text-align: left;
}

.util-textalignRight {
  text-align: right;
}

/* width100% */
.util-w100 {
  width: 100%;
}

/* margin（リキッドレイアウト用） */
.util-mb30 {
  margin-bottom: 30px;
}

.util-mb40 {
  margin-bottom: 40px;
}

.util-mb60 {
  margin-bottom: 60px;
}

.util-mb05 {
  margin-bottom: 0.5rem;
}

.util-mb08 {
  margin-bottom: 0.8rem;
}

.util-mb1 {
  margin-bottom: 1rem;
}

.util-mb13 {
  margin-bottom: 1.3rem;
}

.util-mb15 {
  margin-bottom: 1.5rem;
}

.util-mb17 {
  margin-bottom: 1.7rem;
}

.util-mb18 {
  margin-bottom: 1.8rem;
}

.util-mb18 {
  margin-bottom: 1.8rem;
}

.util-mb2 {
  margin-bottom: 2rem;
}

.util-mb23 {
  margin-bottom: 2.3rem;
}

.util-mb25 {
  margin-bottom: 2.5rem;
}

.util-mb3 {
  margin-bottom: 3rem;
}

.util-mb35 {
  margin-bottom: 3.5rem;
}

.util-mb4 {
  margin-bottom: 4rem;
}

.util-mb45 {
  margin-bottom: 4.5rem;
}

.util-mb5 {
  margin-bottom: 5rem;
}

.util-mb55 {
  margin-bottom: 5.5rem;
}

.util-mb6 {
  margin-bottom: 6rem;
}

.util-mb7 {
  margin-bottom: 7rem;
}

.util-mb75 {
  margin-bottom: 7.5rem;
}

.util-mb8 {
  margin-bottom: 8rem;
}

.util-mb115 {
  margin-bottom: 11.5rem;
}

.util-mb135 {
  margin-bottom: 13.5rem;
}

.util-mt05 {
  margin-top: 0.5rem;
}

.util-mt1 {
  margin-top: 1rem;
}

.util-mt15 {
  margin-top: 1.5rem;
}

.util-mt18 {
  margin-top: 1.8rem;
}

.util-mt2 {
  margin-top: 2rem;
}

.util-mt3 {
  margin-top: 3rem;
}

.util-mt35 {
  margin-top: 3.5rem;
}

.util-mt4 {
  margin-top: 4rem;
}

.util-mt5 {
  margin-top: 5rem;
}

.util-mt6 {
  margin-top: 6rem;
}

.util-mt7 {
  margin-top: 7rem;
}

.util-mt75 {
  margin-top: 7.5rem;
}

.util-mt9 {
  margin-top: 9rem;
}

.util-mt10 {
  margin-top: 10rem;
}

.util-mt36 {
  margin-top: 36rem;
}

/* sp_margin */
@media screen and (max-width: 540px) {

  .util-mb30-sp {
    margin-bottom: 30px;
  }

  .util-mb0-sp {
    margin-bottom: 0rem;
  }

  .util-mb05-sp {
    margin-bottom: 0.5rem;
  }

  .util-mb1-sp {
    margin-bottom: 1rem;
  }

  .util-mb125-sp {
    margin-bottom: 1.25rem;
  }

  .util-mb13-sp {
    margin-bottom: 1.3rem;
  }

  .util-mb15-sp {
    margin-bottom: 1.5rem;
  }

  .util-mb18-sp {
    margin-bottom: 1.8rem;
  }

  .util-mb2-sp {
    margin-bottom: 2rem;
  }

  .util-mb25-sp {
    margin-bottom: 2.5rem;
  }

  .util-mb3-sp {
    margin-bottom: 3rem;
  }

  .util-mb375-sp {
    margin-bottom: 3.75rem;
  }

  .util-mb4-sp {
    margin-bottom: 4rem;
  }

  .util-mb5-sp {
    margin-bottom: 5rem;
  }

  .util-mb55-sp {
    margin-bottom: 5.5rem;
  }

  .util-mb6-sp {
    margin-bottom: 6rem;
  }

  .util-mt0-sp {
    margin-top: 0rem;
  }

  .util-mt05-sp {
    margin-top: 0.5rem;
  }

  .util-mt1-sp {
    margin-top: 1rem;
  }

  .util-mt15-sp {
    margin-top: 1.5rem;
  }

  .util-mt2-sp {
    margin-top: 2rem;
  }

  .util-mt3-sp {
    margin-top: 3rem;
  }

  .util-mt4-sp {
    margin-top: 4rem;
  }

  .util-mt5-sp {
    margin-top: 5rem;
  }

  .util-mt6-sp {
    margin-top: 6rem;
  }
}

/*---------------------------------------------

	背景

---------------------------------------------*/
.bgWhite {
  background: #f7f7f7;
}

.bgGreen {
  background: #d9ede7;
}

.bgYellow {
  background: #fff6c4;
}

/*---------------------------------------------

	テキストカラー

---------------------------------------------*/

/* テキストカラー　白 */
.util-text-white {
  color: #fff !important;
}

/* テキストカラー　黒 */
.util-text-black {
  color: #333 !important;
}

.util-text-pink {
  color: #da647e;
}

/*---------------------------------------------

	テキストデコレーション

---------------------------------------------*/
.util-textDecoration-underline {
  text-decoration: underline;
}

/*---------------------------------------------

	インナー

---------------------------------------------*/

.util-inner-small {
  width: 71.014492753623%;
  max-width: 1000px;
  margin: 0 auto;
}


@media screen and (max-width: 540px) {
  .util-inner-small {
    width: 89.814493%;
    margin: 0 auto;
  }

}



/*---------------------------------------------

	ボタン

---------------------------------------------*/

.util-button {
  position: relative;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border-radius: 4px;
  background: #e13231;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
}


@media screen and (min-width: 1024px) {
  .util-button {
    font-size: 16px;
  }
}


.util-button:hover {
  opacity: 0.8;
}

/*---------------------------------------------

	タイトル

---------------------------------------------*/

.util-title {
  margin-bottom: 40px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #2C2A25;
}

@media screen and (min-width: 1024px) {
  .util-title {
    margin-bottom: 80px;
    font-size: 40px;
  }
}

.util-title--s {
  margin-bottom: 40px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 16px;
  text-align: center;
  color: #2C2A25;
}


/* スマートフォン（SP）の場合のスタイル設定 */
.emsp {
  display: inline;
}

.sp {
  display: none;
}

.pc {
  display: block;
}


@media screen and (max-width: 540px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}