@charset "UTF-8";
/*
  Base
---------------------------------------------- */
html {
  font-size: 36%;
  box-sizing: border-box;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  height: 100%;
  margin: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #14171a;
  letter-spacing: 0.05em;
  background-color: #fafafa;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
strong {
  margin: 0;
  font-weight: bold;
}

p {
  margin: 0;
  font-size: 3rem;
}

ul {
  margin: 0;
  padding: 0;
  font-size: 3rem;
  list-style: none;
}

input,
textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
}

.sp {
  display: none;
}

.center {
  text-align: center;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/sakurahaikei2.png);
  background-position: center center;
  background-size: cover;
}
header .pc {
  max-height: 65vh;
}
@media screen and (max-width: 640px) {
  header {
    display: block;
    background-image: none;
    height: auto;
  }
  header .sp {
    width: 100vw;
  }
}

.block {
  padding: 8% 0;
}
.block.blk {
  padding: 1% 0;
  background-color: #ea8c9a;
}
.block.ff8 {
  background-color: #fae8e8;
}
.block.ffd {
  background-color: #fff;
}
.block.fff8e7 {
  background-color: #fff8e7;
}
.block-topbbanner {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .block-topbbanner .sp {
    margin: 0 auto;
  }
}
.block-banner {
  text-align: center;
}
.block-inner {
  text-align: center;
}
.block-inner-flex {
  max-width: 972px;
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}
.block-inner-flex.w-1120 {
  max-width: 1120px;
}
.block-inner-flex2 {
  max-width: 972px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.textbox {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5%;
  background-color: #fff;
  border-radius: 50px;
}
.textbox.ff8 {
  font-size: 12px;   
  padding: 5% 50px;
  color: #fff;
  background-color: #e16d7d;
}
.textbox.ff8 ul {
  margin-bottom: 70px;
}
.textbox.ff8 ul:last-child {
  margin-bottom: 0;
}
.textbox ul {
  margin-bottom: 70px;
}
.textbox ul:last-child {
  margin-bottom: 0;
}

.footer {
  padding: 2% 0;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-120 {
  margin-bottom: 120px;
}


 /* 飯島追加ここから */
 
 .block.f1d {
  background-color: #fae8e8;
}

 .jump a {
    background-color: #d6115f;
    border-radius: 40px;
    padding: 20px 40px;
    margin: 20px 30px;
    display: block;
    font-size: 4.5em;
    color: #fff;
    font-weight: bold;
    width:580px;
    text-decoration: none;
    }
    
    
    a {
    text-decoration: none;
    }
    
    .jump :hover {
    color: #d6115f;
    text-decoration: none;
    background: #fff;
    border: solid 1px #d6115f;
    transition: 0.1s;
}

.sakuragazou {

background-image: url(../img/sakurahidariue.png),
                 url(../img/sakurahidarisita.png),
                 url(../img/sakuramigiue.png),
                 url(../img/sakuramigisita.png);
background-repeat:no-repeat,
                  no-repeat,
                  no-repeat,
                  no-repeat;
background-position: 2% -1%, 2% 100%, 98% -1%, 98% 100%;
background-size:28%,
                28%,
                28%,
                28%;

}



.sakurahaikei {
background-image: url(../img/sakurahaikei.jpg);
  background-position: center center;
  background-size:cover;
}

 /* 飯島追加ここまで */







.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-time12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay-time16-pc {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay-time20-pc {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time24-pc {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.delay-time28-pc {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

@media screen and (max-width: 640px) {

.jump a {
    background-color: #d6115f;
    border-radius: 40px;
    padding: 10px 10px;
    display: block;
    font-size: 2em;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    width: 80%;
}

.sakuragazou {
background-image: none;

}

.sakuragazou2 {
background-image: none;

}





  p {
    font-size: 1.4rem;
  }
  ul {
    font-size: 1.4rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .block {
    padding: 8% 20px;
  }
  .block.blk img {
    max-width: 100%;
  }
  .block-banner img {
    max-width: 70%;
  }
  .block-inner p {
    max-width: 270px;
    margin: 0 auto;
  }
  .block-inner-flex {
    display: block;
    text-align: center;
  }
  .block-inner-flex p {
    max-width: 270px;
    margin: 0 auto 20px;
  }
  .block-inner-flex p :last-child {
    margin-bottom: 0;
  }
  .block-inner-flex2 {
    flex-wrap: wrap;
    max-width: 320px;
  }
  .block-inner-flex2.mb-50 {
    margin-bottom: 0;
  }
  .block-inner-flex2 p {
    max-width: 47%;
    margin-bottom: 20px;
  }
  .block-inner-flex2 p :last-child {
    margin-bottom: 0;
  }
  .textbox {
    padding: 10% 5%;
    border-radius: 25px;
  }
  .textbox.ff8 {
    padding: 10% 5%;
  }
  .textbox.ff8 ul {
    margin-bottom: 20px;
  }
  .textbox.ff8 ul:last-child {
    margin-bottom: 0;
  }
  .textbox ul {
    margin-bottom: 20px;
  }
  .textbox ul:last-child {
    margin-bottom: 0;
  }
  .mb-120,
.mb-50 {
    margin-bottom: 30px;
  }
  .delay-time16-pc, .delay-time20-pc, .delay-time24-pc, .delay-time28-pc {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .delay-time04-sp {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .delay-time08-sp {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .delay-time12-sp {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .delay-time16-sp {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
}/*# sourceMappingURL=style.css.map */