@charset "utf-8";

/* ------------------------------
 COMMON
------------------------------ */

/* ベースのフォントサイズを10px */
html {
  font-size: 62.5%;
}

/* ベースフォント指定 / スタイルが指定されていない要素のフォントサイズを統一 */
body {
  font-family: "游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,"ヒラギノ角ゴ Pro W3","メイリオ",sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: #4C2A1F;
  background-color: #FBF7E9;
  overflow: hidden;
}

/* リンクの装飾をリセット */
a {
  text-decoration: none;
  outline: none;
  transition: opacity 0.5s;
}

/* ホバー時の設定 */
a:hover {
  opacity: 0.5;
}

/* 画像レスポンシブ */
img {
  max-width: 100%;
  height: auto;
}


/* スクロール禁止 */
.is-scroll-prevent {
  overflow: hidden;
  height: 100%;
}


.pc,
.br-pc {
  display: block;
}
.sp,
.br-sp {
  display: none;
}

@media screen and ( max-width:767px) {
  .pc,
  .br-pc {
    display: none;
  }
  .sp,
  .br-sp {
    display: block;
  }
}



/* ------------------------------
 Header
------------------------------ */

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(251,247,233,0.95);
  border-bottom: solid 2px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-102px);
  transition: opacity 0.5s, transform 0.5s;
}

.l-header.is-active {
  opacity: 1;
  transform: translateY(0px);
}

.header_wrap {
  max-width: 1120px;
  height: 100px;
  margin: 0 auto;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-ttl {
  width: 200px;
}

.main-ttl_txt {
  text-align: center;
  font-size: 1rem;
  color: #99543E;
  padding: 0 0 18px 0;
}

.toggle {
  display: none;
}

.gnavi {
  width: 720px;
}

.gnavi_list {
  text-align: center;
  font-size: 0rem;
}

.gnavi_item {
  display: inline-block;
  padding: 10px 0px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
}

.gnavi_item::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 16px;
  background-image: url("../img/wood.png");
  background-size: cover;
  margin: 0px 12px 0px 8px;
  transform: translateY(2px);
}

.gnavi_item:nth-of-type(1) {
  margin: 0 0 0 30px;
}

.gnavi_item:nth-of-type(2) {
  margin: 0 30px 0 0;
}

.gnavi_item:nth-of-type(2)::before, .gnavi_item:nth-of-type(4)::before {
  transform: translateY(2px) scale(-1, 1);
}

.gnavi_item:nth-of-type(2)::after, .gnavi_item:nth-of-type(5)::after {
  content: '';
  display: inline-block;
  width: 19px;
  height: 16px;
  background-image: url("../img/wood.png");
  background-size: cover;
  margin: 0px 0px 0px 8px;
  transform: translateY(2px);
}

.gnavi_item:nth-of-type(5)::after {
  transform: translateY(2px) scale(-1, 1);
}

.gnavi_item a {
  color: #4C2A1F;
}

@media screen and (min-width: 901px) and ( max-width:980px) {
  .gnavi_item a {
    font-size: 1.4rem;
  }
}

@media screen and ( max-width:900px) {
  .header_wrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0px 20px;
    display: block;
  }

  .main-ttl {
    width: 150px;
    margin: 0 auto;
    padding: 8px 0px 8px 0px;
  }

  .main-ttl_txt {
    font-size: 1rem;
    letter-spacing: 0;
    padding: 0 0 10px 0;
  }

  .toggle {
    display: block;
    position: absolute;
    z-index: 10;
    right: 10px;
    top: 3px;
    width: 50px;
    height: 60px;
    cursor: pointer;
    text-align: center;
  }
  
  .toggle::after {
    content: 'MENU';
    display: block;
    font-size: 1rem;
    letter-spacing: 0em;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 10px;
  }

  .toggle.is-active::after {
    content: 'CLOSE';
  }

  .toggle span {
    display: block;
    position: absolute;
    width: 23px;
    height: 2px;
    left: 13px;
    background: #E67E5D;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .toggle span:nth-child(1) {
    top: 14px;
  }

  .toggle span:nth-child(2) {
    top: 22px;
  }

  .toggle span:nth-child(3) {
    top: 30px;
  }

  .toggle.is-active span:nth-child(1) {
    top : 25px;
    left: 13px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .toggle.is-active span:nth-child(2),
  .toggle.is-active span:nth-child(3) {
    top: 25px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .gnavi {
    display: none;
    width: 100%;
    height: calc(100vh - 65px);
    overflow-y: auto;
  }

  .gnavi_list {
    padding: 15px 0px 15px 0px;
  }

  .gnavi_item {
    display: block;
    padding: 0px 0px;
    margin: 0 1.5vw;
    letter-spacing: 0.1em;
    border-top: solid 1px #E9D7A0;
  }
  
  .gnavi_item:nth-of-type(1) {
    margin: 0;
  }

  .gnavi_item:nth-of-type(2) {
    margin: 0;
  }
  
  .gnavi_item:first-child {
    border: none;
  }

  .gnavi_item::before {
    content: none;
  }

  .gnavi_item:nth-of-type(2)::after, .gnavi_item:nth-of-type(5)::after {
    content: none;
  }

  .gnavi_item a {
    display: block;
    padding: 22px 0px;
  }

}



/* ------------------------------
 Contact
------------------------------ */

.l-contact {
  width: 100%;
  background-image: url("../img/contact-bg.png");
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 2000px;
  background-color: #9ACC9A;
}

.l-contact.other-bg {
  background-image: url("../img/contact-bg-other.png");
}

.contact_wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 80px 20px 0px 20px;
}

.contact_ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ECEFAC;
}

.contact_txt {
  text-align: center;
  font-weight: 700;
  margin: 40px 0px 0px 0px;
}

.contact_btn {
  text-align: center;
}

.contact_btn a {
  display: inline-block;
  font-weight: 700;
  color: #FBF7E9;
  background-color: #E67E5D;
  border-radius: 50px;
  margin: 36px 0px 0px 0px;
  padding: 20px 25px;
}

.contact_notes {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 36px 0px 0px 1.2em;
  position: relative;
}

.contact_notes::before {
  content: '※';
  position: absolute;
  top: 0;
  left: -1.2em;
}

.contact_list li {
  font-size: 1.2rem;
  line-height: 1.5;
  list-style-type: decimal;
  margin: 0px 0px 0px 3em;
}

.contact_privacy {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0px 0px 0px 1.2em;
}

.contact_privacy a {
  color: #4C2A1F;
  text-decoration: underline;
}

@media screen and ( max-width:767px) {
  .l-contact {
    width: 100%;
    background-image: url("../img/contact-bg-sp.png");
    background-position: top center;
    background-repeat: repeat-x;
    background-size: contain;
    background-color: #9ACC9A;
  }
  
  .l-contact.other-bg {
    background-image: url("../img/contact-bg-other-sp.png");
  }

  .contact_txt {
    margin: 30px 0px 0px 0px;
    line-height: 1.5;
  }
}



/* ------------------------------
 Footer
------------------------------ */

.l-footer {
  width: 100%;
  background-color: #9ACC9A;
  padding: 50px 0px 60px 0px;
}

.footer_wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.sns_list {
  text-align: center;
}

.sns_item {
  width: 60px;
  display: inline-block;
  margin: 0 7px;
}

.fnavi_list {
  margin: 40px 0px 0px 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.fnavi_item {
  display: block;
  margin: 0px -1px 25px 0px;
  padding: 0px 18px;
  border-left: solid 1px #DCEDBC;
  border-right: solid 1px #DCEDBC;
}

.fnavi_item a {
  color: #4C2A1F;
  letter-spacing: 0.1em;
}

.copyright {
  margin: 35px 0px 0px 0px;
  font-size: 1.2rem;
}

.contact-btn {
  position: fixed;
  bottom: 100px;
  right: 0px;
  z-index: 100;
}

.contact-btn a {
  display: block;
  width: 80px;
  height: 242px;
  padding: 54px 23px 0px 0px;
  background-image: url("../img/contact-btn-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 700;
  color: #FBF7E9;
}

.contact-btn a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 16px;
  margin: 0px 0px 12px 0px;
  background-image: url("../img/mail.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.return-btn {
  position: fixed;
  bottom: 0px;
  right: 40px;
  z-index: 100;
  display: block;
  width: 136px;
  height: 123px;
  transform: translateY(130px);
  transition: transform 0.5s;
}

.return-btn.is-active {
  transform: translateY(69px);
}

.return-btn:hover {
  transform: translateY(0px);
}

.return-btn a:hover {
  opacity: 1;
}

@media screen and ( max-width:767px) {
  .l-footer {
    padding: 50px 0px 80px 0px;
  }

  .sns_item {
    width: 48px;
  }

  .fnavi_list {
    display: none;
  }

  .copyright {
    line-height: 1.5;
  }

  .contact-btn {
    position: fixed;
    bottom: 70px;
    right: 0px;
    z-index: 100;
  }

  .contact-btn a {
    width: 50px;
    height: 150px;
    padding: 30px 10px 0px 0px;
    font-size: 1rem;
    background-size: contain;
  }

  .contact-btn a::before {
    width: 16px;
    height: 12px;
    margin: 0px 0px 8px 0px;
  }

  .return-btn {
    right: 10px;
    width: 90px;
    height: 82px;
    transform: translateY(85px);
  }

  .return-btn.is-active {
    transform: translateY(0px);
  }
}



/* ------------------------------
 Tsumiki btn / Partition btn
------------------------------ */
.snavi_btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.l-footer .snavi_btn {
  margin-top: 0;
  margin-bottom: 50px;
}

.tsumiki-btn,
.partition-btn,
.nekosuna-btn {
  max-width: 320px;
  margin: 0 20px;
}

.tsumiki-btn-sp,
.partition-btn-sp,
.nekosuna-btn-sp {
  display: none;
}

@media screen and ( max-width:900px) {
  .l-footer .snavi_btn {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .l-footer .partition-btn,
  .l-footer .nekosuna-btn {
    margin-top: 10px;
  }

  .tsumiki-btn-sp,
  .partition-btn-sp {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
  }

  .nekosuna-btn-sp {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
  }
}
