@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック", "小塚ゴシック Pro R", "メイリオ";
  font-weight: 500;
  font-size: 1.5em;
  line-height: 2.4rem;
  text-align: left;
  background-color: #fff;
}
table{
  table-layout: fixed;
}

a{
  text-decoration: underline;
  color:black;
}
li{
  list-style: none;
}
@media(min-width:1000px) {
  body {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.7rem;
    text-align: left;
    background-color: #fff;
  }
}
h2 {
  font-size: 4.0rem;
  letter-spacing: 1px;
  font-family: "Leander Script Pro";
  text-align: center;
/*  margin-bottom: 7vh;*/
  line-height: 3.0rem;
  position: relative;
  max-width:1000px;
  margin:0 auto 7vh;
}
h2 span {
  font-size: 1.4rem;
  font-family: "A-OTF リュウミン Pr6N L-KL", '游明朝';
}
@media(min-width:1000px) {
  h2 {
    font-size: 6.0rem;
    font-family: "Leander Script Pro";
    text-align: center;
    margin-bottom: 10vh;
    line-height: 5.5rem;
    letter-spacing: 2px;
  }
  h2 span {
    font-size: 2.0rem;
    font-family: "A-OTF リュウミン Pr6N L-KL", '游明朝';
  }
}
.none {
  display: none;
}
.section-title{
  margin:0 auto;
  padding-bottom:20px;
}
@media(max-width:700px){
  .section-title{
  display:none;
}
}

.section-title_sp{
  margin:0 auto;
  padding-bottom:10px;
}
@media(min-width:701px){
  .section-title_sp{
   display:none;
}
}


/*ふわっと表示させる*/
.zoomInTrigger,.fadeUpTrigger{
opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* 拡大 */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:1.0s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  opacity: 0;
  }

  to {
    transform: scale(1);
  opacity: 1;
  }
}
/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.blurTrigger{
    opacity: 0;
}
.swiper-wrapper2{
  display:flex;
  margin:0;
  width:50%;
  max-width:352px;
}
.swiper-slide2{
  margin:0;
}
.swiper2{
  margin:0;
}

.br-pc{
  display: none;
}
@media(min-width:500px){
 .br-pc{
  display: block;
} 
}