@charset "utf-8";
/* CSS Document */


/* #topmain
----------------------------------------- */
#topmain {
    position: relative;
    height : auto;
    margin: 0;
}

#topmain .slider {
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}

#topmain .slider::before {
    content: "";
    display: block;
    width: 100%;
    /*padding-top: 55.7142%;*/
	padding-top: 56%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: url(../images/top_wrap.svg) no-repeat center center;
    background-size: cover;
}

#topmain .top_wrap {
    display: none;
}


#topmain .slider li.slick-slide {
  /*height: -webkit-calc(100vh - 7rem);
  height: calc(100vh - 7rem);
  min-height: 78rem;
  height: 100vh;
  max-height: 600px;*/
}

#topmain .slider li.slick-slide .slide_wrap {
  display: block;
  position: relative;
  width:  -webkit-calc(100vw + 100px);
  width: calc(100vw + 100px);
  padding-top: 55.7142%;
  margin: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
    
    transform: translate3d(0, 0, 0);
	transform-origin: center center;
}

#topmain .slide-animation .slide_wrap {
  animation: slide_move 10s 0s linear forwards;
}
@keyframes slide_move {
  0% {
    transform: translate3d(-100px, 0, 0);
  }
  100% {
    transform: translate3d(-50px, 0, 0);
  }
}

#topmain .slider li.slick-slide .slide_wrap.slide1 {
  background-image: url(../images/top_img01.jpg);
}
#topmain .slider li.slick-slide .slide_wrap.slide2 {
  background-image: url(../images/top_img02.jpg);
}
#topmain .slider li.slick-slide .slide_wrap.slide3 {
  background-image: url(../images/top_img03.jpg);
}

#topmain .slider li.slick-slide a:hover * {
	opacity: 1;  
    filter: alpha(opacity=100);  
	-ms-filter: "alpha( opacity=100 )";
}

#topmain .logo_wrap {
    width: auto;
    position: absolute;
    top: 8vw;
    left: 8vw;
    z-index: 2;
}

#topmain .copy_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-feature-settings: normal;
}
#topmain h2 {
    font-size: 2.2rem;
    letter-spacing: 0.3em;
    line-height: 1.73;
    font-weight: 700;
    color: #006eb4;
}


@media only screen and (max-width: 768px) {
    #topmain {
}
   #topmain .slider {
    position: static;
}
    #topmain .slider::before {
    display: none;
}
    #topmain .top_wrap {
    display: block;
    width: 100%;
    padding-top: 0;
    height : -webkit-calc(100vh) ;
    height : calc(calc(var(--vh, 1vh) * 100)) ;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
    #topmain .top_wrap img {
    width: 100%;
    height: 100%;
}
    #topmain .slider li.slick-slide {
      height : -webkit-calc(100vh) ;
      height : calc(calc(var(--vh, 1vh) * 100)) ;
      min-height: auto;
}
    
  #topmain .slider li.slick-slide .slide_wrap {
      width:  -webkit-calc(100vw + 100vw);
      width: calc(100vw + 100vw);
      padding-top: 0;
      background-position: right center;
      height: 100%;
  }
    
    #topmain .slide-animation .slide_wrap {
  animation: slide_move2 14s 0s linear forwards;
}
    
#topmain .slider li.slick-slide .slide_wrap.slide1 {
  background-image: url(../images/top_img01_sp.jpg);
}
#topmain .slider li.slick-slide .slide_wrap.slide2 {
  background-image: url(../images/top_img02_sp.jpg);
}
#topmain .slider li.slick-slide .slide_wrap.slide3 {
  background-image: url(../images/top_img03_sp.jpg);
}
    
#topmain .logo_wrap {
    width: 8.3rem;
    top: 15vw;
    left: 15vw;
}
#topmain h2 {
    font-size: 1.6rem;
}
}

@keyframes slide_move2 {
  0% {
    transform: translate3d(-100vw, 0, 0);
  }
  100% {
    transform: translate3d(-10px, 0, 0);
  }
}


/* #intro
----------------------------------------- */
#intro {
    padding-top: 8rem;
}
#intro .inner {
    max-width: 90rem;
}
#intro .intro_list {
    flex-wrap: nowrap;
}
#intro .intro_list > li.ttl {
    width: -webkit-calc(360 / 900 * 100%);
    width : calc(360 / 900 * 100%);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-feature-settings: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}
#intro .intro_list > li.txt {
    width: -webkit-calc(540 / 900 * 100%);
    width : calc(540 / 900 * 100%);
}
#intro h2 {
    font-size: 2.2rem;
    letter-spacing: 0.3em;
    line-height: 1.73;
    font-weight: 500;
}
#intro .txt_wrap {
    font-size: 1.4rem;
    letter-spacing: 0.35em;
    line-height: 2.85;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
	#intro {
    padding-top: 3rem;
}
    #top #conWrap .inner {
    width: 100%;
}
    #intro .intro_list {
    flex-wrap: wrap;
        justify-content: center;
}
#intro .intro_list > li.ttl {
    width: 100%;
    -webkit-writing-mode:horizontal-tb;
	-ms-writing-mode:lr-tb;
	writing-mode:horizontal-tb;
    font-feature-settings: normal;
    margin-bottom: 3.5rem;
}
#intro .intro_list > li.txt {
    width: auto;
}
    #intro h2 {
    font-size: 2.4rem;
    letter-spacing: 0.2em;
    line-height: 1.375;
        text-align: center;
}
    #intro .txt_wrap {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    line-height: 2.5;
    text-align: left;
}
}



/* #photo_slide
----------------------------------------- */
#photo_slide {
    padding-top: 12rem;
}
#photo_slide .inner {
    max-width: none;
}
#photo_slide .img_wrap {
    width: 100%;
    padding-top: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#photo_slide .slick-prev, #photo_slide .slick-next {
    width: 1.5rem;
    height: auto;
    background: none;
    z-index: 2;
}
#photo_slide .slick-prev img, #photo_slide .slick-next img {
    width: 100%;
}
#photo_slide .slick-prev {
    left: 3rem;
}
#photo_slide .slick-prev img {
    /*transform: scale(-1, 1);*/
}
#photo_slide .slick-next {
    right: 3rem;
}
#photo_slide .slick-counter {
    width: auto;
    position: absolute;
    bottom: 1.5rem;;
    right: 3rem;
    z-index: 2;
}

@media screen and (max-width: 768px) {
	#photo_slide {
    padding-top: 7rem;
}
    #photo_slide .img_wrap {
    padding-top: 100%;
}
    #photo_slide .slick-counter {
    width: auto;
    position: absolute;
    bottom: 1.5rem;
    right: 50%;
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    z-index: 2;
}
    #photo_slide .slick-prev {
    left: 2rem;
    top: auto;
    bottom: 0;
}
    #photo_slide .slick-next {
    right: 2rem;
    top: auto;
    bottom: 0;
}
}



/* #about
----------------------------------------- */
#about {
    padding-top: 9rem;
}
#about .inner {
    max-width: 90rem;
}

#about h2 {
    text-align: center;
    margin-bottom: 9rem;
}

#about .about_list {
    align-items: flex-start;
    margin-bottom: 5rem;
}
#about .about_list > li {
    width: -webkit-calc(423 / 900 * 100%);
    width : calc(423 / 900 * 100%);
}
#about .about_list > li.txt {
    text-align: left;
    padding-top: 4.5rem;
}
#about .about_list > li .number {
    margin-bottom: 1.5rem;
}
#about .about_list > li h3 {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    line-height: 2;
    font-weight: 500;
    margin-bottom: 2rem;
}
#about .about_list > li .txt_wrap {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    line-height: 2.46;
    font-weight: 400;
    white-space: nowrap;
}
#about .about_list > li .txt_wrap .att {
    position: relative;
    padding-left: 1.4em;
}
#about .about_list > li .txt_wrap .att::before {
    content: "※";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.no1.delighter .img img {
    transform: translateY(10%);
      -webkit-transition: all .6s ease-out;
      transition: all .6s ease-out;
    opacity: 0;
}
.no1.delighter.started .img img {
    opacity: 1;
    transform: translateY(0%);
}
.no1.delighter.started.ended .img img {

}

.no2.delighter .img img {
    transform: translateY(10%);
      -webkit-transition: all 1.6s ease-out;
      transition: all 1.6s ease-out;
    opacity: 0;
}
.no2.delighter.started .img img {
    opacity: 1;
    transform: translateY(0%);
}
.no2.delighter.started.ended .img img {

}

.no3.delighter .img img {
    transform: translateY(10%);
      -webkit-transition: all .6s ease-out;
      transition: all .6s ease-out;
    opacity: 0;
}
.no3.delighter.started .img img {
    opacity: 1;
    transform: translateY(0%);
}
.no3.delighter.started.ended .img img {

}

.no4.delighter .img img {
    transform: translateY(10%);
      -webkit-transition: all .6s ease-out;
      transition: all .6s ease-out;
      opacity: 0;
}
.no4.delighter.started .img img {
    opacity: 1;
    transform: translateY(0%);
}
.no4.delighter.started.ended .img img {

}

.no5.delighter .img img {
    transform: translateY(10%);
      -webkit-transition: all .6s ease-out;
      transition: all .6s ease-out;
    opacity: 0;
}
.no5.delighter.started .img img {
    opacity: 1;
    transform: translateY(0%);
}
.no5.delighter.started.ended .img img {
    
}

@media screen and (max-width: 768px) {
	#about {
    padding-top: 7rem;
}
    #about .inner {
    max-width: 29.5rem;
}
    
    #about h2 {
    text-align: center;
    margin-bottom: 4rem;
}

#about .about_list {
    align-items: flex-start;
    margin-bottom: 5rem;
}
#about .about_list > li {
    width: 100%;
}
    #about .about_list > li.txt {
    text-align: left;
    padding-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
    #about .about_list > li .number {
    margin-bottom: 0;
}
    #about .about_list > li h3 {
    width: 24.5rem;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    line-height: 1.53;
    margin-bottom: 0;
}
    #about .about_list > li .txt_wrap {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    line-height: 2;
    font-weight: 400;
    white-space: normal;
    margin-top: 2rem;
}
    #about .about_list > li .txt_wrap br {
    display: none;
}
}



/* #access
----------------------------------------- */
#access {
    padding-top: 20rem;
}

#access .inner {
    max-width: 95.5rem;
}

#access h2 {
    text-align: center;
    margin-bottom: 3rem;
}

#access .access_list {
    align-items: flex-start;
    margin-top: 2rem;
}
#access .access_list.wakasa {
    margin-top: 12rem;
}
#access .access_list > li.map {
    width: -webkit-calc(500 / 955 * 100%);
    width: calc(500 / 955 * 100%);
    text-align: center;
}
#access .access_list > li.outline {
    width: -webkit-calc(360 / 955 * 100%);
    width: calc(360 / 955 * 100%);
}

#access .access_list > li.outline h3 {
    font-size: 2rem;
    letter-spacing: 0.1em;
}
#access .access_list > li.outline h3 .ig {
    display: inline-flex;
	margin-left: 1rem;
}
#access .access_list > li.outline h3 .ig a {
    display: flex;
}

#access .access_list > li.outline .table_wrap tr:last-child {
    border-bottom: none;
}
#access .access_list > li.outline .table_wrap td span {
    display: block;
	margin-top: 0.5rem;
}

#access .txt_wrap {
	display: flex;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    line-height: 2.1;
    text-align: center;
    margin-bottom: 5rem;
}

#access .map_wrap {
  position: relative;
  width: 100%;
    padding-top: 66%;
}

#access .map_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#access a.btn {
    display: inline-block;
    margin: auto;
    margin-top: 3.5rem;
}


@media screen and (max-width: 768px) {
	#access {
    padding-top: 5rem;
}
    #access .inner {
        max-width: 33.5rem;
}
    #access h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}
    #access .txt_wrap {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

#access .access_list {
    align-items: flex-start;
    margin-top: 3rem;
}
#access .access_list.wakasa {
    margin-top: 3rem;
}
#access .access_list > li.map {
    width: 100%;
    margin-bottom: 3rem;
}
#access .access_list > li.outline {
    width: 100%;
}
    
#access a.btn {
    margin-top: 2.5rem;
}
}



/* #instagram
----------------------------------------- */
#instagram {
    padding-top: 20rem;
}

#instagram .inner {
    max-width: 91rem;
}

#instagram h2 {
    text-align: center;
    margin-bottom: 3rem;
}

#instagram .instagram_list {
    align-items: flex-start;
    margin-top: 7rem;
}
#instagram .instagram_list > li {
    width: -webkit-calc(220 / 910 * 100%);
    width: calc(220 / 910 * 100%);
    margin-bottom: 1rem;
}
#instagram .instagram_list > li a {
    display: block;
}
#instagram .instagram_list .img_wrap {
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-size: cover;
}
#instagram a.btn {
    display: inline-block;
    margin: auto;
    margin-top: 5rem;
}

@media screen and (max-width: 700px) {
#instagram {
    padding-top: 10rem;
}
    
#instagram .inner {
    max-width: 33.5rem;
}
    
#instagram .instagram_list {
    align-items: flex-start;
    margin-top: 5rem;
}
#instagram .instagram_list > li {
    width: -webkit-calc(160 / 335 * 100%);
    width: calc(160 / 335 * 100%);
    margin-bottom: 1.5rem;
}
    
#instagram a.btn {
    margin-top: 2rem;
}
}