@charset "utf-8";
/* スプリットスクリーン　 */
.top-title,
.top-subtitle {
  width: 100%;
  position: absolute;
  top: 40%;
  transform: translateY(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 4.5vw;
  font-weight: 400;
  z-index: 10;
}
.top-subtitle {
  top: 60%;
  font-size: 3vw;
  font-weight: 400;
}
.top-title,
.top-subtitle span {
  opacity: 0;
}
.top-title.glow,
.top-subtitle.glow span {
  animation: glow_anime_on 2s ease-out forwards;
}
@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  70% {
    opacity: 1;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 15px #eeabc4, 0 0 20px #eeabc4;
  }
}
/* Panels. */
.splitview {
  position: relative;
  width: 100%;
  top: 80px;
  min-height: 45vw;
  overflow: hidden;
  z-index: 1;
}
.panel {
  position: absolute;
  width: 100vw;
  min-height: 45vw;
  overflow: hidden;
}
.panel .content {
  position: absolute;
  width: 100vw;
  min-height: 45vw;
  color: #fff;
}
.panel .description {
  width: 15%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.panel img {
  box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.15);
  width: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bottom {
  background-color: #000;
  z-index: 1;
}
.bottom .description {
  right: 5%;
}
.top {
  background-color: #fff;
  z-index: 2;
  width: 50vw;
}
.top .description {
  left: 5%;
  color: #000;
}
/* Handle. */
.handle {
  height: 100%;
  position: absolute;
  display: block;
  background-color: #eeabc4;
  width: 5px;
  top: 0;
  left: 50%;
  z-index: 3;
}
/* Skewed. */
.skewed .handle {
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
  height: 200%;
  transform-origin: top;
}
.skewed .top {
  transform: skew(-30deg);
  margin-left: -1000px;
  width: calc(50vw + 1000px);
}
.skewed .top .content {
  transform: skew(30deg);
  margin-left: 1000px;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/* Responsive. */
@media (max-width: 767px) {
  .splitview {
    top: 0px;
  }
  .bottom .description {
    font-size: 0%;
  }
  .top .description {
    font-size: 0%;
  }
  .panel img {
    width: 100%;
  }
  .handle {
    width: 3px;
  }
}
/* news */
.news {
  height: auto;
  margin-top: 100px;
}
.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding: 20px 20px;
}
.news-list .item .date {
  margin: 0;
  min-width: 120px;
  font-size: 15px;
  color: #333;
  padding: 0 20px 0 0;
}
.news-list .item .news-title {
  margin: 0;
  width: 100%;
}
.news-title {
  text-align: left;
}
/* Responsive. */
@media screen and (min-width: 768px) {
  .news-list .item a {
    flex-wrap: wrap;
  }
  .news-list .item .date {
    min-width: 100px;
  }
  .news-list .item .title {
    margin-top: 10px;
  }
}
@media screen and (min-width: 810px) {
  .news {
    height: auto;
    margin-top: 300px;
  }
  .news-container {
    margin: 0 10% 0 48%;
  }
}
/*==== concept ====*/
.concept {
  width: 100%;
  height: auto; 
  padding: 40px 20px 60px;
  background-color: #000;
}
.concept img {
  width: 300px;
  height: auto;
  margin-bottom: 50px;
  object-fit: cover;
}
.concept_text {
  padding-bottom: 40px;
  margin-bottom: 60px;
  color: #fff;
  font-size: 1.6rem;
  text-align: left;
}
/* Responsive. */
@media screen and (min-width: 768px) {
  .concept {
    padding: 100px 100px;
  }
  .concept img {
    width: 750px;
  }
  .concept_text {
    width: 750px;
    margin: 0 auto;
    line-height: 3;
  }
}

/*==== benefit ====*/
/* お悩み */
.benefit_title_box {
  position: relative;
  width: 300px;
  height: 60px;
  padding: 1rem 2rem calc(1rem + 10px);
  background: #eeabc4;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  color: #fff;
}
.benefit_title_box:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #000;
}
.benefit_img img {
  width: 350px;
  height: auto;
  margin: 40px 0;
}
/* アコーディオン */
.benefit_container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 30px;
  overflow: hidden;
  transform: skew(5deg);
}
.benefit_container .benefit_card {
  flex: 1;
  transition: all 1s ease-in-out;
  height: 250px;
  position: relative;
  z-index: 9;
}
.benefit_container .benefit_card .benefit_card__head {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5em;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  min-width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  font-size: 1.2rem;
  white-space: nowrap;
}
.benefit_container .benefit_card:hover {
  flex-grow: 10;
}
.benefit_container .benefit_card:hover img {
  filter: grayscale(100%);
}
.benefit_container .benefit_card:hover .benefit_card__head {
  text-align: center;
  top: calc(100% - 2.3em);
  color: #fff;
  background: #eeabc4;
  font-size: 1.4rem;
  transform: rotate(0deg) skew(-5deg);
}
.benefit_container .benefit_card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 1s ease-in-out;
  filter: grayscale(0%);
}
.benefit_container .benefit_card:not(:nth-child(5)) {
  margin-right: 1em;
}
.benefit_card p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9;
  padding: 10px 10px;
  font-size: 1.2rem;
  color: #eeabc4;
  text-shadow: 1px 1px #c63c62;
}
.benefit_card p {
  display: none;
}
.benefit_card:hover p {
  display: block;
}
/* Responsive. */
@media screen and (min-width: 768px) {
  /* お悩み */
  .benefit_title_box {
    position: relative;
    width: 700px;
    height: 60px;
    padding: 1rem 2rem calc(1rem + 10px);
    background: #eeabc4;
    text-align: center;
    margin: 0 auto;
    font-size: 2.4rem;
    color: #fff;
  }
  .benefit_title_box:before {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px solid #000;
  }
  .benefit_img img {
    width: 700px;
    height: auto;
    margin: 100px 0;
  }
  /*アコーディオン*/
  .benefit_container {
    margin: 8em 15em;
  }
  .benefit_container .benefit_card {
    height: 470px;
  }
  .benefit_container .benefit_card .benefit_card__head {
    font-size: 1.8rem;
  }
  .benefit_container .benefit_card:hover {
    flex-grow: 10;
  }
  .benefit_container .benefit_card:hover img {
    filter: grayscale(100%);
  }
  .benefit_container .benefit_card:hover .benefit_card__head {
    font-size: 2.8rem;
  }
  .benefit_container .benefit_card img {
    width: 100%;
    height: 100%;
  }
  .benefit_card p {
    padding: 10px 45px;
    font-size: 2.2rem;
    line-height: 2em;
  }
}
/*　インスタグラムカード　*/
.top_instagram {
  width: 300px;
  height: 86px;
  box-shadow: 10px 10px 20px -8px #666;
  margin: 0 auto;
}
.top_instagram img {
  width: 300px;
}
/* Responsive. */
@media screen and (min-width: 1000px) {
  .benefit_item {
    display: flex;
    justify-content: space-around;
    width: 60%;
    margin: 0 auto;
  }
}
/*========= access =========*/
.access {
  margin-top: 100px;
}
.access_container {
  margin: 60px 0;
}
.map {
  margin-bottom: 60px;
}
.map iframe {
  width: 100%;
  height: 80%;
  filter: grayscale(100%);
}
.address_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.address_title {
  font-size: 1.8rem;
  border-bottom: 3px solid #eeabc4;
  display: inline;
}
.access_text {
  margin-bottom: 60px;
  list-style: none;
  text-align: left;
  line-height: 3.5em;
}
.access_box {
  width: 70%;
  margin: 3em 0;
  position: relative;
  padding: 2em 2.5em;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  text-align: left;
}
.access_box:before,
.access_box:after {
  content: "";
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: black;
}
.access_box:before {
  left: 10px;
}
.access_box:after {
  right: 10px;
}
.access_box p {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .access_container {
    display: flex;
    flex-direction: row;
    margin: 0;
  }
  .map {
    flex: 1;
    max-height: 600px;
    margin: 0 5% 5% 10%;
  }
  .address {
    flex: 1;
    margin: 0 10% 5% 5%;
  }
  .address_title {
    font-size: 2rem;
    text-align: left;
    display: list-item;
  }
  .address_content {
    display: block;
    flex-direction: column;
    align-items: center;
  }
  .access_text {
    padding-left: 30px;
  }
  .access_box {
    width: 80%;
  }
}
