@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Meiryo UI", "Helvetica", Arial, sans-serif;
  background-image: linear-gradient(
    to bottom,
    #ffffff,
    #f3f3f3,
    #ececec,
    #e2e2e2,
    #d9d9d9,
    #d2d2d2,
    #cacaca,
    #c3c3c3,
    #bdbdbd,
    #b6b6b6,
    #aaaaaa
  );
  font-weight: bold;
}
.sakura {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sakura li {
  position: absolute;
  list-style: none;
  top: -50px;
  background: #ff7abc;
  border-radius: 0% 70%;
  animation: fall 4s linear infinite, sway 2s ease-in-out infinite alternate;
}
@keyframes fall {
  to {
    top: 120%;
  }
}
@keyframes sway1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-45deg);
  }
}
@keyframes sway2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
.sakura li:nth-child(1) {
  left: 0%;
  width: 24px;
  height: 15px;
  animation: fall 10s linear infinite, sway1 5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.sakura li:nth-child(2) {
  left: 1%;
  width: 13px;
  height: 9px;
  animation: fall 15s linear infinite, sway1 4s ease-in-out infinite alternate;
  animation-delay: 8s;
}
.sakura li:nth-child(3) {
  left: 2%;
  width: 16px;
  height: 10px;
  animation: fall 8s linear infinite, sway1 5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.sakura li:nth-child(4) {
  left: 3%;
  width: 16px;
  height: 10px;
  animation: fall 8s linear infinite, sway2 4s ease-in-out infinite alternate;
  animation-delay: 1s;
}
.sakura li:nth-child(5) {
  left: 4%;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite, sway1 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.sakura li:nth-child(6) {
  left: 90%;
  width: 24px;
  height: 15px;
  animation: fall 8s linear infinite, sway2 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.sakura li:nth-child(7) {
  left: 85%;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite, sway2 5s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.sakura li:nth-child(8) {
  left: 94%;
  width: 13px;
  height: 9px;
  animation: fall 6s linear infinite, sway1 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.sakura li:nth-child(9) {
  left: 92%;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite, sway2 4s ease-in-out infinite alternate;
  animation-delay: 4s;
}
.sakura li:nth-child(10) {
  left: 85%;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite, sway2 4s ease-in-out infinite alternate;
  animation-delay: 5s;
}
.sakura li:nth-child(11) {
  left: 90%;
  width: 16px;
  height: 10px;
  animation: fall 15s linear infinite, sway2 5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
#wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
header {
  background-color: #fff;
  z-index: 1000;
  width: 1200px;
  max-width: 100%;
  height: 100px;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  top: 0;
}
h1 .logo {
  margin: 0px;
  max-width: 100px;
  height: auto;
}
.globalMenuSp ul {
  list-style: none;
  justify-content: right;
  display: flex;
  margin: 0;
  padding: 0;
}
.globalMenuSp ul li {
  margin-right: 25px;
  font-size: 1.3rem;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
.mainimg {
  width: 100%;
  height: auto;
  position: relative;
}
.mainimg .naniwayu1 {
  width: 100%;
  height: auto;
  padding-top: 100px;
}
.mainimg .naniwayu2 {
  width: 25%;
  height: auto;
  position: absolute;
  right: 0;
  top: 100px;
  padding: 0;
}
.container {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  bottom: 130px;
}
.chevron {
  position: absolute;
  width: 100%;
  height: 10px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.scroll {
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.25;
  animation: pulse 2s linear alternate infinite;
  margin-left: -40px;
  font-family: "Meiryo UI", "Helvetica", Arial, sans-serif;
  display: block;
  position: absolute;
  margin-top: 80px;
}
@keyframes pulse {
  to {
    opacity: 1;
  }
}
.slider {
  margin: 0px auto;
  height: auto;
  max-width: 90%;
  width: 1100px;
}
.slider-img {
  margin: 0 15px 0 15px;
}
.slider-img img {
  height: auto;
  max-width: 100%;
}
.section1 {
  background-color: #fff;
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 55px;
  margin-top: 55px;
}
.section1 h2 {
  font-size: 3.4rem;
  margin-bottom: 0.2rem;
  position: relative;
  display: inline-block;
  border-bottom: 5px solid #555;
  margin: 100px 0;
}
.section1 h2:before {
  position: absolute;
  bottom: -0.6rem;
  left: 0rem;
  right: 0rem;
  border-bottom: 1px solid #555;
  content: "";
}
.section1 .abc {
  font-size: 0.9rem;
  text-align: left;
  margin-left: 5px;
}
.box1 {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.box1 .price {
  width: 32%;
  flex-shrink: 0;
  font-size: 1.55rem;
}
.price ul {
  display: block;
  padding: 0;
  margin: 0;
}
.price li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid #555;
}
.section2 {
  background-color: #eee;
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 50px;
}
.section2 h2 {
  font-size: 3.4rem;
  margin-bottom: 0.2rem;
  position: relative;
  display: inline-block;
  border-bottom: 5px solid #555;
  margin: 100px 0;
}
.section2 h2:before {
  position: absolute;
  bottom: -0.6rem;
  left: 0rem;
  right: 0rem;
  border-bottom: 1px solid #555;
  content: "";
}
.box2 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.box2 .ohuromenu {
  width: 18%;
  list-style: none;
  font-size: 1.5rem;
}
.ohuromenu ul {
  display: block;
  padding: 0;
  margin: 0;
}
.ohuromenu li {
  margin: 0;
  list-style: none;
  text-align: left;
  padding-bottom: 5px;
}
.ohuromenu span {
  font-size: 1rem;
}

.ohuro img {
  width: 48%;
  height: auto;
}
.ohuro {
  width: 64%;
  position: relative;
}
.ohuros.animetion {
  animation: ohuros-img 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ohuros.animetion:before {
  animation: ohuros-before 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #eee;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
@keyframes ohuros-img {
  0% {
    opacity: 0;
  }
}
@keyframes ohuros-before {
  100% {
    transform: translateX(100%);
  }
}
.section3 {
  background-color: #fff;
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 50px;
}
.section3 h2 {
  font-size: 3.4rem;
  margin-bottom: 0.2rem;
  position: relative;
  display: inline-block;
  border-bottom: 5px solid #555;
  margin-top: 100px;
}
.section3 h2:before {
  position: absolute;
  bottom: -0.6rem;
  left: 0rem;
  right: 0rem;
  border-bottom: 1px solid #555;
  content: "";
}
.section3 p {
  margin: 0 0 100px 0;
}
.link {
  border-style: none;
}
.box3 img {
  width: 50%;
  height: auto;
  display: block;
  margin: 40px auto;
}
.sns.animetion img {
  animation: sns 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes sns {
  0% {
    opacity: 0;
    transform: scale(1.2) translateY(24px);
  }
  32% {
    opacity: 0;
    transform: scale(1.2) translateY(24px);
  }
}
.section4 {
  background-image: url(img/ttt.jpg);
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 50px;
}
.section4 h2 {
  font-size: 3.4rem;
  margin-bottom: 0.2rem;
  position: relative;
  display: inline-block;
  border-bottom: 5px solid #555;
  margin: 100px 0;
}
.section4 h2:before {
  position: absolute;
  bottom: -0.6rem;
  left: 0rem;
  right: 0rem;
  border-bottom: 1px solid #555;
  content: "";
}
.yoko {
  display: flex;
  justify-content: space-evenly;
}
iframe {
  width: 50%;
  height: auto;
}
.box4 {
  padding-top: 50px;
}
.box4 p {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 20px 0;
}
.box4 h3 {
  font-size: 1.5rem;
  text-align: center;
  margin: 50px 0 0 0;
}
.section5 {
  background-color: #fff;
  width: 100%;
  height: auto;
  text-align: center;
}
.section5 h2 {
  font-size: 3.4rem;
  margin-bottom: 0.2rem;
  position: relative;
  display: inline-block;
  border-bottom: 5px solid #555;
  margin: 100px 0;
}
.section5 h2:before {
  position: absolute;
  bottom: -0.6rem;
  left: 0rem;
  right: 0rem;
  border-bottom: 1px solid #555;
  content: "";
}
.box5 {
  display: flex;
}
.toi {
  width: 45%;
}
.toi p {
  font-size: 1.5rem;
  text-align: left;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  width: 95%;
}
.toi p span {
  font-size: 1.3rem;
}
.toi img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-top: 80px;
}
.oke {
  position: relative;
  width: 50%;
  overflow: hidden;
}
.oke img {
  height: auto;
  width: 100%;
}
.okes.animetion {
  animation: okes-img 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.okes.animetion:before {
  animation: okes-before 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
@keyframes okes-img {
  0% {
    opacity: 0;
  }
}
@keyframes okes-before {
  100% {
    transform: translateX(100%);
  }
}
footer {
  height: 200px;
  width: 100%;
  background: #eee;
  text-align: center;
}
footer small {
  padding-top: 100px;
  display: inline-block;
  margin-bottom: 30px;
}
.circles {
  width: 100%;
}
.circles li {
  position: absolute;
  display: block;
  list-style: none;
  animation: animate 20s linear infinite;
}
.circles li:nth-child(1) {
  left: 10%;
  width: 35px;
  height: 35px;
  animation-delay: 10s;
  animation-duration: 20s;
}
.circles li:nth-child(2) {
  left: 20%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  animation-duration: 10s;
}
.circles li:nth-child(3) {
  left: 30%;
  width: 30px;
  height: 30px;
  animation-delay: 10s;
  animation-duration: 30s;
}
.circles li:nth-child(4) {
  left: 40%;
  width: 10px;
  height: 10px;
  animation-delay: 5s;
  animation-duration: 10s;
}
.circles li:nth-child(5) {
  left: 50%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  animation-duration: 30s;
}
.circles li:nth-child(6) {
  left: 60%;
  width: 35px;
  height: 35px;
  animation-delay: 10s;
  animation-duration: 20s;
}
.circles li:nth-child(7) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 5s;
  animation-duration: 40s;
}
.circles li:nth-child(8) {
  left: 80%;
  width: 25px;
  height: 25px;
  animation-delay: 0s;
  animation-duration: 30s;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
    border-radius: 150px;
    background-color: #0095ff;
  }
  100% {
    background-color: #eee;
    transform: translateY(-150px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.hamburger p {
  display: none;
}
@media screen and (min-width: 1441px) {
  .circles li:nth-child(1) {
    left: 30%;
  }
  .circles li:nth-child(2) {
    left: 35%;
  }
  .circles li:nth-child(3) {
    left: 40%;
  }
  .circles li:nth-child(4) {
    left: 45%;
  }
  .circles li:nth-child(5) {
    left: 55%;
  }
  .circles li:nth-child(6) {
    left: 60%;
  }
  .circles li:nth-child(7) {
    left: 65%;
  }
  .circles li:nth-child(8) {
    left: 72%;
  }
}
@media screen and (max-width: 960px) {
  .sakura {
    height: 85%;
  }
  .toi img {
    padding-top: 50px;
  }
}
@media screen and (max-width: 840px) {
  .sakura {
    height: 80%;
  }
  .toi img {
    padding-top: 20px;
  }
}
@media screen and (max-width: 700px) {
  #wrap {
    width: 100%;
  }
  header {
    height: 80px;
    width: 100%;
  }
  /*ハンバーガーメニューボタン*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 20px;
    top: 10px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger p {
    margin: 0px;
    display: inline-block;
    font-size: 0.6rem;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 40px;
    height: 5px;
    left: 8px;
    background: #aaa;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .hamburger span:nth-child(2) {
    top: 30px;
  }
  .hamburger span:nth-child(3) {
    top: 40px;
  }
  .hamburger span:nth-child(4) {
    top: 50px;
  }
  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(2) {
    top: 40px;
    left: 10px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(3),
  .hamburger.active span:nth-child(4) {
    top: 40px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* メニュー背景*/
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(71, 70, 73, 0.6);
    text-align: center;
    width: 100%;
    transform: scale(0, 0);
    transition: all 0s;
  }
  nav.globalMenuSp ul {
    width: 100%;
    display: inline;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    width: 100%;
    transition: 0.4s all;
    font-size: 1.3rem;
    margin: 0px auto;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover {
    background: #bbb;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: scale(1, 1);
  }
  h1 .logo {
    max-width: 80px;
  }
  .mainimg .naniwayu1 {
    padding-top: 80px;
  }
  .mainimg .naniwayu2 {
    top: 80px;
  }
  .section1 h2 {
    font-size: 2.5rem;
  }
  .section1 .abc {
    text-align: center;
    margin-left: 0;
    font-size: 0.9rem;
  }
  .box1 {
    display: block;
  }
  .box1 .price {
    list-style: none;
    font-size: 1.4rem;
    margin: 0 auto;
    width: 60%;
  }
  .section2 {
    padding: 0;
  }
  .section2 h2 {
    font-size: 2.5rem;
  }
  .box2 {
    display: block;
    margin: auto;
  }
  .box2 .ohuromenu {
    font-size: 1.4rem;
    width: 40%;
    margin: auto;
  }
  .ohuromenu li {
    text-align: center;
  }
  .ohuro {
    margin: auto;
    display: block;
    width: 100%;
  }
  .ohuro img {
    width: 80%;

    padding-top: 50px;
    margin: 0 auto;
  }
  .section3 h2 {
    font-size: 2.5rem;
  }
  .box3 img {
    width: 60%;
    display: block;
    margin: 50px auto;
  }
  .section4 h2 {
    font-size: 2.5rem;
  }
  .yoko {
    display: block;
  }
  iframe {
    margin: 0 auto;
    width: 85%;
    height: 30vh;
  }
  .box4 h3 {
    font-size: 1.4rem;
  }
  .box4 p {
    font-size: 1.4rem;
  }
  .section5 h2 {
    font-size: 2.5rem;
  }
  .box5 {
    display: inline;
  }
  .toi {
    width: 80%;
    margin: 0 auto;
  }
  .toi p {
    font-size: 1.4rem;
  }
  .toi img {
    width: 80%;
    margin: 30px auto;
    padding: 0;
  }
  .oke {
    width: 80%;
    margin: 0 auto;
  }
  .footer {
    height: 100px;
  }
  .scroll {
    font-size: 1.1rem;
    margin-left: -12px;
    margin-top: 70px;
  }
  .container {
    bottom: 100px;
  }
  .chevron {
    width: 30px;
    margin-left: 10px;
  }
  .slider {
    max-width: 100%;
  }
  .slider-img {
    margin: 0 10px 0 10px;
  }
  .sakura {
    height: 0%;
  }
  .circles li:nth-child(1) {
    left: 11%;
  }
  .circles li:nth-child(2) {
    left: 22%;
  }
  .circles li:nth-child(3) {
    left: 36%;
  }
  .circles li:nth-child(4) {
    left: 44%;
  }
  .circles li:nth-child(5) {
    left: 55%;
  }
  .circles li:nth-child(6) {
    left: 66%;
  }
  .circles li:nth-child(7) {
    left: 77%;
  }
  .circles li:nth-child(8) {
    left: 88%;
  }
}
