@charset "utf-8";
/* CSS Document */
/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box .flipDownTrigger {
  opacity: 0;
}
/*==================================================
ふわっ
===================================*/
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeDown */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeLeft */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* fadeRight */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time10 {
  animation-delay: 1.0s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
article .tel a {
  text-align: center;
  margin: 50px auto 0;
  color: #111111;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
}
article .contactBtn a {
  background: #fff;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto 0;
  max-width: 90%;
  padding: 10px 25px;
  color: #111111;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  border: 1px solid #111111;
  font-size: 1.6rem;
}
article .contactBtn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.scrolldown2 {
  bottom: auto !important;
  margin-top: -10px;
}
.key {
  margin-bottom: 50px;
}
/*--------------------------------------
　KV
---------------------------------------*/
.mainImgBox {
  position: relative;
  width: 100%;
  padding-top: 86.9%;
}
.caseMainImgBox {
  position: relative;
  width: 100%;
  padding-top: 128%;
}
.mainImgBox .mainImg, .caseMainImgBox .mainImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.mainImgBox .mainImg p {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.scrolldown2 {
  bottom: 45vh;
}
.scrolldown2 span {
  color: #fff;
}
.idxH2::before {
  content: '';
  display: block;
  width: 60px;
  height: 25px;
  margin: 0 auto 20px;
  background-image: url("../../images/fungarden/icon01.svg");
  background-size: contain;
}
#contentsWrap .txt {
  line-height: 2;
}
.colTxt {
  line-height: 2.5;
  text-align: center;
}
.colImg {
  margin: 50px auto;
}
#case01, #case02 {
  margin: 100px 0;
}
#case, #ex, #worries {
  margin: 70px auto 0;
}
#case dl {
  margin: 60px auto 40px;
  width: 93%;
}
#case dl dt {
  margin-bottom: 40px;
}
#case ul {
  margin: 20px auto 30px;
}
#case ul li {
  background: #000000;
  color: #fff;
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
}
#case .btn-internal a {
  background: #fff;
  color: #000;
  border: 1px solid;
}
#case .modelLink {
  color: #1baee7;
  text-decoration: underline;
}
#case dl dd table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  font-size: 12px;
  margin: 30px 0;
}
#case dl dd table tbody {
  border: 1px solid;
}
#case dl dd table tbody tr {
  border-bottom: 1px solid;
}
#case dl dd table tbody tr th {
  background-color: #E8E5E5;
  border-right: 1px solid;
}
#case dl dd table tbody tr td {
  border-right: 1px solid;
  padding: 5px;
}
#case .gallery li {
  background: none;
  padding: 0;
}
.btn-internal a:before {
  background: #fff url(../../images/common/arrow_black.png) 50% 50% no-repeat;
  background-size: 7px auto;
}
.btn-internal a.on:before {
  background: #fff url(../../images/common/arrow_black.png) 50% 50% no-repeat;
  background-size: 7px auto;
}
article {
  box-sizing: border-box;
  width: 93%;
  margin: auto;
}
article p {
  font-size: 1.2rem;
  line-height: 2;
  margin: auto;
  text-align: center;
}
#ex dl {
  width: 93%;
  margin: 0 auto 50px;
}
#ex dl:last-of-type {
  margin: 0 auto;
}
#ex dl dt {
  font-size: 1.6rem;
  margin: 30px 0;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: bold;
  box-sizing: border-box;
}
#ex dl dt:before {
  content: ''; /*何も入れない*/
  display: inline-block;
  width: 93px; /*画像の幅*/
  height: 35px; /*画像の高さ*/
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#ex dl:first-of-type dt:before {
  background-image: url("../../images/30th_anniversary/md_no_01.png");
}
#ex dl:nth-of-type(2) dt:before {
  background-image: url("../../images/30th_anniversary/md_no_02.png");
}
#ex dl:nth-of-type(3) dt:before {
  background-image: url("../../images/30th_anniversary/md_no_03.png");
}
#ex dl:nth-of-type(4) dt:before {
  background-image: url("../../images/30th_anniversary/md_no_04.png");
}
#ex dl dd, #case dl dd {
  line-height: 2.5;
}
#ex dl dd img {
  width: 48%;
}
#worries {
  width: 93%;
  margin: 0 auto 100px;
}
#worries dl {
  /*width: 47%;
  margin-bottom: 20px;*/
}
#worries dl dt {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 15px 0 10px;
  font-size: 1.7rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  display: inline-block;
  height: 54px;
  margin-left: 30px;
  padding: 0rem 2rem 0 3rem;
  color: #fff;
  background: #999797;
  line-height: 3.3;
}
#worries dl dt:before {
  position: absolute;
  top: 0;
  left: -30px;
  content: '';
  border-width: 27.5px 30px 27.5px 0;
  border-style: solid;
  border-color: transparent #999797 transparent transparent;
}
#worries dl dt:after {
  position: absolute;
  top: calc(50% - 7px);
  left: -10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}
#worries dl dd {
  font-size: 1.3rem;
}
#worries .worriesImg {
  margin: 40px 0;
}
#contentsWrap #insta {
  margin: 40px auto 0 !important;
}
/*--------------------------------------
　CONTENTS
---------------------------------------*/
@media only screen and (min-width: 600px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .flexboxPC {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #fungarden {
    margin-top: 74px;
  }
  .wi1000 {
    width: 1000px;
    margin: 0 auto;
  }
  .idxH2::before {
    width: 108px;
    height: 46px;
    margin: 0 auto 40px;
  }
  .mainImg {
    background-image: url("../../images/30th_anniversary/key_pc.jpg");
    background-size: cover;
  }
  .mainImgBox {
    padding-top: 32.9%;
  }
  .mainImgBox .mainImg p {
    width: 33%;
  }
  #fungarden .inner {
    width: 1100px;
    margin: auto;
  }
  #contentsWrap {
    margin-top: 100px;
  }
  #contentsWrap .idxH2 .en {
    line-height: 1.5;
  }
  .colTxt {
    width: 700px;
    font-size: 1.8rem;
    line-height: 3;
  }
  .idxH2 {
    margin: 70px 0 80px 0;
  }
.GL30th {
    text-align: center;
}
.GL30th img {
    width: 150px;
    margin: -40px auto 50px;
}  
  .colImg {
    margin: 100px auto 70px;
    width: 1000px
  }
  div#n2-ss-8-align {
    margin: auto;
  }
  #case01, #case02 {
    margin: 100px 0 170px 0;
  }
  #case dl {
    width: 1000px;
    margin: 0 auto 70px;
    position: relative;
  }
  #case dl dt {
    width: 1000px;
    margin: 0 auto 50px;
  }
  #case dl dd {
    width: 800px;
    margin: auto;
    font-size: 1.7rem;
    line-height: 2.5;
  }
  #case ul {
    width: 800px;
    margin: 40px auto;
  }
  #case ul li {
    color: #fff;
    display: inline-block;
    margin: 0 10px 5px 0;
    padding: 5px 10px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0;
  }
  #case dl dd table {
    margin: 70px auto;
    font-size: 16px;
  }
  #case dl dd table tbody tr td {
    padding: 10px;
  }
  article {
    padding: 0;
    margin: 100px auto;
  }
  #contentsWrap .btn-internal {
    position: absolute;
    right: 0;
    margin: 0;
  }
  article .contactBtn a {
    width: 500px;
  }
  article .imgTitle {
    width: 500px;
    margin: 0 auto 50px;
    display: block;
    text-align: center;
  }
  article .flexboxPC {
    flex-direction: row-reverse;
    width: 900px;
    margin: auto;
    align-items: center;
  }
  article .tel a {
    text-align: center;
    margin: 50px auto 10px;
    display: block;
    color: #111111;
    font-weight: bold;
    font-size: 5rem;
    line-height: 1;
  }
  article p {
    font-size: 2rem;
  }
  article .imgBox {
    width: 55% !important;
  }
  article .imgBox img {
    width: 48%;
  }
  article .imgBox img:first-child {
    margin-right: 2%;
  }
  /*article a:hover {
    background: #111111;
    color: #FFF;
  }*/
  article a:hover:after {
    right: 1.4rem;
  }
  #case, #ex, #worries {
    margin: 150px auto 70px;
  }
  #ex {
    width: 1100px;
  }
  #ex dl {
    width: 45%;
    margin: 0 0 80px;
  }
  #ex dl:last-of-type {
    margin: 0 0 80px;
  }
  #ex dl dt {
   font-size: 2.3rem;
    margin: 20px 0;
    line-height: 2.4;
  }
  #ex dl dd {
    font-size: 1.6rem;
    line-height: 2;
  }
  #worries {
    width: 1000px;
  }
  #worries .txt {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 100px;
    line-height: 2.5;
  }
  #worries .worriesImageBox {
    width: 1100px;
    margin: auto;
  }
  #worries dl {
    width: 50%;
  }
  #worries dl img {
    width: 48%;
    margin: 0;
  }
  #worries dl dt {
    font-size: 2rem;
    margin: 0 0 20px 30px;
    padding-left: 20px;
    line-height: 2.7;
  }
  #worries dl dd {
    font-size: 1.6rem;
    line-height: 2;
  }
  #worries .flexboxPC {
    margin-bottom: 40px;
    align-items: center;
  }
  #worries .flexboxPC p {
    width: 47%;
  }
}
@media only screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .flexboxSP {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .idxH2 .en {
    margin: 0 auto 3.5rem;
  }
  .idxH2 .en:after {
    bottom: -1.8rem;
  }
.GL30th {
    text-align: center;
}
.GL30th img {
    width: 150px;
    margin: 0 auto 50px;
}  
  #contentsWrap {
    margin-bottom: 80px;
  }
  #fungarden .inner {
    width: 93%;
    margin: auto;
  }
  .mainImg {
    background-image: url("../../images/30th_anniversary/key_sp.jpg");
    background-size: cover;
  }
  article .flexboxSP img {
    width: 48%
  }
  div#n2-ss-9 .n2-ss-slide-active {
    height: auto !important;
  }
  div#n2-ss-9 .n2-ss-slider-1, div#n2-ss-8 .n2-ss-slider-1 {
    width: 100%;
    aspect-ratio: 4 / 2.7;
  }
}