@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/*-------------------------
リセットCSS
---------------------------*/
h1, h2, h3, h4, ul, dl dt, dl dd, li, p {
  margin: 0;
  padding: 0;
  margin: 0;
}

dl dt, dl dd, li, p {
  font-size: 1.7rem;
  line-height: 1.5;
}

input[type=button i],
input[type=submit i],
input[type=reset i],
input[type=file i]::-webkit-file-upload-button, button {
  -webkit-box-align: unset;
          align-items: unset;
  text-align: left;
  cursor: default;
  color: #333;
  padding: 2px 6px 3px 6px;
  border: unset;
  background-color: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input:active, button:active, button:checked, button:focus {
  border: unset;
  color: unset;
  outline: unset;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth; /*ゆっくり遷移する*/
}

body {
  color: #333;
  position: relative;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  font-style: normal;
}

header .menu_wrapper .menu a:hover,
.menu a:active, .menu a:focus {
  color: #976539;
}

header {
  position: absolute;
  z-index: 1000;
}

footer {
  background: #fff;
}

ul li {
  list-style-type: none;
}

a, a:-webkit-any-link {
  text-decoration: none;
  color: #333;
  text-decoration: none;
}
a:hover, a:-webkit-any-link:hover {
  cursor: pointer;
}
a:checked, a:active, a:-webkit-any-link:checked, a:-webkit-any-link:active {
  color: #976539;
}

button:hover, input:hover {
  cursor: pointer;
}

.feature {
  background: #fef9ec;
  background-image: url(../images/square.png);
  background-repeat: repeat;
  background-size: 30px;
}

.mark_yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, yellow));
  background: linear-gradient(transparent 80%, yellow 0%);
}

.mark_pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(50%, #fdd0d9));
  background: linear-gradient(transparent 80%, #fdd0d9 50%);
}

span.fadeLeft:nth-child(1) {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

span.fadeLeft:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; /*遅延*/
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s; /*アニメ間隔*/
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fade {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.fadeUp:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.fadeUp:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.fadeUp:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.fadeUp:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.fadeUp:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.fadeUp:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.fadeUp:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.fadeUp:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.fadeUp:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.fadeUp:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.fadeUp:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.fadeUp:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.fadeUp:nth-child(13) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.fadeUp:nth-child(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.fadeUp:nth-child(15) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.fadeUp:nth-child(16) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.fadeUp:nth-child(17) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.fadeUp:nth-child(18) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.fadeUp:nth-child(19) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.fadeUp:nth-child(20) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.fadeUp:nth-child(21) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.fadeUp:nth-child(22) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.fadeUp:nth-child(23) {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.fadeUp:nth-child(24) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.fadeUp:nth-child(25) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.fadeUp:nth-child(26) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.fadeUp:nth-child(27) {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.fadeUp:nth-child(28) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.fadeUp:nth-child(29) {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.fadeUp:nth-child(30) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.fadeUp:nth-child(31) {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.fadeUp:nth-child(32) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.fadeUp:nth-child(33) {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

.fadeUp:nth-child(34) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.fadeUp:nth-child(35) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.fadeUp:nth-child(36) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.fadeUp:nth-child(37) {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.fadeUp:nth-child(38) {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.fadeUp:nth-child(39) {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

.fadeUp:nth-child(40) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.fadeUp:nth-child(41) {
  -webkit-animation-delay: 5.1s;
          animation-delay: 5.1s;
}

.fadeUp:nth-child(42) {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

.fadeUp:nth-child(43) {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}

.fadeUp:nth-child(44) {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}

.fadeUp:nth-child(45) {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.fadeUp:nth-child(46) {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

.fadeUp:nth-child(47) {
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}

.fadeUp:nth-child(48) {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

.fadeUp:nth-child(49) {
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}

.fadeUp:nth-child(50) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.fadeUp:nth-child(51) {
  -webkit-animation-delay: 6.1s;
          animation-delay: 6.1s;
}

.fadeUp:nth-child(52) {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}

.fadeUp:nth-child(53) {
  -webkit-animation-delay: 6.3s;
          animation-delay: 6.3s;
}

.fadeUp:nth-child(54) {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}

.fadeUp:nth-child(55) {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

.fadeUp:nth-child(56) {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}

.fadeUp:nth-child(57) {
  -webkit-animation-delay: 6.7s;
          animation-delay: 6.7s;
}

.fadeUp:nth-child(58) {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}

.fadeUp:nth-child(59) {
  -webkit-animation-delay: 6.9s;
          animation-delay: 6.9s;
}

.fadeUp:nth-child(60) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}