@charset "UTF-8";
/* CSS Document */
/*———————————
リセット
———————————*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
html {
  scroll-behavior: smooth;
     scroll-padding-top: 100px; /* 固定ヘッダの高さ分 */
}
body:lang(zh-CN) {
    font-family: "SF Pro SC","SF Pro Text","SF Pro Icons","PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
}
/*———————————
ヘッダー
———————————*/
header {
  text-align: center;
  font-size: 18px;
  position: sticky;
  top: 28px;
  background-color: white;
  padding: 4px;
  z-index: 99999;
  display: flex;
  align-items: center;
}
.honyaku {
  width: 100%;
  font-size: 14px;
  text-align: right;
  padding: 4px 10px 4px 0;
  height: 28px;
  position: sticky;
  top: 0;
  background-color: white;
}
.honyaku a {
  color: black;
}
.catch_copy {
  text-align: center;
  padding: 32px 0;
}
.globalMenuSp h3 {
  border: solid 2px black;
  width: 70%;
  margin: 0 auto 16px;
  text-align: center;
  padding: 4px;
  font-weight: normal;
}
nav.globalMenuSp {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  background: #eeeeee;
  color: #000;
  text-align: center;
  /* transform: translateY(-100%); */
  transition: all 0.6s;
  width: 80%;
  max-width: 360px;
  display: none;
  padding: 24px 8px 60px;
  font-size: 16px;
}
nav.globalMenuSp ul {
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  width: 100%;
  margin-bottom: 28px;
}
nav.globalMenuSp ul li {
  padding: 0;
  width: 100%;
  /* border-bottom: 1px dotted #333; */
}
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 0.6em 0;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  /* transform: translateY(0%); */
  display: block;
}
.navToggle {
  display: block;
  position: absolute; /* bodyに対しての絶対位置指定 */
  right: 13px;
  top: 22px;
  width: 42px;
  height: 51px;
  cursor: pointer;
  z-index: 9999;
  /* background: #666; */
  text-align: center;
  /* color: black; */
}
.navToggle span {
  display: block;
  position: absolute; /* .navToggleに対して */
  width: 30px;
  border-bottom: solid 3px black;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}
.navToggle span:nth-child(1) {
  top: 12px;
}
.navToggle span:nth-child(2) {
  top: 22px;
}
.navToggle span:nth-child(3) {
  /* top: 27px; */
}
.navToggle span:nth-child(4) {
  /* border: none; */
  /* color: black; */
  /* font-size: 9px; */
  /* font-weight: bold; */
  /* top: 34px; */
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main_visual {
  /*  background-attachment: fixed;
*/ background-image: url(img/m_bg.jpg);
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_visual_in {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_visual_page {
  /*  background-attachment: fixed;
*/ background-image: url(img/m_bg.jpg);
  background-size: cover;
  background-position: center;
  min-height: 32vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_visual_page_in {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2em;
}
/*———————————
フッター
———————————*/
footer {
  font-size: 14px;
  text-align: center;
  padding: 0 0 24px;
}
.f_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 168px;
}
.f_info img {
  width: 100%;
}
.f_info a {
  color: white;
  text-decoration: underline;
}
.f_info .text {
  width: 100%;
  margin: 0 auto 96px;
  max-width: 640px;
  min-height: 300px;
  padding: 0px 16px;
}
.f_info .form {
  width: 100%;
  margin: 0 auto;
  background-color: #ece8e5;
}
.f_info .form .form_in {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  color: black;
  padding: 16px;
}
.f_info .gmap {
  width: 100%;
}
.f_contact, .f_access {
  width: calc(100% / 2);
  text-align: center;
}
.f_contact {
  background-color: #0f0e2a;
  color: white;
  padding-top: 88px;
  width: 50%;
  text-align: center;
}
.f_contact > .text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}
.f_access {
  background-color: #481e00;
  color: white;
  padding-top: 88px;
  width: 50%;
  text-align: center;
}
.f_access > .text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}
.form {
  min-height: 650px;
  display: flex;
  align-items: center;
}
.form_in {
  padding: 24px 0;
  width: 100%;
}
.form_in form input {
  padding: 8px;
  background-color: #d2d2d2;
  width: 100%;
}
.form_in form label input {
  /* padding: 28px; */
  background-color: transparent;
  width: auto;
}
.form_in form textarea {
  padding: 8px;
  background-color: #d2d2d2;
  width: 100%;
}
.form_in form select {
  padding: 0 8px;
  background-color: #d2d2d2;
  width: 100%;
  height: 38px;
}
.form_in form input.btn {
  padding: 8px 16px;
  background-color: transparent;
  width: auto;
  border: solid 2px black;
}
.form_in form table {
  width: 100%;
}
.form_in form table tbody tr {}
.form_in form table tbody tr th {
  border-bottom: solid 2px black;
  padding: 24px 0;
  text-align: left;
  vertical-align: middle;
}
.form_in form table tbody tr td {
  border-bottom: solid 2px black;
  padding: 24px 0;
  text-align: left;
  vertical-align: middle;
}
input.re_btn {
  padding: 8px 16px;
  background-color: #481e00 !important;
  width: auto;
  border: none;
  color: white;
}
.gmap iframe {
  display: block;
  min-height: 480px;
}
.globalMenuSp div a {
  color: black;
}
ul.f_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
ul.f_sns > li {
  padding: 0 8px;
}
.copyright {
  margin-bottom: 120px;
}
footer > h3 {
  margin-bottom: 28px;
}
ul.f_navi {
  text-align: left;
  display: flex;
  justify-content: flex-start;
}
ul.f_navi > li {
  margin-left: 8px;
}
ul.f_navi > li > a {
  color: black;
}
.pcyoyaku {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 2;
}
.spyoyaku {
  position: fixed;
  right: 0;
  bottom: 0;
  display: none;
}
.spyoyaku img {
  vertical-align: bottom;
  display: block;
}
/*———————————
インデックス
———————————*/
/*おしつらえ*/
.oshitsurae {
  background-image: url("img/oashitsurae.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.oshitsurae > div {
  background-color: rgb(255, 255, 255, 0.7);
  padding: 152px 48px;
  margin: auto;
  width: 100%;
  max-width: 960px;
  text-align: center;
}
.oshitsurae > div > h3 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 300;
}
.oshitsurae > div > p {
  font-size: 16px;
  margin-bottom: 48px;
}
.oshitsurae > div > p:last-child {
  font-size: 22px;
}
.oshitsurae > div > p > a {
  color: black;
  text-decoration: underline;
}
/*ポートレイト*/
.portrait > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
.portrait > ul > li {
  width: calc(100% / 5);
}
.portrait .text {
  text-align: center;
  padding: 160px 0;
}
.portrait a {
  display: block;
}
.portrait img {
  width: 100%;
  display: block;
}
/*ライトボックス*/
.lb-outerContainer {
  border-radius: 4px 4px 0 0 !important;
}
.lb-dataContainer {
  background-color: white !important;
}
.lb-data .lb-caption {
  font-size: 12px !important;
  font-weight: normal !important;
}
.lb-data {
  color: #222 !important;
}
/*レンタル着物、会社概要*/
.col_2 {
  width: 100%;
  display: flex;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > .boxtext {
  width: 30%;
  padding: 80px 48px 98px;
  display: flex;
  justify-content: flex-end;
}
.col_2 > .boxtext > .boxtext_in {
  color: white;
  font-size: 14px;
  width: 100%;
  max-width: 400px;
}
.col_2 > .boxtext > .boxtext_in > h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 28px;
  font-weight: 500;
}
.col_2 > .boxtext a {
  color: white;
}
.col_2 > .boximg {
  width: 70%;
}
.rental_kimono_img {
  background-image: url("img/rental_kimono.jpg");
  /* [disabled]background-attachment: fixed; */
  background-size: cover;
  background-position: center;
}
.bg_brown {
  background-color: #3e1a00;
}
.bg_blue {
  background-color: #0f0e2a;
}
.company_img {
  background-image: url("img/company.jpg");
  /* [disabled]background-attachment: fixed; */
  background-size: cover;
  background-position: center;
}
.bg_graybrown {
  background-color: #4a403a;
}
.mb200 {
  margin-bottom: 200px;
}
/*———————————
コンテンツ
———————————*/
br.sp {
  display: none;
}
br.pc {
  display: block;
}
/*ご利用ガイド、商品案内*/
.lr50_2col {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.lr50_2col > .leftbox {
  width: 50%;
  background-color: #0f0e2a;
}
.lr50_2col > .rightbox {
  width: 50%;
  background-color: #3e1a00;
}
.lr50_2col > .leftbox a, .lr50_2col > .rightbox a {
  color: white;
  text-decoration: underline;
}
.lr50_2col > .leftbox h3, .lr50_2col > .rightbox h3 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 500;
}
.lr50_2col > .leftbox > .guide_img {
  background-image: url("img/index_img_01.png");
  /* [disabled]background-attachment: fixed; */
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.lr50_2col > .leftbox > .guide_text {
  color: white;
  text-align: center;
  padding: 96px 48px;
  width: 100%;
  max-width: 480px;
  margin: auto;
  font-size: 14px;
}
.lr50_2col > .rightbox > .item_img {
  background-image: url("img/index_img_02.png");
  /* [disabled]background-attachment: fixed; */
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.lr50_2col > .rightbox > .item_text {
  color: white;
  text-align: center;
  padding: 96px 48px;
  width: 100%;
  max-width: 480px;
  margin: auto;
  font-size: 14px;
}
.os_title {
  font-size: 22px;
  text-align: center;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.txt_id {
  font-size: 22px;
}
.tellbtn {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  margin: 32px 0 64px;
  padding: 8px;
  font-size: 26px;
}
.txt_ac {
  text-align: center;
}
.f_renraku {
  display: flex;
  justify-content: space-between;
}
.s_contents {
  margin: 0 auto 164px;
}
.s_contents > div {
  width: 100%;
  max-width: 1200px;
  padding: 8px;
  margin: 0 auto;
}
.s_contents > div > h2.qa_mavi {
  color: black;
  padding: 40px 16px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 16px;
}
.s_contents > div > h2.qa_mavi > a {
  color: black;
}
.s_contents > div > h2 {
  text-align: center;
  font-size: 2em;
  padding: 2em;
}
.s_contents > div > h3 {
  margin: 0 0 2rem;
  font-weight: normal;
}
.s_contents > div > p {
  margin: 0 0 3rem;
}
.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}
/*コンテンツアクセス、おしつらえ*/
.n_contents > .in {
  width: 100%;
  max-width: 1200px;
  padding: 0 8px 0;
  margin: 0 auto;
}
.n_contents > .in > .box {
  display: flex;
}
.n_contents > .in > .box:nth-child(even) {
  flex-direction: row-reverse;
}
.n_contents > .in_re > .box:nth-child(odd) {
  flex-direction: row-reverse;
}
.n_contents > .in_re > .box:nth-child(even) {
  flex-direction: row;
}
.n_contents > .in > .box > div {
  width: calc(100% / 2);
}
.n_contents > .in > .box > .text-box {
  display: flex;
  font-size: 26px;
  text-align: center;
  padding: 0 48px;
  align-items: center;
  justify-content: center;
}
.n_contents > .in > .box > .text-box > dl {
  text-align: left;
}
.n_contents > .in > .box > .text-box > dl > dd {
  font-size: 26px;
}
.n_contents > .in > .box > .text-box > dl > dt {
  font-size: 18px;
  padding: 8px 0 0 24px;
}
.n_contents > .in > .box > .img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.n_contents img {
  width: 100%;
  display: block;
}
.n_contents .title {
  text-align: center;
  background-color: #0f0e2a;
  padding: 40px 16px 60px;
  font-weight: normal;
  color: white;
}
.n_contents .title b {
  font-weight: normal;
  margin-bottom: 16px;
  display: block;
  font-size: 24px;
}
.n_contents .title a {
  color: white;
  text-decoration: underline;
}
.n_contents .tel_michi {
  text-align: center;
  background-color: #3e1a00;
  padding: 40px 0;
  font-weight: normal;
  margin-bottom: 80px;
}
.n_contents .tel_michi a {
  color: white;
  padding: 8px;
  border: solid 1px white;
}
.txt_al {
  text-align: left;
  width: 100%;
  max-width: calc(1200px - 16px);
  margin: 0 auto;
}
.txt_ar {
  text-align: right;
}
.okamitext {
  text-align: left;
  font-size: 16px;
}
.okami_txt_ar {
  text-align: right;
  display: block;
  margin-top: 16px;
}
.okamititle {
  text-align: center;
  padding: 40px 16px;
  font-weight: normal;
  color: white;
  font-size: 24px;
}
.reservetitle {
  text-align: center;
  padding: 40px 16px;
  font-weight: normal;
  color: white;
  font-size: 24px;
}
/*———————————
レスポンシブ
———————————*/
@media screen and (max-width: 959px) {
  header {
    top: 24px;
    padding: 4px 4px 2px;
  }
  .honyaku {
    font-size: 14px;
    padding: 4px 10px 0 0;
    height: 24px;
  }
  body > header > h1 > a > svg {
    width: 100px;
    height: 36px;
  }
  body > header > h1 > a > svg > image {
    width: 100px;
  }
  .navToggle {
    right: 8px;
    top: 4px;
  }
  /*フッター*/
  .f_contact, .f_access {
    width: 100%;
  }
  .form_in form table tbody tr td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  .form_in form table tbody tr th {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  .form_in form table tbody tr td:nth-child(odd) {
    border-bottom: none;
  }
  .form_in {
    padding: 24px 8px;
  }
  .portrait > ul > li {}
  .portrait .text {
    text-align: center;
    padding: 160px 0;
  }
  .col_2 {
    flex-direction: column-reverse;
  }
  .col_2 > .boxtext {
    width: 100%;
    padding: 48px;
    display: flex;
    justify-content: center;
  }
  .col_2 > .boxtext > .boxtext_in {
    font-size: 14px;
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  .col_2 > .boxtext > .boxtext_in > h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 28px;
    font-weight: 500;
  }
  .col_2 > .boximg {
    width: 100%;
    min-height: 300px;
  }
  .oshitsurae {
    padding: 0 16px;
  }
  .oshitsurae > div {
    padding: 120px 40px;
    margin: auto;
    width: 100%;
    max-width: 960px;
  }
  .oshitsurae > div > h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .oshitsurae > div > p {
    font-size: 14px;
    margin-bottom: 48px;
  }
  .oshitsurae > div > p:last-child {
    font-size: 18px;
  }
  .lr50_2col > .leftbox {
    width: 100%;
  }
  .lr50_2col > .rightbox {
    width: 100%;
  }
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
  .spyoyaku {
    display: block;
  }
  .pcyoyaku {
    display: none !important;
  }
  .n_contents > .in {
    padding: 0 0 0;
  }
  .n_contents > .in > .box {
    display: flex;
    flex-direction: column;
  }
  .n_contents > .in > .box:nth-child(even) {
    flex-direction: column;
  }
  .n_contents > .in > .box > div {
    width: 100%;
  }
  .n_contents > .in > .box > .text-box {
    font-size: 26px;
    padding: 48px 12px 80px;
  }
  .n_contents > .in_re > .box:nth-child(odd) {
    flex-direction: column;
  }
  .n_contents > .in_re > .box:nth-child(even) {
    flex-direction: column;
  }
  nav.globalMenuSp {
    width: 80%;
    max-width: 320px;
    adding: 30px 4px 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 559px) {
  .portrait > ul > li {
    width: calc(100% / 3);
  }
  .portrait .text {
    text-align: center;
    padding: 160px 0;
  }
}