@charset "utf-8";

/*共通設定*/
.mobile {
  display: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

body {
  background-image: url(../../common/img/background.png);
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
}

li {
  list-style: none;
}

p,
small,
span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*★タイトルの設定★*/
.first-view-title {
  color: #323844;
  font-size: 48px;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 500;
  font-style: normal;

  /* 1本目の線（テキストの直下） */
  border-bottom: 3.5px solid #d25729;
  padding-bottom: 0px;
  /* テキストと1本目の線の間にスペースを空ける*/
  display: inline-block;
  /* コンテンツ幅に合わせる */
  position: relative;
}

/*タイトルの下線設定*/
.first-view-title::after {
  content: "";
  display: block;
  /* 2本目の線（1本目の線の下） */
  border-bottom: 6px solid #d25729;
  width: 100%;

  /* 2本目の線を配置 */
  position: absolute;
  left: 0;
  bottom: -14px;
  /* 1本目の線からの距離を調整 */
}

/*フォントリンク*/
/*タイトルフォント：春乃海解星*/
.kaisei-harunoumi-regular {
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 400;
  font-style: normal;
}

.kaisei-harunoumi-medium {
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 500;
  font-style: normal;
}

.kaisei-harunoumi-bold {
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
  font-style: normal;
}

/*本文フォント：全角Gothic New*/
.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}


.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.2);
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ★★★★★★ここからヘッダーメニューcss★★★★★★★ */

header {
  background-color: rgb(255, 255, 255);
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ヘッダーロゴサイズ設定 */
.logo img {
  max-width: 120px;
  margin: 10px;
  margin-right: -130px;
  /*ヘッダーメニューのズレを直す為の-130px*/
  margin-left: 30px;
}

.logo {
  transition: opacity 0.3s ease;
}

/*ヘッダーロゴにホバーすると60％表示*/
.logo:hover {
  opacity: 0.6;
}

.submenu {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.header-menu {
  display: flex;
  align-items: center;
  width: 100%;
  /* 親要素の幅いっぱいに広げる */
}

/*メニューボタンの設定*/
.menu-list {
  width: 160px;
  height: 120px;
  background-color: #f8f8f8;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s;
  margin: 3px;
  border: solid 1px #b3b3b3;
}

.menu-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #323844;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.3s;
  flex-direction: column;
  /* pとspanの並びを縦方向にする */
}

/*★メニューアイコン📚の設定★*/
.menu-list a::before {
  content: "";
  display: block;
  /* アイコンサイズの変更 */
  width: 40px;
  height: 40px;
  /* アイコン種類・表示の設定*/
  background-image: url("../../common/img/header-icon1-story.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* 画像を中央に配置 */
  /* テキストとの間隔調整 */
  margin-bottom: 3px;
}

/*お食事処一覧アイコン🍴*/
.submenu li:nth-child(2) a::before {
  background-image: url("../../common/img/header-icon2-food.png");
}

/*エリアガイドアイコン🗺*/
.submenu li:nth-child(3) a::before {
  background-image: url("../../common/img/header-icon3-access.png");
}

/*アクセスアイコン🚃*/
.submenu li:nth-child(4) a::before {
  background-image: url("../../common/img/header-icon4-map.png");
}

/*お知らせアイコン📢*/
.submenu li:nth-child(5) a::before {
  background-image: url("../../common/img/header-icon5-news.png");
}

/* ホバーするとメニューの背景色が青くなる */
.menu-list:hover {
  background-color: #ececec;
}

/*メニューボタン左端の白線*/
.menu-list::before {
  content: "";
  width: 1px;
  height: 80%;
  margin-top: 8px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

/*ホバー前のメニューボタン設定*/
.menu-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #323844;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all 0.3s;
}

/*ホバー後のメニューボタン設定*/
.menu-list:hover a {
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

/*メニューの英語部分の設定*/
.menu-en {
  font-size: 13px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 2px;
  display: block;
  /* spanはインライン要素なので、margin-topを効かせるため */
}

/* ★★★★★★ここからドロップダウンメニュー★★★★★★★ */
.dropdown__lists {
  display: none;
  width: 660px;
  height: 180px;
  position: absolute;
  top: 120px;
  left: 0;
}

/* ドロップダウンメニュー横並び設定 */
.menu-list:hover .dropdown__lists {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  flex-wrap: nowrap;
}

/*ドロップダウンメニューに表示させる画像と幅高さの設定*/
.dropdown__list {
  border: solid 1px #b3b3b3;
  margin: 5px;
  background-image: url(../../common/img/sample.jpg);
  background-size: 100%;
  background-position: center;
  border-radius: 10px;
  width: 200px;
  height: 150px;
  position: relative;
  /*ホバーしたときに背景画像が拡大されるときの動き・滑らかさ設定*/
  transition: all 0.3s ease, background-size 0.3s ease;
}

/*洋食背景画像の設定*/
.dropdown__list:nth-child(2) {
  background-image: url(../../common/img/sample2.jpg);
}

/*甘味処背景画像の設定*/
.dropdown__list:nth-child(3) {
  background-image: url(../../common/img/sample3.jpg);
}

/*居酒屋背景画像の設定*/
.dropdown__list:nth-child(4) {
  background-image: url(../../common/img/sample4.png);
}

/* ドロップダウンメニューにホバーしたときに画像を20%拡大させる */
.dropdown__list:hover {
  background-size: 120%;
}

/*ドロップダウンメニューの枠線の設定 正直何の設定か分からない*/
/*.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b3b3b3;
  position: absolute;
  top: 0;
  left: 0;
}*/

/*ドロップダウンメニューの中の設定 文字など*/
.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
  /* 右に0px, 下に0px, ぼかし4px, 黒色で透明度100% */
  text-decoration: none;
  position: relative;
}

/*  >の設定  */
.dropdown__list a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}




/*★★★★★★★ここからメイン★★★★★★★*/
.title_container {
  justify-content: center;
  margin-top: 80px;
}

#first-view {
  position: relative;
  text-align: center;
  /* margin: 30px 50px 20px 50px; */
}

.first-view-title {
  font-size: 48px;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 500;
  font-style: normal;
  /* writing-mode: vertical-rl; */
  /* 文字間を調整する場合 */
  /* letter-spacing: 0.5em; */
  color: #323844;

}

.item {
  display: flex;
  justify-content: space-between;
  margin: 100px 0 100px 0;
}

.item .text {
  width: 50%;
  background-color: rgb(228, 226, 223);
  padding: 50px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 0;
}

.item .title {
  font-size: 36px;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 500;
  font-style: normal;
  /* writing-mode: vertical-rl; */
  /* 文字間を調整する場合 */
  /* letter-spacing: 0.5em; */
  color: #323844;
  margin-bottom: 30px;

}

.item img {
  width: 50%;
  object-fit: cover;
}

.item p {
  text-align: justify;
  line-height: 2.5;
}

@media screen and (min-width: 768px) {

  #toggle1,
  #toggle2,
  #toggle3,
  #toggle4 {
    display: none;
  }
}






/* ★★★★★★★スマホ★★★★★★★ */
@media screen and (max-width: 767px) {
  .wrapper {
    max-width: 390px;
    /* PCのmax-widthを解除 (不要な場合も多い) */
    padding: 0;
    /* モバイル用のパディングを設定 */
    width: 100%;
    /* 明示的に設定しても良い */
  }

  .title_container {
    margin-top: 50px;
  }

  .first-view-title {
    font-size: 40px;
  }

  .item {
    display: block;
    /* 隙間を完全になくす */
    margin: 50px 0 50px 0;
  }

  .item .text {
    width: 100%;
    display: block;
    padding: 20px;
  }

  .item .title {
    margin-bottom: 15px;

  }

  .item img {
    display: block;
    width: 100%;
    object-fit: cover;
  }

  .item p {
    text-align: justify;

    /* ここで表示行数を指定 */
  }

  .multiline-ellipsis1,
  .multiline-ellipsis2,
  .multiline-ellipsis3,
  .multiline-ellipsis4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* line-clamp: 5;  (optional, non-standard) */
  }

  #toggle1,
  #toggle2,
  #toggle3,
  #toggle4 {
    font-size: 20px;
    font-weight: bold;
    /* color: blue; */
    width: 35px;
    height: 35px;
    margin-top: 10px;
    margin-left: 90%;
    color: #d25729;
    border: 3px solid #d25729;
    border-radius: 5px;
  }
}





/*★★★★★★★ここからフッター★★★★★★★*/

#footer {
  background-color: #323844;
  width: 100%;
  height: 500px;
  text-align: center;
}

/*フッターのロゴ空間設定*/
#footer .logo {
  text-align: center;
  width: 45%;
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  /* 縦並びを維持 */
  align-items: flex-start;
  /* 左寄せにする */
  /* paddingで.logoの左端からコンテンツを100px離す */
  padding-left: 500px;
}

#footer .logo img {
  margin-top: 58px;
  margin-bottom: 30px;
  margin-right: 0;
  margin-left: 0;
}

#footer .logo p {
  width: 100%;
  margin: 0 auto;
}

/* TEL☎の文字位置設定--------paddingで.logoの左端からコンテンツを100px離す */
.logo p {
  padding-right: 131px;
  margin-right: 50px;
}

.logo p,
.footer-menu p {
  color: #fff;
  text-align: center;
}

/*ロゴとフッターメニューを横並びに設定*/
#footer .footer-column {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

/* #footer を追加して優先度を上げる ここ消すとレイアウト崩れる*/
#footer .footer-column>div {
  width: 45%;
  /* 他の場所で設定されたwidth: 100%をリセット */
  min-width: 0;
}

/*フッターメニューの並べ方設定*/
.footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* 縦横の隙間 */
  column-gap: 0cap;
  padding-left: 0;
  /* ulのデフォルトの左パディングをリセット */
  width: 45%;
  margin-top: 50px;
}

/*フッターメニューのフォント設定*/
.footer-menu p {
  font-size: 18px;
  font-weight: 400;
}

/* a要素を基準（relative）にして、::afterを絶対配置（absolute）する */
.footer-menu li a {
  /*リンクテキストの下線を非表示*/
  text-decoration: none;
  position: relative;
  width: 100px;
  display: block;
  width: 170px;
  /* text-align: center; */
}

/* ホバー：下線の基本設定 */
.footer-menu li a::after {
  position: absolute;
  content: "";
  width: 70%;
  left: 15%;
  height: 2px;
  background: #fff;
  bottom: -2.5px;
  transform: scale(0, 1);
  transform-origin: right top;
  /* 右から始まる */
  transition: transform 0.3s;
}

/* ホバー後：下線が左から右へ伸びるアニメーション */
.footer-menu li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
  /* 左へ向かって伸長 */
}

#footer small,
#footer .copy-text {
  font-size: 12px;
  color: #fff;
  font-weight: 300;
  margin-top: 80px;
}

#footer small,
#footer .copy-text {
  font-size: 12px;
  color: #fff;
  font-weight: 300;
  margin-top: 80px;
}