@charset "UTF-8";
/*
Theme Name: Cracker
Version: 1.9
*/

/* 共通 */
.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

@font-face {
  font-family: 'LaoMN';
  src: url('./assets/font/lao-mn.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
    /* font-family */
    --hiragino: "hiragino-mincho-pron", sans-serif;
    --lato: "lato", sans-serif;
    --biz: "biz-udpmincho", sans-serif;
    --LaoMN: 'LaoMN';
    /* font-weight */
    --normalFontWeight: 400;
    --mediumFontWeight: 500;
    --semiBoldFontWeight: 600;
    --boldFontWeight: 700;
    /* Color */
    --whiteColor: #fff;
    --blackColor: #202020;
    --pinkColor: #FFF0F0;
    /* animation */
    --animationDuration: 0.5s;
  }
  .container {
    max-width: 1400px;
    padding: 0 1rem;
    margin: 0 auto;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-size: 16px;
    font-weight: var(--normalFontWeight);
    color: var(--blackColor);
    font-family: var(--LaoMN);
  }

  /* フェードアニメーション */
  .fadeUpTrigger {
    opacity: 0;
  }
  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: var(--animationDuration);
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .pc_view {
    display: initial;
  }

  .sp_view,
  #photographer .slick-slider {
    display: none;
  }

  @media(max-width:1300px) {
    .pc_view {
        display: none;
    }

    .sp_view,
    #photographer .slick-slider {
        display: initial;
    }
  }


  /* ヘッダー */
header {
    position: fixed;
    width: 100%;
    z-index: 80;
    background-color: var(--whiteColor);
  }
  header h2 {
    font-size: clamp(20px,5.3vw,50px);
  }
  header .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 20px 0 60px;
  }

  .nav .nav-menu {
    display: flex;
    font-size: clamp(16px,4.26vw,20px);
    gap: 49px;
    align-items: center;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .nav .nav-menu li {
    color: var(--blackColor);
    font-family: var(--lato);
    font-style: normal;
    font-weight: 300;
  }

  .nav .nav-menu li:hover {
    color: #6fb39a;
  }

  @media (max-width: 800px) {
    header .container img {
      width: 200px;
    }

    header .container {
      padding: 0 20px;
    }
  }

  @media(max-width:1300px) {
  /* ヘッダー：ナビゲーション */
  .nav .nav-menu {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    overflow-y: scroll;
    padding-top: 22vh;
    width: 87%;
    margin: 0 auto;
  }
  .nav .nav-menu li {
    font-size: 16px;
    color: var(--whiteColor);
    position: relative;
    width: 100%;
  }
  .nav .nav-menu li::before {
    content: "";
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--whiteColor);
    position: absolute;
    bottom: -0.5em;
    left: 0;
  }
  .nav .nav-menu li::after {
    content: "";
    width: 0;
    height: 2px;
    border-bottom: 2px solid #6FB39A;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    transition: .5s;
  }
  .nav .nav-menu li:hover {
    color: var(--whiteColor);
  }
  .nav .nav-menu li:hover::before {
    border-bottom: 2px solid transparent;
  }
  .nav .nav-menu li:hover::after {
    width: 100%;
  }
  .nav .nav-menu li:not(:last-of-type) {
    margin-bottom: 45px;
  }
  .nav .nav-menu li a {
    white-space: nowrap;
  }
  /* ヘッダー：ナビゲーション：ボタン */
  .navbtn {
    width: 48px;
    height: 48px;
    padding: 0;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 100;
  }
  .navbtn-bar {
    position: relative;
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--blackColor);
    color: var(--whiteColor);
  }
  .navbtn-bar::before,
  .navbtn-bar::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blackColor);
    transition: transform 0.5s;
  }
  .navbtn-bar::before {
    width: 100%;
    transform: translateY(-12px);
  }
  .navbtn-bar::after {
    width: 100%;
    transform: translateY(12px);
  }
  /* ヘッダー：ナビゲーション：ボタン：オープン */
  .navbtn-bar.open {
    background-color: transparent;
  }
  .navbtn-bar.open::before {
    transform: translateY(0) rotate(225deg);
    background-color: var(--whiteColor);
  }
  .navbtn-bar.open::after {
    width: 30px;
    transform: translateY(0) rotate(-225deg);
    background-color: var(--whiteColor);
  }
  /* ヘッダー：ナビゲーション：オーバーレイ */
  .nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    background: rgba(32, 32, 32, 0.9);
    opacity: 0;
    pointer-events: none;
  }
  /* ヘッダー：ナビゲーション：オーバーレイ：オープン */
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 90;
  }
}

  /* contact */

  .contact-title{
    font-size: clamp(20px,2.7vw,30px);
    color: var(--blackColor);
    text-align: center;
    padding-top: 206px;
    padding-bottom: 73px;
  }

  .contact-content dd input {
    border: solid 1px var(--blackColor);
    height: 30px;
    width: 100%;
    background: #F2F1F1;
    font-size: 20px;
  }
  .contact-content {
    display: flex;
    max-width: 666px;
    margin: 0 auto;
    padding-bottom: 50px;
    align-items: center;
  }
  .contact-content dt {
    width: 30%;
    font-weight: normal;
  }
  .contact-content dt label {
    font-size: clamp(14px,3.53vw,16px);
  }
  .contact-content dd {
    width: 100%;
  }
  .check-content dd label {
    display: flex;
    align-items: center;
  }
  .check-content dd span {
    justify-content: left;
    font-size: clamp(14px,3.73vw,16px);
    margin: 0;
  }
  .check-content dd input {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    background-color: #fff;
  }
  .check-content dd input:checked {
    background-color: #000;
  }
  .check-content .first {
    margin-right: 110px;
  }
  .submit {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: 1px solid #000;
    max-width: 866px;
    margin-left: auto;
    margin-top: 90px;
    margin-right: auto;
    margin-bottom: 285px;
    padding-top: 12px;
    padding-bottom: 15px;
  }
  .submit:hover {
    color: var(--whiteColor);
    border: 1px solid var(--blackColor);
    background-color: var(--blackColor);
  }
  .wpcf7-spinner,
  .wpcf7-not-valid-tip {
    display: none;
  }
  #contact label,
  .submit {
    font-family: var(--biz);
  }

  @media(max-width:1000px) {
    .contact-title {
      padding-top: 70px;
      padding-bottom: 30px;
    }

    .contact-content {
      flex-direction: column;
      padding-bottom: 0;
      text-align: center;
      gap: 10px;
    }

    .contact-content dd input {
      height: 30px;
      width: 73%;
      margin-bottom: 30px;
    }

    .submit {
      width: 73%;
      max-width: 635px;
    }

   .check-content .wpcf7-list-item-label {
    white-space: nowrap;
   }

   .check-content dd input {
    width: 30px;
    margin-bottom: 0;
   }

   .check-content label,
   .contact-content dt label {
    white-space: nowrap;
   }

   .check-content dd {
    margin-bottom: 30px;
    margin-top: 10px;
   }
   .submit {
    margin-top: 45px;
    margin-bottom: 60px;
  }
  }

  @media(max-width:500px) {
    .check-content dd input {
      width: 20px !important;
      height: 20px !important;
    }
  }

  /* footer */
footer {
    background-color: var(--blackColor);
    padding-top: 69px;
    padding-bottom: 55px;
}
footer h2 {
    font-size: clamp(30px,8vw,50px);
    color: var(--whiteColor);
    padding-bottom: 20px;
}
footer p {
    font-size: clamp(16px,3.73vw,20px);
    color: var(--whiteColor);
    padding-bottom: 35px;
}
.footer-flex {
    display: flex;
    margin: 0 auto;
    max-width: 1440px;
    width: 85%;
    gap: 20%;
    align-items: center;
}
.footer-text {
  font-family: var(--hiragino);
}

@media(max-width:1300px) {
  footer {
    padding-top: 30px;
    padding-bottom: 55px;
  }

  footer .container {
    text-align: center;
  }

  .footer-flex {
    flex-direction: column;
  }

  footer h2 {
    padding-bottom: 30px;
    white-space: nowrap;
  }

  footer p:nth-of-type(1) {
    padding-bottom: 0;
  }
}

.zoom-instagram {
  margin: 20px auto 10px;
}

.zoom-instagram-widget__header,
.wpz-insta-lightbox-wrapper {
  display: none;
}

.zoom-instagram-widget__items-wrapper .zoom-instagram-widget__items {
  display: flex!important;
  flex-wrap: wrap!important;
  justify-content: center!important;
  gap: 10px!important;
  padding: 0;
}

.zoom-instagram-link,
.zoom-instagram-widget__item-inner-wrap,
.zoom-instagram-widget__item {
  width: 274px;
  height: 274px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .zoom-instagram-link,
  .zoom-instagram-widget__item-inner-wrap,
  .zoom-instagram-widget__item {
      width: 120px;
      height: 120px;
      object-fit: cover;
  }
}

.zoom-instagram-widget__item {
  list-style-type:none;
}

.zoom-instagram-widget__black {
  display: none;
}

.flow_btn {
  padding: 15px 0;
    display: inline-block;
    text-decoration: none !important;
    font-size: 14px;
    width: 20%;
    text-align: center;
    margin: 10px auto 60px;
    font-family: 'Noto Serif JP', serif;
  background-color: #AF998E;
  border: 2px solid #AF998E;
  color: #fff !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .flow_btn {
      width: 80%;
      margin: 10px auto 80px;
  }
}

.flow_btn:hover {
  background-color: transparent;
  border: 2px solid #AF998E;
  color: #AF998E !important;
  }