@charset "UTF-8";
/*--------------------------------------------
	 サイト基本設定　ここの設定はサイト依存
--------------------------------------------*/
body,
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  background: #FCF8F0;
  border: 10px solid #DA783F;
  border-bottom: none;
  box-sizing: border-box;
  line-height: 1.8;
  letter-spacing: 1.2px;
  overflow-x: hidden;
  word-break: break-all;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  scroll-behavior: smooth;
}

body img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

html.fixed {
  overflow: hidden;
}

a {
  color: #020202;
  text-decoration: none;
  word-wrap: break-word;
}
a:hover {
  color: #020202;
  transition: 0.5s;
}

p,
li p,
address,
table {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 896px) {
  p,
  li p,
  address,
  table {
    font-size: 14px;
    line-height: 1.625;
  }
}

p a {
  color: #2957A1;
  text-decoration: underline;
}
p a:hover {
  color: #020202;
  transition: 0.5s;
}

li {
  font-size: 16px;
  line-height: 1.425;
}

@media (max-width: 896px) {
  li {
    font-size: 16px;
  }
}
a img:hover {
  opacity: 0.7;
  transition: 0.7s;
}
a[href^="tel:"] {
  pointer-events: none;
}

@media (max-width: 896px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
#wrapper {
  position: relative;
}

/*--------------------------------------------
	Header
--------------------------------------------*/
header {
  position: fixed;
  width: 96%;
  z-index: 1;
}
header .header_inner {
  padding: 22px;
  box-sizing: border-box;
  justify-content: space-between;
}
@media (max-width: 896px) {
  header .header_inner {
    display: flex;
    padding: 22px 2em 0 22px;
  }
}
header .header_inner .site_name {
  font-size: 16px;
  color: #FFF;
  line-height: 1.4;
}
@media (max-width: 896px) {
  header .header_inner .site_name {
    font-size: 13px;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1002;
  /* パネルより前 */
}

.hamburger__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #FFF;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  position: absolute;
}

body.is-menu-open .hamburger__bar {
  background: #000;
}

.hamburger__bar:nth-child(1) {
  transform: translateY(-8px);
}

.hamburger__bar:nth-child(2) {
  transform: translateY(0);
}

.hamburger__bar:nth-child(3) {
  transform: translateY(8px);
}

/* 開いてる状態（×に変形） */
body.is-menu-open .hamburger__bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

body.is-menu-open .hamburger__bar:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .hamburger__bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* オーバーレイ */
.menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

body.is-menu-open .menu_overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニューパネル（右からスライド） */
.menu_panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 86vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 1001;
  padding: 90px 22px 22px;
  /* 上はヘッダー/ボタン分 */
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
}

body.is-menu-open .menu_panel {
  transform: translateX(0);
}

/* メニューリスト */
.menu_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu_list a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* クリックしやすく */
.menu_list a {
  display: block;
  padding: 10px 6px;
}

/*--------------------------------------------
	Contents / コンテンツ共通
--------------------------------------------*/
main {
  position: relative;
}

.s_inner {
  padding: 100px 2.725rem;
}

@media (max-width: 896px) {
  .s_inner {
    max-width: 100%;
    padding: 70px 15px;
  }
}
.s_wideinner {
  margin: 0 auto;
  padding: 150px 40px;
  box-sizing: border-box;
}

@media (max-width: 896px) {
  .s_wideinner {
    max-width: 100%;
    padding: 70px 15px;
  }
}
.viewPC {
  display: block;
}

@media (max-width: 896px) {
  .viewPC {
    display: none !important;
  }
}
.viewSP {
  display: none !important;
}

@media (max-width: 896px) {
  .viewSP {
    display: block !important;
  }
}
.flexbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media (max-width: 896px) {
  .flexbox {
    display: block;
  }
}
.s_mainTextbox {
  position: relative;
  margin-bottom: 48px;
  text-align: center;
}
.s_mainTextbox .s_mainText_bg {
  position: absolute;
  margin-bottom: 20px;
  font-size: 60px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  top: 28px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  line-height: 1;
  color: #b3c9ee;
}
.s_mainTextbox .s_mainText {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-size: 30px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  color: #2957A1;
}

.s_subTitle {
  margin-bottom: 20px;
  font-size: 20px;
}

.btn {
  position: relative;
  width: 350px;
  margin-top: 35px;
  text-align: center;
}
.btn a {
  position: relative;
  display: block;
  background: #2957A1;
  padding: 15px 0;
  color: #FFF;
  font-size: 14px;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 1px solid #fff;
  pointer-events: none;
  z-index: 1;
}
.btn a:hover {
  background: #000;
  transition: 0.6s;
}

.btn_center {
  margin: 35px auto 0 !important;
}

@media (max-width: 896px) {
  .btn {
    width: auto;
  }
}
@media (max-width: 896px) {
  .btn a {
    font-size: 16px;
  }
}
.mb_small {
  margin-bottom: 30px !important;
}

.mb_middle {
  margin-bottom: 60px !important;
}

.mb_large {
  margin-bottom: 100px !important;
}

.tCenter {
  text-align: center;
}

/*-------------------------------------
	メインコンテンツ
--------------------------------------*/
#s_mv {
  position: relative;
  background: url(../images/home/mv.jpg) no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
}
#s_mv .mv_open_area .mv_title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
}
@media (max-width: 896px) {
  #s_mv .mv_open_area .mv_title {
    font-size: 42px;
  }
}
#s_mv .mv_text {
  width: 60%;
  margin: 15% auto 0;
  padding: 50px 0;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  text-align: center;
  color: #FFF;
}
@media (max-width: 896px) {
  #s_mv .mv_text {
    width: 74%;
    margin: 50% 0 0 8%;
  }
}
#s_mv .mv_text .mv_h1_title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
}
@media (max-width: 896px) {
  #s_mv .mv_text .mv_h1_title {
    font-size: 42px;
  }
}
@media (max-width: 896px) {
  #s_mv .mv_text p {
    font-size: 13px;
  }
}

#under_s_mv {
  position: relative;
  width: 100vw;
  height: 90vh;
}
#under_s_mv .mv_text {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 896px) {
  #under_s_mv .mv_text {
    position: absolute;
    width: 90%;
    bottom: 0;
    left: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(-50%);
  }
}
#under_s_mv .mv_text h1 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 6.725rem;
  line-height: 1;
  text-align: center;
  color: #FFF;
}
@media (max-width: 896px) {
  #under_s_mv .mv_text h1 {
    font-size: 32px;
  }
}

#s_news .s_news_box {
  width: 720px;
  margin: 0 auto;
  padding: 40px 100px;
  box-sizing: border-box;
  background: #FFF;
}
@media (max-width: 896px) {
  #s_news .s_news_box {
    width: auto;
    padding: 32px 22px;
  }
}
#s_news .s_news_box .s_news_list li {
  position: relative;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 22px;
  padding: 0 22px 10px;
}
#s_news .s_news_box .s_news_list li .date {
  margin-right: 40px;
  color: #B8B8B8;
}
#s_news .s_news_box .s_news_list li:last-child {
  margin-bottom: 0;
}
#s_news .s_news_box .s_news_list li::after {
  position: absolute;
  top: 5px;
  right: 0;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../image/common/arrow-right-s-line.svg) no-repeat;
}

.contents_box .contents_box_text {
  margin-right: 22px;
}
@media (max-width: 896px) {
  .contents_box .contents_box_text {
    margin: 0 0 30px;
  }
}
.contents_box .contents_box_image {
  width: 50%;
}
@media (max-width: 896px) {
  .contents_box .contents_box_image {
    width: 100%;
  }
}
.contents_box .contents_info_box {
  width: 48%;
  margin-right: 4%;
}
@media (max-width: 896px) {
  .contents_box .contents_info_box {
    width: 100%;
    margin: 0 0 2.725em;
  }
}
.contents_box .contents_info_box:last-child {
  margin-right: 0;
}

.mov_box {
  height: 350px;
}

.banner_btn {
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 896px) {
  .banner_btn {
    width: 100%;
  }
}

#page_about #under_s_mv {
  background: url(../images/about/mv.jpg) no-repeat;
  background-size: cover;
}
#page_about #s_concept .logo_img {
  display: block;
  width: 65%;
  margin: 0 auto 60px;
}

#page_management #under_s_mv {
  background: url(../images/management/mv.jpg) no-repeat;
}
#page_management .compnay_info {
  justify-content: flex-start;
}
#page_management .compnay_info .compnay_tb {
  width: 50%;
}
@media (max-width: 896px) {
  #page_management .compnay_info .compnay_tb {
    width: 100%;
  }
}
#page_management .compnay_info .compnay_tb table {
  width: 100%;
}
#page_management .compnay_info .compnay_tb table th,
#page_management .compnay_info .compnay_tb table td {
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 22px;
  text-align: left;
}
@media (max-width: 896px) {
  #page_management .compnay_info .compnay_tb table th,
  #page_management .compnay_info .compnay_tb table td {
    padding: 18px 0;
  }
}
@media (max-width: 896px) {
  #page_management .compnay_info .compnay_tb table th {
    width: 30%;
  }
}
#page_management .compnay_info .compnay_image {
  margin-left: 120px;
}
@media (max-width: 896px) {
  #page_management .compnay_info .compnay_image {
    margin-left: 0;
  }
}
@media (max-width: 896px) {
  #page_management .compnay_info .compnay_image img {
    width: 72%;
    display: block;
    margin: 0 auto;
  }
}

/* ========= MV OPEN ANIMATION ========= */
#s_mv {
  position: relative;
  overflow: hidden;
}

/* 画面全体を覆うエリア（最前面） */
.mv_open_area {
  position: fixed;
  /* ページ全体を覆う */
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

/* 黒い壁：最初は全画面 #000 */
.mv_open_wall {
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateY(0);
  animation: mvWallSlideOut 0.9s ease-in forwards;
  animation-delay: 1.5s;
  /* 1.5秒後に下へ抜ける */
}

/* OPEN時のタイトル（LIKE IBIZA） */
.mv_open_area > .mv_title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  /* wallより上に */
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: 0.06em;
  opacity: 0;
  animation: mvTitleFadeIn 0.5s ease forwards, mvTitleFadeOut 0.35s ease forwards;
  animation-delay: 0.15s, 1.5s;
  /* 最初にIN→ 1.5秒後にOUT */
}

/* ローディング表示（タイトル下のドット） */
.mv_open_area > .mv_title::after {
  content: "";
  display: block;
  width: 56px;
  height: 12px;
  margin: 16px auto 0;
  background: radial-gradient(circle, #fff 45%, transparent 46%) 0 50%/12px 12px no-repeat, radial-gradient(circle, #fff 45%, transparent 46%) 50% 50%/12px 12px no-repeat, radial-gradient(circle, #fff 45%, transparent 46%) 100% 50%/12px 12px no-repeat;
  opacity: 0;
  animation: mvDotsBlink 0.9s ease-in-out infinite;
  animation-delay: 0.35s;
}

/* ※HTML内に同名 .mv_title があるので、OPEN側だけ上で指定済み。
   以降は本体側（#s_mv .mv_text）を遅れて表示する */
#s_mv .mv_text {
  opacity: 0;
  transform: translateY(10px);
  animation: mvContentIn 0.6s ease forwards;
  animation-delay: 2s;
  /* タイトルOUT(1.5s) + wall(0.9s)の立ち上がりに合わせて */
}

/* --- keyframes --- */
@keyframes mvTitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mvTitleFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* 黒壁が「下からスライドで消える」＝壁が下へ抜ける */
@keyframes mvWallSlideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
/* ローディングのドット点滅 */
@keyframes mvDotsBlink {
  0%, 100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(2px);
  }
}
/* コンテンツ表示 */
@keyframes mvContentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* オーバーレイをアニメーション後に無効化したい場合（任意）
   - display:none はCSSアニメだけだと完全には難しいので、
     「見えない＆クリック無効」の状態にする */
.mv_open_area {
  animation: mvOverlayOff 0s linear forwards;
  animation-delay: 2.4s;
  /* wallが抜けきる頃 */
}

@keyframes mvOverlayOff {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/*--------------------------------------------
	Footer / フッター
--------------------------------------------*/
footer {
  position: relative;
}
footer .organizer_name {
  margin-bottom: 40px;
  color: #020202;
  text-align: center;
}
@media (max-width: 896px) {
  footer .organizer_name {
    padding: 0 22px;
  }
}
footer .p_bottom {
  position: relative;
  background: #DA783F;
  color: #FFF;
  text-align: center;
}
@media (max-width: 896px) {
  footer .p_bottom {
    display: flex;
  }
}
footer small,
footer .page_top {
  font-size: 13px;
}
footer small a,
footer .page_top a {
  color: #FFF;
}
footer small {
  position: absolute;
  top: 0;
  right: 0;
}

/*# sourceMappingURL=style.css.map */