@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
    background: #202032;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
    color: #e9cec8;
    overflow:hidden;
}
.wrapper2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
    color: #fff;
}
.movie {
    text-align : center;
    margin-top: 50px;
}
.sns {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
}
.twitter-timeline {
    display: inline-block;
}

.yahoo {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 15px;
    margin-right: 15px;
}

/* 大きな背景画像 */
.big-bg {
    background-size: cover;
    background-position: center top;
    margin-bottom: -100px;
}

/* 見出し */
.page-title {
    font-size: 5rem;
    font-family: 'Philosopher', serif;
    text-transform: uppercase;
    font-weight: normal;
}
.sub-title {
    font-size: 1.375rem;
    padding: 0 8px 8px;
    border-bottom: 2px #0bd solid;
    font-weight: normal;
}

/* ボタン */
.button {
    font-size: 1.2rem;
    background: #fff;
    color: #009bc6;
    border-radius: 10px;
    padding: 9px 16px;
    position: relative;
    top: 280px;
}
.button:hover {
    background: #0090aa;
}
.button2 {
    font-size: 1.2rem;
    background: #fff;
    color: #009bc6;
    border-radius: 10px;
    padding: 9px 16px;
}
.button2:hover {
    background: #0090aa;
}

/* iframe */
iframe {
    width: 100%;
}

/* HEADER
------------------------------- */
.page-header {
    display: flex;
    justify-content: space-between;
}
.logo {
    width: 100px;
    margin-top: 1px;
}
.main-nav {
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 60px;
    list-style: none;
}
.main-nav li {
    margin-left: 36px;
}
.main-nav a {
    color: #fff;
}
.main-nav a:hover {
    color: #0bd;
}

/* HOME
------------------------------- */
#home {
    background-image: url(../images/main-bg.jpg);
    min-height: 100vh;
}
#home .page-title {
    text-transform: none;
}
.home-content {
    text-align: center;
    margin-top: 10%;
}
.home-content p {
    font-size: 1.125rem;
    margin: 10px 0 42px;
}


/* MENU
------------------------------- */
#menu {
    background-image: url(../images/menu-bg.jpg);
    min-height: 100vh;
}
.menu-content {
    max-width: 670px;
    margin-top: 10%;
}
.menu-content .page-title {
    text-align: center;
}
.menu-content h3 {
    font-size: 2rem;
    text-align: center;
}
.menu-content p {
    font-size: 1.125rem;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 200px;
}
.grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 0.8fr 0.8fr 0.8fr;
    text-align: center;
}
.item {
  text-align: center;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 50px;

}
.item h3{
    margin-top: 0em;
    color: #e9cec8;
}
.item3 {
  position: relative;  /* 帯の表示位置の基準とする */
}
.item3 img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.item3 p {
  font-size: 0.8rem;
  color: #3b82c4;
  text-align: center;
  text-transform: uppercase;
  width: 100%;         /* 画像の幅に合わせるため */
  padding: 40px 0;
  position: absolute;  /* relativeの要素を基準にする */
  left: 0;             /* 基準からみて左寄せ */
  bottom: -5px;           /* 基準からみて下寄せ */
  background: rgba( 255, 255, 255, 0.8 );  /* 半透明の背景。 */
}
.item2 {
  position: relative;  /* 帯の表示位置の基準とする */
  text-align: center;
  margin-bottom: 30px;
}
.item2 img {
  width: 80%;
  object-fit: cover;
}
.item2 p {
  font-size: 1rem;
  color: #3b82c4;
  width: 80%;         /* 画像の幅に合わせるため */
  padding: 20px 0;
  position: absolute;  /* relativeの要素を基準にする */
  bottom: -8px;           /* 基準からみて下寄せ */
  left: 10%;             /* 基準からみて左寄せ */
  background: rgba( 255, 255, 255, 0.7 );  /* 半透明の背景。 */
}

/* フッター
------------------------------- */
footer {
    background: #432;
    text-align: center;
    padding: 26px 0;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
}


/* モバイル版
------------------------------- */
@media (max-width: 600px) {
  .movie {
    width: 100%;
    text-align: center;
  }
  .page-title {
      font-size: 3rem;
      font-family: 'Philosopher', serif;
      text-transform: uppercase;
      font-weight: normal;
  }
  .menu-content {
      max-width: 400px;
      margin-top: 10%;
  }
  .menu-content .page-title {
      text-align: center;
  }
  .menu-content h3 {
      font-size: 1.2rem;
      text-align: center;
  }
  .menu-content p {
      font-size: 0.75rem;
      text-align: center;
      margin-top: 5%;
      margin-bottom: 30%;
  }
  .page-header {
      flex-direction: column;
      align-items: center;
  }
  .grid {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
      text-align: center;
  }
  .item {
    text-align: center;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
  }
  .item a h3{
    font-size: 0.8rem;
  }
  .item2 {
    margin-bottom: 10px;
  }
  .item2 img {
    max-width: 90%;
  }
  .item2 p {
    font-size: 0.8rem;
    width: 90%;         /* 画像の幅に合わせるため */
    padding: 10px 0;
    bottom: -5px;           /* 基準からみて下寄せ */
    left: 5%;             /* 基準からみて左寄せ */
  }
  .big-bg {
      background-size: 160%;
      background-position: center;
  }
  .main-nav {
      font-size: 1rem;
      margin-top: 20px;
      margin-right: 35px;
  }
  .main-nav li {
      margin: 20px;
  }

/* モバイル版
------------------------------- */
