@charset "UTF-8";
/*===============================
  CSS Document: common.css
  Description: 共通スタイル（全てのページ）
===============================*/
/*--------------------------------------
  gnav / logo 移動前提の表示制御（JS連動・保険）
----------------------------------------*/
/* PCではheader側を非表示 */
@media (min-width: 769px) {
  .header #gnav,
  .header #site-logo {
    display: none;
  }
}
/* SPではPC側エリアを非表示 */
@media (max-width: 768px) {
  #pc-gnav-area,
  #pc-logo-area {
    display: none;
  }
}
/* PC側エリアの基本配置 */
#pc-logo-area,
#pc-gnav-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* JS移動前のちらつき防止（初期非表示） */
.home #site-logo,
.home #gnav {
  visibility: hidden;
}

/*--------------------------------------
  layout
----------------------------------------*/
.wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.header_outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .header_outer {
    background: transparent;
  }
}
.header {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
@media (max-width: 768px) {
  .header_inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.logo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 30px;
}

.logo {
  width: auto;
}
.logo a {
  display: block;
  width: 60px;
}
.logo a img {
  width: 100%;
  height: auto;
}

.header_container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*--------------------------------------
  ハンバーガーメニュー（SP）
----------------------------------------*/
/* PCでは非表示 */
#gnav-toggle,
.hamburger {
  display: none;
}

@media (max-width: 768px) {
  #gnav-toggle {
    display: block;
    position: relative;
    width: 40px;
    height: 39px;
    z-index: 20;
  }
  .hamburger {
    display: block;
    position: absolute;
    inset: 0;
    border: none;
    background: none;
    cursor: pointer;
  }
  .hamburger .line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #333;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
  }
  .hamburger .line:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) translateY(-12px);
            transform: translate(-50%, -50%) translateY(-12px);
  }
  .hamburger .line:nth-child(2) {
    width: 70%;
  }
  .hamburger .line:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) translateY(12px);
            transform: translate(-50%, -50%) translateY(12px);
  }
  .hamburger.active .line {
    width: 30px;
  }
  .hamburger.active .line:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .line:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  /* 全画面ナビ */
  #gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  body #gnav.active {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .gnav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav_item {
    width: 100%;
    position: relative;
  }
  .nav_item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #333;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .nav_item::before {
    content: "";
    position: absolute;
    right: 1px;
    bottom: -4px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .nav_item a {
    display: block;
    padding: 20px 15px;
    text-align: center;
    font-size: 1rem;
    font-family: "Cormorant Infant", serif;
    color: #333;
    letter-spacing: 0.075em;
  }
}
.nav_item:hover::after {
  -webkit-transform: scaleX(0.05);
          transform: scaleX(0.05);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.nav_item:hover::before {
  -webkit-transform: translateX(4px) rotate(45deg);
          transform: translateX(4px) rotate(45deg);
}

/*--------------------------------------
  下層ページ用 PCヘッダー（横並びGnav）
----------------------------------------*/
@media (min-width: 769px) {
  .header #site-logo {
    display: block;
    visibility: visible;
    margin-left: 40px;
  }
  .gnav_wrap.sub_page {
    height: 100%;
  }
  .sub_page #gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    visibility: visible;
  }
  .sub_page .gnav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  .sub_page .nav_item a {
    font-size: 1rem;
    font-family: "Cormorant Infant", serif;
    color: #333;
    letter-spacing: 0.075em;
  }
  .sub_page .hamburger {
    display: none;
  }
}
@media (max-width: 768px) {
  /* ハンバーガーを表示 */
  .sub_page .hamburger {
    display: block;
  }
  /* #gnav は初期非表示 */
  .sub_page #gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    inset: 0;
    background: #fff;
    opacity: 0; /* 初期は透明 */
    pointer-events: none; /* 初期は操作不可 */
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: none;
    transition: none; /* ←残像を消すため transitionを外す */
  }
  /* ハンバーガークリックで表示 */
  .sub_page #gnav.active {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; /* ← activeの時だけtransitionを付与 */
  }
  /* メニュー縦並び */
  .sub_page .gnav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
/*--------------------------------------
  main 共通
----------------------------------------*/
main {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.main_inner {
  width: 100%;
  margin: 0 auto;
}

.main_content {
  width: min(100%, 1200px);
  margin: 0 auto 64px;
}
.main_content.width_100 {
  width: 100%;
  overflow: hidden;
}

/*--------------------------------------
  footer 共通
----------------------------------------*/
.footer_wrap {
  width: 100%;
  position: relative;
  padding: 0 0 64px;
}
@media (max-width: 768px) {
  .footer_wrap {
    padding: 0 0 32px;
  }
}
.footer_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: min(100% - 96px - 96px, 1200px);
  height: 1px;
  background: #333;
}
@media (max-width: 768px) {
  .footer_wrap::before {
    width: 92%;
  }
}

.footer {
  width: min(100% - 96px - 96px, 1200px);
  padding-top: 64px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer {
    width: 92%;
  }
}

.footer_inner {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 96px;
}
@media (max-width: 768px) {
  .footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 64px;
  }
}

.footer_logo {
  width: 60px;
}
.footer_logo img {
  width: 100%;
  height: auto;
}

.footer_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer_btn_area {
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .footer_btn_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer_btn_area .footer_sns {
    grid-column: 2;
    grid-row: 2;
  }
  .footer_btn_area .footer_link {
    grid-column: 2;
    grid-row: 1;
  }
  .footer_btn_area .footer_nav {
    grid-column: 1;
    grid-row: 1/3;
  }
}

.footer_sns {
  width: 120px;
}

.footer_sns_list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.footer_sns_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_sns_item span {
  color: #333;
  font-size: 1rem;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.075em;
  padding-right: 10px;
}
.footer_sns_item .footer_sns_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.footer_sns_item .footer_sns_icon::before {
  font-family: "icomoon";
  position: absolute;
  color: #333;
  line-height: 1;
  font-size: 2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer_sns_item .footer_sns_icon.footer_insta::before {
  content: "\e909";
}

.footer_link {
  width: 120px;
}

.footer_link_list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.footer_link_item {
  width: 100%;
}
.footer_link_item a {
  color: #333;
  font-size: 1rem;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.075em;
  padding-bottom: 6px;
  border-bottom: 1px solid;
  display: block;
}

.footer_nav {
  width: 120px;
}

.footer_nav_list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.footer_nav_item {
  width: 100%;
}
.footer_nav_item a {
  color: #333;
  font-size: 1rem;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.075em;
  padding-bottom: 6px;
  border-bottom: 1px solid;
  display: block;
}

.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.025em;
  font-family: "Barlow", sans-serif;
}

#page_top {
  display: none;
  position: fixed;
  bottom: 45px;
  right: 45px;
  z-index: 100;
}
#page_top a {
  position: relative;
  display: block;
  width: 100%;
  color: #333;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 2px;
  -webkit-transition: color 0.2s ease, text-shadow 0.2s ease;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
#page_top a::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 47.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(197, 188, 170, 0.4666666667);
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
#page_top a::after {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  display: block;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-color: #333;
  border-width: 2px 2px 0 0;
  z-index: 10;
}
@media (any-hover: hover) {
  #page_top a:hover {
    color: #333;
    text-shadow: 0 0 5px #ccc;
  }
  #page_top a:hover::before {
    background: #666;
    -webkit-box-shadow: 0 0 5px #ccc;
            box-shadow: 0 0 5px #ccc;
    border-color: #333;
  }
  #page_top a:hover::after {
    border-color: #fff;
  }
}

/*--------------------------------------
  JS 共通
----------------------------------------*/
.change-color {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgba(255, 255, 255, 0.3607843137)), to(transparent));
  background-image: linear-gradient(rgba(255, 255, 255, 0.3607843137) 90%, transparent);
}

/* ここから 画像のズームアニメーション */
.zoom img {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.js-scroll.active.zoom img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8), -webkit-transform 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8);
  transition: opacity 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8), -webkit-transform 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8);
  transition: opacity 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8), transform 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8);
  transition: opacity 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8), transform 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8), -webkit-transform 1.5s cubic-bezier(0.17, 0.84, 0.49, 0.8);
}

/* ここまで 画像のズームアニメーション *//*# sourceMappingURL=common.css.map */