@charset "UTF-8";
/*
Theme Name:山口ストアー
Description:
Theme URI: 
Author: HIRAKU WADA (mallet DESIGN)
Author URI: https://mallet-design.com
Version: 
License: 
License URI: 
*/
/* 1.0 Document Setup
--------------------------------------------------------------*/
/*===================================================
     0.CSS Reset / YUI 3.5.0 - reset.css
===================================================*/
/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * http://cssreset.com
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html {
  color: #333;
  background: #fffef3;
  font-size: 62.5%;
}

/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none;
}

.clearfix {
  width: 100%;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*===================================================
     Font
===================================================*/
h1, h2 {
  font-size: 3.6rem !important;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem) !important;
  min-height: 0vw;
}

h3 {
  font-size: 2.1rem !important;
  font-size: clamp(1.4rem, 4.5vw, 2.1rem) !important;
  min-height: 0vw;
}

/*===================================================
     Color
===================================================*/
/* -----------------------------------------------------------------
    media query
----------------------------------------------------------------- */
/*===================================================
    1.	Document Setup
===================================================*/
body {
  font-size: 1.5rem !important;
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
  min-height: 0vw;
  color: #333 !important;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.8 !important;
  background: #fffef3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffef3;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity 0.5s ease;
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.5s ease;
}
body.fade-out:after {
  opacity: 1;
}

.t8px {
  font-size: 0.8em;
}

.t9px {
  font-size: 0.9em;
}

.t11px {
  font-size: 1.1em;
}

.t12px {
  font-size: 1.2em;
}

.t13px {
  font-size: 1.3em;
}

.t14px {
  font-size: 1.4em;
}

.t15px {
  font-size: 1.5em;
}

.t16px {
  font-size: 1.6em;
}

.t17px {
  font-size: 1.7em;
}

.t18px {
  font-size: 1.8em;
}

.t19px {
  font-size: 1.9em;
}

.t20px {
  font-size: 2em;
}

.ta_left {
  text-align: left !important;
}

.ta_right {
  text-align: right;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

input {
  cursor: pointer;
}

/*for Webkit*/
input::-webkit-input-placeholder {
  color: #000;
}

/*for Firefox*/
input:-moz-placeholder {
  color: #000;
}

a {
  text-decoration: none;
  color: #333 !important;
  cursor: pointer;
}

a:hover {
  /*filter: alpha(opacity=60);
  -moz-opacity:0.6;
  opacity:0.6;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;*/
  border: none !important;
  text-decoration: none !important;
}

input:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

.center {
  text-align: center;
}

.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover; object-position: top;";
}

.fade_off {
  opacity: 0;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fade_on {
  opacity: 1;
}

/*===================================================
     Utility
===================================================*/
/* padding-top
-------------------------------------------------- */
.pt0 {
  padding-top: 0px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

/* padding-bottom
-------------------------------------------------- */
.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

/* padding-Left
-------------------------------------------------- */
.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60px {
  padding-left: 60px !important;
}

/* padding-Right
-------------------------------------------------- */
.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

/* margin-top
-------------------------------------------------- */
.mt0 {
  margin-top: 0px !important;
}

/* margin-bottom
-------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-dfc {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.u-dfsb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* pc   --------------------------------*/
@media screen and (min-width: 813px) {
  .sp {
    display: none !important;
  }
}
/* sp   --------------------------------*/
@media screen and (max-width: 812px) {
  body {
    font-size: 12px;
  }

  .pc {
    display: none !important;
  }
}
/* edge   --------------------------------*/
@supports (-ms-ime-align: auto) {
  /* Edge のみ適用される */
  body {
    -webkit-font-feature-settings: "pkna";
            font-feature-settings: "pkna";
  }
}
/*  -------------------------------------
	Slick
  -------------------------------------*/
.slick-next:before {
  content: "" !important;
  background: url(../images/icon_next.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 30px;
  display: block;
}
@media only screen and (max-width:768px) {
  .slick-next:before {
    width: 10px;
    height: 20px;
  }
}
@media only screen and (max-width:768px) {
  .slick-next {
    right: -20px !important;
  }
}

.slick-prev:before {
  content: "" !important;
  background: url(../images/icon_prev.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 30px;
  display: block;
}
@media only screen and (max-width:768px) {
  .slick-prev:before {
    width: 10px;
    height: 20px;
  }
}
@media only screen and (max-width:768px) {
  .slick-prev {
    left: -10px !important;
  }
}

.single .slider-nav .slick-list {
  padding: 0 !important;
  margin-top: 0.5em;
}
.single .slider-nav .slick-slide {
  padding: 0 0.5em;
}
.single .slider-nav .slick-slide img {
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
}

/*  -------------------------------------
	タブ実装
  -------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    -webkit-opacity: 0;
    opacity: 0;
  }
  100% {
    -webkit-opacity: 1;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tab_box .btn_area, .tab_box2 .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 60px;
}
@media only screen and (max-width:768px) {
  .tab_box .btn_area, .tab_box2 .btn_area {
    margin: 0 0 30px;
  }
}
.tab_box .tab_btn, .tab_box2 .tab_btn {
  width: 200px;
  height: 60px;
  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;
  border: 1px solid #333;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  font-weight: normal;
  color: #333;
  margin: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media only screen and (max-width:768px) {
  .tab_box .tab_btn, .tab_box2 .tab_btn {
    width: 180px;
    height: 45px;
    font-size: 14px;
  }
}
@media only screen and (max-width:480px) {
  .tab_box .tab_btn, .tab_box2 .tab_btn {
    width: 140px;
    height: 30px;
    font-size: 11px;
  }
}
.tab_box .tab_btn + .tab_btn, .tab_box2 .tab_btn + .tab_btn {
  margin-left: 8px;
}
.tab_box .tab_btn:hover, .tab_box2 .tab_btn:hover {
  background-color: #333;
  color: #fff;
}
.tab_box .tab_btn.active, .tab_box2 .tab_btn.active {
  background: #333;
  color: #fff;
  position: relative;
  -webkit-animation: fadeIn 0.8s ease-in-out;
          animation: fadeIn 0.8s ease-in-out;
}
.tab_box .tab_panel, .tab_box2 .tab_panel {
  display: none;
}
.tab_box .tab_panel.active, .tab_box2 .tab_panel.active {
  display: block;
  -webkit-animation: fadeIn 0.8s ease-in-out;
          animation: fadeIn 0.8s ease-in-out;
}

.tab_box .panel_area {
  /* border: solid 1px #e3ebf3;
   padding: 20px;*/
}

/*  -------------------------------------
	BlockRevealers
  -------------------------------------*/
.content__image {
  width: 100%;
  display: block;
}

.content__image-wrap--half {
  width: 50vw;
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
}

.content__title__inner, .block-revealer__content {
  opacity: 0;
}

.block-revealer {
  opacity: 1;
}

/*  -------------------------------------
	search
  -------------------------------------*/
.search-wrap {
  position: fixed;
  background: #fffef3;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  z-index: 103;
}
.search-wrap #form {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
  width: 360px;
  /*-webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:480px) {
  .search-wrap #form {
    width: 70%;
    top: 40%;
  }
}
.search-wrap #form ::-webkit-input-placeholder {
  color: #999;
}
.search-wrap #form ::-moz-placeholder {
  color: #999;
}
.search-wrap #form :-ms-input-placeholder {
  color: #999;
}
.search-wrap #form ::-ms-input-placeholder {
  color: #999;
}
.search-wrap #form ::placeholder {
  color: #999;
}
.search-wrap #form input {
  padding: 0 0.5em;
  width: 80%;
  background: none;
  border: none;
  border-bottom: 1px solid #cfcdc0;
  border-radius: 0;
}
.search-wrap #form button {
  background: none;
  border: none;
}
.search-wrap #form #s-btn img {
  width: 16px;
  height: 16px;
}
.search-wrap #search-close {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  bottom: 30px;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  padding: 0 20px;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width:480px) {
  .search-wrap #search-close {
    font-size: 12px;
  }
}
@media only screen and (max-width:480px) {
  .search-wrap {
    margin-top: 0;
  }
}
.search-wrap.open {
  opacity: 1;
  visibility: visible;
  height: 30%;
}
.search-wrap.open #search-close {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  bottom: 30px;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #a2a197;
}
.search-wrap.open #search-close:after {
  content: "×";
  margin-left: 0.5em;
}
@media only screen and (max-width:480px) {
  .search-wrap.open #search-close {
    font-size: 12px;
  }
}
.search-wrap.open #form {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
  width: 360px;
  /*-webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:480px) {
  .search-wrap.open #form {
    width: 70%;
    top: 40%;
  }
}
.search-wrap.open #form ::-webkit-input-placeholder {
  color: #999;
}
.search-wrap.open #form ::-moz-placeholder {
  color: #999;
}
.search-wrap.open #form :-ms-input-placeholder {
  color: #999;
}
.search-wrap.open #form ::-ms-input-placeholder {
  color: #999;
}
.search-wrap.open #form ::placeholder {
  color: #999;
}
.search-wrap.open #form input {
  padding: 0 0.5em;
  width: 80%;
}
.search-wrap.open #form button {
  background: none;
  border: none;
}
.search-wrap.open #form #s-btn img {
  width: 16px;
  height: 16px;
}

/*  -------------------------------------
	wp-pagenavi
  -------------------------------------*/
.wp-pagenavi, .all-page-pager {
  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;
  margin: 60px 0 0;
}
@media only screen and (max-width:687px) {
  .wp-pagenavi, .all-page-pager {
    margin: 45px 0 0;
  }
}
.wp-pagenavi .current, .all-page-pager .current {
  background: #f0efdf;
  font-weight: 400;
  border: none;
  font-weight: 400 !important;
}
.wp-pagenavi span, .wp-pagenavi a, .all-page-pager span, .all-page-pager a {
  font-family: "Jost", sans-serif;
  width: auto;
  height: 30px;
  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;
  margin-right: 1em;
  border: none;
}
@media only screen and (max-width:768px) {
  .wp-pagenavi span, .wp-pagenavi a, .all-page-pager span, .all-page-pager a {
    font-size: 11px;
    width: 20px;
    height: 20px;
  }
}
.wp-pagenavi a.nextpostslink, .all-page-pager a.nextpostslink {
  margin-right: 0;
}

.all-page-pager span.page-numbers {
  width: 30px;
  height: 30px;
  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;
  margin-right: 1em;
}
@media only screen and (max-width:768px) {
  .all-page-pager span.page-numbers {
    font-size: 12px;
  }
}

/*  -------------------------------------
	YARPP
  -------------------------------------*/
.yarpp-related a {
  font-weight: 500 !important;
}

/*  -------------------------------------
	Full Calendar
  -------------------------------------*/
.fc-event, .fc-event-dot {
  background-color: #ffbf60 !important;
  border: none !important;
}

.fc-unthemed td.fc-today {
  background: #fff2ac !important;
}

/*  -------------------------------------
	custom-post-type-widgets
  -------------------------------------*/
div#custom-post-type-archives-2 .widget-title {
  display: none;
}

/*  -------------------------------------
	グーテンベルク　投稿スタイル
  -------------------------------------*/
body .is-layout-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* 2.0 structure
--------------------------------------------------------------*/
/*  -------------------------------------
	Wrapper 
  -------------------------------------*/
.wrapper {
  position: relative;
}
@media only screen and (max-width:1200px) {
  .wrapper {
    padding-top: 0px;
  }
}

/*  -------------------------------------
	Header 
  -------------------------------------*/
.l-header {
  width: 100%;
  padding: 40px 60px 30px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .l-header {
    padding: 20px 30px 15px;
  }
}
@media only screen and (max-width:480px) {
  .l-header {
    padding: 20px 15px 10px;
  }
}
.l-header h1 {
  margin: 0;
  padding: 0;
}
.l-header__logo {
  display: inline-block;
  margin: 0 0 30px;
}
@media only screen and (max-width:768px) {
  .l-header__logo {
    margin: 0 0 15px;
  }
}
.l-header__logo img {
  width: 175px;
  height: auto;
  display: inline-block;
  -webkit-transition: all 500ms 0s ease-in;
  transition: all 500ms 0s ease-in;
  line-height: 1em;
}
@media only screen and (max-width:768px) {
  .l-header__logo img {
    width: 120px;
  }
}
.l-header__search {
  position: absolute;
  left: 60px;
  top: 40px;
}
@media only screen and (max-width:768px) {
  .l-header__search {
    left: 30px;
    top: 25px;
    border-bottom: none;
  }
}
@media only screen and (max-width:480px) {
  .l-header__search {
    left: 15px;
  }
}
.l-header__search img {
  height: 20px;
  width: 20px;
}
.l-header__search input {
  border: none;
  background: none;
}
.l-header__search button {
  background: none;
  border: none;
}
.l-header__search button .s-btn img {
  height: 20px;
  width: 20px;
}
@media only screen and (max-width:768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.l-header__nav ul li {
  font-size: 1.7rem;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  min-height: 0vw;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 1.5em;
  line-height: 1em;
}
.l-header__nav ul li a {
  position: relative;
}
.l-header__nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: #333;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.l-header__nav ul li a:hover:after {
  width: 100%;
}

body.sticky .button_container {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  position: fixed;
  z-index: 99;
  top: 30px;
}
body.sticky .l-header {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  background: rgba(255, 255, 243, 0.9);
  position: fixed;
  z-index: 2;
  padding: 20px 60px 20px;
}
@media only screen and (max-width:812px) {
  body.sticky .l-header {
    -webkit-animation: inherit;
            animation: inherit;
    opacity: 1;
  }
}
@media only screen and (max-width:768px) {
  body.sticky .l-header {
    height: 75px;
  }
}
body.sticky .l-header__logo {
  margin: 0;
}
body.sticky .l-header__search {
  top: 30px;
}
body.sticky .l-header nav {
  -webkit-animation-name: fadeInLogo;
          animation-name: fadeInLogo;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  display: none;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*  -------------------------------------
	Footer
  -------------------------------------*/
.l-footer {
  background: #686761;
  color: #fff;
}
.l-footer.content {
  padding: 90px 0 60px;
}
@media only screen and (max-width:768px) {
  .l-footer.content {
    padding: 45px 0 30px;
  }
}
.l-footer a {
  color: #fff !important;
}
.l-footer__logo img {
  width: 190px;
  height: auto;
}
@media only screen and (max-width:969px) {
  .l-footer__logo img {
    width: 150px;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__logo img {
    width: 130px;
  }
}
@media only screen and (max-width:480px) {
  .l-footer__logo img {
    width: 100px;
  }
}
.l-footer__head {
  margin: 0 0 30px;
}
.l-footer__head dl {
  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;
  margin: 0;
}
.l-footer__head dl dt {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  margin-right: 15px;
}
.l-footer__head dl dd img {
  width: 50px;
}
@media only screen and (max-width:969px) {
  .l-footer__head dl dd img {
    width: 40px;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__head dl dd img {
    width: 30px;
  }
}
@media only screen and (max-width:480px) {
  .l-footer__head dl dd img {
    width: 20px;
  }
}
.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.l-footer__shopdata {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
@media only screen and (max-width:1200px) {
  .l-footer__shopdata {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
  }
}
@media only screen and (max-width:969px) {
  .l-footer__shopdata {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
  }
}
@media only screen and (max-width:480px) {
  .l-footer__shopdata {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
.l-footer__shopdata dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
@media only screen and (max-width:768px) {
  .l-footer__shopdata dl {
    display: block;
  }
}
.l-footer__shopdata dl:last-of-type {
  margin: 0;
}
.l-footer__shopdata dl dt {
  font-weight: 400;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}
.l-footer__nav {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
  border-left: 1px solid #cfcdc0;
  padding: 0 0 0 60px;
}
@media only screen and (max-width:1200px) {
  .l-footer__nav {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
    padding: 0 0 0 45px;
  }
}
@media only screen and (max-width:969px) {
  .l-footer__nav {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .l-footer__nav {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 0 0 0 20px;
  }
}
.l-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:969px) {
  .l-footer__nav ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer__nav ul li {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
  line-height: 2.5em;
  font-weight: 500;
}
@media only screen and (max-width:969px) {
  .l-footer__nav ul li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
  }
}
@media only screen and (max-width:687px) {
  .l-footer__nav ul li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
.l-footer__nav ul li ul {
  display: block;
  margin-top: 0.5em;
}
.l-footer__nav ul li ul li {
  max-width: 100%;
  font-weight: 400;
  font-size: 1.3rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  min-height: 0vw;
  position: relative;
  line-height: 1.4em;
  margin: 0 0 0.8em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.01em;
}
.l-footer__copyright {
  margin: 45px 0 0;
}
.l-footer__copyright p {
  font-size: 1.2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  min-height: 0vw;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}

/* 3.0 section
--------------------------------------------------------------*/
/* 4.0 contents
--------------------------------------------------------------*/
/*  -------------------------------------
	Content
  -------------------------------------*/
.content {
  padding: 120px 0;
}
@media only screen and (max-width:1200px) {
  .content {
    padding: 90px 0;
  }
}
@media only screen and (max-width:768px) {
  .content {
    padding: 60px 0;
  }
}
.content h2.c-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin: 0 0 10px;
  text-align: center;
}
.content p.c-sub_title {
  text-align: center;
  margin: 0 0 90px;
}
.content p.c-sub_title span {
  font-size: 140%;
}
@media only screen and (max-width:1200px) {
  .content p.c-sub_title {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width:768px) {
  .content p.c-sub_title {
    margin: 0 0 45px;
  }
}
.content .content__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.content .content__txt h3 {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  margin: 0 0 20px;
  line-height: 1.4em;
}
@media only screen and (max-width:991px) {
  .content .content__txt h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width:768px) {
  .content .content__txt h3 {
    font-size: 15px;
    margin: 0 0 10px;
  }
}
@media only screen and (max-width:991px) {
  .content .content__txt p {
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  .content .content__txt p {
    font-size: 12px;
  }
}

/*  -------------------------------------
	linkBtn
  -------------------------------------*/
.linkBtn {
  width: 270px;
  height: 80px;
  background: #fff;
  border: 1px solid #000;
  font-weight: 500;
  position: relative;
  margin: 90px auto 0;
  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;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
@media only screen and (max-width:1200px) {
  .linkBtn {
    margin: 60px auto 0;
  }
}
@media only screen and (max-width:768px) {
  .linkBtn {
    margin: 45px auto 0;
    width: 240px;
    height: 60px;
  }
}
@media only screen and (max-width:480px) {
  .linkBtn {
    width: calc(100% - 30px);
  }
}
.linkBtn span {
  position: relative;
  z-index: 3;
}
.linkBtn:hover {
  border: 1px solid #000;
}
.linkBtn:hover span {
  color: #fff !important;
}

.linkBtn_s {
  width: 240px;
  height: 60px;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*  -------------------------------------
	Top
  -------------------------------------*/
#top {
  padding-top: 0px;
  padding-bottom: 0;
  margin-bottom: 120px;
  /*border-bottom: 1px solid $line-color;*/
}
@media only screen and (max-width:1200px) {
  #top {
    margin-bottom: 90px;
  }
}
@media only screen and (max-width:768px) {
  #top {
    margin-bottom: 60px;
  }
}
#top .container-fluid {
  padding: 0;
}
#top .container-fluid .col-sm-12 {
  padding: 0;
  position: relative;
}
#top .container-fluid .col-sm-12 .slick1 {
  overflow: hidden;
  position: relative;
  /*
  div.img01 {
  	background-image: url(../images/slide00001.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
  }
  div.img02 {
      background-image: url(../images/slide002.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
  }
  div.img03 {
      background-image: url(../images/slide003.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
  }
  div.img04 {
      background-image: url(../images/slide004.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
  }
  div.img05 {
      background-image: url(../images/slide005.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
  }*/
}
#top .container-fluid .col-sm-12 .slick1 div {
  height: 650px;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width:1499px) {
  #top .container-fluid .col-sm-12 .slick1 div {
    height: 750px;
  }
}
@media only screen and (max-width:1360px) {
  #top .container-fluid .col-sm-12 .slick1 div {
    height: 550px;
  }
}
@media only screen and (max-width:1200px) {
  #top .container-fluid .col-sm-12 .slick1 div {
    height: 500px;
  }
}
@media only screen and (max-width:991px) {
  #top .container-fluid .col-sm-12 .slick1 div {
    height: 500px;
  }
}
@media only screen and (max-width:768px) {
  #top .container-fluid .col-sm-12 .slick1 div {
    height: 450px;
  }
}
@media only screen and (max-width:767px) {
  #top .container-fluid .col-sm-12 .slick1 div {
    border-radius: 0;
  }
}
@media only screen and (max-width:480px) {
  #top .container-fluid .col-sm-12 .slick1 div {
    height: 200px;
    width: 100%;
  }
}
#top .container-fluid .col-sm-12 .slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}
#top .container-fluid .col-sm-12 .slogan {
  position: absolute;
  left: -150px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width:991px) {
  #top .container-fluid .col-sm-12 .slogan {
    left: -120px;
  }
}
@media only screen and (max-width:768px) {
  #top .container-fluid .col-sm-12 .slogan {
    left: -90px;
  }
}
@media only screen and (max-width:480px) {
  #top .container-fluid .col-sm-12 .slogan {
    padding: 0;
    left: 30px;
    top: auto;
    bottom: 30px;
  }
}
#top .container-fluid .col-sm-12 .slogan p {
  font-size: 45px;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.4em;
  margin: 0;
}
#top .container-fluid .col-sm-12 .slogan p span {
  background: #fff;
  display: inline-block;
  margin-bottom: 0.2em;
  padding: 0 7px;
}
@media only screen and (max-width:768px) {
  #top .container-fluid .col-sm-12 .slogan p span {
    font-size: 21px;
  }
}
#top .container-fluid .col-sm-12 .slogan p span:nth-of-type(2) {
  margin-bottom: 0;
}
@media only screen and (max-width:1200px) {
  #top .container-fluid .col-sm-12 .slogan p {
    font-size: 36px;
  }
}
@media only screen and (max-width:991px) {
  #top .container-fluid .col-sm-12 .slogan p {
    font-size: 30px;
  }
}
@media only screen and (max-width:768px) {
  #top .container-fluid .col-sm-12 .slogan p {
    font-size: 21px;
    margin: 0 0 20px;
  }
}
@media only screen and (max-width:480px) {
  #top .container-fluid .col-sm-12 .slogan p {
    font-size: 24px;
  }
}
#top .container-fluid .news-topics {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#top .container-fluid .news-topics .topics-ttl {
  max-width: 15%;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  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;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  min-height: 0vw;
}
@media only screen and (max-width:991px) {
  #top .container-fluid .news-topics .topics-ttl {
    max-width: 20%;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}
@media only screen and (max-width:768px) {
  #top .container-fluid .news-topics .topics-ttl {
    font-size: 12px;
    max-width: 20%;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}
#top .container-fluid .news-topics .topics-ttl p {
  margin: 0;
}
#top .container-fluid .news-topics .topics-txt {
  max-width: 85%;
  -ms-flex-preferred-size: 85%;
      flex-basis: 85%;
  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;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:991px) {
  #top .container-fluid .news-topics .topics-txt {
    max-width: 80%;
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
}
@media only screen and (max-width:768px) {
  #top .container-fluid .news-topics .topics-txt {
    max-width: 80%;
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
}
#top .container-fluid .news-topics .topics-txt .ticker {
  width: 100%;
}
#top .container-fluid .news-topics .topics-txt .ticker ul {
  height: 60px;
  width: 100%;
}
#top .container-fluid .news-topics .topics-txt .ticker ul li {
  height: 60px;
  position: relative;
  width: 100%;
  display: none;
}
#top .container-fluid .news-topics .topics-txt .ticker ul li a {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  width: 100%;
}
@media only screen and (max-width:768px) {
  #top .container-fluid .news-topics .topics-txt .ticker ul li a {
    margin-top: -13px;
  }
}
#top .container-fluid .news-topics .topics-txt .ticker ul li a dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media only screen and (max-width:768px) {
  #top .container-fluid .news-topics .topics-txt .ticker ul li a dl {
    display: block;
  }
}
#top .container-fluid .news-topics .topics-txt .ticker ul li a dl dt {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  max-width: 15%;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width:991px) {
  #top .container-fluid .news-topics .topics-txt .ticker ul li a dl dt {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  #top .container-fluid .news-topics .topics-txt .ticker ul li a dl dt {
    font-size: 11px;
    max-width: 100%;
  }
}
#top .container-fluid .news-topics .topics-txt .ticker ul li a dl dd {
  -ms-flex-preferred-size: 85%;
      flex-basis: 85%;
  max-width: 85%;
}
@media only screen and (max-width:991px) {
  #top .container-fluid .news-topics .topics-txt .ticker ul li a dl dd {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    max-width: 80%;
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  #top .container-fluid .news-topics .topics-txt .ticker ul li a dl dd {
    font-size: 12px;
    max-width: 100%;
  }
}

/*  -------------------------------------
	Top-arrivals
  -------------------------------------*/
#top-arrivals {
  padding-top: 0;
}
#top-arrivals.content p.c-sub_title span {
  font-size: 180%;
  font-weight: 500;
}

.slick-items__img {
  margin: 0 1em;
}
.slick-items__img img {
  /*aspect-ratio: 263 / 351;*/
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
  margin: 0 0 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slick-items__title {
  font-family: "Jost", sans-serif;
  line-height: 1.6;
}

.c-post_date {
  color: #a2a197;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  line-height: 1em;
  margin: 0 0 10px;
}

/*  -------------------------------------
	Top-Category
  -------------------------------------*/
#top-category {
  background: #f0efdf;
}
#top-category .p-category li {
  -ms-flex-preferred-size: calc(100% / 3);
      flex-basis: calc(100% / 3);
  text-align: center;
  margin-bottom: 90px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  min-height: 0vw;
}
#top-category .p-category li:nth-of-type(7), #top-category .p-category li:nth-of-type(8) {
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  #top-category .p-category li:nth-of-type(7), #top-category .p-category li:nth-of-type(8) {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  #top-category .p-category li:nth-of-type(7), #top-category .p-category li:nth-of-type(8) {
    margin-bottom: 45px;
  }
}
#top-category .p-category li:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  #top-category .p-category li {
    -ms-flex-preferred-size: calc(100% / 2);
        flex-basis: calc(100% / 2);
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  #top-category .p-category li {
    margin-bottom: 45px;
  }
}
#top-category .p-category li img {
  height: 180px;
  margin: 0 auto 30px;
}
@media only screen and (max-width:768px) {
  #top-category .p-category li img {
    height: 130px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width:480px) {
  #top-category .p-category li img {
    height: 110px;
  }
}
#top-category .linkBtn {
  margin-top: 0;
}

/*  -------------------------------------
	Top-Feature
  -------------------------------------*/
.p-post {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-post__box {
  -ms-flex-preferred-size: 31.3%;
      flex-basis: 31.3%;
  max-width: 31.3%;
}
@media only screen and (max-width:480px) {
  .p-post__box {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin: 0 0 45px;
  }
  .p-post__box:last-of-type {
    margin: 0;
  }
}
.p-post__box img {
  margin: 0 0 20px;
}
.p-post__title {
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  min-height: 0vw;
  font-weight: 500;
}

/*  -------------------------------------
	Top-Journal
  -------------------------------------*/
@media only screen and (max-width:768px) {
  #top-journal .p-post, .p-journal-content .p-post {
    display: block;
  }
}
#top-journal .p-post__box, .p-journal-content .p-post__box {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  max-width: 48%;
  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;
  border-bottom: 1px solid #cfcdc0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width:768px) {
  #top-journal .p-post__box, .p-journal-content .p-post__box {
    max-width: 100%;
  }
}
#top-journal .p-post__box:nth-of-type(3), #top-journal .p-post__box:nth-of-type(4), .p-journal-content .p-post__box:nth-of-type(3), .p-journal-content .p-post__box:nth-of-type(4) {
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  #top-journal .p-post__box:nth-of-type(3), .p-journal-content .p-post__box:nth-of-type(3) {
    margin-bottom: 20px;
  }
}
#top-journal .p-post__img, .p-journal-content .p-post__img {
  width: 120px;
}
@media only screen and (max-width:768px) {
  #top-journal .p-post__img, .p-journal-content .p-post__img {
    width: 90px;
  }
}
#top-journal .p-post__img img, .p-journal-content .p-post__img img {
  aspect-ratio: 1/1;
  margin-bottom: 0;
}
#top-journal .p-post__txt, .p-journal-content .p-post__txt {
  width: calc(100% - 120px);
  padding-left: 20px;
}
#top-journal .p-post__txt .c-post_date, .p-journal-content .p-post__txt .c-post_date {
  margin: 0 0 5px;
}
#top-journal .p-post__title, .p-journal-content .p-post__title {
  font-size: 1.6rem;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  min-height: 0vw;
  font-weight: 500;
}

/*  -------------------------------------
	Top-info
  -------------------------------------*/
#top-info .c-sub_title {
  margin: 0 0 60px;
}
@media only screen and (max-width:768px) {
  #top-info .c-sub_title {
    margin: 0 0 45px;
  }
}
#top-info dl {
  padding-bottom: 15px;
  border-bottom: 1px solid #cfcdc0;
  margin-bottom: 15px;
}
#top-info dl:nth-of-type(3), #top-info dl:nth-of-type(4) {
  margin-bottom: 0;
}
#top-info dl dt {
  width: 90px;
}
#top-info dl dt img {
  aspect-ratio: 1/1;
  margin-bottom: 0;
  width: 100%;
}
#top-info dl dd {
  width: calc(100% - 90px);
  padding-left: 20px;
}
#top-info dl dd span {
  display: block;
}
#top-info dl dd span.c-post_date {
  margin: 0 0 5px;
}
@media only screen and (max-width:768px) {
  #top-info .col-sm-6:nth-of-type(1) {
    margin-bottom: 60px;
  }
}

/*  -------------------------------------
	Top-about
  -------------------------------------*/
#top-about .container-fluid {
  padding: 0;
}
#top-about .container-fluid .col-md-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px;
}
@media only screen and (max-width:768px) {
  #top-about .container-fluid .col-md-5 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 0;
  }
}
@media only screen and (max-width:480px) {
  #top-about .container-fluid .col-md-5 {
    padding: 0;
    padding-top: 30px;
  }
}
#top-about .container-fluid .col-md-5 .c-title, #top-about .container-fluid .col-md-5 .c-sub_title {
  text-align: left;
}
@media only screen and (max-width:768px) {
  #top-about .container-fluid .col-md-5 .c-title, #top-about .container-fluid .col-md-5 .c-sub_title {
    text-align: center;
  }
}
#top-about .container-fluid .col-md-5 .c-sub_title {
  margin: 0 0 30px;
}
#top-about .container-fluid .col-md-5 .c-txt {
  line-height: 2.2;
}
@media only screen and (max-width:768px) {
  #top-about .container-fluid .col-md-5 .c-txt {
    text-align: center;
  }
}
#top-about .container-fluid .col-md-5 .linkBtn {
  margin: 45px 0 0;
}
@media only screen and (max-width:768px) {
  #top-about .container-fluid .col-md-5 .linkBtn {
    margin: 45px auto 0;
  }
}

/*  -------------------------------------
	Top-insta
  -------------------------------------*/
#top-insta .p-insta__img {
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  max-width: 24%;
  margin: 0 0 2%;
}
#top-insta .p-insta__img:nth-child(5), #top-insta .p-insta__img:nth-child(6), #top-insta .p-insta__img:nth-child(7), #top-insta .p-insta__img:nth-child(8) {
  margin: 0;
}

/*  -------------------------------------
	Top-brand
  -------------------------------------*/
#top-brand {
  background: #f0efdf;
}
#top-brand .c-sub_title {
  margin: 0 0 45px;
}
#top-brand .p-brand__img {
  -ms-flex-preferred-size: 19%;
      flex-basis: 19%;
  max-width: 19%;
  margin: 0 0 2%;
}
#top-brand .p-brand__img:nth-child(11), #top-brand .p-brand__img:nth-child(12), #top-brand .p-brand__img:nth-child(13), #top-brand .p-brand__img:nth-child(14), #top-brand .p-brand__img:nth-child(15) {
  margin: 0;
}

/*  -------------------------------------
	page
  -------------------------------------*/
.page .p-pankuzu, .archive .p-pankuzu, .single .p-pankuzu, .search .p-pankuzu {
  padding: 16px 0;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.page .p-pankuzu .container-fluid, .archive .p-pankuzu .container-fluid, .single .p-pankuzu .container-fluid, .search .p-pankuzu .container-fluid {
  padding: 0 60px;
}
.page .l-main, .archive .l-main, .single .l-main, .search .l-main {
  padding-top: 0;
}
.page .p-page_title, .archive .p-page_title, .single .p-page_title, .search .p-page_title {
  text-align: center;
  padding-top: 0;
}
.page .p-page_title h1, .archive .p-page_title h1, .single .p-page_title h1, .search .p-page_title h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin: 30px 0;
  text-transform: uppercase;
}
.page .p-page_title .c-category_img, .archive .p-page_title .c-category_img, .single .p-page_title .c-category_img, .search .p-page_title .c-category_img {
  height: 190px;
  display: inline-block;
  margin-bottom: 30px;
}
@media only screen and (max-width:480px) {
  .page .p-page_title .c-category_img, .archive .p-page_title .c-category_img, .single .p-page_title .c-category_img, .search .p-page_title .c-category_img {
    height: 130px;
  }
}
.page .l-main .container-fluid, .archive .l-main .container-fluid, .single .l-main .container-fluid, .search .l-main .container-fluid {
  padding: 0 60px;
}
@media only screen and (max-width:768px) {
  .page .l-main .container-fluid, .archive .l-main .container-fluid, .single .l-main .container-fluid, .search .l-main .container-fluid {
    padding: 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .page .l-main .container-fluid, .archive .l-main .container-fluid, .single .l-main .container-fluid, .search .l-main .container-fluid {
    padding: 0 15px;
  }
}
.page .p-item, .archive .p-item, .single .p-item, .search .p-item {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page .p-item__content, .archive .p-item__content, .single .p-item__content, .search .p-item__content {
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
  max-width: 23%;
  margin: 0 1% 60px;
}
@media only screen and (max-width:768px) {
  .page .p-item__content, .archive .p-item__content, .single .p-item__content, .search .p-item__content {
    -ms-flex-preferred-size: 31.3%;
        flex-basis: 31.3%;
    max-width: 31.3%;
    margin: 0 1% 45px;
  }
}
@media only screen and (max-width:480px) {
  .page .p-item__content, .archive .p-item__content, .single .p-item__content, .search .p-item__content {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
    margin: 0 1% 30px;
  }
}
.page .p-item__content img, .archive .p-item__content img, .single .p-item__content img, .search .p-item__content img {
  aspect-ratio: 263/351;
  width: 100%;
}
.page .p-item__name, .page .p-item__price, .archive .p-item__name, .archive .p-item__price, .single .p-item__name, .single .p-item__price, .search .p-item__name, .search .p-item__price {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  min-height: 0vw;
  line-height: 1.6;
  margin: 1em 0 0.5em;
}
.page .p-item__price, .archive .p-item__price, .single .p-item__price, .search .p-item__price {
  margin: 0;
}
.page .p-item__name span, .archive .p-item__name span, .single .p-item__name span, .search .p-item__name span {
  font-size: clamp(1rem, 2vw, 1.2rem);
  min-height: 0vw;
  color: red;
  font-family: "Oswald", sans-serif;
  display: block;
}
.page .p-post__box, .archive .p-post__box, .single .p-post__box, .search .p-post__box {
  margin: 0 1% 60px;
}
@media only screen and (max-width:768px) {
  .page .p-post__box, .archive .p-post__box, .single .p-post__box, .search .p-post__box {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
    margin: 0 1% 30px;
  }
}
.page .p-post__box img, .archive .p-post__box img, .single .p-post__box img, .search .p-post__box img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.page .p-post__title, .archive .p-post__title, .single .p-post__title, .search .p-post__title {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  min-height: 0vw;
  line-height: 1.4em;
}
@media only screen and (max-width:991px) {
  .page .l-sidebar, .archive .l-sidebar, .single .l-sidebar, .search .l-sidebar {
    margin-top: 90px;
  }
}
@media only screen and (max-width:480px) {
  .page .l-sidebar, .archive .l-sidebar, .single .l-sidebar, .search .l-sidebar {
    margin-top: 60px;
  }
}
.page .l-sidebar form, .archive .l-sidebar form, .single .l-sidebar form, .search .l-sidebar form {
  border-bottom: 1px solid #cfcdc0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3px;
  width: 80%;
  max-width: 270px;
}
.page .l-sidebar form input, .archive .l-sidebar form input, .single .l-sidebar form input, .search .l-sidebar form input {
  border: none;
  background: none;
  width: 100%;
}
.page .l-sidebar form ::-webkit-input-placeholder, .archive .l-sidebar form ::-webkit-input-placeholder, .single .l-sidebar form ::-webkit-input-placeholder, .search .l-sidebar form ::-webkit-input-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.page .l-sidebar form ::-moz-placeholder, .archive .l-sidebar form ::-moz-placeholder, .single .l-sidebar form ::-moz-placeholder, .search .l-sidebar form ::-moz-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.page .l-sidebar form :-ms-input-placeholder, .archive .l-sidebar form :-ms-input-placeholder, .single .l-sidebar form :-ms-input-placeholder, .search .l-sidebar form :-ms-input-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.page .l-sidebar form ::-ms-input-placeholder, .archive .l-sidebar form ::-ms-input-placeholder, .single .l-sidebar form ::-ms-input-placeholder, .search .l-sidebar form ::-ms-input-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.page .l-sidebar form ::placeholder, .archive .l-sidebar form ::placeholder, .single .l-sidebar form ::placeholder, .search .l-sidebar form ::placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.page .l-sidebar form .wp-block-search__inside-wrapper, .archive .l-sidebar form .wp-block-search__inside-wrapper, .single .l-sidebar form .wp-block-search__inside-wrapper, .search .l-sidebar form .wp-block-search__inside-wrapper {
  position: relative;
}
.page .l-sidebar form button, .archive .l-sidebar form button, .single .l-sidebar form button, .search .l-sidebar form button {
  background: none;
  border: none;
  position: absolute;
  right: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
}
.page .l-sidebar form button:after, .archive .l-sidebar form button:after, .single .l-sidebar form button:after, .search .l-sidebar form button:after {
  content: "";
  background: url(../images/icon_search.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  visibility: initial;
  display: block;
  margin-top: -20px;
}
.page .l-sidebar form #s-btn, .archive .l-sidebar form #s-btn, .single .l-sidebar form #s-btn, .search .l-sidebar form #s-btn {
  width: 20px;
}
.page .l-sidebar .c-side_title, .archive .l-sidebar .c-side_title, .single .l-sidebar .c-side_title, .search .l-sidebar .c-side_title {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  min-height: 0vw;
  margin: 60px 0 10px;
}
@media only screen and (max-width:480px) {
  .page .l-sidebar .c-side_title, .archive .l-sidebar .c-side_title, .single .l-sidebar .c-side_title, .search .l-sidebar .c-side_title {
    margin: 30px 0 5px;
  }
}
.page .l-sidebar .c-side_sub_title, .archive .l-sidebar .c-side_sub_title, .single .l-sidebar .c-side_sub_title, .search .l-sidebar .c-side_sub_title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  min-height: 0vw;
}
.page .l-sidebar ul, .archive .l-sidebar ul, .single .l-sidebar ul, .search .l-sidebar ul {
  margin: 1em 0;
  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  min-height: 0vw;
}
.page .l-sidebar label.wp-block-search__label, .archive .l-sidebar label.wp-block-search__label, .single .l-sidebar label.wp-block-search__label, .search .l-sidebar label.wp-block-search__label {
  display: none;
}
.page .l-sidebar .list-custom-taxonomy-widget .postform, .archive .l-sidebar .list-custom-taxonomy-widget .postform, .single .l-sidebar .list-custom-taxonomy-widget .postform, .search .l-sidebar .list-custom-taxonomy-widget .postform {
  background: none;
  border: none;
}
.page .l-sidebar .list-custom-taxonomy-widget input[type=submit], .archive .l-sidebar .list-custom-taxonomy-widget input[type=submit], .single .l-sidebar .list-custom-taxonomy-widget input[type=submit], .search .l-sidebar .list-custom-taxonomy-widget input[type=submit] {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background: url(../images/icon_next_b.svg) no-repeat;
  background-size: 13px 13px;
  background-position: right center;
}

.p-tag {
  text-align: center;
  width: 80%;
  margin: 0 auto 120px;
}
@media only screen and (max-width:768px) {
  .p-tag {
    width: 100%;
    margin: 0 auto 90px;
  }
}
@media only screen and (max-width:480px) {
  .p-tag {
    margin: 0 auto 45px;
  }
}
.p-tag__title {
  margin: 0 0 45px;
}
@media only screen and (max-width:480px) {
  .p-tag__title {
    margin: 0 0 30px;
  }
}
.p-tag__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.p-tag__content li {
  margin: 0.5em;
}
.p-tag__content li a {
  background: #f0efdf;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
  color: #686761 !important;
  padding: 0.8em 1.6em;
  border-radius: 2em;
  display: block;
}
.p-tag__content li a:before {
  content: "#";
}

.p-item_slide img {
  width: 100%;
  aspect-ratio: 3/4;
}

/*  -------------------------------------
	archive:styling
  -------------------------------------*/
.archive .content p.c-sub_title {
  margin: 0;
}

/*  -------------------------------------
	page:brand
  -------------------------------------*/
.brand .c-sub_title {
  margin-bottom: 30px !important;
}
.brand .p-brand-nav {
  width: 80%;
  margin: 0 auto 120px;
}
.brand .p-brand-nav__alfa {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.brand .p-brand-nav__alfa li {
  margin: 5px;
}
.brand .p-brand-nav__alfa li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #686761;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
  font-family: "Oswald", sans-serif;
  color: #686761;
}
.brand .p-brand-nav__alfa li:last-child a {
  width: 100px;
}
.brand .p-brand-nav form {
  border-bottom: 1px solid #cfcdc0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3px;
  width: 80%;
  max-width: 270px;
  margin: 0 auto 60px;
}
.brand .p-brand-nav form input {
  border: none;
  background: none;
}
.brand .p-brand-nav form ::-webkit-input-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.brand .p-brand-nav form ::-moz-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.brand .p-brand-nav form :-ms-input-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.brand .p-brand-nav form ::-ms-input-placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.brand .p-brand-nav form ::placeholder {
  color: #a2a197;
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
}
.brand .p-brand-nav form button {
  background: none;
  border: none;
}
.brand .p-brand-nav form #s-btn {
  width: 20px;
}
.brand .p-brand-content__alfa {
  font-family: "Oswald", sans-serif;
}
.brand .p-brand-content__alfa__title {
  color: #333;
  font-size: clamp(1.8rem, 2vw, 3rem) !important;
  font-weight: 700;
  border-bottom: 1px solid #cfcdc0;
  padding: 0 0 15px;
  margin: 0 0 30px;
}
.brand .p-brand-content__alfa ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.brand .p-brand-content__alfa ul li {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  margin: 0 0 60px;
  padding-right: 1em;
}
@media only screen and (max-width:768px) {
  .brand .p-brand-content__alfa ul li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
  }
}

/*  -------------------------------------
	page:size-guide
  -------------------------------------*/
.size-guide .content p.c-sub_title {
  margin-bottom: 0;
}
.size-guide .l-main .container {
  background: #fff;
  padding: 60px 0;
}

/*  -------------------------------------
	archive:journal
  -------------------------------------*/
.post-type-archive-journal .content p.c-sub_title,
.tax-journal-tag .content p.c-sub_title {
  margin: 0;
}
.post-type-archive-journal .p-post__box,
.tax-journal-tag .p-post__box {
  margin: 0 1% 60px;
}
@media only screen and (max-width:768px) {
  .post-type-archive-journal .p-post__box,
.tax-journal-tag .p-post__box {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
    margin: 0 1% 30px;
  }
}
.post-type-archive-journal .p-post__box img,
.tax-journal-tag .p-post__box img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-type-archive-journal .p-post__title,
.tax-journal-tag .p-post__title {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  min-height: 0vw;
}
.post-type-archive-journal .all-page-pager,
.tax-journal-tag .all-page-pager {
  margin: 0 0 90px;
}
@media only screen and (max-width:480px) {
  .post-type-archive-journal .all-page-pager,
.tax-journal-tag .all-page-pager {
    margin: 0 0 45px;
  }
}
.post-type-archive-journal .p-tag,
.tax-journal-tag .p-tag {
  margin-bottom: 0;
}

.p-tag-menu {
  margin: 90px 0 0;
}
@media only screen and (max-width:768px) {
  .p-tag-menu {
    margin: 60px 0 0;
  }
}
@media only screen and (max-width:480px) {
  .p-tag-menu {
    margin: 45px 0 0;
  }
}
.p-tag-menu h2 {
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  min-height: 0vw;
  margin: 0 0 30px;
}
.p-tag-menu .p-tag {
  margin-bottom: 0;
  width: 100%;
}

/*  -------------------------------------
	single:single-journal
  -------------------------------------*/
.single-journal .l-main {
  padding-top: 60px !important;
}
@media only screen and (max-width:768px) {
  .single-journal .l-main {
    padding-top: 30px !important;
  }
}
@media only screen and (max-width:480px) {
  .single-journal .l-main {
    padding-top: 15px !important;
  }
}
.single-journal .l-main .p-single-content__top img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

/*  -------------------------------------
	archive:archives
  -------------------------------------*/
@media only screen and (min-width:1499px) {
  .post-type-archive-archives .p-post__box,
.tax-archives-cat .p-post__box,
.tax-archives-tag .p-post__box {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
    max-width: 23%;
  }
}
.post-type-archive-archives .p-post__box img,
.tax-archives-cat .p-post__box img,
.tax-archives-tag .p-post__box img {
  aspect-ratio: 3/4;
}
.post-type-archive-archives .p-post__title,
.tax-archives-cat .p-post__title,
.tax-archives-tag .p-post__title {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  min-height: 0vw;
  line-height: 1.6;
  margin: 1em 0 0.5em;
}

/*  -------------------------------------
	single
  -------------------------------------*/
.single .p-page_title {
  padding: 0;
}
.single .p-page_title .c-sub_title {
  margin-bottom: 30px;
}
.single .l-main {
  padding-top: 120px;
}
@media only screen and (max-width:991px) {
  .single .l-main {
    padding-top: 60px;
  }
}
@media only screen and (max-width:768px) {
  .single .l-main {
    padding-top: 30px;
  }
}
.single .l-main .p-single_item_content {
  padding-left: 60px;
}
@media only screen and (max-width:991px) {
  .single .l-main .p-single_item_content {
    padding: 90px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .single .l-main .p-single_item_content {
    padding: 60px 0 0;
  }
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single_item_content {
    padding: 30px 0 0;
  }
}
.single .l-main .p-single_item_content__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .l-main .p-single_item_content__brand dt {
  font-weight: 400;
  margin-right: 1em;
}
.single .l-main .p-single_item_content__brand dd {
  font-family: "Jost", sans-serif, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
}
.single .l-main .p-single_item_content__brand dd ul {
  margin-bottom: 0;
}
.single .l-main .p-single_item_content__name {
  font-family: "Jost", sans-serif, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  text-align: left;
  margin: 30px 0;
  line-height: 1.6;
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single_item_content__name {
    margin: 15px 0;
  }
}
.single .l-main .p-single_item_content__price {
  font-family: "Jost", sans-serif, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(1.8rem, 2vw, 3rem);
  font-weight: 500;
  line-height: 1em;
  margin: 30px 0;
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single_item_content__price {
    margin: 20px 0;
  }
}
.single .l-main .p-single_item_content__price span {
  font-size: 50%;
}
.single .l-main .p-single_item_content__link {
  margin: 30px 0;
  width: 100%;
  height: 60px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single_item_content__link {
    margin: 20px 0;
    height: 45px;
  }
}
.single .l-main .p-single_item_content__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single .l-main .p-single_item_content__detail dt {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}
.single .l-main .p-single_item_content__detail dd {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  max-width: 80%;
}
.single .l-main .p-single_item_content h4 {
  margin: 60px 0 20px;
}
.single .l-main .p-single_item_content__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 60px 0 0;
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single_item_content__share {
    margin: 45px 0 0;
  }
}
.single .l-main .p-single_item_content__share dt {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  margin-right: 1em;
}
.single .l-main .p-single_item_content__share dd {
  margin-right: 1em;
}
.single .l-main .p-single_item_content__share dd img {
  height: 20px;
}
.single .l-main .p-single_item_content__desc {
  margin: 120px 0 0;
}
@media only screen and (max-width:991px) {
  .single .l-main .p-single_item_content__desc {
    margin: 90px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .single .l-main .p-single_item_content__desc {
    margin: 60px 0 0;
  }
}
.single .l-main .p-single_item_content__desc h3 {
  text-align: center;
  margin: 0 0 15px;
  padding: 15px;
  border-bottom: 1px solid #000;
  font-size: clamp(1.4rem, 2vw, 2.1rem) !important;
}
.single .l-main .p-single_item_content__desc img {
  width: 100%;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.single .l-main .p-single_item_content .p-tag {
  margin: 45px 0;
  width: 100%;
}
.single .l-main .p-single_item_content .p-tag__content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.single .l-main .p-single_item_content .p-tag__content li a {
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 0.6em 1.4em;
}
.single .l-main .p-single-content__top img {
  width: 100%;
  margin: 0 0 90px;
}
@media only screen and (max-width:768px) {
  .single .l-main .p-single-content__top img {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single-content__top img {
    margin: 0 0 45px;
  }
}
.single .l-main .p-single-content__top h1 {
  text-align: left;
  margin: 0 0 30px;
}
.single .l-main .p-single-content__top .c-meta {
  color: #686761;
  font-family: "Jost", sans-serif, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.2;
  font-weight: 300;
}
.single .l-main .p-single-content__top .c-meta__date {
  margin-right: 2em;
  font-size: clamp(1rem, 2vw, 1.4rem);
  min-height: 0vw;
}
.single .l-main .p-single-content__top .c-meta__tag a {
  margin-right: 1em;
  font-size: clamp(1rem, 2vw, 1.4rem);
  min-height: 0vw;
}
.single .l-main .p-single-content .entry-content h2 {
  font-size: clamp(1.8rem, 2vw, 2.8rem) !important;
  margin: 90px 0 45px;
}
@media only screen and (max-width:768px) {
  .single .l-main .p-single-content .entry-content h2 {
    margin: 60px 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single-content .entry-content h2 {
    margin: 45px 0 20px;
  }
}
.single .l-main .p-single-content .entry-content p {
  line-height: 2.2;
  font-size: clamp(1.2rem, 2vw, 1.8rem) !important;
  min-height: 0vw;
}
.single .l-main .p-single-content .entry-content img {
  width: 100%;
  height: auto;
  margin: 45px 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width:768px) {
  .single .l-main .p-single-content .entry-content img {
    margin: 30px 0;
  }
}
@media only screen and (max-width:480px) {
  .single .l-main .p-single-content .entry-content img {
    margin: 20px 0;
  }
}
.single .p-related-post {
  margin: 90px 0 0;
}
@media only screen and (max-width:768px) {
  .single .p-related-post {
    margin: 60px 0 0;
  }
}
@media only screen and (max-width:480px) {
  .single .p-related-post {
    margin: 45px 0 0;
  }
}
.single .p-related-post .p-post {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single .p-related-post .p-post__box {
  margin: 0 1% 2%;
  padding-bottom: 2%;
}
@media only screen and (max-width:768px) {
  .single .p-related-post .p-post__box {
    margin: 0 0 3%;
    padding-bottom: 3%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
.single .p-related-post .p-post__box img {
  margin: 0;
  aspect-ratio: 3/2;
}
.single h2.c-title {
  font-size: clamp(1.4rem, 2vw, 2.4rem) !important;
  margin: 0 0 45px;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media only screen and (max-width:480px) {
  .single h2.c-title {
    margin: 0 0 20px;
  }
}
.single .p-related_item, .single .p-checked_item {
  padding: 120px 0 0;
}
@media only screen and (max-width:991px) {
  .single .p-related_item, .single .p-checked_item {
    padding: 90px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .single .p-related_item, .single .p-checked_item {
    padding: 60px 0 0;
  }
}
@media only screen and (max-width:480px) {
  .single .p-related_item, .single .p-checked_item {
    padding: 30px 0 0;
  }
}
.single .p-related_item .p-item, .single .p-checked_item .p-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.single .p-related_item .p-item__content, .single .p-checked_item .p-item__content {
  -ms-flex-preferred-size: 19%;
      flex-basis: 19%;
  max-width: 19%;
  margin: 0 1em 2em;
}
@media only screen and (max-width:480px) {
  .single .p-related_item .p-item__content, .single .p-checked_item .p-item__content {
    -ms-flex-preferred-size: 46%;
        flex-basis: 46%;
    max-width: 46%;
    margin: 0 0.5em 2em;
  }
}
.single .p-styling_item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single .p-styling_item__content {
  -ms-flex-preferred-size: 31.3%;
      flex-basis: 31.3%;
  max-width: 31.3%;
  margin: 0 2% 2% 0;
}
.single .p-styling_item__content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  min-height: 0vw;
  font-family: "Jost", sans-serif, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.2;
  font-weight: 300;
}
.single .p-styling_item__content__name {
  margin: 1em 0;
}

/*  -------------------------------------
	single:styling
  -------------------------------------*/
.single-styling h1 {
  margin-top: 0 !important;
  font-weight: 500 !important;
}
.single-styling .p-styling_menu {
  margin: 120px 0 0;
}
@media only screen and (max-width:991px) {
  .single-styling .p-styling_menu {
    margin: 90px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .single-styling .p-styling_menu {
    margin: 60px 0 0;
  }
}
.single-styling .p-styling_menu h2.c-title {
  font-weight: 500;
}
.single-styling .p-styling_menu .p-tag {
  margin-bottom: 0;
}
.single-styling .p-styling_item__content img {
  aspect-ratio: 3/4;
  width: 100%;
}

/*  -------------------------------------
	single:feature
  -------------------------------------*/
.single-feature .p-feature-top {
  width: 100%;
  height: 650px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.single-feature .p-feature-top__txt {
  color: #fff;
}
.single-feature .p-feature-top__txt a {
  color: #fff !important;
}
.single-feature .p-feature-top__txt .c-title {
  text-align: left;
  font-weight: 400 !important;
  margin: 0 0 15px;
  line-height: 1.6;
}
.single-feature .p-feature-top__txt .breadcrumbs {
  padding: 16px 0;
}
.single-feature .p-feature-top:before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent)) !important;
  background: linear-gradient(to top, #000, transparent) !important;
  opacity: 0.6 !important;
  position: absolute !important;
  height: 60% !important;
  width: 100% !important;
  left: 0px !important;
  bottom: 0px !important;
}
.single-feature .p-single-content img {
  width: 100%;
  margin: 45px 0;
}
.single-feature .p-single-content__top img {
  margin: 0 0 90px;
}
@media only screen and (max-width:768px) {
  .single-feature .p-single-content__top img {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width:480px) {
  .single-feature .p-single-content__top img {
    margin: 0 0 45px;
  }
}
.single-feature .p-single-content__top h1 {
  text-align: left;
  margin: 0 0 30px;
}
.single-feature .p-single-content__top .c-meta {
  color: #686761;
  font-family: "Jost", sans-serif, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.2;
  font-weight: 300;
}
.single-feature .p-single-content__top .c-meta__date {
  margin-right: 2em;
  font-size: clamp(1rem, 2vw, 1.4rem);
  min-height: 0vw;
}
.single-feature .p-single-content__top .c-meta__tag a {
  margin-right: 1em;
  font-size: clamp(1rem, 2vw, 1.4rem);
  min-height: 0vw;
}
.single-feature .p-single-content #toc_container {
  margin: 90px auto 0;
  width: 80%;
  background: #f0efdf;
  padding: 45px;
  border: none;
}
.single-feature .p-single-content #toc_container .toc_title {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  margin: 0 0 30px;
}
.single-feature .p-single-content #toc_container .toc_list {
  margin: 0;
}
.single-feature .p-single-content #toc_container .toc_list li {
  line-height: 2.2;
}
.single-feature .p-single_item_content__share {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-feature .p-single_item_content__share dt {
  text-align: center;
  width: 100%;
  margin: 0 0 20px;
}
.single-feature .p-single_item_content__share dd img {
  height: 30px;
}

.p-event-detail {
  background: #f0efdf;
  padding: 40px;
  margin: 90px auto;
  width: 80%;
}
@media only screen and (max-width:768px) {
  .p-event-detail {
    margin: 60px auto;
  }
}
@media only screen and (max-width:480px) {
  .p-event-detail {
    width: 100%;
    margin: 45px auto;
    padding: 20px;
  }
}
.p-event-detail__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  min-height: 0vw;
  text-align: center;
  margin: 0 0 30px;
  line-height: 1em;
}
@media only screen and (max-width:480px) {
  .p-event-detail__title {
    margin: 0 0 20px;
  }
}
.p-event-detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-event-detail dl:last-of-type {
  margin-bottom: 0;
}
.p-event-detail dl dt {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  max-width: 60px;
  font-weight: 400;
}
.p-event-detail dl dd {
  -ms-flex-preferred-size: 90%;
      flex-basis: 90%;
  max-width: calc(100% - 60px);
}

/*  -------------------------------------
	page:about
  -------------------------------------*/
.about .p-page_title .c-sub_title {
  margin-bottom: 30px;
}
@media only screen and (max-width:480px) {
  .about .l-main .p-page-content {
    margin: 0 0 60px;
  }
}
.about .l-main .p-page-content__top {
  margin: 0 0 90px;
}
@media only screen and (max-width:991px) {
  .about .l-main .p-page-content__top {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width:480px) {
  .about .l-main .p-page-content__top {
    margin: 0 0 45px;
  }
}
.about .l-main .p-page-content p {
  line-height: 2.2;
  margin: 0 auto 1em;
  width: 95%;
  font-family: "Jost", sans-serif, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
}
.about .l-main .p-page-content p:last-of-type {
  margin-bottom: 0;
}
.about .l-main .container-fluid {
  padding: 0;
}
.about .l-main .container-fluid .p-page-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10% 0;
  /*&:last-of-type{
  	margin-bottom: 0;
  }*/
}
.about .l-main .container-fluid .p-page-gallery__01 {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  max-width: 60%;
}
.about .l-main .container-fluid .p-page-gallery__02 {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  max-width: 30%;
  padding-top: 5%;
}
.about .l-main .container-fluid .p-page-gallery__03 {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
  max-width: 55%;
  padding-left: 10%;
}
.about .l-main .container-fluid .p-page-gallery__04 {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
  padding-top: 5%;
}
.about .l-main .p-shop-info {
  margin-top: 10%;
}
@media only screen and (max-width:767px) {
  .about .l-main .p-shop-info {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width:991px) {
  .about .l-main .p-shop-info__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width:767px) {
  .about .l-main .p-shop-info__img {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  .about .l-main .p-shop-info__img {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width:991px) {
  .about .l-main .p-shop-info__detail {
    padding-left: 30px;
  }
}
@media only screen and (max-width:767px) {
  .about .l-main .p-shop-info__detail {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.about .l-main .p-shop-info__detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width:480px) {
  .about .l-main .p-shop-info__detail dl {
    margin: 0 0 15px;
  }
}
.about .l-main .p-shop-info__detail dl dt {
  font-weight: 400;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}
.about .l-main .p-shop-info__detail dl dd {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  max-width: 80%;
}
.about .l-main .p-shop-info__name {
  margin: 0 0 30px;
}
@media only screen and (max-width:480px) {
  .about .l-main .p-shop-info__name {
    margin: 0 0 20px;
  }
}
.about .l-main .p-shop-info__address {
  margin: 0 0 20px;
}
@media only screen and (max-width:480px) {
  .about .l-main .p-shop-info__address {
    margin: 0 0 15px;
  }
}
.about .l-main .p-shop-info__access {
  font-size: clamp(1rem, 2vw, 1.3rem) !important;
  min-height: 0vw;
  margin: 0 0 20px;
}
@media only screen and (max-width:480px) {
  .about .l-main .p-shop-info__access {
    margin: 0 0 15px;
  }
}
.about .l-main .p-shop-info__map {
  font-family: "Jost", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1em;
}
.about .l-main .p-shop-info__map:after {
  content: "〉";
  margin-left: 1em;
  font-size: 80%;
}
.about .l-main .container .p-page-gallery ul li {
  -ms-flex-preferred-size: 31.3%;
      flex-basis: 31.3%;
  max-width: 31.3%;
  margin-bottom: 3%;
}
.about .l-main .container .p-page-gallery ul li:last-child, .about .l-main .container .p-page-gallery ul li:nth-last-child(2), .about .l-main .container .p-page-gallery ul li:nth-last-child(3) {
  margin-bottom: 0;
}
@media only screen and (max-width:480px) {
  .about .l-main .container .p-page-gallery ul li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
  }
  .about .l-main .container .p-page-gallery ul li:nth-last-child(3) {
    margin-bottom: 3%;
  }
  .about .l-main .container .p-page-gallery ul li:last-child, .about .l-main .container .p-page-gallery ul li:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.about .l-main .p-calendar {
  padding: 120px 0;
  margin: 120px 0;
  background: #f0efdf;
}
@media only screen and (max-width:991px) {
  .about .l-main .p-calendar {
    padding: 90px 0;
    margin: 90px 0;
  }
}
@media only screen and (max-width:768px) {
  .about .l-main .p-calendar {
    padding: 60px 0;
    margin: 60px 0;
  }
}
@media only screen and (max-width:480px) {
  .about .l-main .p-calendar {
    padding: 45px 0;
    margin: 45px 0;
  }
}
.about .l-main .p-bnr__content {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  max-width: 48%;
}
@media only screen and (max-width:480px) {
  .about .l-main .p-bnr__content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .about .l-main .p-bnr__content:first-of-type {
    margin-bottom: 30px;
  }
}

.p-calendar, #top-calendar {
  padding: 120px 0;
  margin: 120px 0;
  background: #f0efdf;
}
@media only screen and (max-width:991px) {
  .p-calendar, #top-calendar {
    padding: 90px 0;
    margin: 90px 0;
  }
}
@media only screen and (max-width:768px) {
  .p-calendar, #top-calendar {
    padding: 60px 0;
    margin: 60px 0;
  }
}
@media only screen and (max-width:480px) {
  .p-calendar, #top-calendar {
    padding: 45px 0;
    margin: 45px 0;
  }
}
.p-calendar #calendar .fc-center h2, #top-calendar #calendar .fc-center h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  margin: 10px 0;
}
.p-calendar #calendar .fc-view-container, #top-calendar #calendar .fc-view-container {
  font-family: "Oswald", sans-serif;
  color: #686761;
}
.p-calendar #calendar th, .p-calendar #calendar td, #top-calendar #calendar th, #top-calendar #calendar td {
  border-color: #686761 !important;
}

#top-calendar {
  margin: 0;
}

/*  -------------------------------------
	page search
  -------------------------------------*/
.search .p-page_title .c-title {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
}

/*  -------------------------------------
	page 404
  -------------------------------------*/
.error404 .p-page_title {
  padding: 0;
}
.error404 .l-main {
  padding-top: 0;
  text-align: center;
}

/*  -------------------------------------
	navigation
  -------------------------------------*/
.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 60px 0 0;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
}
@media only screen and (max-width:480px) {
  .navigation {
    font-size: 12px;
  }
}
.navigation .alignleft {
  position: relative;
  padding-left: 2em;
}
.navigation .alignleft:before {
  content: "";
  background: url(../images/iconChevronL.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width:480px) {
  .navigation .alignleft:before {
    width: 12px;
    height: 12px;
  }
}
.navigation .alignright {
  position: relative;
  padding-right: 2em;
}
.navigation .alignright:before {
  content: "";
  background: url(../images/iconChevron.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width:480px) {
  .navigation .alignright:before {
    width: 12px;
    height: 12px;
  }
}

/*  -------------------------------------
	page:contact
  -------------------------------------*/
.contact .p-page_title .c-sub_title {
  margin: 0 0 30px;
}
.contact .l-main .mw_wp_form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 60px;
}
@media only screen and (max-width:991px) {
  .contact .l-main .mw_wp_form dl {
    margin: 0 0 45px;
  }
}
@media only screen and (max-width:687px) {
  .contact .l-main .mw_wp_form dl {
    display: block;
  }
}
.contact .l-main .mw_wp_form dl dt {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
  color: #333;
  font-weight: normal;
}
@media only screen and (max-width:687px) {
  .contact .l-main .mw_wp_form dl dt {
    max-width: 100%;
    margin: 0 0 15px;
  }
}
.contact .l-main .mw_wp_form dl dd {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  max-width: 65%;
}
@media only screen and (max-width:687px) {
  .contact .l-main .mw_wp_form dl dd {
    max-width: 100%;
  }
}
.contact .l-main .mw_wp_form dl dd input {
  border: none;
  border-bottom: 1px solid #999;
  width: 100%;
  padding: 0 0.5em 0.5em;
  border-radius: 0;
  background: none;
}
.contact .l-main .mw_wp_form dl dd textarea {
  width: 100%;
  border: none;
  background: #f0efdf;
  height: 250px;
  padding: 1em;
}
@media only screen and (max-width:991px) {
  .contact .l-main .mw_wp_form dl dd textarea {
    height: 200px;
  }
}
.contact .l-main .mw_wp_form dl dd span {
  display: block;
  font-weight: normal;
}
.contact .l-main .mw_wp_form dl dd span label {
  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;
  margin: 0 0 5px;
}
.contact .l-main .mw_wp_form dl dd span label input {
  margin-right: 5px;
  width: auto;
}
.contact .l-main .mw_wp_form #submit-wrap input {
  margin-left: 1em;
  margin-right: 1em;
}
.contact .l-main .mw_wp_form .linkBtn {
  background: none;
}
.contact .l-main .mw_wp_form .linkBtn input {
  background: none;
  border: none;
  display: block;
  width: 270px;
  height: 80px;
}

/*  -------------------------------------
	page:thanks
  -------------------------------------*/
.thanks .p-page_title {
  padding-bottom: 0;
}

/*  -------------------------------------
	page:privacy
  -------------------------------------*/
.privacy .p-page_title .c-sub_title, .legal .p-page_title .c-sub_title {
  margin: 0 0 30px;
}
.privacy .p-page-content, .legal .p-page-content {
  margin: 90px 0;
}
@media only screen and (max-width:768px) {
  .privacy .p-page-content, .legal .p-page-content {
    margin: 60px 0;
  }
}
@media only screen and (max-width:480px) {
  .privacy .p-page-content, .legal .p-page-content {
    margin: 45px 0;
  }
}
.privacy .p-page-content:last-of-type, .legal .p-page-content:last-of-type {
  margin-bottom: 0;
}
.privacy .p-page-content h2, .legal .p-page-content h2 {
  font-size: clamp(1.4rem, 2vw, 2.1rem) !important;
  min-height: 0vw;
  border-bottom: 1px solid #333;
  padding: 0 0 15px;
  margin: 0 0 30px;
  font-weight: 400;
}
@media only screen and (max-width:768px) {
  .privacy .p-page-content h2, .legal .p-page-content h2 {
    padding: 0 0 10px;
    margin: 0 0 20px;
  }
}
.privacy .p-page-content ul, .legal .p-page-content ul {
  margin: 1em 0;
}
.privacy .p-page-content ul li, .legal .p-page-content ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.privacy .p-page-content ul li:last-child, .legal .p-page-content ul li:last-child {
  margin-bottom: 0;
}
.privacy .p-page-content ul li:before, .legal .p-page-content ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.legal .p-page-content:first-of-type {
  margin-top: 0;
}

#sb_instagram .sbi_follow_btn a, #sb_instagram .sbi_follow_btn a {
  width: 270px;
  height: 80px;
  background: #fff;
  border: 1px solid #000;
  font-weight: 500;
  position: relative;
  margin: 45px auto 0;
  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;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  border-radius: 0 !important;
}
#sb_instagram .sbi_follow_btn a span, #sb_instagram .sbi_follow_btn a svg, #sb_instagram .sbi_follow_btn a span, #sb_instagram .sbi_follow_btn a svg {
  position: relative;
}
#sb_instagram .sbi_follow_btn a:before, #sb_instagram .sbi_follow_btn a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
#sb_instagram .sbi_follow_btn a:hover, #sb_instagram .sbi_follow_btn a:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
#sb_instagram .sbi_follow_btn a:hover span, #sb_instagram .sbi_follow_btn a:hover svg, #sb_instagram .sbi_follow_btn a:hover span, #sb_instagram .sbi_follow_btn a:hover svg {
  color: #fff !important;
  z-index: 2;
}
#sb_instagram .sbi_follow_btn a:hover:before, #sb_instagram .sbi_follow_btn a:hover:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* 5.0 drawer
--------------------------------------------------------------*/
h1 {
  position: relative;
  text-align: center;
}

.button_container {
  position: fixed;
  top: 40px;
  right: 60px;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media only screen and (max-width:768px) {
  .button_container {
    top: 30px;
    right: 30px;
    width: 24px;
    height: 10px;
  }
}
@media only screen and (max-width:480px) {
  .button_container {
    right: 15px;
  }
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  -webkit-transform: translateY(0px) translateX(0) rotate(45deg);
          transform: translateY(0px) translateX(0) rotate(45deg);
  background: #000;
}
@media only screen and (max-width:768px) {
  .button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
            transform: translateY(8px) translateX(0) rotate(45deg);
  }
}
.button_container.active .middle {
  opacity: 0;
  background: #000;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-16px) translateX(0) rotate(-45deg);
          transform: translateY(-16px) translateX(0) rotate(-45deg);
  background: #000;
}
@media only screen and (max-width:768px) {
  .button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
            transform: translateY(-8px) translateX(0) rotate(-45deg);
  }
}
.button_container.active span:nth-of-type(2) {
  top: 16px;
}
@media only screen and (max-width:768px) {
  .button_container.active span:nth-of-type(2) {
    top: 16px;
  }
}
.button_container span {
  background: #000;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
@media only screen and (max-width:768px) {
  .button_container span:nth-of-type(2) {
    top: 8px;
  }
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
@media only screen and (max-width:768px) {
  .button_container span:nth-of-type(3) {
    top: 16px;
  }
}

.overlay {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 10;
}
.overlay.open {
  opacity: 0.95;
  visibility: visible;
  height: 100%;
  z-index: 99;
}
.overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
          animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
  text-align: left;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(9) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.overlay.open li:nth-of-type(10) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.overlay nav {
  position: relative;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  min-height: 0vw;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 300;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  padding: 4% 0;
  font-weight: 500;
}
.overlay ul li:last-child {
  margin-bottom: 0;
}
.overlay ul li a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  font-size: 1.7rem;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.overlay ul li a span {
  width: 110px;
  display: inline-block;
  font-size: 18px;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 0%;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  height: 1px;
  background: #333;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.overlay ul li ul {
  display: block;
  margin: 0.5em 0;
  font-weight: 400;
}
.overlay ul li ul li {
  height: auto;
  font-weight: 400;
  padding: 2% 0;
  line-height: 1.4em;
}
.overlay ul li ul li a {
  font-size: 1.4rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  position: relative;
}
.overlay ul li ul li a:before {
  content: "-";
  padding-right: 0.5em;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/* sp   --------------------------------*/
@media screen and (max-width: 667px) {
  .button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
            transform: translateY(8px) translateX(0) rotate(45deg);
  }

  .button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
            transform: translateY(-8px) translateX(0) rotate(-45deg);
  }

  .button_container span:nth-of-type(2) {
    top: 8px;
  }

  .button_container span:nth-of-type(3) {
    top: 16px;
  }
}