@charset "UTF-8";
@import url(base.css);
@import url(textsettings.css);
/* ------------------------------------------------------------ */
/* 2025/06/30 レスポンシブ化 */
/*--------------------------------------------------------------*/

/*  フォントサイズ早見表
	以下のようにサイズを指定することで各ブラウザでのフォントサイズを揃えることが出来ます。
	左記のパーセントで指定してください。

	77% = 10px	|	122% = 16px	|	167% = 22px
	85% = 11px	|	129% = 17px	|	174% = 23px
	92% = 12px	|	136% = 18px	|	182% = 24px
	100% = 13px	|	144% = 19px	|	189% = 25px
	107% = 14px	|	152% = 20px	|	197% = 26px
	114% = 15px	|	159% = 21px	|
*/

/* ------------------------------------------------------------ */
/* 基本、レイアウト指定 */
/* ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* html body {
  background: url(null) fixed;
}

body {
  margin: 0px;
  padding: 0px;
  background: #FFF;
  font-family: Arial, Helvetica, sans-serif, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  position: relative;
}

html {
  overflow-x: hidden;
}

.img_left {
  float: left;
  margin: 0 15px 15px 0;
}

.img_right {
  float: right;
  margin: 0 0 15px 15px;
}

/*ローディング画面 */
#loader {
  width: 70px;
  height: 70px;
  /* display: none; */
  position: fixed;
  _position: absolute;
  /* IE6対策 */
  top: 50%;
  left: 50%;
  margin-top: -35px;
  /* heightの半分のマイナス値 */
  margin-left: -35px;
  /* widthの半分のマイナス値 */
  z-index: 100;
}

#fade {
  width: 100%;
  height: 100%;
  /* display: none; */
  background-color: #FFFFFF;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 50;
}
#loader,
#fade {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0.3s ease-in-out;
}
#loader.is-loaded,
#fade.is-loaded {
  opacity: 0;
  visibility: hidden;
}

#container {
  /* display: none;  */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.3s ease-in-out;
}
#container.is-loaded {
  /* display: none;  */
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------ */
/* リンク色 */
/* ------------------------------------------------------------ */

a:link {
  color: #270606;
  text-decoration: none;
}

a:visited {
  color: #270606;
  text-decoration: none;
}

a:hover {
  color: #270606;
  text-decoration: underline;
  opacity: 0.7;
}

a:active {
  color: #270606;
  text-decoration: none;
}

/* ------------------------------------------------------------ */
/* layout */
/* ------------------------------------------------------------ */
/* rootを10pxにしてないから、1rem = 16px*/
/* html {
  font-size: 62.5%;
} */
.inner {
  width: 100%;
  max-width: calc(960px + clamp(1rem, 0.319rem + 3.404vw, 2.5rem) * 2);
  padding: 0 clamp(1rem, 0.319rem + 3.404vw, 2.5rem);
}

/* ------------------------------------------------------------ */
/* swiper */
/* ------------------------------------------------------------ */
.swiper {
  position: relative;
}

.swiper-slide {
  transition: all 0.3s ease-in-out;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background-color: rgb(255 255 255 / 80%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(51, 51, 51, 0.16);
  color: #270606;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.mainSlider {
  width: 100%;
  margin: 0 auto 40px;
}

.mainSlider .swiper-slide {
  aspect-ratio: 533 / 355;
  overflow: hidden;
  opacity: 0.5;
}

.mainSlider .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.mainSlider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */
#header {
  clear: both;
  overflow: hidden;
  width: 100%;
  padding: 0.75rem 3em 0.75rem 0.75rem;
  min-height: 56px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 8px rgba(51, 51, 51, 0);
}

#header.is-fixed {
  box-shadow: 0 0 8px rgba(51, 51, 51, 0.16);
}

.main-logo {
  width: fit-content;
  max-width: 180px;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 21;
}

.main-footer .main-logo {
  max-width: 34rem;
  margin: 2em auto;
}

.main-logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.main-logo a:hover {
  opacity: 0.72;
}

.main-logo img {
  width: 100%;
  height: auto;
  margin: 0;
}


/* nav-toggle */
/* ------------------------------------------------------------ */
.nav-toggle {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  background: #EFEFEF;
  border-radius: 4px;
  border: none;
  outline: none;
  min-height: auto;
  padding: 2px 4px;
  margin: 0;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  z-index: 40;
  overflow: hidden;
}


.nav-toggle-icon {
  width: 24px;
  height: 16px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.is-active .toggle-line:first-of-type {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.is-active .toggle-line:nth-of-type(2) {
  opacity: 0;
}

.is-active .toggle-line:last-of-type {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle-text {
  font-size: 10px;
  line-height: 1;
  display: block;
  width: 100%;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.025em;
}



/* gnav */
/* ------------------------------------------------------------ */
.gnav {
  width: 90%;
  max-width: 320px;
  height: 100%;
  padding: 72px 0 40px;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 20;
  transition: transform 0.2s ease-in-out;
  background-color: #ffffff;
  overflow-y: scroll;
}

.gnav.is-active {
  transform: translateX(0);
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0 1em;
  opacity: 0;
  position: relative;
  transition: opacity 1.8s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 21;
}

.is-active .nav-inner {
  opacity: 1;
}


.overlay {
  position: fixed;
  width: 100vw;
  height: 100%;
  display: block;
  background: rgba(51, 51, 51, 0.64);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}


/* nav-menu */
/* ------------------------------------------------------------ */
.nav-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 auto;
}


.nav-menu-item,
.nav-child-item {
  width: 100%;
  margin: 0 auto 0.5em;
}

.nav-menu-item>a,
.nav-child-item>a {
  display: block;
  width: 100%;
  padding: 1em;
  position: relative;
  overflow: hidden;
  z-index: 2;
}


.nav-menu-item>a:hover,
.nav-child-item>a:hover {
  opacity: 0.72;
}

.nav-menu-item {
  position: relative;
}

/* ------------------------------------------------------------ */
/* コンテンツ */
/* ------------------------------------------------------------ */
.content {
  width: 100%;
  padding: 56px 0 80px;
}

#content {
  width: 100%;
  padding: 0 clamp(1rem, 0.319rem + 3.404vw, 2.5rem);
}

.sub #content {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

#content .border {
  width: 100%;
  border-bottom: #A0A0A0 1px dotted;
}

.main-ttl-box {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto 70px;
}

.main-ttl {
  margin: 0;
  padding: 0 1em 0 0;
  background-color: #fff;
}

.thumb-list {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.thumb-list .thm {
  width: calc(50% - 10px);
  text-align: center;
}


.thumb-list .trimming {
  position: relative;
  display: block;
  width: 100%;
  /* height: 210px; */
  aspect-ratio: 1;
  margin-bottom: 15px;
  overflow: hidden;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  border-radius: 50%;
  /* CSS3草案 */
  -webkit-border-radius: 50%;
  /* Safari,Google Chrome用 */
  -moz-border-radius: 50%;
  /* Firefox用 */
  -o-border-radius: 50%;
  /* Opera */
  -ms-border-radius: 50%;
  /* Internet Explorer */
  behavior: url(border-radius.htc);
  /* IE */
  z-index: 1;
}

.thumb-list .trimming img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#content dl.thm p.date {
  color: #CDCDCD;
  font-size: 10px;
}

#content dl.thm p.title {
  height: 25px;
  color: #726E6D;
  font-size: 12px;
}

/* ------------------------------------------------------------ */
/* 下層 */
/* ------------------------------------------------------------ */

#content .right {
  width: 100%;
  order: 2;
}

#content .left {
  /* width: 100%; */
  order: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

#content .left h2 {
  width: 100%;
  text-align: left;
}

#content .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}


/* sidebar */
/* ------------------------------------------------------------ */
.sidebar {
  width: calc(100% - 64px);
  max-width: calc(320px + 64px);
  margin-left: 64px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform .2s linear;
  z-index: 40;
}

.sidebar.is-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.side-inner {
  width: 100%;
  height: 100%;
  padding: 80px 1em 40px;
  background-color: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  overflow-y: scroll;
}

.side-item {
  width: 100%;
  margin: 0 auto 1em;
}

.side-toggle {
  display: block;
  width: 64px;
  height: 56px;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 1px;
  background-color: #fff;
  padding: 8px 4px 8px 1em;
  border: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 0 4px rgba(51, 51, 51, .24);
  position: absolute;
  top: 64px;
  left: 0;
  z-index: 9999;
  -webkit-transform: translateX(-64px);
  transform: translateX(-64px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.side-toggle::before {
  content: "";
  border-top: 6px solid rgba(0, 0, 0, 0);
  border-right: 6px solid #333;
  border-bottom: 6px solid rgba(0, 0, 0, 0);
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.side-toggle.is-active::before {
  transform: translateY(-50%) rotate(180deg);
}

.side-toggle .off {
  display: block;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.side-toggle.is-active .off {
  display: none;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.side-toggle .on {
  display: none;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.side-toggle.is-active .on {
  display: block;
  height: auto;
  opacity: 1;
  visibility: visible;
}


/* accordion */
/* ------------------------------------------------------------ */
.js-accordion {
  width: 100%;
  position: relative;
}

.js-acTrigger {
  margin: 0 auto 0.8rem;
  border-bottom: 1px solid #333333;
  cursor: pointer;
  position: relative;
}

.js-acContent {
  margin: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: height 0.2s linear, opacity 0.2s 0.2s linear;
  transition: height 0.2s linear, opacity 0.2s 0.2s linear;
  overflow: hidden;
}

.js-acContent.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
  margin: 0 auto 1em;
}

/* ------------------------------------------------------------ */
/* Brandlist */
/* ------------------------------------------------------------ */
#brands .left {
  margin: 0 0 30px;
}

#brands .right .box {
  width: calc(50% - 20px);
  max-width: 350px;
  color: #3B3331;
  line-height: 2.25em;
  font-size: 12px;
}

#brands .right .box h3 {
  width: 100%;
  margin-bottom: 20px;
}

#brands .right .box h3 img {
  width: 100%;
}

/* ------------------------------------------------------------ */
/* Shopinfo */
/* ------------------------------------------------------------ */
#shopinfo .left {
  margin: 0 0 30px;
}

#shopinfo .right {
  overflow: hidden;
  /* max-width: 608px; */
  /* padding: 0 42px 0 50px; */
}

#shopinfo .right img.exterior {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: #A0A0A0 1px dotted;
}

#shopinfo .right .box {
  clear: both;
  overflow: hidden;
  margin-bottom: 35px;
  border-bottom: #A0A0A0 1px dotted;
  font-size: 12px;
  color: #231815;
}

#shopinfo .box .left_info {
  float: left;
  width: 325px;
}

#shopinfo .box .right_map {
  float: left;
  text-align: right;
}

#shopinfo .box .left_info img {
  margin-bottom: 35px;
}

#shopinfo .box .left_info dl dt {
  float: left;
  width: 65px;
}

#shopinfo .box .left_info dl dd {
  margin: 0 0 25px 65px;
}

#shopinfo img.map {
  margin-bottom: 22px;
}

#shopinfo img.googlemap {
  margin-bottom: 30px;
}

/* ------------------------------------------------------------ */
/* How  to Order */
/* ------------------------------------------------------------ */
#howtoorder .left {
  margin: 0 0 30px;
}

#howtoorder .article {
  margin-bottom: 40px;
  padding-bottom: 20px;
  color: #231815;
  line-height: 2em;
  border-bottom: #A0A0A0 1px dotted;
}

#howtoorder h3 {
  width: 100%;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: normal;
}

#howtoorder .article .box {
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
  padding: 20px;
  border: #090104 1px solid;
}

#howtoorder .center {
  text-align: center;
}

/* ------------------------------------------------------------ */
/* Diary */
/* ------------------------------------------------------------ */
#diary .right {
  order: 1;
}

#diary .left {
  order: 2;
}

#diary .left h3 {
  margin-bottom: 18px;
  padding-bottom: 5px;
  border-bottom: #A0A0A0 1px dotted;
}

#diary .right h2 {
  /* text-align: right; */
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: #A0A0A0 1px dotted;
}

#diary .right .article {
  margin-bottom: 100px;
  padding-bottom: 35px;
  border-bottom: #A0A0A0 1px dotted;
}

#diary .date {
  color: #898989;
  font-size: 12px;
  font-weight: bold;
}

#diary .title {
  margin-bottom: 45px;
  color: #362e2b;
  font-size: 16px;
  font-weight: bold;
}

#diary .article b {
  color: #FF0000;
}

#diary .left ul {
  margin-bottom: 60px;
}

#diary .left ul ul {
  margin-bottom: 0;
  margin-top: 15px;
}

#diary .left ul li {
  margin-bottom: 15px;
  color: #3B3331;
  font-size: 12px;
}

/* ------------------------------------------------------------ */
/* ページトップ */
/* ------------------------------------------------------------ */
#pagetop {
  clear: both;
  width: 70px;
  height: 20px;
  text-align: right;
  position: fixed;
  right: 5%;
  bottom: 20px;
  z-index: 30;
}

#pagetop img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ------------------------------------------------------------ */
/* フッター */
/* ------------------------------------------------------------ */
#footer {
  width: 100%;
  clear: both;
  background-color: #EFEFEF;
}

#footer .box {
  width: 100%;
  margin: 0 auto;
  padding: 30px clamp(1rem, 0.319rem + 3.404vw, 2.5rem) 60px;
}

#fnavi {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px 20px;
}

#copyright {
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
  color: #000;
  font-size: 12px;
}


@media screen and (min-width:480px) {
  /* ------------------------------------- */
  /* contents */
  /* ------------------------------------- */
}

@media screen and (min-width:768px) {

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 13vw;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 13vw;
  }

  /* .mainSlider .swiper-slide {
    aspect-ratio: 533 / 355;
  } */

  .thumb-list {
    gap: 40px;
  }

  .thumb-list .thm {
    width: calc((100% - 80px) / 3);
  }

  #footer .box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  #fnavi {
    width: 50%;
    margin: 0 auto 0 0;
  }

  #copyright {
    width: 50%;
    text-align: right;
    margin: 0 0 0 auto;
  }

  #howtoorder .article {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }


  #howtoorder .article>p {
    width: calc(100% - 340px);
  }

  #howtoorder .article .box {
    margin: 0 0 20px 40px;
  }


}

@media screen and (min-width:1025px) {
  #header {
    max-width: 960px;
    margin: 0 auto 40px;
    padding-top: 60px;
    position: relative;
    top: auto;
    left: auto;
    border-bottom: #A0A0A0 1px dotted;
    box-shadow: none;
  }

  #header.is-fixed {

    box-shadow: none;
  }

  #header h1 {
    max-width: 298px;
    margin: 0 auto 40px;
    text-align: center;
  }

  .nav-toggle {
    display: none;
  }

  .gnav {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
    background: none;
    overflow: visible;
    transform: none;
  }

  .nav-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 1;
  }

  .nav-menu {
    width: auto;
    margin-bottom: 0;
    /* margin-right: 0; */
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0 32px;
  }

  .nav-menu-item,
  .nav-child-item {
    width: auto;
    margin: 0 0 15px;
  }


  .overlay {
    display: none;
  }

  /* ------------------------------------------------------------ */
  /* コンテンツ */
  /* ------------------------------------------------------------ */
  .content {
    padding: 0;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: -30px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: -30px;
  }

  .mainSlider {
    width: 533px;
    height: 355px;
    margin: 0 auto 70px;
    overflow: visible;
    visibility: visible;
  }

  #content {
    margin: 0 auto;
    padding: 0 0 145px;
    width: 960px;
  }


  .thumb-list .thm {
    width: calc((100% - 120px) / 4);
  }


  #content .trimming {
    max-width: 210px;
    max-height: 210px;
  }



  /* ------------------------------------------------------------ */
  /* フッター */
  /* ------------------------------------------------------------ */
  #footer {
    clear: both;
    height: 150px;
    background-color: #EFEFEF;
  }

  #footer .box {
    width: calc(960px + clamp(1rem, 0.319rem + 3.404vw, 2.5rem) * 2);
    margin: 0 auto;
    padding-top: 30px;
  }

  #fnavi {
    gap: 15px 25px;
  }


  /* ------------------------------------------------------------ */
  /* 下層 */
  /* ------------------------------------------------------------ */
  .sub #content {
    flex-direction: row;
  }

  #content .left {
    order: 1;
    width: 240px;
  }

  #content .right {
    width: calc(100% - 240px);
    order: 2;
    padding-left: 20px;
  }

  #diary .left {
    order: 1;
  }

  #diary .right {
    order: 2;
    padding-left: 40px;
  }

  #diary .right h2 {
    text-align: right;
  }

  /* sidebar */
  /* ------------------------------------------------------------ */
  .sidebar {
    width: 240px;
    margin: 0;
    padding: 15px 0 0;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  .side-inner {
    padding: 0;
    overflow: auto;
  }

  .side-toggle {
    display: none;
  }


}

@media (orientation: landscape) and (max-width: 767px) {
  /* デバイスが横向き、画面の横幅が 767px 以下の場合の記述 */
}