@charset "utf-8";

section {
  position: relative;
}

.decoration1 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 600px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  bottom: 0;
  left: 0;
}

.decoration2 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 400px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  bottom: 30px;
  left: 50px;
}

.decoration3 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 500px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 50px;
}

.decoration4 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 400px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  top: -50px;
  right: 0px;
}

/* .frist-view */
.img-frame {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
}

.img-01,
.img-02,
.img-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-01 {
  animation: slide-animation-01 18s infinite;
}

.img-02 {
  animation: slide-animation-02 18s infinite;
}

.img-03 {
  animation: slide-animation-03 18s infinite;
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.frist-view {
  position: relative;
}

.first-view-text-1 {
  font-size: 28px;
  line-height: 2em;
  position: absolute;
  inset: 50% auto auto 80%;
  transform: translate(-30%, -40%);
  z-index: 5;
  writing-mode: vertical-rl;
  text-indent: -60px;
  opacity: 0.6;
}
.first-view-text-2 {
  font-size: 40px;
  z-index: 5;
  position: absolute;
  inset: 89% auto auto 16%;
  transform: translate(-30%, -40%);
  opacity: 0.8;
}

.frist-view .logo {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 60;
  filter: drop-shadow(5px 5px 5px rgb(0, 0, 0));
}

.decoration {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 1px;
  height: 300px;
  background-color: #fff;

  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.decoration::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: 200px;
  /* 丸を水平方向中心に */
  left: 50%;
  transform: translateX(-50%);
  /* アニメーションの設定 下に行くと徐々に透過するが永遠に続く*/
  animation: marumove 2s ease-out infinite, marutrans 2s ease-in infinite;
}

@keyframes marumove {
  0% {
    bottom: 100%;
  }

  100% {
    bottom: 0%;
  }
}

@keyframes marutrans {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

.fixed-bg {
  min-height: 80vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.bg01 {
  background-image: url(../img2/gptback1.png);
}

.fude1 {
  position: absolute;
  opacity: 0.1;
  width: 50%;
  top: -250px;
  left: 0;
}

.decoration5 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 20px;
}

.decoration6 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 20px;
}

section {
  margin: 250px auto;
  text-align: center;
}

.title {
  font-size: 30px;
  margin-bottom: 30px;
}

section p {
  line-height: 70px;
}

.room img,
.dish img,
.bus img {
  width: 60%;

  object-fit: cover;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 20px 20px;
}

.room h2,
.dish h2,
.bus h2 {
  writing-mode: vertical-rl;
  font-size: 30px;
  letter-spacing: 20px;
  text-align: center;
  margin: auto;
  margin-top: 150px;
  font-weight: normal;
  margin-left: 110px;
}

.room,
.dish,
.bus {
  display: flex;
  width: 70%;
  margin: 200px auto;
  justify-content: space-between;
}

.room-h2 p,
.dish-h2 p,
.bus-h2 p {
  padding: 20px;
  text-align: center;
  width: 150px;
  border: 1px solid #fff;
  margin: 150px 0 0 50px;
}

.room-h2 p:hover,
.dish-h2 p:hover,
.bus-h2 p:hover {
  color: #000;
  background-color: rgb(255, 255, 255, 0.8);
  transition: 0.5s all;
}

.room-text,
.dish-text,
.bus-text {
  margin: auto 30px auto 30px;
  line-height: 40px;
  position: relative;
  font-size: 12px;
}

.bus-media {
  display: flex;
}

.dish {
  flex-direction: row-reverse;
}

.room-text p:nth-child(2),
.dish-text p:nth-child(2),
.bus-text p:nth-child(2) {
  margin-left: 30px;
}

.decoration7 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 1px;
  height: 200px;
  background-color: #fff;
  margin: 300px auto 50px;
}

.gallery-title {
  text-align: center;
  font-size: 25px;
  font-weight: normal;
}

.gallery {
  width: 50%;
  margin: 100px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  object-fit: cover;
  column-gap: 50px;
  row-gap: 50px;
}

.news {
  width: 60%;
  margin: 300px auto;
}

.news h3 {
  text-align: center;
  font-size: 30px;
  font-weight: normal;

  align-items: center;
  /* 横線を上下中央 */
  display: flex;
  /* 文字と横線を横並び */
  justify-content: center;
}

.news h3::before,
.news h3::after {
  display: block;
  background-color: #ffffff;
  /* 横線の色 */
  content: "";
  height: 15px;
  /* 横線の高さ */
  width: 15px;
  /* 横線の長さ */
  transform: rotate(45deg);
  margin: 30px;
}

.news ul {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.news li {
  width: 250px;
}

.news img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.news img:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

.news li p {
  font-size: 12px;
  color: rgb(148, 148, 148);
  font-family: sans-serif;
  font-weight: bold;
  padding: 5px;
}

.news dd {
  padding: 10px 0;
}

.news dt {
  color: rgb(205, 205, 205);

  overflow: hidden;
  height: 80px;
}

.news .view-more {
  display: block;
  padding: 20px;
  text-align: center;
  width: 150px;
  border: 1px solid #fff;
  margin: 150px auto 0;
}

.news .view-more:hover {
  color: #000;
  background-color: rgb(255, 255, 255, 0.8);
  transition: 0.5s all;
}

/* ロゴ / */

h1 {
  opacity: 0;
  transition: all 0.8s;
}

h1.fixed.none {
  opacity: 1;
  z-index: 100;
  transition: all 0.8s;
}

ロゴアニメ .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 3s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 1200px) {
  .img {
    height: 100%;
  }

  .header h1 img {
    height: 208px;
    width: 55px;
  }
  .decoration1 {
    width: 400px;
  }

  .decoration2 {
    width: 300px;
  }

  .decoration3 {
    width: 400px;
  }

  .decoration4 {
    width: 300px;
  }

  .room img,
  .dish img,
  .bus img {
    width: 100%;
    border-bottom: 1px solid #fff;
    border-right: none;
  }

  .room h2,
  .dish h2,
  .bus h2 {
    margin-top: 0;
    text-align: none;
  }

  .room,
  .dish,
  .bus {
    display: flex;
    flex-direction: column;
  }

  .bus-media {
    display: flex;
    margin: 100px auto;
  }

  .room-h2 p,
  .dish-h2 p,
  .bus-h2 p {
    margin: 20px auto 0;
  }

  .room-text,
  .dish-text,
  .bus-text {
    margin-left: 100px;
  }

  .dish {
    flex-direction: none;
  }

  .room-text p:nth-child(2),
  .dish-text p:nth-child(2),
  .bus-text p:nth-child(2) {
    margin-left: 80px;
  }

  .news {
    width: 80%;
    margin: 300px auto;
  }
}

/* ここから800px以下のデバイスに適用 */
@media (max-width: 800px) {
  .site-menu ul {
    display: none;
    /* display: block; */
    /* display flex解除のため */
    text-align: center;
  }

  .site-menu ul li {
    margin-top: 20px;
  }
  .reservation-button {
    margin-right: 0;
  }
  .header {
    /* 要素を自在に配置 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffffab;
    backdrop-filter: blur(10px);
    height: 50px;
    /* 重なり順を指定　常に一番上にくるように」 */
    z-index: 10;
    /* box-shadow: 左右の位置　上下の位置　ぼかし具合　影の色; */
    box-shadow: 0 3px 6px #0000001a;
  }
  .header h1 img {
    width: 40px;
    height: 200px;
    margin: 0;
  }
  .header-inner {
    padding: 0 20px;
    height: 100%;
    position: relative;
    /* header-site-menuの基準のため */
  }
  .img-01,
  .img-02,
  .img-03 {
    height: calc(100vh - 10px);
  }
  .frist-view .logo {
    width: 10%;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 60;
    filter: drop-shadow(5px 5px 5px rgb(0, 0, 0));
  }
  .first-view-text-1 {
    font-size: 14px;
    line-height: 2em;
    position: absolute;
    inset: 23% auto auto 80%;
    transform: translate(-30%, -40%);
    z-index: 5;
    writing-mode: vertical-rl;
    text-indent: -60px;
    opacity: 0.6;
  }

  .first-view-text-2 {
    font-size: 15px;
    z-index: 5;
    position: absolute;
    inset: 39% auto auto 15%;
    transform: translate(-30%, -40%);
    opacity: 0.8;
  }

  .decoration {
    content: "";
    /* ::befre::afterはインラインブロック表示に変えて幅を変える */
    display: block;
    width: 1px;
    height: 200px;
    background-color: #fff;

    position: absolute;
    bottom: +190px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .decoration2 {
    display: none;
  }
  .decoration1,
  .decoration4,
  .decoration3 {
    display: none;
  }

  .title {
    font-size: 30px;
    margin-bottom: 30px;
    position: relative;
    bottom: +450px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  section p {
    vertical-align: 300px;
    position: relative;
    bottom: +450px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .room img,
  .dish img,
  .bus img {
    width: 100%;
    position: relative;
    bottom: +590px;
    left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 20px 20px;
  }
  .dish img {
    width: 340px;
    height: 240px;
  }

  .room h2,
  .dish h2,
  .bus h2 {
    writing-mode: vertical-rl;
    font-size: 30px;
    letter-spacing: 20px;
    text-align: center;
    margin: auto;
    margin-top: 150px;
    font-weight: normal;
    margin-left: 1px;
    position: relative;
    bottom: +740px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .room,
  .dish,
  .bus {
    display: flex;
    width: 70%;
    margin: 50px auto;
    justify-content: space-between;
  }

  .room-h2 p,
  .dish-h2 p,
  .bus-h2 p {
    padding: 20px;
    text-align: center;
    width: 150px;
    border: 1px solid #fff;
    margin: 150px 0 0 0;
    position: relative;
    bottom: +900px;
    /* left: 50%;
  transform: translate(-50%, -50%); */
  }

  .room-h2 p:hover,
  .dish-h2 p:hover,
  .bus-h2 p:hover {
    color: #000;
    background-color: rgb(255, 255, 255, 0.8);
    transition: 0.5s all;
  }

  .room-text,
  .dish-text,
  .bus-text {
    margin: auto 0 auto 0;
    line-height: 40px;
    position: relative;
    bottom: +800px;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
  }

  .bus-media {
    display: flex;
  }

  /* .dish {
    flex-direction: row-reverse;
  } */

  .room-text p:nth-child(2),
  .dish-text p:nth-child(2),
  .bus-text p:nth-child(2) {
    margin-left: 30px;
  }
  .decoration5 {
    position: relative;
    bottom: +440px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .decoration6 {
    position: relative;
    bottom: -250px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .decoration7 {
    content: "";
    /* ::befre::afterはインラインブロック表示に変えて幅を変える */
    display: block;
    width: 1px;
    height: 200px;
    background-color: #fff;
    margin: 300px auto 50px;
    position: relative;
    bottom: +740px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .gallery-title {
    text-align: center;
    font-size: 25px;
    font-weight: normal;
  }

  .gallery {
    width: 80%;
    margin: 100px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    object-fit: cover;
    column-gap: 50px;
    row-gap: 50px;
  }

  .news {
    width: 80%;
    justify-content: space-between;
  }

  .news h3 {
    text-align: center;
    font-size: 30px;
    font-weight: normal;

    align-items: center;
    /* 横線を上下中央 */
    display: flex;
    /* 文字と横線を横並び */
    justify-content: center;
  }

  .news h3::before,
  .news h3::after {
    display: block;
    background-color: #ffffff;
    /* 横線の色 */
    content: "";
    height: 15px;
    /* 横線の高さ */
    width: 15px;
    /* 横線の長さ */
    transform: rotate(45deg);
    margin: 30px;
  }

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

  .news li {
    /* width: 450px; */
    margin: 0 20px;
  }

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

  .news img:hover {
    transform: scale(1.05);
    transition: 0.5s;
  }

  .news li p {
    font-size: 12px;
    color: rgb(148, 148, 148);
    font-family: sans-serif;
    font-weight: bold;
    padding: 5px;
  }

  .news dd {
    padding: 10px 0;
  }

  .news dt {
    color: rgb(205, 205, 205);

    overflow: hidden;
    height: 80px;
  }

  .news .view-more {
    display: block;
    padding: 20px;
    text-align: center;
    width: 150px;
    border: 1px solid #fff;
    margin: 150px auto 0;
  }

  .news .view-more:hover {
    color: #000;
    background-color: rgb(255, 255, 255, 0.8);
    transition: 0.5s all;
  }
}
