@charset "UTF-8";

/*---------------------------------------
追加用
resourceディレクトリがルートにあるので、
テンプレートディレクトリにおいた方が更新しやすい
----------------------------------------*/

.sns_nav_wrap {
  margin-top: 30px;
}

.sns_nav_wrap ul {
  list-style: none;
}

.sns_nav_wrap ul li {
  margin-bottom: 20px;
}

.sns-bn-link {
  display: block;
  max-width: 320px;
  border: 2px solid #000;
  padding: 14px 32px 0;
  text-align: center;
  height: 66px;
  border-radius: 33px;
  transition: all .2s linear;
}

.sns-bn-link:hover {
  background-color: #f0f0f0;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2);
  border-color: #cba743;
}

.sns-bn-link:active {
  box-shadow: none;
}

.sns-bn-link.icon-youtube img {
  max-height: 24px;
}

.sns-bn-link.icon-insta img {
  max-height: 36px;
}

.sns-bn-link.icon-app {
  padding-top: 10px;
}

.sns-bn-link.icon-app img {
  max-height: 41px;
}

@media screen and (max-width: 640px) {
  .sns-bn-link {
    margin: 0 auto;
  }
}

/*----------------------------
トップページ OKAKEN LABO
-----------------------------*/
.top-okaken-labo .lab-about-list {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  font-size: 16px;
}

.top-okaken-labo .lab-about-list li {
  margin: 0 12px;
}

.top-okaken-labo .lab-about-list .lab-about-list-link {
  display: inline-block;
  padding-right: 16px;
  position: relative;
}

.top-okaken-labo .lab-about-list .lab-about-list-link::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 12px;
  position: absolute;
  top: 10px;
  right: 0;
  background: url(../images/top/icon-arrow-right.svg) center center no-repeat;
  background-size: contain;
  transition: all .2s linear;
}

.top-okaken-labo .lab-about-list .lab-about-list-link:hover::after {
  transform: translateX(4px);
}

.top-okaken-labo .vr-txt {
  margin-top: 16px;
  font-size: 16px;
}

@media screen and (max-width: 1120px) {
  .top-okaken-labo .lab-about-list {
    display: block;
    margin-top: 24px;
  }

  .top-okaken-labo .lab-about-list li {
    margin: 0 0 24px;
  }
}


/* add_2025-07-25 */

/* header */

.arw-icon-down,
.arw-icon-right {
  position: relative;
}

.arw-icon-down::after,
.arw-icon-right::after {
  content: '';
  display: inline-block;
  position: relative;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #BE9115;
  transform: rotate(45deg);
  top: -3px;
  margin-left: 6px;
  transition: all 0.3s ease-in-out;
}

.arw-icon-right::after {
  border-width: 1px 1px 0 0;
  top: -2px;
}

.arw-icon-down.is-active::after {
  transform: rotate(225deg);
}

.uk-navbar-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: auto;
}

.uk-navbar-nav-sub,
.uk-navbar-nav-btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.uk-navbar-nav-sub {
  margin-left: auto;
  gap: 24px;
  font-family: 'Sanchez';
  font-size: 13px;

  @media (max-width: 1230px) {
    flex-direction: column;
    gap: 32px;
    line-height: 1;
    align-items: flex-start;
    border-top: 1px solid #F0F0F0;
    padding-top: 32px;


    a {
      color: #000;
    }
  }

}

.uk-navbar-nav-btns {
  margin-left: 24px;

  @media (max-width: 1230px) {
    margin-left: 0;
    gap: 16px 12px;
    margin-top: 32px;
    padding-bottom: 48px;
  }
}

@media (max-width: 1230px) {
  .uk-navbar-nav-btns {
    /* 1つ目のボタンを100%幅にして改行を強制 */
  }

  .uk-navbar-nav-btns .header-subitem-btn:first-child {
    width: 100%;
    /* 1行目全体を占有 */
    margin-bottom: 4px;
    /* 下のボタンとの間隔調整 */
  }

  .uk-navbar-nav-btns .header-subitem-btn:nth-child(2),
  .uk-navbar-nav-btns .header-subitem-btn:nth-child(3) {
    width: calc(50% - 6px);
    /* 2つで1行を等分（gap分を引く） */
  }
}

.header .uk-first-column {
  padding-left: 24px;
}

.uk-navbar-nav-sub-menu:hover {
  cursor: pointer;
}

.uk-navbar-nav-sub-menu-container {
  position: fixed;
  opacity: 0;
  top: 60px;
  left: 0;
  width: 100vw;
  /* height: 100vh; */
  background-color: #fff;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  padding: 28px 40px 40px 134px;
  display: grid;
  gap: 80px;
  grid-template-columns: auto 1fr;
  pointer-events: none;
  visibility: hidden;

  @media (max-width: 1230px) {
    position: relative;
    display: none;
    top: 0;
    width: 100%;
    padding: 25px 15px 0;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: auto;
  }
}

.uk-navbar-nav-sub-menu-container.is-active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.uk-navbar-nav-sub-menu-container.is-active a {
  pointer-events: auto;
}

.uk-navbar-nav-sub-menu-title {
  font-size: 24px;

  @media (max-width: 1230px) {
    display: none;
  }
}

.uk-navbar-nav-sub-menu-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 800px;
  gap: 24px 56px;
  line-height: 1;
  padding-top: 0.5em;

  @media (max-width: 1230px) {
    gap: 35px;
    flex-direction: column;
  }
}

.uk-navbar-nav .uk-navbar-nav-sub-menu-list-item a {
  line-height: 1.56;
}

/* ------ option ------ */

.header-subitem-btn {
  transition: opacity .5s;

  &:hover {
    opacity: .6;
  }
}

.header-subitem-btn a {
  transition: .5s;
  font-family: 'Sanchez';
  font-size: 13px;
  display: block;
  width: 96px;
  height: 24px;
  border: 1px solid #000;
  text-align: center;
  line-height: 24px;
  background-color: #F0F0F0;
  color: #000;
}

.header-subitem-btn.contact a {
  color: #be9115;
  border-color: #be9115;
  background-color: #fff;
}

.header-subitem-btn.recruit a {
  color: #fff;
  background-color: #000;
}

/*================ news ================*/

.mv-news-wrp {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;

  @media (max-width: 767px) {
    flex-direction: column;
    bottom: 0;
    position: relative;
    max-width: 100%;
    margin: 24px 0;
  }
}

.mv-news-openhouse {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 580px;
  background-color: #fff;
  letter-spacing: 0.05em;
  min-height: 84px;

  @media (max-width: 767px) {
    display: block;
    border: 1px solid #BE9116;
  }
}

.mv-news-openhouse-ttl {
  background-color: #BE9116;
  color: #fff;
  width: 220px;
  position: relative;
  font-size: 18px;
  line-height: 1.3333;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;

  @media (max-width: 767px) {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
  }

  &::after {
    content: '';
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -20px;
    background:
      linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #BE9116 50.5%) no-repeat top left/100% 50%,
      linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #BE9116 50.5%) no-repeat bottom right/100% 50%;

    @media (max-width: 767px) {
      background:
        linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #BE9116 50.5%) no-repeat top left/50% 100%,
        linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #BE9116 50.5%) no-repeat top right/50% 100%;
      right: 0;
      top: auto;
      bottom: -10px;
      width: 100%;
      height: 10px;
    }
  }
}

.mv-news-openhouse-cnt {
  flex: 1;
  font-size: 16px;
  padding: 15px 40px 15px 44px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;

  @media (max-width: 767px) {
    padding: 30px 20px 12px;
  }
}

.news-top-open-list {}

.news-top-open-day {
  color: #BE9116;
  margin-right: 0.5em;
}

.news-top-open-title {
  font-weight: bold;
  line-height: 1.6;
}

/*================ 内部パーツ ================*/

.mv-news-taiken {
  /*width: 220px;*/
  width: 248px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 84px;
  justify-content: center;

  @media (max-width: 767px) {
    width: 100%;
  }
}

.mv-news-taiken-ttl {
  font-size: 18px;
  line-height: 1.3333;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding: 8px 0;
  text-align: center;

  @media (max-width: 767px) {
    font-size: 16px;
    padding: 12px 0;
  }
}

.news-top-taiken-title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  padding: 8px 0;
  text-align: center;
}

/*================ 宿泊体験 ================*/

.accommodation {


  .copy-txt {
    line-height: 1.8;
    text-align: center;

    @media (max-width: 480px) {
      text-align: left;
    }
  }

  .step-txt {
    font-size: 18px;
    font-weight: bold;
  }

  .reservation-state {

    .icon_step_wrap {
      display: flex;
      justify-content: center;
    }
    
    .icon_step {
      margin: 0 1rem;
      line-height: 1em;

      span {
        font-size: 65%;
      }
    }
  }

  .reservation-state-box {
    line-height: 1.8;
    font-size: 17px;

    .notice {
      text-align: center;
      margin-bottom: .5em;
    }

    .state-box {
      div {
        display: flex;
        justify-content: center;

        dt {
          font-weight: normal;
          width: 200px;
        }

        dd {
          font-weight: bold;
        }
      }
    }
  }
  .notice-txt {
    font-size: 14px;
    margin-top: 1em;
  }

  .txt-17 {
    font-size: 17px;
  }

  .txt-14 {
    font-size: 14px;
  }

  .txt-13 {
    font-size: 13px;
  }

  .line-heigh-18 {
    line-height: 1.8;
  }

  .line-heigh-15 {
    line-height: 1.5;
  }

  .consultation {
    background-color: #487458;
    padding: 16px 0;
    margin-bottom: 4em;

    .ttl {
      color: white;
      text-align: center;
      padding: 0;
      margin: 0;
      line-height: 1;
      font-size: 24px;
    }
  }

  .consultation-contents {

    ul.list {
      margin: 2em auto;
      max-width: 400px;

      @media (max-width: 480px) {
        padding-left: 1em;
      }

      li {
        list-style:disc;
      }
    }

    .img-wrap {
      margin-top: 2em;
    }
  }

  .img-wrap {
    max-width: 100%;
  }

  .txt-center {
    text-align: center;

    @media (max-width: 480px) {
      text-align: left;
    }
  }

  .list_dot_large {
    max-width: 600px;
    margin: 0 auto;
  }

  .pc {
    @media (max-width: 480px) {
      display: none;
    }
  }

  a.link {
    text-decoration: underline;

    &:hover {
      text-decoration: none;
    }
  }

  .link-txt {
    margin-top: -2em;
  }

  .ttl-sub {
    font-size: 20px;
    font-weight: bold;
  }

  .ttl_main.ttl {
    font-size: 24px;
  }


}