@charset "UTF-8";

/*---------------------------------

  基本設定

  ---------------------------------*/
body {

  font-family: 'Noto Serif JP', serif;
  color: #111111;
  /* background: #0D0C0C; */
  position: relative;
  font-weight: 300;
  overflow-wrap: break-word;
}

p {
  font-size: 12px;
  line-height: 1.7;
}

img {
  width: 100%;
}


h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

h3 {
  font-size: 16px;
  margin-bottom: 40px;
}



/* ↓意図していない画面はみ出しの対処として */
main {
  overflow: hidden;
  /* margin-top: 70px; */
  /* ヘッダー分高さ空ける↑ */
}

@media screen and (601px <=width) {


  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }

}

@media screen and (1080px <=width) {

  h2 {
    margin-bottom: 30px;
  }

  h3 {
    margin-bottom: 65px;
  }

  p {
    font-size: 16px;
  }
}


/*=========================
　アンカーリンク用TOP余白
=========================*/
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

/*=========================
　invew 
=========================*/
/* 左からふわっと */
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* 右からふわっと */
.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* 下からふわっと */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  /* invew発動時のTOPへ戻る時のスレ対処法、50％を↑20%に変更 */
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* inview調整、ここまで↑ */





/*---------------------------------

  ヘッダー メニュー

---------------------------------*/
header {
  /* position: fixed; */
  height: 70px;
  width: 100%;
  top: 0;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffffda;
}

.logo {
  width: 70px;
}

.SP_header {
  display: flex;
  align-items: end;
  padding: 20px;

  & p {
    font-size: 9px;
    margin-left: 15px;
    margin-bottom: -5px;
  }
}

.global-nav-pc {
  /* ↓スマホではPC用のナビゲーションを消す */
  display: none;
}


.fixed {
  position: fixed;
  top: 0;
  left: 0;
}


/*=========================
　ドロワーのための調整CSS
=========================*/
.drawer-hamburger {
  width: 30px;
  padding: 25px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon::after,
.drawer-hamburger-icon::before {
  background-color: #D9D9D9;
}

.drawer-nav {
  background: #fff;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 0px;
}

.drawer--right.drawer-open .drawer-nav {
  opacity: 0.9;
  width: 100vw;
  padding-top: 150px;
}

.drawer-menu li {
  text-align: center;
}

.drawer-menu li a {
  position: relative;
  display: block;
  padding: 20px;
  text-decoration: none;
}

.drawer-menu li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  height: 10px;
  width: 10px;
  border-top: 2px solid #D9D9D9;
  border-right: 2px solid #D9D9D9;
  transform: translateY(-50%) rotate(45deg);
}

.drawer-brand img {
  width: 100px;
}

/*=========================
　動画全画面表示　パララックス
=========================*/


@media screen and (1080px <=width) {

  .header-wrap {
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-inline: auto;
    /* border-bottom: 2px solid #fff; */
  }

  .drawer-hamburger,
  .drawer-nav {
    display: none;
  }

  .global-nav-pc {
    display: block;
  }

  .pc_menu {
    display: flex;
    align-items: center;
  }

  .pc_menu li {
    position: relative;
    display: inline-block;
    margin-left: 40px;
    font-size: 14px;
  }



}




/*---------------------------------

　　メインビュー

---------------------------------*/
.main {
  display: flex;
  justify-content: center;
  align-items: center;

  & img {
    width: 100px;
    margin-bottom: 20px;
  }

  & p {
    font-size: 14px;
  }
}


/*  */
.header {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.header.fadeIn {
  opacity: 1;
}

/* main */
@media screen and (width<=600px) {
  .main {
    position: relative;
    display: flex;
    /* justify-content: space-between; */
    flex-direction: column-reverse;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 2% 2% 0 2%;
  }

  .main__logo {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    height: 150px;
  }

  .main__photo {
    width: 100%;
    height: calc(100% - 150px);
  }
}

@media screen and (601px<=width<=1080px) {
  .main {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 2% 2% 0 2%;
  }

  .main__logo {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    height: 200px;
  }

  .main__photo {
    width: 100%;
    height: calc(100% - 200px);
  }
}

@media screen and (1081px<=width) {
  .main {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 1% 5% 10% 0;
  }

  .main__logo {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 50%;
    text-align: center;
  }


  .main__photo {
    width: 50%;
    height: 100%;
  }
}























/*---------------------------------

　　indiba

---------------------------------*/
.about_photo_container {
  margin: 60px 0;
}

.about_photo1 {
  padding: 5% 20% 2% 0;
}

.about_photo2 {
  padding: 2% 0px 5% 20%;
}

.what_area,
.effect_area {
  padding: 5%;
}

.effect_area {
  margin-top: 80px;
}

.ttl_center {
  text-align: center;
}

/* 流体シェイプ（8種）list1 */
.fluid_1 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #87c5b689;
  animation: fluidrotate1 30s ease 0s infinite;
}

@keyframes fluidrotate1 {

  0%,
  100% {
    border-radius: 28% 72% 25% 75% / 65% 63% 37% 35%;
  }

  14% {
    border-radius: 49% 51% 37% 63% / 59% 31% 69% 41%;
  }

  28% {
    border-radius: 67% 33% 68% 32% / 45% 31% 69% 55%;
  }

  42% {
    border-radius: 49% 51% 68% 32% / 45% 57% 43% 55%;
  }

  56% {
    border-radius: 49% 51% 37% 63% / 59% 57% 43% 41%;
  }

  70% {
    border-radius: 60% 40% 72% 28% / 43% 32% 68% 57%;
  }

  90% {
    border-radius: 49% 51% 37% 63% / 40% 58% 42% 60%;
  }

}



/* list2 */
.fluid_2 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #dcf0faa5;
  animation: fluidrotate2 30s ease 0s infinite;
}

@keyframes fluidrotate2 {

  0%,
  100% {
    border-radius: 60% 40% 50% 50% / 40% 54% 46% 60%;
  }

  10% {
    border-radius: 71% 29% 50% 50% / 53% 36% 64% 47%;
  }

  20% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  38% {
    border-radius: 49% 51% 29% 71% / 39% 56% 44% 61%;
  }

  60% {
    border-radius: 49% 51% 47% 53% / 60% 39% 61% 40%;
  }

  78% {
    border-radius: 49% 51% 37% 63% / 40% 38% 62% 60%;
  }

  88% {
    border-radius: 49% 51% 37% 63% / 60% 59% 41% 40%;
  }

}



/* list3 */
.fluid_3 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #f3ca7083;
  animation: fluidrotate3 30s ease 0s infinite;
}

@keyframes fluidrotate3 {

  0% {
    border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%;
  }

  12.5% {
    border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%;
  }

  25% {
    border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%;
  }

  37.5% {
    border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%;
  }

  50% {
    border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%;
  }

  62.5% {
    border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%;
  }

  75% {
    border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%;
  }

  87.5% {
    border-radius: 40% 60% 55% 45% / 50% 60% 40% 50%;
  }

  100% {
    border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%;
  }

}



/* list4 */
.fluid_4 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #f1c7d57b;
  animation: fluidrotate4 30s ease 0s infinite;
}

@keyframes fluidrotate4 {

  0%,
  100% {
    border-radius: 60% 40% 37% 63% / 47% 30% 70% 53%;
  }

  11.5% {
    border-radius: 45% 55% 36% 64% / 60% 56% 44% 40%;
  }

  20% {
    border-radius: 37% 63% 51% 49% / 40% 56% 44% 60%;
  }

  33% {
    border-radius: 64% 36% 51% 49% / 63% 56% 44% 37%;
  }

  53.5% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  76% {
    border-radius: 50% 50% 34% 55%/56% 68% 32% 44%;
  }

  85% {
    border-radius: 49% 51% 37% 63% / 47% 59% 41% 53%;
  }

}




/* list5 */
.fluid_5 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #e2859174;
  animation: fluidrotate5 30s ease 0s infinite;
}

@keyframes fluidrotate5 {

  0%,
  100% {
    border-radius: 77% 23% 45% 55% / 30% 30% 70% 70%;
  }

  17% {
    border-radius: 41% 59% 53% 47% / 40% 64% 36% 60%;
  }

  30% {
    border-radius: 60% 40% 39% 61% / 40% 64% 36% 60%;
  }

  40% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  50% {
    border-radius: 48% 52% 45% 55% / 73% 75% 25% 27%
  }

  70% {
    border-radius: 60% 40% 50% 50% / 40% 32% 68% 60%;
  }

  84% {
    border-radius: 37% 63% 55% 45% / 54% 61% 39% 46%;
  }

}



/* list6 */
.fluid_6 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #a3d0ee7a;
  animation: fluidrotate6 30s ease 0s infinite;
}

@keyframes fluidrotate6 {

  0%,
  100% {
    border-radius: 44% 56% 35% 65% / 47% 55% 45% 53%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 67% 33% 49% 51% / 45% 55% 45% 55%;
  }

  42% {
    border-radius: 45% 55% 39% 61% / 57% 55% 45% 43%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 40% 60% 71% 29% / 41% 25% 75% 59%;
  }

  84% {
    border-radius: 40% 60% 53% 47% / 54% 25% 75% 46%;
  }

}



/* list7 */
.fluid_7 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #f6b6947d;
  animation: fluidrotate7 30s ease 0s infinite;
}

@keyframes fluidrotate7 {

  0%,
  100% {
    border-radius: 31% 69% 53% 47% / 54% 64% 36% 46%;
  }

  18% {
    border-radius: 60% 40% 35% 65% / 67% 55% 45% 33%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 58% 42% 44% 56% / 53% 32% 68% 47%;
  }

  55% {
    border-radius: 58% 42% 44% 56% / 53% 51% 49% 47%;
  }

  70% {
    border-radius: 37% 63% 44% 56% / 39% 51% 49% 61%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }

}



/* list8 */
.fluid_8 {
  position: relative;
  width: 140px;
  height: 140px;
  background: #b1a1c878;
  animation: fluidrotate8 30s ease 0s infinite;
}

@keyframes fluidrotate8 {

  0%,
  100% {
    border-radius: 67% 33% 51% 49% / 60% 56% 44% 40%;
  }

  10% {
    border-radius: 51% 49% 55% 45% / 45% 36% 64% 55%;
  }

  25% {
    border-radius: 65% 35% 69% 31% / 47% 65% 35% 53%;
  }

  39.5% {
    border-radius: 38% 62% 27% 73% / 47% 40% 60% 53%;
  }

  60% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 41% 59% 60% 40% / 53% 65% 35% 47%;
  }

  87% {
    border-radius: 49% 51% 51% 49% / 40% 56% 44% 60%;
  }

}



.effect_list {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  text-align: center;
}

.effect_list_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 30px;
}

.fluid_1,
.fluid_2,
.fluid_3,
.fluid_4,
.fluid_5,
.fluid_6,
.fluid_7,
.fluid_8 {
  margin-top: 30px;
}

.fluid_2,
.fluid_3,
.fluid_4,
.fluid_5,
.fluid_6,
.fluid_7 {
  margin-left: 10px;
}

.indiba_link {
  font-size: 12px;
  color: #b9b7b7;
  text-align: right;
}


@media screen and (601px <=width) {
  .What {
    display: flex;
    justify-content: center;
  }
}



@media screen and (1080px <=width) {
  .What {
    max-width: 1440px;
    margin: auto;
  }

  p {
    font-size: 16px;
  }


  .fluid_1,
  .fluid_2,
  .fluid_3,
  .fluid_4,
  .fluid_5,
  .fluid_6,
  .fluid_7,
  .fluid_8 {
    width: 200px;
    height: 200px;
  }

  .effect_list_wrap {
    width: 1024px;
    margin-inline: auto;
  }

  .indivb_link {
    font-size: 14px;
  }
}























/*---------------------------------

　　Menu

---------------------------------*/

.menu_area {
  margin: 110px 0 100px;

}

.case__item__text {
  padding: 3rem 0;
  height: 16rem;
  margin: auto;
  width: 350px;
}

.case__item__text p {
  font-size: 12px;
  display: table-cell;
  vertical-align: middle;
  line-height: 2.5;
}

.case__item__text a {
  display: block;
  text-align: right;
  margin-top: 1.5rem;
}

.menu_cta {
  width: 100px;
}



@media screen and (601px <=width) {
  .menu_area {
    margin-inline: auto;
    max-width: 1440px;
  }

  .case {
    margin: 0 auto;
  }


  .case__item {
    display: flex;
  }

  .case__item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .case__item__text,
  .case__item__img {
    width: 50%;
  }

  .case__item__text {
    display: table;
    padding-left: 5%;
    padding-right: 3%;
  }

  .case__item__text p {
    display: inline-block;
    text-align: left;
  }

}

@media screen and (1080px <=width) {
  .case__item__text {
    width: 450px;
    padding-left: 0;
    padding-right: 0;
  }

  .case__item__text p {
    text-align: left;
    font-size: 16px;
  }
}










/*---------------------------------

　　Policy

---------------------------------*/
.policy_area {
  position: relative;
  background-image: url(../images/top/policy_back.png);
  background-position: 78% 15%;

}

.policy_container {
  padding: 20% 5%;
  max-width: 1280px;
  margin: auto;
}

.policy_main_tex {
  margin-bottom: 65px;
}


.policy_photo_1,
.policy_photo_2 {
  width: 210px;
  margin: auto;

  & p {
    text-align: center;
  }
}

.policy_photo_1 {
  margin-bottom: 2rem;
}

@media screen and (601px <=width) {
  .policy_container {
    padding: 15% 5%;
  }

  .policy_photo {
    display: flex;
  }

  .policy_photo_1 {
    margin-bottom: 0;
  }
}


@media screen and (1080px <=width) {
  .policy_wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .policy_main_tex {
    margin-bottom: 15px;
  }

  .policy_photo_1 {
    margin-right: 2rem;
  }
}



/*---------------------------------

　  Topick

---------------------------------*/
.topick_area {
  padding: 5%;
  margin-top: 70px;

  & h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  & h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

}

.topick_ttl {
  width: 300px;
  padding: 10px 20px 20px 10px;
  margin-left: -10px;
  background-image: url(../images/top/topick_ttl.png);
  background-repeat: no-repeat;
  background-size: contain;

}

.program {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 35px;

  & h3 {
    margin-bottom: 15px;
    font-weight: 600;
  }

}

.program_1 {
  position: relative;
  width: 130px;
}

.program_1 a {
  display: block;
  text-align: right;
}

.program_cta {
  position: absolute;
  width: 50px;
  bottom: 1rem;
  right: 0;
}




.program_photo {
  width: 200px;
  height: 150px;
  object-fit: cover;
}


@media screen and (601px <=width) {

  .program_wrap {
    display: flex;
    justify-content: space-between;
  }

  .program_1 {
    margin-right: 5%;

    & p {
      font-size: 12px;
    }
  }
}


@media screen and (1080px <=width) {
  .topick_area {
    width: 1280px;
    margin-inline: auto;
  }

  .topick_wrap {
    display: flex;
    justify-content: space-between;
  }

  .program {
    display: block;
    margin: 0;
  }

  .program_wrap {
    width: 440px;
  }

  .program_1 {
    width: 180px;
    height: 130px;
  }
}

























/*---------------------------------

　  access

---------------------------------*/
.access {
  padding: 5%;
}

.shop_name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.info_detail {
  margin-bottom: 30px;
  width: 250px;
  margin-inline: auto;
}

.list {
  display: flex;
  margin-bottom: 10px;

  & p {
    font-size: 14px;
  }
}

.info_ttl {
  width: 80px;
  text-align: left;
}





@media screen and (601px<=width) {

  .info_wrapper {
    display: flex;
    justify-content: space-around;
    margin-inline: auto;
  }


  .info_ttl {
    width: 100px;
  }


}

@media screen and (1080px <=width) {
  .access {
    width: 900px;
    margin: auto;
  }

  .info_wrapper {
    margin-top: 120px;
  }

  .info_detail {
    width: 400px;
  }

  .list p {
    margin-bottom: 10px;
  }
}




/*---------------------------------

  RESERVE

---------------------------------*/

.reserve {
  height: 100px;
  width: 100%;
  margin-top: 70px;
}



.reserve a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.reserve a::after {
  content: "";
  display: block;
  background-image: url(../images/top/policy_back.png);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  transition-duration: .6s;
  transition-property: transform;
}


.reserve h2 {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-weight: 400;

}

.reserve h2::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/top/circle_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
}



@media screen and (601px<=width) {
  .reserve {
    height: 150px;
  }

  .reserve a:hover::after {
    -moz-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }

}


@media screen and (1080px <=width) {
  .reserve {
    height: 300px;
  }
}





/*---------------------------------

  フッター

---------------------------------*/
footer {
  padding-bottom: 30px;
}

.footer_wrap {
  width: 300px;
  margin-inline: auto;
}

.Link img {
  margin-bottom: 50px;
}

.footer-nav {
  margin-top: 70px;
}

.footer-nav li {
  text-align: center;
  font-size: 12px;
  margin-bottom: 15px;
}

.footer-last {
  margin-top: 30px;
  text-align: center;
}

.copyright {
  font-size: 10px;
  margin: 20px auto 30px;
  letter-spacing: 0;
}


@media screen and (1080px<=width) {
  .footer_wrap {
    width: 1000px;
    margin-inline: auto;
    text-align: center;
    justify-content: center;
  }

  .Link {
    display: flex;
    justify-content: space-between;

    & img {
      width: 300px;
    }
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    column-gap: 45px;

    & a {
      font-size: 14px;
    }
  }

  .copyright {
    font-size: 10px;
  }
}