@charset "UTF-8";
/*
Theme Name: theme name
Description: description
Author:yashibous
Author URI: https://yashibous.com
*/
/* 
 * Reset
 * --------------------------
 */
/* 
 * Mixin
 * --------------------------
 */
/*
 * responsive.scss
 */
/*
 * text-setting.scss
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
/* 
 * Base
 * --------------------------
 */
/*
 * base.scss
 */
body {
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシ＞ック", Arial, Verdana, sans-serif;
  font-weight: 500;
}

img {
  width: 100%;
  vertical-align: bottom;
}

/*
 * function.scss
 */
/*
 * variables.scss
 */
/*
 * ビューポートサイズ
 */
/*
 * デザイン幅
 */
/*
 * デザイン幅
 */
/*
 * カラーパレット
 */
/* 
 * Module
 * --------------------------
 */
/*
 * layout.scss
 */
.layout03__item, .layout03__list, .layout02__text, .layout02__img, .layout01__block {
  border: 1px solid red;
  background-color: rgba(221, 221, 255, 0.5333333333);
  width: 100%;
  padding: 2rem;
}

.layout01 {
  height: 100%;
}
.layout01 .layout01__wrapper--horizontal, .layout01 .layout01__wrapper--vertical {
  display: flex;
  flex-wrap: nowrap;
  gap: 3%;
  height: 100%;
}
.layout01__wrapper--vertical {
  flex-direction: column;
}
.layout01__wrapper--horizontal {
  flex-direction: row;
}
.layout02__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.layout02 .layout02__item--reverse, .layout02 .layout02__item {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
.layout02__item {
  flex-direction: row;
}
.layout02__item--reverse {
  flex-direction: row-reverse;
}
.layout02__img {
  margin-left: auto;
  margin-right: auto;
  width: 32%;
}
.layout02__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #574E4C;
  text-align: center;
  width: 65%;
}

.layout03__list {
  display: flex;
  justify-content: space-between;
}
.layout03__item {
  width: 30%;
  height: 50%;
}
.layout03__item:nth-child(1) {
  margin-top: 0;
}
.layout03__item:nth-child(2) {
  margin-top: 20px;
}
.layout03__item:nth-child(3) {
  margin-top: 40px;
}

.layout04__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.layout04__item {
  width: 100%;
  height: 200px;
  background-color: rgba(221, 221, 255, 0.5333333333);
}
@media screen and (min-width: 640px) {
  .layout04__item {
    width: 48%;
  }
}
@media screen and (min-width: 950px) {
  .layout04__item {
    width: 30%;
  }
}

.layout05__mainvisual {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.layout05__contents {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/*
 * parts.scss
 */
.clipped-shadow {
  width: 100%;
  height: 100%;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
}
.clipped-shadow > * {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  width: 100%;
  height: 100%;
}

/*
 * ステップ型フォーム様レイアウト
 */
.stepform__bar {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stepform__bar-item {
  text-align: center;
  display: block;
}

.stepform__container {
  margin-left: auto;
  margin-right: auto;
}

.stepform__area {
  background: #FFF0F4;
  transition: 0s;
  display: none;
}

.stepform__area.active {
  display: block;
}

.stepform__button-area {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.stepform__button {
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
}

.stepform__button#stepform__button-prev,
.stepform__button#stepform__button-submit {
  display: none;
}

#stepform__button-next.disabled,
#stepform__button-submit.disabled {
  pointer-events: none;
  /* クリックイベントを無効化 */
}

form input[type=radio] {
  appearance: none;
}

form input[type=checkbox] {
  appearance: none;
}

/* プレースホルダーテキストのカラーを変更する */
textarea::placeholder,
input::placeholder {
  color: #888;
  /* 変更したい色を指定 */
}

.step__cover {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
}

#info {
  display: none;
}

.info {
  padding: 30px 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 950px) {
  .info {
    padding: 40px 20px 0;
  }
}

.info__scroll {
  height: calc(100% - 130px);
  overflow-y: auto;
}
@media screen and (min-width: 950px) {
  .info__scroll {
    height: calc(100% - 100px);
  }
}

.info__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 35px;
  line-height: 61px;
  color: #FF4074;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 950px) {
  .info__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 25px;
    line-height: 47px;
    color: #FF4074;
  }
}

.info__box2 {
  padding: 0 20px;
}

.info__list1 {
  counter-reset: cnt;
  position: relative;
}

.info__list1::before {
  content: "";
  background-image: url(../image/info__list-before.png);
  background-size: 100% 100%;
  width: 5px;
  height: 981px;
  position: absolute;
  display: block;
  left: 19px;
  top: 60px;
}
@media screen and (min-width: 950px) {
  .info__list1::before {
    left: 43px;
    top: 6px;
  }
}

.info__item1 {
  counter-increment: cnt;
  padding-bottom: 25px;
}

.info__item1-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 49px;
  color: #FF4074;
  text-align: left;
  background-color: #FFF0F4;
  border-radius: 10px;
  padding-left: 72px;
  margin-bottom: 16px;
  position: relative;
}
@media screen and (min-width: 950px) {
  .info__item1-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 36px;
    color: #FF4074;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-left: 24px;
  }
}

.info__item1-title::before {
  position: absolute;
  display: block;
  content: counter(cnt);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 50px;
  color: #ffffff;
  text-align: center;
  background-color: #FF4074;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  left: -4px;
  top: -2px;
}
@media screen and (min-width: 950px) {
  .info__item1-title::before {
    top: 0;
  }
}

.info__item1-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 51px;
  color: #574E4C;
  text-align: left;
  padding-left: 36px;
  margin-bottom: 20px;
}
@media screen and (min-width: 950px) {
  .info__item1-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: #574E4C;
    padding-left: 96px;
  }
}

.info__item1-text2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 37px;
  color: #574E4C;
  text-align: left;
  background-color: #FFF5DB;
  border-radius: 10px;
  margin-left: 32px;
  margin-top: 10px;
  width: fit-content;
  padding: 0 4px;
}
@media screen and (min-width: 950px) {
  .info__item1-text2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 33px;
    color: #574E4C;
    margin-left: 62px;
    padding: 3px 20px;
  }
}

.info__item1-img1 {
  width: 204px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 950px) {
  .info__item1-img1 {
    position: relative;
    left: 20px;
  }
}

.info__item1-img2 {
  width: 219px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -70px;
}
@media screen and (min-width: 950px) {
  .info__item1-img2 {
    margin-top: -16px;
    position: relative;
    left: 20px;
  }
}

.info__item1-img3 {
  width: 113px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
}
@media screen and (min-width: 950px) {
  .info__item1-img3 {
    margin-top: -5px;
    position: relative;
    left: 20px;
  }
}

.info__item1-img4 {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
}
@media screen and (min-width: 950px) {
  .info__item1-img4 {
    position: relative;
    left: 20px;
  }
}

.info__box1 {
  background-image: url(../image/info__box1-bg.png);
  background-size: 100% 100%;
  padding: 30px 20px 40px;
}
@media screen and (min-width: 950px) {
  .info__box1 {
    padding: 40px 30px;
  }
}

.info__title2-bg {
  width: 560px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../image/info__title2-bg.png);
  background-size: 100% 100%;
  padding: 16px 0;
  margin-bottom: 100px;
  position: relative;
}

.info__title2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 950px) {
  .info__title2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 43px;
    line-height: 60px;
    color: #ffffff;
  }
}

.info__title2-sub1 {
  font-size: 54px;
}
@media screen and (min-width: 950px) {
  .info__title2-sub1 {
    font-size: 46px;
  }
}

.info__title2-sub2 {
  font-size: 45px;
}
@media screen and (min-width: 950px) {
  .info__title2-sub2 {
    font-size: 38px;
  }
}

.info__list2 {
  display: flex;
  flex-direction: column;
  gap: 110px;
}
@media screen and (min-width: 950px) {
  .info__list2 {
    padding: 0 10px;
  }
}

.info__item2 {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px;
}

.info__item2:nth-child(1) .info__item2-title-box::before {
  content: "";
  display: block;
  background-image: url(../image/info__item2-title-box-icon.png);
  background-size: 100% 100%;
  width: 99px;
  height: 97px;
  position: absolute;
  top: -16px;
  left: -48px;
}
@media screen and (min-width: 950px) {
  .info__item2:nth-child(1) .info__item2-title-box::before {
    width: 76px;
    height: 75px;
    position: absolute;
    top: -16px;
    left: -38px;
  }
}

.info__item2-title-box {
  border-radius: 20px;
  border: 3px solid #86807E;
  position: relative;
  top: -97px;
  margin-bottom: -40px;
  background-color: #ffffff;
  min-width: 432px;
  width: fit-content;
  padding: 6px 8px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 950px) {
  .info__item2-title-box {
    top: -90px;
  }
}

.info__item2-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 43px;
  line-height: 53px;
  color: #574E4C;
  text-align: center;
}
@media screen and (min-width: 950px) {
  .info__item2-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 38px;
    line-height: 47px;
    color: #574E4C;
  }
}

.info__item2-title-sub1 {
  font-size: 57px;
}
@media screen and (min-width: 950px) {
  .info__item2-title-sub1 {
    font-size: 51px;
  }
}

.info__item2-title b {
  color: #FF4074;
}

.info__item2-img1 {
  width: 161px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 950px) {
  .info__item2-img1 {
    margin-bottom: 20px;
  }
}

.info__item2-img2 {
  width: 371px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 950px) {
  .info__item2-img2 {
    margin-bottom: 20px;
  }
}

.info__item2-img3 {
  width: 440px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 950px) {
  .info__item2-img3 {
    margin-bottom: 20px;
  }
}

.info__item2-text1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 45px;
  color: #574E4C;
  text-align: left;
}
@media screen and (min-width: 950px) {
  .info__item2-text1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: #574E4C;
  }
}

.info__item2-text1 b {
  color: #FF4074;
}

.info__button-area {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  position: sticky;
  border-radius: 0 0 20px 20px;
}
.info__button-close {
  cursor: pointer;
}

.modaal-wrapper {
  transition: all 0s ease-in-out;
}

.modaal-content-container {
  padding: 0;
}

.modaal-wrapper .modaal-close {
  right: calc(50% - 310px);
  top: 48px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #989898;
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 950px) {
  .modaal-wrapper .modaal-close {
    right: calc(50% - 360px);
    top: 70px;
  }
}

.modaal-close:after,
.modaal-close:before {
  top: 6px;
  left: 16px;
  width: 2px;
  height: 22px;
  background: #989898;
}

.--must,
.--want {
  position: relative;
}

.--must::after {
  content: "必須";
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  background-color: #FF4074;
  width: 44px;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 2px;
  right: -4.5em;
  border-radius: 5px;
}

.--want::after {
  content: "任意";
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #4D4D4D;
  background-color: #B2B2B2;
  width: 44px;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 2px;
  right: -4.5em;
  border-radius: 5px;
}

/*
 * section.scss
 */
.section {
  /* セクションごとのレイアウト */
}
.section__inner {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 18px;
  padding-right: 18px;
}
@media screen and (min-width: 950px) {
  .section__inner {
    max-width: 950px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.section__contents {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 950px) {
  .section__contents {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.section__title {
  background-color: #FFF0F4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 1;
  color: #433F40;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 950px) {
  .section__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    line-height: 1;
    color: #433F40;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.section__image {
  width: 100%;
}
/*
 * sec.scss
 */
.sec01 {
  background: #FFF0F4;
}

.sec01 {
  padding-bottom: 20px;
}
@media screen and (min-width: 950px) {
  .sec01 {
    height: auto;
    padding-bottom: 0;
  }
}

.sec01__box3 {
  position: relative;
}
@media screen and (min-width: 950px) {
  .sec01__box3 {
    padding-bottom: 26px;
  }
}

.sec01__list1 {
  height: 74px;
  background-color: #FF4074;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
@media screen and (min-width: 950px) {
  .sec01__list1 {
    height: 46px;
    gap: 16px;
  }
}

.sec01__list1::before {
  content: "";
  background-image: url(../image/sec01__list1-before.png);
  background-size: 100% 100%;
  width: 129px;
  height: 57px;
}
@media screen and (min-width: 950px) {
  .sec01__list1::before {
    width: 83px;
    height: 36px;
  }
}

.sec01__list1::after {
  content: "";
  background-image: url(../image/sec01__list1-after.png);
  background-size: 100% 100%;
  width: 101px;
  height: 54px;
}
@media screen and (min-width: 950px) {
  .sec01__list1::after {
    width: 65px;
    height: 35px;
  }
}

.sec01__item1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #E5E5E5;
  padding-top: 6px;
}
@media screen and (min-width: 950px) {
  .sec01__item1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 1;
    color: #ffffff;
    width: 33px;
    height: 33px;
    padding-top: 4px;
  }
}

.sec01__item1.active {
  background-color: #ffffff;
  color: #FF4074;
}

.sec01__text1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.8;
  color: #574E4C;
  font-feature-settings: "palt";
  text-align: center;
  width: 192px;
  height: 192px;
  display: grid;
  place-items: center;
  position: relative;
}
@media screen and (min-width: 950px) {
  .sec01__text1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    color: #574E4C;
    font-feature-settings: "palt";
    width: 136px;
    height: 55px;
    position: absolute;
    right: 82px;
    top: 4px;
  }
}

.sec01__text2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #574E4C;
  font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 950px) {
  .sec01__text2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #574E4C;
    font-feature-settings: "palt";
  }
}

.sec01__text1::before {
  position: absolute;
  content: "";
  background-image: url(../image/sec01__text1.png);
  background-size: 100% 100%;
  width: 204px;
  height: 41px;
  display: grid;
  place-items: center;
  bottom: 50px;
}
@media screen and (min-width: 950px) {
  .sec01__text1::before {
    width: 148px;
    height: 25px;
    bottom: 0px;
    right: -7px;
  }
}

.sec01__table {
  padding-top: 20px;
  margin-bottom: 10px;
  height: 566px;
}
@media screen and (min-width: 950px) {
  .sec01__table {
    height: 450px;
    padding-top: 32px;
  }
}

.sec01__table-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: #574E4C;
  font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 950px) {
  .sec01__table-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #574E4C;
    font-feature-settings: "palt";
    margin-bottom: 32px;
  }
}

.stepform__area--step3 .sec01__table-title,
.stepform__area--step4 .sec01__table-title {
  margin-bottom: 8px;
}

.sec01__table-title-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #574E4C;
  text-align: left;
  margin-bottom: 3px;
  width: fit-content;
}
@media screen and (min-width: 950px) {
  .sec01__table-title-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #574E4C;
  }
}
.sec01__table-title-sub .sub1 {
  font-size: 0.7em;
}

.stepform__area--step3.sec01__table-step,
.stepform__area--step4.sec01__table-step {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sec01__table-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  place-content: center;
  place-items: center;
  max-width: 404px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 950px) {
  .sec01__table-contents {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    gap: 20px;
  }
}

.sec01__table-contents > span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec01__table-contents-item {
  width: 192px;
  height: 192px;
  background-color: #ffffff;
  border: 2px solid #B2B2B2;
  border-radius: 20px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec01__table-contents-item::before {
  content: "";
  background-size: 100% 100%;
}

.radio__syokusyu-group > span:nth-child(1) .sec01__table-contents-item::before {
  background-image: url(../image/sec01__table-contents-item-bg1.png);
  width: 77px;
  height: 127px;
}

.radio__syokusyu-group > span:nth-child(2) .sec01__table-contents-item::before {
  background-image: url(../image/sec01__table-contents-item-bg2.png);
  width: 74px;
  height: 132px;
}

.radio__syokusyu-group > span:nth-child(3) .sec01__table-contents-item::before {
  background-image: url(../image/sec01__table-contents-item-bg3.png);
  width: 70px;
  height: 136px;
}

.sec01__table-text1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #574E4C;
  font-feature-settings: "palt";
}
@media screen and (min-width: 950px) {
  .sec01__table-text1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 1;
    color: #574E4C;
    font-feature-settings: "palt";
  }
}

.sec01__table-text2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: #574E4C;
  font-feature-settings: "palt";
  padding-bottom: 2px;
}
@media screen and (min-width: 950px) {
  .sec01__table-text2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #574E4C;
    font-feature-settings: "palt";
  }
}

.sec01__radio-item-content {
  width: 281px;
  height: 52px;
  background-color: #ffffff;
  border: 1px solid #B2B2B2;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 950px) {
  .sec01__radio-item-content {
    width: 217px;
    height: 40px;
  }
}

.sec01__group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 950px) {
  .sec01__group {
    max-width: 468px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px 20px;
  }
}

.sec01__group > span {
  display: flex;
  height: 52px;
  justify-content: center;
  align-items: center;
  width: 281px;
}
@media screen and (min-width: 950px) {
  .sec01__group > span {
    height: 40px;
    width: 217px;
  }
}

.sec01__radio-input:checked + .sec01__radio-item {
  background-color: #FF4074;
  z-index: 50;
}

.radio__koyoukeitai-group .sec01__radio-input:checked + .sec01__radio-item {
  background-color: #FF7CA0;
}

.sec01__radio-input:checked + .sec01__radio-item span {
  color: #ffffff;
}

.sec01__button1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: #574E4C;
}
@media screen and (min-width: 950px) {
  .sec01__button1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #574E4C;
  }
}

.sec01__button1::before {
  display: block;
  content: "";
  background-image: url(../image/sec01__button1-before.png);
  background-size: 100% 100%;
  width: 11px;
  height: 17px;
}

.sec01__button2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  background-image: linear-gradient(to right, #FFBD01, #FF9700);
  width: 465px;
  height: 90px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 50;
}
@media screen and (min-width: 950px) {
  .sec01__button2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
    color: #ffffff;
    width: 311px;
    height: 60px;
  }
}

.sec01__button2:before {
  position: absolute;
  top: -50%;
  left: -30%;
  display: block;
  content: "";
  width: 50px;
  height: 200px;
  background-image: -webkit-gradient(linear, right top, left top, from(hsla(0, 0%, 100%, 0)), color-stop(50%, #fff), to(hsla(0, 0%, 100%, 0)));
  background-image: -webkit-linear-gradient(right, hsla(0, 0%, 100%, 0), #fff 50%, hsla(0, 0%, 100%, 0));
  background-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 0, #fff 50%, hsla(0, 0%, 100%, 0));
  -webkit-animation: shiny 3s linear infinite;
  animation: shiny 3s linear infinite;
}

@keyframes shiny {
  0% {
    -webkit-transform: translateX(0) rotate(30deg);
    transform: translateX(0) rotate(30deg);
  }
  100% {
    -webkit-transform: translateX(2000px) rotate(30deg);
    transform: translateX(2000px) rotate(30deg);
  }
}
.sec01__button2.disabled {
  background-color: #CBCBCB;
  background-image: unset;
  z-index: 0;
}

.sec01__button2.disabled::before {
  display: none;
}

.sec01__button2-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: #ffffff;
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
}
@media screen and (min-width: 950px) {
  .sec01__button2-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 33px;
    line-height: 1;
    color: #ffffff;
  }
}

.sec01__box4 {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 40px;
}

.sec01__input-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #574E4C;
  text-align: left;
  width: 100%;
  height: 60px;
  padding: 10px;
  background-color: #ffffff;
  border: 2px solid #B2B2B2;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 950px) {
  .sec01__input-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #574E4C;
    height: 46px;
    padding: 2px 10px;
    margin-bottom: 6px;
  }
}

.sec01__input-select {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #574E4C;
  text-align: left;
  width: fit-content;
  height: 60px;
  padding: 6px 32px 6px 10px;
  background-image: linear-gradient(to right, #fff 0%, #fff calc(100% - 22px), #FF4074 calc(100% - 22px));
  border: 2px solid #B2B2B2;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-right: 3px;
}
@media screen and (min-width: 950px) {
  .sec01__input-select {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #574E4C;
    height: 46px;
    padding: 2px 24px 2px 10px;
    margin-bottom: 6px;
  }
}

select:invalid {
  color: #888;
}

.select__group-pref .sec01__input-select {
  width: 100%;
  background-image: linear-gradient(to right, #fff 0%, #fff 92%, #FF4074 92%);
}
.sec01__input-select-after,
.sec01__input-select-after2 {
  position: relative;
}

.sec01__input-select-after::before,
.sec01__input-select-after2::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: #ffffff 2px solid;
  border-bottom: #ffffff 2px solid;
  transform: rotate(45deg);
  right: 12px;
  top: 14px;
  display: grid;
  place-content: center;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 950px) {
  .sec01__input-select-after::before,
  .sec01__input-select-after2::before {
    width: 6px;
    height: 6px;
    right: 8px;
    top: 14px;
  }
}

.sec01__input-select-after2::before {
  width: 20px;
  height: 20px;
  right: 18px;
  top: -8px;
}
@media screen and (min-width: 950px) {
  .sec01__input-select-after2::before {
    width: 10px;
    height: 10px;
    right: 16px;
    top: 1px;
  }
}

.sec01__input-textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #574E4C;
  text-align: left;
  width: 100%;
  height: 110px;
  padding: 10px;
  background-color: #ffffff;
  border: 2px solid #B2B2B2;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 950px) {
  .sec01__input-textarea {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #574E4C;
    margin-bottom: 10px;
  }
}

.select__group-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #574E4C;
}

/*
 * header.scss
 */
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 95px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 950px) {
  .header {
    height: 52px;
  }
}
.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 950px) {
  .header__inner {
    max-width: 950px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.header.active {
  background-color: #fff;
}

/*
 * logo.scss
 */
.logo__image {
  display: block;
  width: 240px;
  position: relative;
}
.logo__image::after {
  content: "";
  background-color: #ddd;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.2s;
}
.logo__image:hover::after {
  opacity: 0.3;
}
.logo--centered {
  margin-right: auto;
  margin-left: auto;
}

/*
 * gnav.scss
 */
@media screen and (min-width: 950px) {
  .gnav {
    opacity: 1;
    display: flex;
    gap: 38px;
    align-items: center;
    position: static;
  }
}
.gnav__pages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 950px) {
  .gnav__pages {
    flex-direction: row;
  }
}
.gnav__menu {
  color: #9f9f9f;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.gnav__menu:hover {
  color: #1a1a1a;
}
.gnav__menu.active {
  color: #1a1a1a;
}
.gnav__menu-bg {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #948E8D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
  box-shadow: 0 0 4px #CCCCCC;
  width: 300px;
  height: 45px;
  padding: 10px 0;
}
.gnav__menu-bg::before {
  content: "";
  background-image: url(../image/gnav__icon.png);
  background-size: 100% 100%;
  display: block;
  width: 27px;
  height: 27px;
}
@media screen and (min-width: 950px) {
  .gnav__menu-bg {
    font-size: 16px;
    width: 281px;
    height: 38px;
  }
  .gnav__menu-bg::before {
    width: 23px;
    height: 23px;
  }
}

/*
 * mainvisual.scss
 */
.mainvisual {
  overflow: hidden;
  margin-bottom: -1px;
  width: 100%;
  background-color: #FFF0F4;
  background-image: url(../image/mainvisual__bg.png);
  background-size: auto;
  background-repeat: repeat;
  padding-top: 10px;
  padding-bottom: 10px;
}
.mainvisual__image {
  vertical-align: bottom;
  width: 535px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 950px) {
  .mainvisual__image {
    width: 519px;
  }
}

.mainvisual__list {
  display: flex;
  gap: 8px;
  justify-content: center;
  position: relative;
  bottom: 2px;
}
@media screen and (min-width: 950px) {
  .mainvisual__list {
    right: -14px;
    gap: 6px;
  }
}

.mainvisual__item {
  background-color: #ffffff;
  border-radius: 20px;
  border: 2px dashed #86807E;
  display: grid;
  place-content: center;
  padding: 14px;
}
@media screen and (min-width: 950px) {
  .mainvisual__item {
    padding: 10px;
  }
}

.mainvisual__item:nth-child(1) {
  position: relative;
  padding: 14px 10px;
}
.mainvisual__item:nth-child(1)::before {
  content: "";
  position: absolute;
  background-image: url(../image/mainvisual__item-icon.png);
  background-size: 100% 100%;
  top: -20px;
  left: 10px;
  width: 45px;
  height: 44px;
}
@media screen and (min-width: 950px) {
  .mainvisual__item:nth-child(1) {
    padding: 10px 5px;
  }
  .mainvisual__item:nth-child(1)::before {
    top: -6px;
    left: 3px;
    width: 35px;
    height: 35px;
  }
}

.mainvisual__item-text1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #574E4C;
  text-align: center;
}
@media screen and (min-width: 950px) {
  .mainvisual__item-text1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #574E4C;
  }
}

.mainvisual__item-text1 b {
  color: #FF4074;
}

.mainvisual__item-text1-sub {
  font-size: 1.4em;
}

/*
 * footer.scss
 */
.footer {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
@media screen and (min-width: 950px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__inner {
  margin-left: auto;
  margin-right: auto;
}
.footer__list {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #000000;
  text-decoration: underline;
}
@media screen and (min-width: 950px) {
  .footer__link {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 2;
    color: #000000;
  }
}
.footer__copyright {
  margin-top: 20px;
}
.footer__copyright-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 950px) {
  .footer__copyright-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 2;
    color: #000000;
  }
}

/*==================================================
スライダーのためのcss
https://kenwheeler.github.io/slick/
===================================*/
.slider {
  width: 100%;
  margin: 0 auto;
}

.slider img {
  width: 100%;
  height: auto;
}

.slider .slick-slide {
  width: 710px;
}

.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

/* 
 * Utility
 * --------------------------
 */
/*
 * util.scss
 */
@media screen and (min-width: 950px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 950px) {
  .pc {
    display: inherit;
  }
}

.box-shadow {
  box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.2);
  width: fit-content;
}

.box-bg-grad {
  background-image: linear-gradient(30deg, #FF4074, #ffffff 30%, #ffffff 70%, #FF4074);
}

.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-accent {
  font-family: "Noto Sans JP", sans-serif;
  color: #FF4074;
}

.text-color--black {
  color: #333333;
}
.text-color--green {
  color: #218386;
}
.text-color--pink {
  color: #DC797E;
}
.text-color--orange {
  color: #FF8400;
}
.text-color--yellow {
  color: #FFFF80;
}

.text-deco-marker {
  background: linear-gradient(transparent 80%, rgba(255, 192, 2, 0.6666666667) 80%);
}

.text-deco-marker2 {
  background: linear-gradient(transparent 85%, rgba(255, 192, 2, 0.6666666667) 85%, rgba(255, 192, 2, 0.6666666667) 100%, transparent 100%);
}

.text-deco-dash--accent, .text-deco-dash {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.text-deco-dash--accent {
  text-decoration-color: #FF4074;
}

.text-deco-underline--accent, .text-deco-underline {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.text-deco-underline--accent {
  text-decoration-color: #FF4074;
}

.text-deco-overdot--small, .text-deco-overdot--accent, .text-deco-overdot {
  position: relative;
}
.text-deco-overdot--small::after, .text-deco-overdot--accent::after, .text-deco-overdot::after {
  position: absolute;
  content: "・";
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #574E4C;
  font-feature-settings: "palt";
  top: -0.5em;
  left: 0.25em;
}

.text-deco-overdot--accent::after {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #FF4074;
  font-feature-settings: "palt";
}
.text-deco-overdot--small::after {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.5em;
  line-height: 1;
  font-feature-settings: "palt";
  top: -0.3em;
  left: 0.8em;
}

.text-deco-wave {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #A27E8A;
}

.text-deco-wave2 {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #ff0000;
}

.text-shadow {
  text-shadow: 3px 3px 0px #FF4074;
}
.text-shadow--blur {
  text-shadow: 5px 5px 8px #FF4074, 5px -5px 8px #FF4074, -5px 5px 8px #FF4074, -5px -5px 8px #FF4074;
}
.text-shadow--box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 8px;
  box-shadow: inset 3px 3px 20px #ffffff, inset -3px -3px 20px #ffffff;
}

.text-num {
  font-size: 1.4em;
  font-feature-settings: "palt";
}

.text-fz60 {
  font-size: 0.6em;
}

.text-fz70 {
  font-size: 0.7em;
}

.text-fz80 {
  font-size: 0.8em;
}

.text-fz90 {
  font-size: 0.9em;
}

.text-fz110 {
  font-size: 1.1em;
}

.text-fz120 {
  font-size: 1.2em;
}

.text-fz130 {
  font-size: 1.3em;
}

.text-fz140 {
  font-size: 1.4em;
}

.text-fz150 {
  font-size: 1.5em;
}

.text-fz200 {
  font-size: 2em;
  line-height: 1.3;
}

.text-fz250 {
  font-size: 2.5em;
}

.mb_vw0 {
  margin-bottom: unset;
}

.mb_vw10 {
  margin-bottom: 10px;
}

.mb_vw20 {
  margin-bottom: 20px;
}

.mb_vw30 {
  margin-bottom: 30px;
}

.mb_vw40 {
  margin-bottom: 40px;
}

.mb_vw50 {
  margin-bottom: 50px;
}

.mb_vw60 {
  margin-bottom: 60px;
}

.mb_vw70 {
  margin-bottom: 70px;
}

.mb_vw80 {
  margin-bottom: 80px;
}

.mb_vw90 {
  margin-bottom: 90px;
}

.mb_vw100 {
  margin-bottom: 100px;
}

.plr_vw10 {
  padding-left: 10px;
  padding-right: 10px;
}

.plr_vw20 {
  padding-left: 20px;
  padding-right: 20px;
}

.plr_vw30 {
  padding-left: 30px;
  padding-right: 30px;
}

.plr_vw40 {
  padding-left: 40px;
  padding-right: 40px;
}

.plr_vw60 {
  padding-left: 60px;
  padding-right: 60px;
}

.nanameline--accent, .nanameline {
  position: relative;
}
.nanameline--accent::before, .nanameline::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #333333;
  left: -20px;
  bottom: -0.1em;
  transform: rotate(-40deg);
}
.nanameline--accent::after, .nanameline::after {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #333333;
  right: -20px;
  bottom: -0.1em;
  transform: rotate(40deg);
}

.nanameline--accent::before, .nanameline--accent::after {
  background-color: #FF4074;
  width: 2px;
}
.nanameline--accent::before {
  left: -0.6em;
}
.nanameline--accent::after {
  right: -0.6em;
}

.fullwidth {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 640px;
}
@media screen and (min-width: 950px) {
  .fullwidth {
    margin-left: auto;
    margin-right: auto;
    max-width: 950px;
  }
}

.grad--to-bottom {
  background-image: linear-gradient(to bottom, #00719C, #1E1B6D);
}
.grad--to-right {
  background-image: linear-gradient(to right, #00719C, #1E1B6D);
}

/*
 * animation.scss
 */
/* modaal */
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-wrapper .info__button-close {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(to right, #FFBD01, #FF9700);
  width: 465px;
  height: 90px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  right: 0;
  left: 0;
  top: unset;
  display: block;
}
@media screen and (min-width: 950px) {
  .modaal-wrapper .info__button-close {
    width: 311px;
    height: 60px;
  }
}

.info__button-close::after {
  content: "登録を続ける";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  position: absolute;
  height: 90px;
  pointer-events: none;
  top: 26px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 950px) {
  .info__button-close::after {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    top: 20px;
  }
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
/*動画表示のモーダル：余白を変更したい場合*/
.modaal-outer-wrapper {
  padding: 0;
  display: block;
}

.modaal-inner-wrapper {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}

.modaal-container {
  display: block;
  max-width: 600px;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(204, 204, 204, 0.8);
  margin: auto;
}
@media screen and (min-width: 950px) {
  .modaal-container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.modaal-content {
  height: 100%;
}

.modaal-content-container {
  height: 100%;
}

.modaal-overlay {
  opacity: 0.4 !important;
}

/* 下からふわっと */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/* キラッと */
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -180px;
  background: rgba(255, 255, 255, 0.5333333333);
  width: 30px;
  height: 100%;
  animation: shineanime 3s ease-in-out infinite;
  z-index: 30;
}

@keyframes shineanime {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: scale(80) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(80) rotate(45deg);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */