.trans{
  animation-name: fadein;
  animation-duration: 2s; 
  animation-delay: 3s;
  animation-fill-mode: forwards;
  position: relative;
  opacity: 0; 
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loading{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9000;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
.loading_logo{
  position: fixed;
  z-index: 9001;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
}
/*common*/
.inner{
  width: calc(100% - 280px);
  max-width: 1100px;
  margin: 0 auto;
}
.inner02{
  width: calc(100% - 380px);
  max-width: 1100px;
  margin: 0 auto;
}
.flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sp_none{
  display: block;
}
.pc_none{
  display: none;
}
#main_contents{
  position: relative;
}

/* ハンバーガー */
.hamburger {
  display : block;
  position: absolute;
  right: 30px;
  top: 35px;
  width : 40px;
  height: 40px;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  z-index: 102;
  transition: all .3s;
  display: flex;
  align-items: center;
  display: block;
  background-color: #fff;
}
.hamburger::after{
    content: 'MENU';
    color: var(--color-primary);
    font-size: 12px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}
.hamburger.is-hidden{
    opacity: 0;
    pointer-events: none;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 20px;
  height  : 1px ;
  right: 10px;
  background : var(--color-primary);
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 21px;
}
nav.globalMenuSp{
    width: 100%;
    top: 0;
    height: 100%;
    padding: 50px 5%;
    background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
#header.is-show nav.globalMenuSp{
    opacity: 0;
    pointer-events: none;
}
#header.is-show nav.globalMenuSp.active{
    opacity: 1;
    pointer-events: initial;
}
nav.globalMenuSp::after{
    content: '';
    position: absolute;
    width: 136px;
    height: 270px;
    background-image: url(../img/chara01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    right: -35px;
    bottom: -95px;
    transform: rotate(-45deg);
}
.close_btn{
    position: absolute;
    right: 21px;
    top: 33px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.g_menu {
  width: 80%;
  justify-content: start;
}



/*compo*/
.head02{
  font-size: 40px;
  margin-bottom: 45px;
  text-align: center;
}
.white {
  color: #fff;
}
.head02.white{
  color: #fff;
  line-height: 1.5;
}
.head02 span{
  font-size: 20px;
  margin-left: 8px;
}
.head02.white span{
  color: #fff;
}
.head03{
  font-size: 35px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.head04{
  font-size: 25px;
  margin-bottom: 20px;
}
.head04.line{
  margin-bottom: 15px;
}
.head05{
  font-size: 20px;
  margin-bottom: 30px;
}
.txt_pink{
  color: var(--color-primary);
}
.txt01{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}
.txt02{
  font-size: 23px;
  font-weight: 400;
}
.txt03{
  font-size: 20px;
  line-height: 2;
}
.txt04{
  font-size: 15px;
  line-height: 1.5;
}
.txt05{
  font-size: 25px;
}
.hyphen {
  margin: 0 4px;
}
.btn01 a{
  font-size: 13px;
  padding-bottom: 15px;
  transition: all .6s;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.btn01.white a{
  color: #fff;
}
.btn01 a:hover{
  padding-left: 10px;
  color: var(--color-primary);
}
.btn01 a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
  transition: all .6s;
}
.btn01.white a::after{
  background-color: #fff;
}
.btn01 a:hover::after{
  background-color: var(--color-primary);
}
.btn01 a span{
  width: 10px;
  height: 10px;
  display: inline-block;
  background-image: url(../img/arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all .6s;
}
.btn01.link a span{
  background-image: url(../icon/icon_link.svg);
  width: 15px;
  height: 15px;
}
.btn01.white a span{
  background-image: url(../img/arrow02_white.svg);
}
.btn01.white.link a span{
  background-image: url(../icon/icon_link_white.svg);
}
.btn01 a:hover span{
  background-image: url(../img/arrow02_hover.svg);
}
.btn01.link a:hover span{
  background-image: url(../icon/icon_link_hover.svg);
}
.btn02 a{
  background-color: #F5F5F5;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .6s;
}
.btn02 a:hover{
  background-color: var(--color-primary);
  color: #fff;
}
.btn02 a span{
  width: 20px;
  height: 20px;
  background-image: url(../icon/icon_ig.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all .6s;
  display: inline-block;
  margin-right: 10px;
}
.btn02 a:hover span{
  background-image: url(../icon/icon_ig_hover.svg);
}
/*mv*/
#mv{
  width: 100%;
}
/*------------- maincopy -------------*/
.logos {
  position: relative;
}
.logo {
  text-align: center;
  padding-top: 19px;
  width: 9%;
  max-width: 50px;
  margin: 0 auto;
}
.main_copy01 {
  display: block;
  margin: 15px auto 5px auto;
  width: 90%;
  max-width: 750px;
}
.main_copy01 img {
  display: block;
}
.main_copy02 {
  display: block;
  width: 40%;
  max-width: 280px;
  margin: 20px auto 0 auto;

}
.main_copy02 img {
  display: block;
}

.flower_01 {
  position: absolute;
  width: 14%;
  left: 110px;
  top: 5px;
  transform: rotateZ(30deg);
  opacity: 0.4;
}
.flower_02 {
  position: absolute;
  width: 20%;
  left: -4px;
  top: 65%;
  transform: rotateZ(0deg);
  opacity: 0.35;
}
.flower_03 {
  position: absolute;
  width: 28%;
  right: -3px;
  top: 30px;
  transform: rotateZ(6deg);
  opacity: 0.4;
}
.flower_04 {
  position: absolute;
  width: 23%;
  right: 7px;
  top: 72%;
  transform: rotateZ(20deg);
  opacity: 0.4;
}
.inner_full {
  width: 100%;
  height: 100%;
  background: linear-gradient(300deg, #1f2551 30%, #b96080);
  background-size: 180% 180%;
  background-position: 50% 0%;
  animation: gradientMove 7s ease infinite;
  position: relative;
}
@keyframes gradientMove {
    0% {
        background-position: 50% 0%;
    }
    50% {
        background-position: 100% 70%;
    }
    100% {
        background-position: 50% 0%;
    }
}
.inner_full::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/bg_noise.jpg);
  background-size: auto;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.45;
  background-position: 0 0;
}
.mv_box01 .box_in{
  width: 45%;
}
.inner_full .flex {
  justify-content: center;
}
.slider{
  display: none;
}
.slider.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}
.slide_img{
  width: 100%;
  height: auto;
  padding-top: 78.44%;
  background-size: cover;
  background-position: center center;
}
.slide01 .slide_list:nth-child(1) .slide_img{
  background-image: url(../img/slide01_01.jpg);
}
.slide01 .slide_list:nth-child(2) .slide_img{
  background-image: url(../img/slide01_02.jpg);
}
.slide01 .slide_list:nth-child(3) .slide_img{
  background-image: url(../img/slide01_03.jpg);
}
.slide01 .slide_list:nth-child(4) .slide_img{
  background-image: url(../img/slide01_04.jpg);
}
.slide01 .slide_list:nth-child(5) .slide_img{
  background-image: url(../img/slide01_05.jpg);
}
.slide02 .slide_list:nth-child(1) .slide_img{
  background-image: url(../img/slide02_01.jpg);
}
.slide02 .slide_list:nth-child(2) .slide_img{
  background-image: url(../img/slide02_02.jpg);
}
.slide02 .slide_list:nth-child(3) .slide_img{
  background-image: url(../img/slide02_03.jpg);
}
.slide02 .slide_list:nth-child(4) .slide_img{
  background-image: url(../img/slide02_04.jpg);
}
.slide02 .slide_list:nth-child(5) .slide_img{
  background-image: url(../img/slide02_05.jpg);
}
.mv_txtbox{
  padding: 25px 200px 25px 5%;
  position: relative;
}
.mv_txtbox ul {
  display: flex;
}
.mv_txtbox ul li:nth-child(2) {
  margin-left: 34px;
}
.mv_txt01{
  font-size: 47px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-right: 20px;
}
.mv_txt01 span{
  font-size: 0.6em;
  line-height: 1;
  margin-top: 3px;
}
.mv_txt02{
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.mv_txt02 span:nth-child(1):after{
  content: '｜';
}

.mv_chara{
  position: absolute;
  right: 30px;
  bottom:  -70px;
  transition: all .6s;
}
.mv_chara:hover{
  bottom: -60px;
}
.mv_chara::after{
  transition: all .6s;
  opacity: 0;
  content: '';
  width: 120px;
  height: 41px;
  background-image: url(../img/chara_scroll.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: -110px;
  top: 65px;
}
.mv_chara:hover::after{
  opacity: 1;
}

/*------------- top01 -------------*/

#top01{
  padding: 200px 0 20px;
}
.intro_txt01{
  margin-bottom: 70px;
}
.anchor_list01 li{
  width: calc(100% / 3);
}
.anchor_list01 li .img{
  position: relative;
  margin-bottom: 20px;
}
.anchor_list01 li .img::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .4);
  opacity: 0;
  transition: all .6s;
}
.anchor_list01 li:hover .img::after{
  opacity: 1;
}
.anchor_txt01{
  text-align: center;
  padding-bottom: 27px;
  position: relative;
  transition: all .6s;
}
.anchor_list01 li:hover .anchor_txt01{
  color: var(--color-primary);
}
.anchor_txt01::after{
  content: '';
  width: 30px;
  height: 12px;
  background-image: url(../img/arrow01.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .6s;
}
.anchor_list01 li:hover .anchor_txt01::after{
  bottom: -5px;
  background-image: url(../img/arrow01_hover.svg);
}
.section_normal{
  padding: 250px 0;
}
.section_top{
  padding-top: 250px;
}
.top_box01{
  align-items: center;
}
.top_box01 .box_l{
  width: 32%;
  padding-right: 70px;
}
.top_box01 .box_r{
  width: 68%;
}
.top_box01 .txt01{
  margin-bottom: 45px;
}
.con_slide01 .slide_list .slide_img{
  padding-top: 0;
}
/*.slide03 .slide_list:nth-child(1) .slide_img{
  background-image: url(../img/slide03_01.jpg);
}
.slide03 .slide_list:nth-child(2) .slide_img{
  background-image: url(../img/slide03_02.jpg);
}
.slide03 .slide_list:nth-child(3) .slide_img{
  background-image: url(../img/slide03_03.jpg);
}
.slide03 .slide_list:nth-child(4) .slide_img{
  background-image: url(../img/slide03_04.jpg);
}
.slide04 .slide_list:nth-child(1) .slide_img{
  background-image: url(../img/slide04_01.jpg);
}
.slide04 .slide_list:nth-child(2) .slide_img{
  background-image: url(../img/slide04_02.jpg);
}
.slide04 .slide_list:nth-child(3) .slide_img{
  background-image: url(../img/slide04_03.jpg);
}
.slide04 .slide_list:nth-child(4) .slide_img{
  background-image: url(../img/slide04_04.jpg);
}
.slide05 .slide_list:nth-child(1) .slide_img{
  background-image: url(../img/slide05_01.jpg);
}
.slide05 .slide_list:nth-child(2) .slide_img{
  background-image: url(../img/slide05_02.jpg);
}
.slide05 .slide_list:nth-child(3) .slide_img{
  background-image: url(../img/slide05_03.jpg);
}
.slide05 .slide_list:nth-child(4) .slide_img{
  background-image: url(../img/slide05_04.jpg);
}*/
.num-box,
.num-box span{
  line-height: 32px;
  display: inline-block;
  font-size: 16px;
}
.num-box{
  display: block;  
  text-align: right;
  padding-right: 100px;
}
.count-line{
  position: relative;
  padding-right: 20px;
}
.count-line::after{
  content: '';
  position: absolute;
  width: 1px;
  height: 32px;
  background-color: var(--color-secondary);
  right: 10px;
  top: 0;
}
.slide04 .num-box span {
  color: #fff;
}
.slide05 .num-box span {
  color: #2F3030;
}
.slide04 .count-line::after {
  background-color: #fff;
}
.slide05 .count-line::after {
  color: #2F3030;
}

/*------------- top3,4 -------------*/

#top03{
  background-color: #282D6A;
}
#top04{
  background-color: #EEF0F2;
}
#top03 p {
  color: #fff;
}
#top04 p {
  color: #2F3030;
}
#top04 .head02 {
  color: #2F3030;
  line-height: 1.5;
}
#top04 .btn01 {
  color: #2F3030;
}
#top05 .head02,
#top06 .head02{
  margin-bottom: 150px;
}
.clm_list01{
  width: 100%;
}
.clm_list01 li{
  width: 28%;
}
.clm_list01 .img{
  margin-bottom: 15px;
}
.clm_list01 .info01{
  margin-bottom: 15px;
}
.clm_list01 .cafe_info{
  border-top: 1px solid var(--color-secondary);
  padding-top: 15px;
  margin-bottom: 15px;
}
#top06 .clm_list01 {
  justify-content: space-evenly;
}
.line_box01{
  border-radius: 10px;
  border: 2px solid #70986F;
  max-width: 910px;
  margin: 100px auto 0;
  background-color: #FAF9EB;
  padding: 30px 70px;
  align-items: center;
}
.line_box01 .box_l{
  padding-right: 40px;
  width: 30%;
}
.line_box01 .box_r{
  width: 70%;
}
.line_box01 .btn01{
  max-width: 270px;
}
.line_box01 .txt01{
  margin-bottom: 20px;
}
#top07{
  padding-bottom: 200px;
}
#top07 .txt03{
  margin-bottom: 35px;
}
.gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 54.35%;
  margin-bottom: 100px;
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*filter: grayscale(100%);*/
}
.access_box01{
  margin-bottom: 100px;
}
.access_box02{
  padding: 40px 0;
  border-top: 1px solid var(--color-secondary);
}
.access_box02 .txt04{
  margin-top: 30px;
}
.about_list01 .box_in{
  width: calc((100% - 70px) / 2);
}
.access_ttl01{
  border: 1px solid #7F7F7F;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.access_ttl01.color02{
  color: #fff;
  background-color: #7F7F7F;
}
.price_list01,
.price_txt01{
  margin-bottom: 40px;
}
.price_list01 li{
  padding: 0 20px;
}
.price_list01 .txt05 {
  padding: 0 0;
}
.price_list01.clm02 li{
  width: 50%;
  text-align: center;
  overflow-wrap: break-word;
}
.price_list01 li .txt01{
  margin-right: 8px;
}
.price_txt01 .txt01 {
  margin: 0 8px;
}
#top .lity{
  background-color: rgba(255, 255, 255, 1.0);
}
#top .lity-iframe-container iframe,
#top .lity-content:after{
  box-shadow: none;
  -webkit-box-shadow: none;
}
@media screen and (max-width: 1500px) {
.mv_txt01{
  font-size: 47px;
  white-space: nowrap;
}
}
@media screen and (max-width: 1024px) {
.mv_txtbox{
  flex-wrap: wrap;
}
.mv_txtbox ul {
  display: block;
}
.mv_txtbox ul li:nth-child(2) {
  margin-left: 0;
}
.mv_txt01{
  font-size: 37px;
  width: 100%;
  margin-bottom: 10px;
}
.mv_txt02{
  width: 100%;
}
}
@media screen and (max-width: 899px) {
#header{
    top: auto;
}
.hamburger {
  display : block;
  position: absolute;
  right: 20px;
  top: 26px;
  width : 30px;
  height: 30px;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  z-index: 102;
  transition: all .3s;
  display: flex;
  align-items: center;
  display: block;
  background-color: #fff;
}
.hamburger::after{
    content: 'MENU';
    color: var(--color-primary);
    font-size: 9px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}
.hamburger.is-hidden{
    opacity: 0;
    pointer-events: none;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 15px;
  height  : 1px ;
  right: 7px;
  background : var(--color-primary);
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 16px;
}
.close_btn{
    position: absolute;
    right: 10px;
    top: 33px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}


.logos {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.main_copy01 {
  margin-top: 5px;
}
.main_copy02 {
  margin-top: 10px;
}
.mv_box01 {
  top: 172px;
}
.mv_txtbox {
  margin-bottom: 30px;
}
.inner,
.inner02{
  width: 85%;
  margin: 0 auto;
}
.pc_none{
  display: block;
}
.sp_none{
  display: none;
}
.flower_01 {
  left: 25px;
}
.head02{
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.head02 span{
  font-size: 15px;
}
.head03{
  font-size: 24px;
  margin-bottom: 20px;
}
.head04{
  font-size: 20px;
  text-align: justify;
}
.line_box01 .head04{
  font-size: 24px;
  text-align: center;
}
.head05{
  font-size: 13px;
  margin-bottom: 10px;
}
.txt01{
  font-size: 13px;
}

.txt02{
  font-size: 16px;
}
.txt03{
  font-size: 13px;
}
.txt04{
  font-size: 10px;
}
.txt06{
  font-size: 11px;
  line-height: 1.6;
  text-align: justify;
}
.section_normal{
  padding: 100px 0;
}
.section_top{
  padding-top: 100px;
}
/*top*/
#mv .inner_top{
  width: 100%;
}
.mv_box01 .box_in{
  width: 100%;
}
.slide_img{
  padding-top: 57.33%;
}
.mv_txtbox{
  padding: 25px 85px 25px 7%;
}
.mv_chara {
  width: 85px;
  bottom: -35px;
  right: 10px;
}
.mv_chara:hover {
  bottom: -15px;
}

.mv_chara::after{
  width: 70px;
  height: 24px;
  left: -60px;
  top: 10px;
}
.mv_txt01{
  font-size: 25px;
}
.mv_txt02{
  font-size: 10px;
}
#top01{
  padding: 100px 0 0;
}
.intro_txt01{
  margin-bottom: 20px;
}
.anchor_list01 li{
  width: calc(100% / 3);
}
.anchor_list01 li .img{
  width: 100%;
  height: auto;
  padding-top: 92.6%;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.anchor_list01 .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: initial;
  max-height: initial;

}
.anchor_txt01{
  padding-bottom: 23px;
}
.anchor_txt01::after{
  width: 20px;
  height: 8px;
}
.top_box01 .box_l{
  width: 100%;
  padding-right: 0;
  margin-bottom: 20px;
}
.top_box01 .box_r{
  width: 100%;
}
.top_box01 .txt01{
  margin-bottom: 30px;
}
.con_slide01 .slide_list .slide_img{
  height: auto;
  padding-top: 60.61%;
  position: relative;
}
.con_slide01 .slide_list .slide_img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 100%;
  max-width: initial;
  max-height: initial;
}
.num-box{
  padding-right: 10px;
}
.num-box, .num-box span{
  font-size: 13px;
}
#top05 .head02, #top06 .head02{
  margin-bottom: 50px;
  text-align: center;
}
.clm_list01 li{
  width: 100%;
}
.clm_list01 li{
  margin-bottom: 70px;
}
.clm_list01 li:last-child{
  margin-bottom: 0;
}
.clm_list01 li:nth-child(3){
  margin-top: 0;
}
.line_box01{
  margin-top: 50px;
  padding: 30px;
}
.line_box01 .box_l{
  width: 100%;
  padding-right: 0;
  margin-bottom: 35px;
}
.line_box01 .box_l .img{
  width: 108px;
  margin: 0 auto;
}
.line_box01 .box_r{
  width: 100%;
}
#top07{
  padding-bottom: 100px;
}
#top07 .txt03{
  margin-bottom: 20px;
}
.gmap{
  padding-top: 70.77%;
  margin-bottom: 50px;
}
.access_box02{
  padding: 20px 0;
}
.access_box02 .txt01{
  line-height: 1.6;
}
.access_box02 .img{
  display: none;
}
.access_box02 .txt04{
  margin-top: 10px;
}
.access_box01{
  margin-bottom: 15px;
}
.about_list01 .box_in{
  width: 100%;
}
.about_list01 .box_in:first-child{
  margin-bottom: 100px;
}
.access_ttl01.txt01{
  font-size: 16px;
}
.price_list01 li{
  text-align: center;
  padding: 0 15px;
}
.price_list01.clm03 li>.txt01{
  margin-right: 0;
}
.price_list01 li .txt01{
  font-size: 16px;
}
}