@charset "UTF-8";
/* animations */
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat&display=swap");
@-webkit-keyframes radio-select {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  65% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes radio-select {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  65% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes animScale {
  0% {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  40% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  60% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  80% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/* -----------------------
配色
----------------------- */
/* -----------------------
フォントファミリー
----------------------- */
/* -----------------------
フォントサイズ
----------------------- */
/* -----------------------
絶対値の余白
----------------------- */
/* -----------------------
アニメーションのイージング
----------------------- */
/* -----------------------
コンテナの最大幅
----------------------- */
/* -----------------------
各パーツのデフォルトのサイズ
----------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* box-modelをリセットし、borderを設定します */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. すべてのブラウザで行の高さを修正します。
 * 2. iOSで向きを変更した後のフォントサイズの調整を防ぎます。
 * 3. iOSのリンクの灰色のオーバーレイを削除します。
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * すべてのブラウザで余白を削除します。
 */
body {
  margin: 0;
}

/**
 * IEで一貫してmain要素をレンダリングします。
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Firefoxで正しいボックスサイズを追加します。
 * 2. EdgeとIEのオーバーフローを表示します。
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. すべてのブラウザでフォントサイズの継承とスケーリングを修正します。
 * 2. すべてのブラウザで奇妙なemフォントサイズを修正します。
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * IE10のアクティブなリンクの灰色の背景を削除します。
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Chrome57の下の境界線を削除します。
 * 2. Chrome、Edge、IE、Opera、Safariで正しいテキスト装飾を追加します。
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Chrome、Edge、Safariで正しいフォントの太さを追加します。
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. すべてのブラウザでフォントサイズの継承とスケーリングを修正します。
 * 2. すべてのブラウザで奇妙なemフォントサイズを修正します。
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * すべてのブラウザで正しいフォントサイズを追加します。
 */
small {
  font-size: 80%;
}

/**
 * sub要素とsup要素がすべてのブラウザの行の高さに影響を与えないようにします。
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * 垂直方向の配置の問題を防ぎます。
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * フォームフィールドをリセットしてスタイルを設定できるようにする
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * ラジオとチェックボックスの外観をリセットして、iOSでの外観を維持します。
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * IEでオーバーフローを表示します。
 * 1.Edgeにオーバーフローを表示します。
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Edge、Firefox、およびIEでのテキスト変換の継承を削除します。
 * 1. Firefoxでテキスト変換の継承を削除します。
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * iOSとSafariでクリック可能なタイプのスタイルを設定できない問題を修正しました。
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Firefoxで内側の境界線とパディングを削除します。
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 前のルールで設定されていないフォーカススタイルを復元します。
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * IE10およびIE11の矢印を削除します
 */
select::-ms-expand {
  display: none;
}

/**
 * パディングを削除します
 */
option {
  padding: 0;
}

/**
 * 非表示にリセット
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. EdgeとIEでのテキストの折り返しを修正します。
 * 2. IEのfieldset要素からの色の継承を修正します。
 * 3. すべてのブラウザでfieldset要素をゼロにしたときに開発者が追いつかないように、パディングを削除します。
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Chrome、Firefox、Operaで正しい垂直方向の配置を追加します。
 */
progress {
  vertical-align: baseline;
}

/**
 * IE10以降のデフォルトの垂直スクロールバーを削除します。
 */
textarea {
  overflow: auto;
}

/**
 * Chromeのインクリメントボタンとデクリメントボタンのカーソルスタイルを修正しました。
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Safariのアウトラインスタイルを修正します。
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * macOSのChromeとSafariの内側のパディングを削除します。
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. iOSとSafariでクリック可能なタイプのスタイルを設定できない問題を修正しました。
 * 2. Safariでフォントのプロパティをinheritに変更します。
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * クリック可能なラベル
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Edge、IE 10以降、およびFirefoxに正しい表示を追加します。
 */
details {
  display: block;
}

/*
 * すべてのブラウザに正しい表示を追加します。
 */
summary {
  display: list-item;
}

/*
 * 編集可能なコンテンツのアウトラインを削除します。
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * IE10以降で正しい表示を追加します。
 */
template {
  display: none;
}

/**
 * IE10で正しい表示を追加します。
 */
[hidden] {
  display: none;
}

@font-face {
  font-family: "himaji";
  font-display: swap;
  src: url(../font/KFhimaji.otf);
}

/* @font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans CJK JP"), local("Noto Sans JP"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format("opentype");
} */

body {
  color: #000;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-weight: 500;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

body.ua-ie-11 {
  font-family:
    "メイリオ", "Yu Gothic", "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", "游ゴシック体", "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
}

body.ua-win-chrome {
  font-weight: 500;
}

* {
  min-width: 0;
  min-height: 0;
}

@media screen and (max-width: 1439px) {
  body {
    margin: 0;
  }
}

@media screen and (max-width: 1023px) {
  body {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  body {
    margin: 0;
  }
}

@media screen and (max-width: 599px) {
  body {
    margin: 0;
  }
}

@media screen and (max-width: 479px) {
  body {
    margin: 0;
  }
}

.fit {
  width: 100%;
  height: auto;
}

.upper {
  text-transform: uppercase;
}

.bold {
  font-weight: bold !important;
}

@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .sp {
    display: inherit;
  }
}

/* -----------------------
l-contents
----------------------- */
.l-contents_middle {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .l-contents_middle {
    width: 100%;
  }
}

.l-contents_layer {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .l-contents_layer {
    width: 90%;
  }
}

@media screen and (max-width: 360px) {
  .l-contents_layer {
    padding: 0 10px;
  }
}

/* -----------------------
l-wrapper
----------------------- */
.l-wrapper {
  background-image: url(../images/common/background01.png);
  background-size: inherit;
  background-repeat: repeat;
}

.breadcrumb {
  margin: 0;
  padding: 7px 0;
  list-style: none;
}

@media screen and (max-width: 599px) {
  .breadcrumb {
    width: 90%;
    margin: auto;
    overflow-x: auto;
    /* 横スクロールの指定 */
    white-space: nowrap;
    /* 横スクロールの指定 */
    overflow-scrolling: touch;
    /* スクロールを滑らかにする */
  }
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb li:after {
  /* >を表示*/
  content: ">";
  font-size: 12px;
  padding: 0 0.2em;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #000;
  /*色*/
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  margin-top: 70px;
  position: relative;
}

@media screen and (max-width: 920px) {
  .c-footer {
    margin-bottom: 9.5vh;
  }
}

@media screen and (max-width: 599px) {
  .c-footer {
    margin-top: 40px;
  }
}

.c-footer-top {
  width: 636px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .c-footer-top {
    width: 90%;
  }
}

.c-footer-logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}

.c-footer-name,
.c-footer-address,
.c-footer-tel {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.c-footer-name {
  margin-top: 35px;
}

@media screen and (max-width: 599px) {
  .c-footer-navigation {
    overflow: hidden;
  }
}

.c-footer-navigation-list01 {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .c-footer-navigation-list01 {
    margin-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: -27px;
  }
}

.c-footer-navigation-list02 {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .c-footer-navigation-item01 {
    margin-top: 35px;
    margin-right: 27px;
  }
}

.c-footer-navigation-item02:not(:last-of-type) {
  margin-right: 30px;
}

@media screen and (max-width: 360px) {
  .c-footer-navigation-item02:not(:last-of-type) {
    margin-right: 10px;
  }
}

.c-footer-navigation-link01,
.c-footer-navigation-link02 {
  display: block;
  color: #0056a8;
  font-size: 14px;
  text-decoration: underline;
}

.c-footer-navigation-link01 {
  font-weight: bold;
}

.c-footer-navigation-link02 {
  font-weight: 500;
}

.c-footer-copyright {
  margin-top: 65px;
  color: #222;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .c-footer-copyright {
    margin-top: 120px;
  }
}

.c-footer-wave {
  width: 100%;
  height: 208px;
}

/* --------------------------------
c-header
----------------------------------- */
.c-header {
  padding: 10px 20px;
}

@media screen and (max-width: 360px) {
  .c-header {
    padding: 10px;
  }
}

.c-header-inner {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .c-header-inner {
    width: 100%;
  }
}

.c-header-logo {
  width: 160px;
}

@media screen and (max-width: 599px) {
  .c-header-logo {
    width: 110px;
  }
}

@media screen and (max-width: 920px) {
  .c-header-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-header-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 920px) {
  .c-header-contact {
    display: block;
    margin-right: 20px;
  }
}

@media screen and (max-width: 360px) {
  .c-header-contact {
    margin-right: 5px;
  }
}

.c-header-holiday {
  margin-right: 6px;
  width: 40px;
  height: 40px;
  background-color: #ffef64;
  color: #2e1500;
  font-size: 14px;
  font-weight: bold;
  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;
}

@media screen and (max-width: 920px) {
  .c-header-holiday {
    width: 100%;
    height: auto;
    padding: 3px 0;
  }
}

@media screen and (max-width: 920px) {
  .c-header-holiday ._responsive {
    display: none;
  }
}

.c-header-box {
  margin-right: 22px;
}

@media screen and (max-width: 920px) {
  .c-header-box {
    margin-right: 0;
  }
}

@media screen and (max-width: 920px) {
  .c-header-reservation {
    display: none !important;
  }
}

.c-header-tel {
  font-size: 20px;
  font-weight: bold;
  padding-left: 18px;
  position: relative;
  color: #222;
}

@media screen and (max-width: 920px) {
  .c-header-tel {
    display: block;
    margin-top: 3px;
    font-size: 16px;
  }
}

.c-header-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 18px;
  background-image: url(../images/common/header-icon01.png);
  background-size: cover;
}

.c-header-hour {
  padding-left: 12px;
  color: #222;
  font-size: 12px;
}

@media screen and (max-width: 920px) {
  .c-header-hour {
    margin-top: 6px;
    padding-left: 0;
  }
}

.c-tbl--form {
  width: 100%;
  max-width: 720px;
  margin: 20px auto;
}

@media screen and (max-width: 599px) {
  .c-tbl--form {
    width: 90%;
  }
}

.c-tbl--form dl {
  border-bottom: 1px solid #999999;
}

.c-tbl--form dl dt {
  font-size: 14px;
  font-weight: 700;
  padding-top: 22px;
  padding-bottom: 13px;
  position: relative;
}

.c-tbl--form dl dd {
  padding-bottom: 19px;
  font-size: 14px;
}

.c-tbl--form .required {
  background-color: #e85477;
  color: #fff;
  width: 42px;
  text-align: center;
  display: inline-block;
  position: absolute;
  margin-left: 9px;
  margin-top: -2px;
  padding: 3px 0 0px;
}

.c-tbl--form .contact-input {
  background-color: #fff;
  border: 1px solid #999999;
  opacity: 1;
  width: 100%;
  max-width: 720px;
  height: 50px;
  border-radius: 5px;
  padding-left: 10px;
}

.c-tbl--form .contact-input--mini {
  width: 140px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #999999;
  margin-left: 9px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding-left: 20px;
  margin-right: 10px;
}

.c-tbl--form .contact-input--mini ::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.c-tbl--form .contact-input--mini ::-moz-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.c-tbl--form .contact-input--mini ::-ms-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.c-tbl--form .contact-input--mini ::placeholder {
  color: #cccccc;
  font-size: 14px;
}

.c-tbl--form .contact-input--mcr {
  width: 80px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #999999;
  margin-left: 9px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 599px) {
  .c-tbl--form .contact-input--mcr {
    margin-right: 10px;
  }
}

.c-tbl--form .contact-input--midiam {
  max-width: 300px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #999999;
  height: 44px;
  border-radius: 5px;
  margin-right: 10px;
  padding-left: 10px;
}

@media screen and (max-width: 599px) {
  .c-tbl--form .contact-input--midiam {
    max-width: 800px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .c-tbl--form .sp-lank label:nth-child(1) .contact-input--mcr {
    margin-left: 65px;
  }
  .c-tbl--form .sp-lank label:nth-child(2) .contact-input--mcr {
    margin-left: 22px;
  }
  .c-tbl--form .sp-lank label:nth-child(3) .contact-input--mcr {
    margin-left: 36px;
  }
}

.c-tbl--form .radio-label {
  margin: 10px 0 24px;
  display: block;
  position: relative;
  padding-left: 27px;
  cursor: pointer;
  font-size: 14px;
}

.c-tbl--form .radio-label:last-child {
  margin-bottom: 4px;
}

.c-tbl--form .radio-label .outside {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
  width: 20px;
  height: 20px;
  border: 2px solid #cccccc;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f3f3f3;
}

.c-tbl--form .label-14 {
  font-size: 14px;
}

.c-tbl--form .attention {
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px;
}

.c-tbl--form p {
  font-size: 14px;
  line-height: 30px;
}

.c-tbl--form p span {
  font-weight: 700;
}

.c-tbl--form .radio-input {
  height: 1px;
  width: 1px;
  opacity: 0;
}

@media screen and (max-width: 599px) {
  .c-tbl--form label {
    display: block;
  }
}

.c-title {
  background: url(../images/common/bg-title01.png) no-repeat;
  padding: 66px 0 41px;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 479px) {
  .c-title {
    padding: 30px 0 20px;
  }
}

.c-title--primary {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .c-title--primary {
    font-size: 30px;
  }
}

@media screen and (max-width: 360px) {
  .c-title--primary {
    font-size: 30px;
  }
  .c-title--primary.-privacy-policy {
    font-size: 23px;
  }
}

.c-second-title {
  background: url(../images/common/bg-title01.png) no-repeat center
    center/contain;
  max-width: 100%;
  margin: 0 auto;
  padding: 66px 0 41px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 479px) {
  .c-second-title {
    padding: 30px 0 20px;
  }
}

.c-second-title--jp {
  font-family: himaji;
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #0268b6;
}

@media screen and (max-width: 767px) {
  .c-second-title--jp {
    font-size: 48px;
  }
}

@media screen and (max-width: 479px) {
  .c-second-title--jp {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 360px) {
  .c-second-title--jp {
    font-size: 30px;
  }
}

.c-second-title--en {
  font-size: 16px;
  font-weight: 600;
  color: #0268b6;
}

@media screen and (max-width: 767px) {
  .c-second-title--en {
    font-size: 14px;
  }
}

/* --------------------------------
p-bottomNavi
----------------------------------- */
.p-bottomNavi {
  display: none;
}

@media screen and (max-width: 920px) {
  .p-bottomNavi {
    background-color: #fff;
    display: block;
    position: fixed;
    height: 70px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
  }
}

.p-bottomNavi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-bottomNavi-item {
  width: 20%;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  border-left: 2px solid #222;
}

.p-bottomNavi-item:nth-of-type(1) .p-bottomNavi-link {
  padding: 10px 0;
}

.p-bottomNavi-item:nth-of-type(1) .p-bottomNavi-image {
  width: 18px;
  margin-bottom: 5px;
}

.p-bottomNavi-item:nth-of-type(2) .p-bottomNavi-link {
  padding: 20px 0 10px;
}

.p-bottomNavi-item:nth-of-type(2) .p-bottomNavi-image {
  width: 23px;
}

.p-bottomNavi-item:nth-of-type(3) .p-bottomNavi-link {
  padding: 10px 0;
}

.p-bottomNavi-item:nth-of-type(3) .p-bottomNavi-image {
  width: 17px;
}

.p-bottomNavi-item:nth-of-type(4) .p-bottomNavi-link {
  padding: 10px 0;
}

.p-bottomNavi-item:nth-of-type(4) .p-bottomNavi-image {
  width: 25px;
}

.p-bottomNavi-item:nth-of-type(5) .p-bottomNavi-link {
  padding: 15px 0 10px;
  border-right: 2px solid #222;
}

.p-bottomNavi-link {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.p-bottomNavi-hamburger {
  position: relative;
  width: 20px;
  height: 21px;
}

.p-bottomNavi-hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  width: 20px;
  left: 0;
  background-color: #0268b6;
  height: 3px;
}

.p-bottomNavi-hamburger span:nth-of-type(1) {
  top: 0;
}

.p-bottomNavi-hamburger span:nth-of-type(2) {
  top: 9px;
}

.p-bottomNavi-hamburger span:nth-of-type(3) {
  top: 18px;
}

.p-bottomNavi-hamburger.active span:nth-of-type(1) {
  top: 7px;
  left: 0;
  -webkit-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}

.p-bottomNavi-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.p-bottomNavi-hamburger.active span:nth-of-type(3) {
  top: 17px;
  left: 0;
  -webkit-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}

/* --------------------------------
p-button
----------------------------------- */
.p-button01 {
  display: block;
  width: 150px;
  background-color: #0268b6;
  padding: 11px 0;
  border-radius: 19px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.p-button02 {
  display: block;
  width: 380px;
  background-color: #fff;
  padding: 21px 0;
  border-radius: 30px;
  border: 2px solid #222;
  color: #222;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-button02 {
    width: 100%;
    padding: 20px 0;
  }
}

.p-button02:hover {
  background-color: #0268b6;
  color: #fff;
  border: 2px solid #0268b6;
  -webkit-transition: all 0.5;
  transition: all 0.5;
  opacity: 1;
}

.p-button03 {
  display: block;
  width: 480px;
  background-color: #fff;
  padding: 11px 0;
  border-radius: 20px;
  border: 2px solid #222;
  color: #222;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .p-button03 {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .p-button03 {
    padding: 10px 0;
  }
}

.p-button03:hover {
  background-color: #0268b6;
  color: #fff;
  border: 2px solid #0268b6;
  -webkit-transition: all 0.5;
  transition: all 0.5;
  opacity: 1;
}

.p-button04 {
  display: block;
  width: 360px;
  background-color: #0268b6;
  padding: 20px 0;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .p-button04 {
    width: 80%;
  }
}

@media screen and (max-width: 599px) {
  .p-button04 {
    width: 100%;
    font-size: 16px;
    padding: 17px 0;
  }
}

.p-button05 {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 30px;
  border: 2px solid #222;
  color: #222;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-button05 {
    width: 100%;
    padding: 20px 0;
  }
}

.p-button05:hover {
  background-color: #0268b6;
  color: #fff;
  border: 2px solid #0268b6;
  -webkit-transition: all 0.5;
  transition: all 0.5;
  opacity: 1;
}

.p-cta {
  margin-top: 120px;
}

@media screen and (max-width: 599px) {
  .p-cta {
    margin-top: 100px;
  }
}

.p-cta-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  .p-cta-top {
    display: block;
  }
}

.p-cta-top-image {
  width: 65.88vw;
  margin-right: 5.12vw;
}

@media screen and (max-width: 599px) {
  .p-cta-top-image {
    width: 95%;
    margin-right: 0;
  }
}

.p-cta-top-title {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 599px) {
  .p-cta-top-title {
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    width: 90%;
    margin: 20px auto 0;
  }
}

.p-cta-top-heading {
  color: #2e1500;
  font-size: 48px;
  font-family: himaji;
  line-height: 1.25;
}

@media screen and (max-width: 599px) {
  .p-cta-top-heading {
    margin-top: 10px;
    font-size: 36px;
  }
}

.p-cta-top-heading._sub {
  margin-right: 10px;
  color: #0268b6;
  font-size: 30px;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .p-cta-top-heading._sub {
    font-size: 18px;
  }
}

.p-cta-bottom {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .p-cta-bottom {
    margin-top: 50px;
  }
}

.p-cta-bottom-heading {
  color: #2e1500;
  font-size: 36px;
  font-family: himaji;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 599px) {
  .p-cta-bottom-heading {
    font-size: 30px;
  }
}

.p-cta-bottom-heading span {
  display: inline-block;
}

.p-cta-bottom-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 170px;
  width: 46px;
  height: 56px;
  background-image: url(../images/home/about-bubble01.png);
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .p-cta-bottom-heading::before {
    left: 5%;
  }
}

.p-cta-bottom-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 200px;
  width: 31px;
  height: 30px;
  background-image: url(../images/home/about-bubble02.png);
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .p-cta-bottom-heading::after {
    right: 7%;
  }
}

.p-cta-list01 {
  width: 812px;
  margin: 34px auto 0;
  padding: 0 81px;
  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;
  background-image: url(../images/home/about-bubble03.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-cta-list01 {
    width: 90%;
    margin: 16px auto 0;
    padding: 0;
  }
}

.p-cta-list02 {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .p-cta-list02 {
    margin: 60px auto 0;
    display: block;
  }
}

.p-cta-item01 {
  width: 191px;
  height: 168px;
  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;
  color: #2e1500;
  font-size: 40px;
  font-family: himaji;
  text-align: center;
  letter-spacing: -3px;
}

@media screen and (max-width: 599px) {
  .p-cta-item01 {
    width: calc(50% - 5px);
    height: 38.4vw;
    font-size: 36px;
    margin-top: 10px;
  }
}

.p-cta-item01:nth-of-type(1) {
  background-image: url(../images/home/about-icon01.png);
  background-size: cover;
  margin-right: 38px;
}

@media screen and (max-width: 599px) {
  .p-cta-item01:nth-of-type(1) {
    margin-right: 10px;
  }
}

.p-cta-item01:nth-of-type(2) {
  background-image: url(../images/home/about-icon02.png);
  background-size: cover;
  margin-right: 38px;
}

@media screen and (max-width: 599px) {
  .p-cta-item01:nth-of-type(2) {
    margin-right: 0;
    white-space: nowrap;
  }
}

.p-cta-item01:nth-of-type(3) {
  background-image: url(../images/home/about-icon03.png);
  background-size: cover;
}

.p-cta-item01:nth-of-type(4) {
  background-image: url(../images/home/about-icon02.png);
  background-size: cover;
  margin-right: 38px;
}

@media screen and (max-width: 599px) {
  .p-cta-item01:nth-of-type(4) {
    margin-right: 0;
  }
}

.p-cta-item01:nth-of-type(5) {
  background-image: url(../images/home/about-icon01.png);
  background-size: cover;
}

.p-cta-item01 span._01 {
  font-size: 36px;
}

@media screen and (max-width: 599px) {
  .p-cta-item01 span._01 {
    font-size: 30px;
  }
}

.p-cta-item01 span._02 {
  font-size: 30px;
}

.p-cta-item02:not(:last-of-type) {
  margin-right: 20px;
}

@media screen and (max-width: 1023px) {
  .p-cta-item02:not(:last-of-type) {
    margin-right: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-cta-item02:not(:first-of-type) {
    margin-top: 20px;
  }
}

.p-cta-link02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 320px;
  height: 110px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #222;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-cta-link02 {
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .p-cta-link02 {
    width: 100%;
    height: 90px;
  }
}

.p-cta-link02 span {
  display: block;
}

.p-cta-link02._tel {
  padding-left: 61px;
  font-size: 28px;
}

@media screen and (max-width: 360px) {
  .p-cta-link02._tel {
    padding-left: 60px;
    font-size: 24px;
  }
}

.p-cta-link02._tel::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 21px;
  width: 31px;
  height: 52px;
  background-image: url(../images/home/about-icon04.png);
  background-size: cover;
}

@media screen and (max-width: 360px) {
  .p-cta-link02._tel::before {
    width: 22px;
    height: 37px;
  }
}

.p-cta-link02._tel span {
  margin-top: 5px;
  font-size: 14px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-weight: normal;
}

.p-cta-link02._reservation {
  padding-left: 71px;
  font-size: 24px;
}

@media screen and (max-width: 360px) {
  .p-cta-link02._reservation {
    padding-left: 60px;
    font-size: 17px;
  }
}

.p-cta-link02._reservation::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 22px;
  width: 40px;
  height: 64px;
  background-image: url(../images/home/about-icon05.png);
  background-size: cover;
}

@media screen and (max-width: 360px) {
  .p-cta-link02._reservation::before {
    width: 27px;
    height: 43px;
  }
}

.p-cta-link02._reservation span {
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 360px) {
  .p-cta-link02._reservation span {
    font-size: 10px;
  }
}

.p-cta-link02._mail {
  padding-left: 80px;
  font-size: 20px;
}

@media screen and (max-width: 360px) {
  .p-cta-link02._mail {
    padding-left: 60px;
    font-size: 16px;
  }
}

.p-cta-link02._mail::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 22px;
  width: 40px;
  height: 31px;
  background-image: url(../images/home/about-icon06.png);
  background-size: cover;
}

@media screen and (max-width: 360px) {
  .p-cta-link02._mail::before {
    width: 27px;
    height: 21px;
  }
}

.p-cta-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 22px;
}

.p-cta-icon::before,
.p-cta-icon::after {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
}

.p-cta-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0268b6;
}

.p-cta-icon::after {
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* -----------------------
p-experience
----------------------- */
.p-single-experience {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-single-experience {
    margin-top: 30px;
  }
}

.p-single-experience-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-single-experience-contents {
    display: block;
  }
}

.p-single-experience-contents-inner {
  width: 36%;
  margin-top: 40px;
}

@media screen and (max-width: 1023px) {
  .p-single-experience-contents-inner {
    width: 50%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-single-experience-contents-inner {
    width: 100%;
  }
}

.p-single-experience-image {
  width: 60%;
}

@media screen and (max-width: 1023px) {
  .p-single-experience-image {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .p-single-experience-image {
    width: 100%;
    margin-top: 15px;
  }
}

.p-single-experience-image-list01 .slick-prev,
.p-single-experience-image-list01 .slick-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  height: 60px;
  width: 30px;
  background-color: rgba(7, 3, 3, 0.6);
}

.p-single-experience-image-list01 .slick-prev {
  left: 0;
}

.p-single-experience-image-list01 .slick-prev::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.p-single-experience-image-list01 .slick-next {
  right: 0;
}

.p-single-experience-image-list01 .slick-next::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.p-single-experience-image-list02 {
  margin-left: auto;
  width: 88%;
}

.p-single-experience-image-list02 .slick-track {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .p-single-experience-image-list02 {
    width: 90%;
    margin-right: -5%;
  }
}

.p-single-experience-image-list02 .slick-slide {
  margin: 0 5px;
}

.p-single-experience-image-item02 {
  cursor: pointer;
}

.p-single-experience-image-thumbnail {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-single-experience-image-counter {
  font-size: 14px;
}

.p-single-experience-title01 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.38;
}

.p-single-experience-title02 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}

.p-single-experience-text01 {
  margin-top: 35px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

@media screen and (max-width: 767px) {
  .p-single-experience-text01 {
    margin-top: 15px;
  }
}

.p-single-experience-text02 {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-experience-text02._red {
  color: #f91515;
}

.p-single-experience-price {
  margin-top: 35px;
  color: #0268b6;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
}

@media screen and (max-width: 1023px) {
  .p-single-experience-price {
    margin-top: 20px;
  }
}

.p-single-experience-price span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-experience-button01 {
  margin-top: 40px;
}

@media screen and (max-width: 1023px) {
  .p-single-experience-button01 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-single-experience-button01 {
    margin: 20px auto 0;
  }
}

.p-single-experience-button02 {
  margin: 80px auto 0;
}

.p-single-experience-block {
  margin: 40px auto 0;
  width: 80%;
  background-color: #fff;
  padding: 10px 20px 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-experience-block p,
.p-single-experience-block ul,
.p-single-experience-block ol,
.p-single-experience-block dl {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-single-experience-block {
    width: 100%;
    margin: 40px auto 0;
  }
}

.p-single-experience-benefit {
  margin: 75px auto 0;
  width: 80%;
  background-color: #ffef64;
  border: 3px solid #ee2724;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .p-single-experience-benefit {
    width: 100%;
  }
}

.p-single-experience-benefit-heading {
  margin: -20px auto 0;
  width: 440px;
  height: 70px;
  background-image: url(../images/experience/experience-background01.png);
  background-size: cover;
  color: #fff;
  font-size: 36px;
  font-family: himaji;
  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;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-single-experience-benefit-heading {
    width: 312px;
    background-image: url(../images/experience/experience-background01_sp.png);
    font-size: 30px;
  }
}

@media screen and (max-width: 360px) {
  .p-single-experience-benefit-heading {
    width: 260px;
    font-size: 25px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.p-single-experience-benefit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 40px 40px;
}

@media screen and (max-width: 767px) {
  .p-single-experience-benefit-inner {
    display: block;
    padding: 20px 20px 40px;
  }
}

.p-single-experience-benefit-image {
  width: 47.5%;
}

@media screen and (max-width: 767px) {
  .p-single-experience-benefit-image {
    width: 100%;
  }
}

.p-single-experience-benefit-contents {
  width: 47.5%;
}

@media screen and (max-width: 767px) {
  .p-single-experience-benefit-contents {
    margin-top: 20px;
    width: 100%;
  }
}

/* --------------------------------
p-hamburger
----------------------------------- */
.p-hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0268b6;
  cursor: pointer;
}

@media screen and (max-width: 920px) {
  .p-hamburger {
    display: block;
  }
}

.p-hamburger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: #fff;
}

.p-hamburger span:nth-of-type(1) {
  top: 16px;
}

.p-hamburger span:nth-of-type(2) {
  top: 26px;
}

/* -----------------------
p-handmade
----------------------- */
.p-single-handmade {
  margin-top: 50px;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .p-single-handmade {
    margin-top: 30px;
  }
}

.p-single-handmade-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-contents {
    display: block;
  }
}

.p-single-handmade-contents-inner {
  width: 60%;
}

@media screen and (max-width: 1023px) {
  .p-single-handmade-contents-inner {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-single-handmade-contents-inner {
    width: 100%;
  }
}

.p-single-handmade-tag01 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #e85477;
  width: 130px;
  padding: 10px 0;
  border-radius: 10px;
}

.p-single-handmade-image {
  width: 35%;
}

@media screen and (max-width: 1023px) {
  .p-single-handmade-image {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .p-single-handmade-image {
    width: 100%;
    margin-top: 15px;
  }
}

.p-single-handmade-image-list01 .slick-prev,
.p-single-handmade-image-list01 .slick-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  height: 60px;
  width: 30px;
  background-color: rgba(7, 3, 3, 0.6);
}

.p-single-handmade-image-list01 .slick-prev {
  left: 0;
}

.p-single-handmade-image-list01 .slick-prev::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.p-single-handmade-image-list01 .slick-next {
  right: 0;
}

.p-single-handmade-image-list01 .slick-next::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.p-single-handmade-image-list02 {
  margin-left: auto;
  width: 88%;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-image-list02 {
    width: 90%;
    margin-right: -5%;
  }
}

.p-single-handmade-image-list02 .slick-track {
  margin: 0;
}

.p-single-handmade-image-list02 .slick-slide {
  margin: 0 5px;
}

.p-single-handmade-image-item02 {
  cursor: pointer;
}

.p-single-handmade-image-thumbnail {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-single-handmade-image-counter {
  font-size: 14px;
}

.p-single-handmade-title01 {
  margin-top: 15px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.38;
}

.p-single-handmade-title02 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  padding-bottom: 13px;
  border-bottom: 3px solid #ccc;
}

.p-single-handmade-title02::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #257cbe;
}

.p-single-handmade-title03 {
  color: #0268b6;
  font-size: 24px;
  line-height: 1.25;
  font-weight: bold;
}

.p-single-handmade-text01 {
  margin-top: 35px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-text01 {
    margin-top: 15px;
  }
}

.p-single-handmade-text02 {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-handmade-text02._red {
  color: #f91515;
}

.p-single-handmade-text03 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.p-single-handmade-text04 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.p-single-handmade-price {
  margin-top: 35px;
  color: #0268b6;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
}

@media screen and (max-width: 1023px) {
  .p-single-handmade-price {
    margin-top: 20px;
  }
}

.p-single-handmade-price span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-handmade-button01 {
  margin-top: 40px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .p-single-handmade-button01 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-single-handmade-button01 {
    margin: 20px auto 0;
  }
}

.p-single-handmade-button02 {
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-button02 {
    margin: 60px auto 0;
  }
}

.p-single-handmade-button03 {
  margin-top: 25px;
}

.p-single-handmade-button04 {
  margin: 40px auto 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-button04 {
    margin: 20px auto 0;
  }
}

.p-single-handmade-button-image {
  width: 25px;
  margin-right: 8px;
}

.p-single-handmade-block {
  margin: 40px auto 0;
  width: 80%;
  background-color: #fff;
  padding: 10px 20px 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-handmade-block p,
.p-single-handmade-block ul,
.p-single-handmade-block ol,
.p-single-handmade-block dl {
  margin-top: 20px;
}

.p-single-handmade-block img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-block {
    width: 100%;
    margin: 40px auto 0;
  }
}

.p-single-handmade-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-handmade-desc p,
.p-single-handmade-desc ul,
.p-single-handmade-desc ol,
.p-single-handmade-desc dl {
  margin-top: 20px;
}

.p-single-handmade-desc img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-desc {
    width: 100%;
    margin: 40px auto 0;
  }
}

.p-single-handmade-flow {
  margin: 40px auto 0;
  padding-bottom: 60px;
  border-bottom: 1px solid #ccc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-flow {
    width: 100%;
  }
}

.p-single-handmade-flow-movie {
  margin-top: 20px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.p-single-handmade-flow-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.p-single-handmade-flow-block {
  margin-top: 40px;
}

.p-single-handmade-flow-block:not(:first-of-type) {
  margin-top: 30px;
}

.p-single-handmade-flow-title {
  color: #fff;
  font-size: 14px;
  background-color: #0aa24b;
  padding: 7px 10px;
}

.p-single-handmade-flow-contents {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-flow-contents {
    display: block;
  }
}

.p-single-handmade-flow-contents-inner01 {
  margin-right: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.p-single-handmade-flow-contents-image {
  width: 220px;
}

.p-single-handmade-flow-contents-image:not(:first-of-type) {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-flow-contents-image {
    margin-top: 10px;
  }
}

.p-single-handmade-online {
  margin: 130px auto 0;
  background-color: #ffef64;
  border-radius: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-online {
    width: 100%;
    margin: 100px auto 0;
  }
}

.p-single-handmade-online-heading {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #2e1500;
  font-size: 48px;
  font-family: himaji;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-online-heading {
    top: -20px;
    width: 100%;
    text-align: center;
    line-height: 0.8;
  }
}

.p-single-handmade-online-heading span {
  position: relative;
}

.p-single-handmade-online-heading span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -90px;
  width: 80px;
  height: 104px;
  background-image: url(../images/handmade/handmade-online01.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-online-heading span::before {
    content: none;
  }
}

.p-single-handmade-online-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -166px;
  width: 143px;
  height: 78px;
  background-image: url(../images/handmade/handmade-online02.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-online-heading span::after {
    content: none;
  }
}

.p-single-handmade-online-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 80px 40px 40px;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-online-inner {
    display: block;
    padding: 70px 20px 50px;
  }
}

.p-single-handmade-online-image {
  width: 43.5%;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-online-image {
    width: 100%;
  }
}

.p-single-handmade-online-contents {
  width: 52.5%;
}

@media screen and (max-width: 767px) {
  .p-single-handmade-online-contents {
    margin-top: 20px;
    width: 100%;
  }
}

/* --------------------------------
p-navigation
----------------------------------- */
.p-navigation {
  margin-top: 20px;
}

@media screen and (max-width: 920px) {
  .p-navigation {
    margin-top: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}

.p-navigation.active {
  right: 0;
}

.p-navigation-header {
  display: none;
}

@media screen and (max-width: 920px) {
  .p-navigation-header {
    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;
    height: 90px;
  }
}

.p-navigation-logo {
  display: block;
  width: 98px;
}

.p-navigation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 920px) {
  .p-navigation-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(88.88889vh - 80px);
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item {
    background-color: #0268b6;
    position: relative;
    border-top: 1px solid #80b3da;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item::before,
  .p-navigation-item::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.p-navigation-item::before {
  left: 20px;
}

@media screen and (max-width: 920px) {
  .p-navigation-item::after {
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(1)::before {
    width: 27px;
    height: 23px;
    background-image: url(../images/home/navigation-icon01.png);
    background-size: cover;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(2)::before {
    width: 22px;
    height: 22px;
    background-image: url(../images/home/navigation-icon02.png);
    background-size: cover;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(3)::before {
    width: 27px;
    height: 23px;
    background-image: url(../images/home/navigation-icon03.png);
    background-size: cover;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(4)::before {
    width: 24px;
    height: 26px;
    background-image: url(../images/home/navigation-icon04.png);
    background-size: cover;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(5)::before {
    width: 28px;
    height: 31px;
    background-image: url(../images/home/navigation-icon05.png);
    background-size: cover;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(6)::before {
    width: 26px;
    height: 25px;
    background-image: url(../images/home/navigation-icon06.png);
    background-size: cover;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(7)::before {
    width: 23px;
    height: 29px;
    background-image: url(../images/home/navigation-icon07.png);
    background-size: cover;
  }
}

@media screen and (max-width: 920px) {
  .p-navigation-item:nth-of-type(8)::before {
    width: 27px;
    height: 20px;
    background-image: url(../images/home/navigation-icon08.png);
    background-size: cover;
  }
}

.p-navigation-item:not(:last-of-type) {
  margin-right: 30px;
}

@media screen and (max-width: 920px) {
  .p-navigation-item:not(:last-of-type) {
    margin-right: 0;
  }
}

.p-navigation-item._pc {
  display: inline-block;
}

@media screen and (max-width: 920px) {
  .p-navigation-item._pc {
    display: none;
  }
}

.p-navigation-item._responsive {
  display: none;
}

@media screen and (max-width: 920px) {
  .p-navigation-item._responsive {
    display: block;
  }
}

.p-navigation-link {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 8px;
  -webkit-transition: none;
  transition: none;
}

@media screen and (max-width: 920px) {
  .p-navigation-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    height: calc(11.11111vh - 10px);
    padding-left: 67px;
    padding-bottom: 0;
  }
}

.p-navigation-link._pc {
  display: inline-block;
}

@media screen and (max-width: 920px) {
  .p-navigation-link._pc {
    display: none;
  }
}

.p-navigation-link._responsive {
  display: none;
}

@media screen and (max-width: 920px) {
  .p-navigation-link._responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-navigation-link:hover {
  opacity: 1;
  color: #0268b6;
  border-bottom: 2px solid #0268b6;
  -webkit-transition: none;
  transition: none;
}

@media screen and (max-width: 920px) {
  .p-navigation-link:hover {
    color: #fff;
    background-color: #67a4d3;
  }
}

/* --------------------------------
p-pagetop
----------------------------------- */
.p-pagetop {
  position: absolute;
  bottom: 208px;
  right: 13.39vw;
}

@media screen and (max-width: 1023px) {
  .p-pagetop {
    bottom: 250px;
    right: 40px;
  }
}

@media screen and (max-width: 599px) {
  .p-pagetop {
    bottom: 300px;
    right: 20px;
  }
}

.p-pagetop a {
  display: block;
  width: 41px;
}

@use "../setting/mq";
@use "../setting/setting" as *;
/* --------------------------------
p-reservation
----------------------------------- */
.p-reservation {
  position: fixed;
  top: 38.1vw;
  right: 20px;
  width: 120px;
  z-index: 8888;
}

@media screen and (max-width: 599px) {
  .p-reservation {
    display: none;
  }
}

/* --------------------------------
p-slick
----------------------------------- */
.p-slick-dots01 {
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-slick-dots01 li {
  display: inline-block;
  margin: 0 7px;
}

.p-slick-dots01 li button {
  position: relative;
  text-indent: -9999px;
}

.p-slick-dots01 li button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #000;
  opacity: 0.2;
  border-radius: 50%;
}

.p-slick-dots01 li.slick-active button::before {
  background-color: #000;
  opacity: 1;
}

.p-slick-dots02 {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-slick-dots02 li {
  display: inline-block;
  margin: 0 10px;
}

.p-slick-dots02 li button {
  position: relative;
  text-indent: -9999px;
}

.p-slick-dots02 li button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #000;
  opacity: 0.2;
  border-radius: 50%;
}

.p-slick-dots02 li.slick-active button::before {
  opacity: 1;
}

/* -----------------------
p-top
----------------------- */
.p-top-about {
  margin-top: 120px;
}

@media screen and (max-width: 599px) {
  .p-top-about {
    margin-top: 100px;
  }
}

.p-top-about-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  .p-top-about-top {
    display: block;
  }
}

.p-top-about-top-image {
  width: 65.88vw;
  margin-right: 5.12vw;
}

@media screen and (max-width: 599px) {
  .p-top-about-top-image {
    width: 95%;
    margin-right: 0;
  }
}

.p-top-about-top-title {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 599px) {
  .p-top-about-top-title {
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    width: 90%;
    margin: 20px auto 0;
  }
}

.p-top-about-top-heading {
  color: #2e1500;
  font-size: 48px;
  font-family: himaji;
  line-height: 1.25;
}

@media screen and (max-width: 599px) {
  .p-top-about-top-heading {
    margin-top: 10px;
    font-size: 36px;
  }
}

.p-top-about-top-heading._sub {
  margin-right: 10px;
  color: #0268b6;
  font-size: 30px;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .p-top-about-top-heading._sub {
    font-size: 18px;
  }
}

.p-top-about-bottom {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .p-top-about-bottom {
    margin-top: 50px;
  }
}

.p-top-about-bottom-heading {
  color: #2e1500;
  font-size: 36px;
  font-family: himaji;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 599px) {
  .p-top-about-bottom-heading {
    font-size: 30px;
  }
}

.p-top-about-bottom-heading span {
  display: inline-block;
}

.p-top-about-bottom-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 170px;
  width: 46px;
  height: 56px;
  background-image: url(../images/home/about-bubble01.png);
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .p-top-about-bottom-heading::before {
    left: 5%;
  }
}

.p-top-about-bottom-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 200px;
  width: 31px;
  height: 30px;
  background-image: url(../images/home/about-bubble02.png);
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .p-top-about-bottom-heading::after {
    right: 7%;
  }
}

.p-top-about-list01 {
  width: 812px;
  margin: 34px auto 0;
  padding: 0 81px;
  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;
  background-image: url(../images/home/about-bubble03.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-top-about-list01 {
    width: 90%;
    margin: 16px auto 0;
    padding: 0;
  }
}

.p-top-about-list02 {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .p-top-about-list02 {
    margin: 60px auto 0;
    display: block;
    width: 90%;
  }
}

.p-top-about-item01 {
  width: 191px;
  height: 168px;
  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;
  color: #2e1500;
  font-size: 40px;
  font-family: himaji;
  text-align: center;
  letter-spacing: -3px;
}

@media screen and (max-width: 599px) {
  .p-top-about-item01 {
    width: calc(50% - 5px);
    height: 38.4vw;
    font-size: 36px;
    margin-top: 10px;
  }
}

.p-top-about-item01:nth-of-type(1) {
  background-image: url(../images/home/about-icon01.png);
  background-size: cover;
  margin-right: 38px;
}

@media screen and (max-width: 599px) {
  .p-top-about-item01:nth-of-type(1) {
    margin-right: 10px;
  }
}

.p-top-about-item01:nth-of-type(2) {
  background-image: url(../images/home/about-icon02.png);
  background-size: cover;
  margin-right: 38px;
}

@media screen and (max-width: 599px) {
  .p-top-about-item01:nth-of-type(2) {
    margin-right: 0;
    white-space: nowrap;
  }
}

.p-top-about-item01:nth-of-type(3) {
  background-image: url(../images/home/about-icon03.png);
  background-size: cover;
}

.p-top-about-item01:nth-of-type(4) {
  background-image: url(../images/home/about-icon02.png);
  background-size: cover;
  margin-right: 38px;
}

@media screen and (max-width: 599px) {
  .p-top-about-item01:nth-of-type(4) {
    margin-right: 0;
  }
}

.p-top-about-item01:nth-of-type(5) {
  background-image: url(../images/home/about-icon01.png);
  background-size: cover;
}

.p-top-about-item01 span._01 {
  font-size: 36px;
}

@media screen and (max-width: 599px) {
  .p-top-about-item01 span._01 {
    font-size: 30px;
  }
}

.p-top-about-item01 span._02 {
  font-size: 30px;
}

.p-top-about-item02:not(:last-of-type) {
  margin-right: 20px;
}

@media screen and (max-width: 1023px) {
  .p-top-about-item02:not(:last-of-type) {
    margin-right: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-top-about-item02:not(:first-of-type) {
    margin-top: 20px;
  }
}

.p-top-about-link02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 320px;
  height: 110px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #222;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-top-about-link02 {
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .p-top-about-link02 {
    width: 100%;
    height: 90px;
  }
}

.p-top-about-link02 span {
  display: block;
}

.p-top-about-link02._tel {
  padding-left: 61px;
  font-size: 30px;
}

@media screen and (max-width: 360px) {
  .p-top-about-link02._tel {
    padding-left: 60px;
    font-size: 24px;
  }
}

.p-top-about-link02._tel::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 21px;
  width: 31px;
  height: 52px;
  background-image: url(../images/home/about-icon04.png);
  background-size: cover;
}

@media screen and (max-width: 360px) {
  .p-top-about-link02._tel::before {
    width: 22px;
    height: 37px;
  }
}

.p-top-about-link02._tel span {
  margin-top: 5px;
  font-size: 14px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-weight: normal;
}

.p-top-about-link02._reservation {
  padding-left: 71px;
  font-size: 24px;
}

@media screen and (max-width: 360px) {
  .p-top-about-link02._reservation {
    padding-left: 60px;
    font-size: 17px;
  }
}

.p-top-about-link02._reservation::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 22px;
  width: 40px;
  height: 64px;
  background-image: url(../images/home/about-icon05.png);
  background-size: cover;
}

@media screen and (max-width: 360px) {
  .p-top-about-link02._reservation::before {
    width: 27px;
    height: 43px;
  }
}

.p-top-about-link02._reservation span {
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.p-top-about-link02._mail {
  padding-left: 80px;
  font-size: 20px;
}

@media screen and (max-width: 360px) {
  .p-top-about-link02._mail {
    padding-left: 60px;
    font-size: 16px;
  }
}

.p-top-about-link02._mail::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 22px;
  width: 40px;
  height: 31px;
  background-image: url(../images/home/about-icon06.png);
  background-size: cover;
}

@media screen and (max-width: 360px) {
  .p-top-about-link02._mail::before {
    width: 27px;
    height: 21px;
  }
}

.p-top-about-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 22px;
}

.p-top-about-icon::before,
.p-top-about-icon::after {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
}

.p-top-about-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0268b6;
}

.p-top-about-icon::after {
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-top-catch {
  margin-top: 80px;
}

@media screen and (max-width: 599px) {
  .p-top-catch {
    margin-top: 25px;
  }
}

.p-top-catch-inner {
  background-image:
    url(../images/home/catch-picture01.png),
    url(../images/home/catch-picture02.png);
  background-repeat: no-repeat, no-repeat;
  background-position-x: left, right;
  background-position-y: bottom, 15px;
  padding-bottom: 15px;
}

@media screen and (max-width: 599px) {
  .p-top-catch-inner {
    background-image:
      url(../images/home/catch-picture01_sp.png),
      url(../images/home/catch-picture02_sp.png);
    background-size: 59px, 63px;
    background-position-x: 4%, 96%;
    background-position-y: 15px, 15px;
    padding-bottom: 0;
  }
}

.p-top-catch-title01 {
  color: #2e1500;
  font-size: 48px;
  font-family: himaji;
  letter-spacing: 1.92px;
  text-align: center;
  position: relative;
  background-image: url(../images/home/catch-icon01.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: bottom;
  background-size: 370px;
}

@media screen and (max-width: 599px) {
  .p-top-catch-title01 {
    font-size: 36px;
    background-size: 224px;
  }
}

.p-top-catch-title01 span {
  font-size: 36px;
}

@media screen and (max-width: 599px) {
  .p-top-catch-title01 span {
    font-size: 30px;
  }
}

.p-top-catch-title02 {
  color: #2e1500;
  font-size: 48px;
  font-family: himaji;
  letter-spacing: 1.92px;
  text-align: center;
  position: relative;
  background-image: url(../images/home/catch-icon02.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: bottom;
  background-size: 500px;
}

@media screen and (max-width: 599px) {
  .p-top-catch-title02 {
    font-size: 36px;
    background-size: 224px;
  }
}

.p-top-catch-title02 span {
  font-size: 36px;
}

@media screen and (max-width: 599px) {
  .p-top-catch-title02 span {
    font-size: 30px;
  }
}

.p-top-catch-title03 {
  color: #2e1500;
  font-size: 48px;
  font-family: himaji;
  letter-spacing: 1.92px;
  text-align: center;
  position: relative;
  background-image: url(../images/home/catch-icon02.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: bottom;
  background-size: 500px;
}

@media screen and (max-width: 599px) {
  .p-top-catch-title03 {
    font-size: 36px;
    background-size: 160px;
  }
}

.p-top-catch-text {
  margin: 20px auto 0;
  width: 602px;
  color: #222;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-top-catch-text {
    margin: 15px auto 0;
    width: 90%;
  }
}

.p-top-corona {
  margin: 45px auto 25px;
}

@media screen and (max-width: 1023px) {
  .p-top-corona {
    width: 90%;
  }
}

@media screen and (max-width: 599px) {
  .p-top-corona {
    margin: 30px auto 50px;
  }
}

.p-top-corona-title {
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #0268b6;
  padding: 19px 0;
  text-align: center;
  color: #222;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.p-top-corona-title.close ._accordion::before {
  content: none;
}

.p-top-corona-title ._accordion {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 15px;
  height: 15px;
}

.p-top-corona-title ._accordion::before,
.p-top-corona-title ._accordion::after {
  display: block;
  content: "";
  background-color: #0268b6;
  position: absolute;
  width: 15px;
  height: 3px;
  top: 6px;
  left: 0;
}

.p-top-corona-title ._accordion::before {
  width: 3px;
  height: 15px;
  top: 0;
  left: 6px;
}

.p-top-corona-title span {
  position: relative;
}

.p-top-corona-title span::before,
.p-top-corona-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-top-corona-title span::before {
  width: 51px;
  height: 21px;
  background-image: url(../images/home/corona-icon01.png);
  background-size: cover;
  left: -70px;
}

@media screen and (max-width: 599px) {
  .p-top-corona-title span::before {
    width: 42px;
    height: 17px;
    left: -50px;
  }
}

.p-top-corona-title span::after {
  width: 20px;
  height: 37px;
  background-image: url(../images/home/corona-icon02.png);
  background-size: cover;
  right: -40px;
}

@media screen and (max-width: 599px) {
  .p-top-corona-title span::after {
    right: -65px;
  }
}

.p-top-corona-box {
  display: none;
  margin-top: 10px;
  border: 1px solid #ccc;
  padding: 20px 24px 20px;
  background-color: #fff;
}

.p-top-corona-text {
  font-size: 14px;
  line-height: 2;
}

.p-top-corona-text ._marker {
  font-weight: bold;
  background-color: #ffef64;
}

.p-top-corona-text ._caution {
  font-weight: bold;
  color: #e71f19;
}

.p-top-experience {
  padding-bottom: 73px;
}

@media screen and (max-width: 599px) {
  .p-top-experience {
    padding-bottom: 70px;
  }
}

.p-top-experience-background {
  height: calc(100% - 160px);
  background-image: url(../images/home/experience-background.jpg);
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: absolute;
  top: 200px;
}

@media screen and (max-width: 599px) {
  .p-top-experience-background {
    background-image: url(../images/common/background02.png);
    background-size: inherit;
    background-repeat: repeat;
  }
}

.p-top-experience-inner {
  position: relative;
  margin: 0 auto;
  width: 1000px;
}

@media screen and (max-width: 1023px) {
  .p-top-experience-inner {
    width: 90%;
  }
}

.p-top-experience-heading {
  font-family: himaji;
  text-align: center;
}

.p-top-experience-heading._ja {
  color: #2e1500;
  font-size: 60px;
}

@media screen and (max-width: 599px) {
  .p-top-experience-heading._ja {
    font-size: 48px;
  }
}

.p-top-experience-heading._en {
  color: #0268e6;
  font-size: 16px;
}

.p-top-experience-list {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .p-top-experience-list {
    margin-top: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-top-experience-list::after {
  content: "";
  display: block;
  width: calc(25% - 1.5px);
}

@media screen and (max-width: 767px) {
  .p-top-experience-list::after {
    width: calc(50% - 1.5px);
  }
}

.p-top-experience-list::before {
  content: "";
  display: block;
  width: calc(25% - 1.5px);
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (max-width: 767px) {
  .p-top-experience-list::before {
    width: calc(50% - 1.5px);
  }
}

.p-top-experience-item {
  position: relative;
  margin-top: 2px;
  background-color: #fff;
  border-radius: 10px;
  width: calc(25% - 1.5px);
}

@media screen and (max-width: 767px) {
  .p-top-experience-item {
    width: calc(50% - 1.5px);
  }
}

@media screen and (max-width: 767px) {
  .p-top-experience-item:nth-child(odd) {
    margin-right: 3px;
  }
}

.p-top-experience-item::before {
  content: attr(data);
  display: block;
  position: relative;
  z-index: 1;
}

.p-top-experience-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: border-width 100ms;
  transition: border-width 100ms;
  border: 0 solid #0268e6;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 0;
}

.p-top-experience-item:hover::after {
  border-width: 3px;
}

.p-top-experience-link {
  position: relative;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  border: 0 solid #fff;
  border-radius: 10px;
  height: 100%;
  z-index: 2;
}

.p-top-experience-link-top {
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-top-experience-link {
    padding: 10px;
  }
}

.p-top-experience-link-bottom {
  padding-top: 9px;
  border-top: 1px dotted #222;
}

.p-top-experience-image {
  position: relative;
  padding-top: 68%;
}

.p-top-experience-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.p-top-experience-title {
  margin-top: 15px;
  color: #222;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 599px) {
  .p-top-experience-title {
    margin-top: 10px;
    font-size: 16px;
  }
}

.p-top-experience-text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.p-top-experience-price {
  color: #0268e6;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

@media screen and (max-width: 599px) {
  .p-top-experience-price {
    text-align: left;
  }
}

.p-top-experience-price span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
}

.p-top-experience-icon {
  position: relative;
  margin-top: 25px;
  max-width: 140px;
  width: 100% !important;
}

.p-top-experience-icon::before,
.p-top-experience-icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
}

@media screen and (max-width: 599px) {
  .p-top-experience-icon::before,
  .p-top-experience-icon::after {
    bottom: 15px;
  }
}

.p-top-experience-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0268b6;
}

.p-top-experience-icon::after {
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-top-experience-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px auto 0;
}

@media screen and (max-width: 599px) {
  .p-top-experience-button {
    width: 90%;
  }
}

.p-top-handmade {
  padding: 0 0 60px;
}

.p-top-handmade .p-top-handmade_top {
  width: 100%;
  height: 8vw;
  margin-bottom: -10px;
  background-image: url(../images/common/background03-top.png);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-top-handmade .p-top-handmade_top {
    height: 23.5vw;
    background-image: url(../images/common/background03-top_sp.png);
  }
}

.p-top-handmade .p-top-handmade_bottom {
  background-image: url(../images/common/background03.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 0 60px;
}

.p-top-handmade-text01 {
  color: #2e1500;
  font-size: 24px;
  font-family: himaji;
  letter-spacing: 1.2px;
  text-align: center;
}

.p-top-handmade-text02 {
  margin-top: 10px;
  color: #2e1500;
  font-size: 60px;
  font-family: himaji;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-top-handmade-text02 {
    font-size: 40px;
  }
}

.p-top-handmade-text03 {
  margin-top: 10px;
  color: #0268b6;
  font-size: 16px;
  font-family: himaji;
  letter-spacing: 0.4px;
  text-align: center;
}

.p-top-handmade-text04 {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-top-handmade-text04 {
    width: 90%;
    margin: 20px auto 0;
  }
}

.p-top-handmade-list {
  margin-top: 30px;
}

.p-top-handmade-list .slick-slide {
  margin: 0 10px;
}

.p-top-handmade-item {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  margin-top: 50px;
  position: relative;
}

.p-top-handmade-link {
  display: block;
}

.p-top-handmade-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px 20px;
  height: 160px;
}

@media screen and (max-width: 1165px) {
  .p-top-handmade-link-box {
    padding: 10px 10px 20px;
  }
}

@media screen and (max-width: 799px) {
  .p-top-handmade-link-box {
    padding: 15px 20px 20px;
  }
}

.p-top-handmade-link-bottom {
  padding-top: 9px;
  border-top: 1px dotted #222;
}

.p-top-handmade-balloon {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 10;
}

.p-top-handmade-balloon-inner {
  position: relative;
  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;
  width: 71px;
  height: 71px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.25;
  background: #e85477;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-top-handmade-balloon-inner::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #e85477;
  z-index: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-top-handmade-image {
  position: relative;
  padding-top: 100%;
  z-index: 1;
}

.p-top-handmade-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-handmade-title {
  color: #222;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 1165px) {
  .p-top-handmade-title {
    font-size: 15px;
  }
}

@media screen and (max-width: 799px) {
  .p-top-handmade-title {
    font-size: 18px;
  }
}

.p-top-handmade-price {
  color: #0268e6;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

.p-top-handmade-price span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
}

.p-top-handmade-icon {
  position: relative;
  margin-top: 25px;
}

.p-top-handmade-icon::before,
.p-top-handmade-icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
}

.p-top-handmade-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0268b6;
}

.p-top-handmade-icon::after {
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-top-handmade-button {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .p-top-handmade-button {
    width: 90%;
    margin: 90px auto 0;
  }
}

.p-top-mainVisual-item {
  border-radius: 20px;
  overflow: hidden;
}

.p-top-mainVisual .slick-slide {
  margin: 0 5px;
}

.p-top-notice-contents01 {
  padding-top: 60px;
}

.p-top-notice-contents02 {
  margin-top: 100px;
}

@media screen and (max-width: 599px) {
  .p-top-notice-contents02 {
    margin-top: 80px;
  }
}

.p-top-notice-banner {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.p-top-notice-list01 {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .p-top-notice-list01 {
    width: 80%;
    margin: 90px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .p-top-notice-list01 {
    display: block;
    width: 90%;
  }
}

.p-top-notice-list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .p-top-notice-list02 {
    display: block;
  }
}

.p-top-notice-item01 {
  width: calc(50% - 20.5px);
}

@media screen and (max-width: 599px) {
  .p-top-notice-item01 {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .p-top-notice-item01:last-of-type {
    margin: 80px auto 0;
  }
}

.p-top-notice-item02 {
  width: calc(50% - 1px);
  position: relative;
}

@media screen and (max-width: 599px) {
  .p-top-notice-item02 {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .p-top-notice-item02:last-of-type {
    margin: 20px auto 0;
  }
}

.p-top-notice-link02 {
  display: block;
  position: relative;
}

.p-top-notice-title01 {
  color: #2e1500;
  font-size: 36px;
  font-family: himaji;
}

.p-top-notice-title01 span {
  margin-left: 10px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.p-top-notice-title02 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 60px;
  color: #fefefe;
  font-size: 30px;
  font-weight: 900;
}

@media screen and (max-width: 599px) {
  .p-top-notice-title02 {
    left: 20px;
  }
}

.p-top-notice-title02 span {
  display: block;
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .p-top-notice-title02 span {
    margin-top: 10px;
    font-size: 16px;
  }
}

.p-top-notice-news-list {
  height: 340px;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .p-top-notice-news-list {
    height: unset;
    margin-top: 20px;
  }
}

.p-top-notice-news-item:last-of-type {
  border-bottom: 1px solid #ccc;
}

.p-top-notice-news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 599px) {
  .p-top-notice-news-link {
    display: block;
    padding: 14px 0;
  }
}

.p-top-notice-news-date {
  margin-right: 40px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
}

.p-top-notice-news-title {
  color: #0056a8;
  font-size: 14px;
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .p-top-notice-news-title {
    margin-top: 10px;
  }
}

.p-top-notice-blog-list {
  height: 340px;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .p-top-notice-blog-list {
    height: unset;
  }
}

.p-top-notice-blog-item:not(:first-of-type) {
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .p-top-notice-blog-item:not(:first-of-type) {
    margin-top: 40px;
  }
}

.p-top-notice-blog-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-notice-blog-image {
  width: 160px;
  margin-right: 22px;
}

.p-top-notice-blog-image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 599px) {
  .p-top-notice-blog-image {
    width: 100px;
  }
}

.p-top-notice-blog-contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-top-notice-blog-date {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 599px) {
  .p-top-notice-blog-date {
    margin-top: 15px;
  }
}

.p-top-notice-blog-title {
  color: #0056a8;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .p-top-notice-blog-title {
    font-size: 14px;
    line-height: 1.25;
  }
}

@media screen and (max-width: 599px) {
  .p-top-notice-button {
    width: 90%;
    margin: 40px auto 0;
  }
}

.p-top-notice-icon {
  position: relative;
}

@media screen and (max-width: 599px) {
  .p-top-notice-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    width: 36px;
    height: 36px;
  }
}

.p-top-notice-icon::before,
.p-top-notice-icon::after {
  position: absolute;
  top: 0;
  bottom: 70px;
  right: 20px;
  margin: auto;
  content: "";
}

@media screen and (max-width: 599px) {
  .p-top-notice-icon::before,
  .p-top-notice-icon::after {
    bottom: 0;
    right: 0;
  }
}

.p-top-notice-icon::before {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
}

@media screen and (max-width: 599px) {
  .p-top-notice-icon::before {
    width: 20px;
    height: 20px;
  }
}

.p-top-notice-icon::after {
  right: 33px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 599px) {
  .p-top-notice-icon::after {
    right: 7px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.p-handmade {
  background-image: url(../images/common/background03.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 96px 0 60px;
}

@media screen and (max-width: 1023px) {
  .p-handmade {
    background-image: url(../images/common/background03-sp.png);
    padding: 85px 0 40px;
  }
}

.p-handmade-text01 {
  color: #2e1500;
  font-size: 24px;
  font-family: himaji;
  letter-spacing: 1.2px;
  text-align: center;
}

.p-handmade-text02 {
  margin-top: 10px;
  color: #2e1500;
  font-size: 60px;
  font-family: himaji;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-handmade-text02 {
    font-size: 40px;
  }
}

.p-handmade-text03 {
  margin-top: 10px;
  color: #0268b6;
  font-size: 16px;
  font-family: himaji;
  letter-spacing: 0.4px;
  text-align: center;
}

.p-handmade-text04 {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-handmade-text04 {
    width: 90%;
    margin: 20px auto 0;
  }
}

.p-handmade-list {
  margin-top: 30px;
}

.p-handmade-list .slick-slide {
  margin: 0 10px;
}

.p-handmade-item {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  margin-top: 50px;
  position: relative;
}

.p-handmade-link {
  display: block;
}

.p-handmade-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px 20px;
  height: 160px;
}

.p-handmade-link-bottom {
  padding-top: 9px;
  border-top: 1px dotted #222;
}

.p-handmade-balloon {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 10;
}

.p-handmade-balloon-inner {
  position: relative;
  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;
  width: 71px;
  height: 71px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.25;
  background: #e85477;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-handmade-balloon-inner::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #e85477;
  z-index: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-handmade-image {
  position: relative;
  padding-top: 100%;
  z-index: 1;
}

.p-handmade-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-handmade-title {
  color: #222;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}

.p-handmade-price {
  color: #0268e6;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

.p-handmade-price span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
}

.p-handmade-icon {
  position: relative;
  margin-top: 25px;
}

.p-handmade-icon::before,
.p-handmade-icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
}

.p-handmade-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0268b6;
}

.p-handmade-icon::after {
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-handmade-button {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .p-handmade-button {
    width: 90%;
    margin: 90px auto 0;
  }
}

.p-handmade-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-handmade-list:before {
  display: block;
  content: "";
  width: 23.5%;
  margin-top: 65px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (max-width: 767px) {
  .p-handmade-list:before {
    width: 49%;
  }
}

.p-handmade-list:after {
  display: block;
  content: "";
  width: 23.5%;
  margin-top: 65px;
}

@media screen and (max-width: 767px) {
  .p-handmade-list:after {
    width: 49%;
  }
}

.p-handmade-lead {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
  text-align: center;
}

.p-handmade-item {
  width: 23.5%;
  margin-top: 65px;
}

@media screen and (max-width: 767px) {
  .p-handmade-item {
    width: 49%;
  }
}

@media screen and (max-width: 1023px) {
  .p-handmade-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-handmade-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 360px) {
  .p-handmade-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-handmade-link-box {
    padding: 15px 10px 20px;
  }
}

.p-corona {
  margin-top: 32px;
  padding-bottom: 31px;
}

.p-contact-title-cont {
  padding: 37px 0 41px;
}

.p-handmade-text02 {
  color: #0268b6;
}

.p-handmade-text03 {
  margin-top: 4px;
  display: block;
}

.p-handmade-list {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-handmade-text04 {
    width: 100%;
    margin: 0;
  }
}

.p-handmade-cta {
  margin-top: 105px;
}

.p-handmade-cta__inner {
  background-color: #ffef64;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 80px 40px 42px;
  margin-top: -28px;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 72px 20px 42px;
    margin-top: -61px;
  }
}

.p-handmade-cta__inner img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__inner img {
    margin-bottom: 21px;
  }
}

.p-handmade-cta__image {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__image {
    width: 100%;
    text-align: center;
  }
}

.p-handmade-cta__image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__image img {
    margin-bottom: 21px;
  }
}

.p-handmade-cta__title {
  color: #2e1500;
  font-size: 48px;
  font-family: himaji;
  letter-spacing: 1.92px;
  text-align: center;
  position: relative;
  background-image: url(../images/home/catch-icon01.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: bottom;
  background-size: 370px;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__title {
    font-size: 36px;
    background-size: 224px;
  }
}

.p-handmade-cta__title span {
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__title span {
    font-size: 30px;
  }
}

.p-handmade-cta__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__content {
    margin-left: 0;
  }
}

.p-handmade-cta__content h3 {
  color: #0268b6;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.p-handmade-cta__content p {
  line-height: 1.5;
}

.p-handmade-cta__content-text.s {
  font-size: 14px;
  font-weight: 500;
  margin-top: 21px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.p-handmade-cta__content-text.s span {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .p-handmade-cta__content-text.s span {
    font-weight: 500;
  }
}

.p-handmade-cta .p-button02 {
  max-width: 480px;
  width: 100%;
}

.p-handmade-text02.-blue {
  color: #0268b6;
}

.p-404 {
  padding: 25px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-404 {
    text-align: left;
  }
}

.p-404-text {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.71429;
}

.p-404-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.38462;
}

.p-404-button {
  display: block;
  width: 180px;
  height: 40px;
  margin: 75px auto 0;
  background-color: #fff;
  border-radius: 30px;
  border: 2px solid #222;
  color: #222;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

.p-404-button:hover {
  background-color: #0268b6;
  color: #fff;
  border: 2px solid #0268b6;
  -webkit-transition: all 0.5;
  transition: all 0.5;
  opacity: 1;
}

/*===================
共通
===================*/
.p-store-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-store-title {
    margin-bottom: 27px;
  }
}

.l-inner {
  width: 1044px;
  max-width: 100%;
  padding: 0 22px;
  margin: 0 auto;
}

@media screen and (max-width: 360px) {
  .l-inner {
    padding: 0 10px;
  }
}

/*===================
about
===================*/
.p-store-about {
  padding: 48px 0 0;
}

@media screen and (max-width: 767px) {
  .p-store-about {
    padding: 19px 0 0;
  }
}

.p-store-about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 37px;
}

@media screen and (min-width: 768px) {
  .p-store-about-inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .p-store-about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 55px;
  }
}

.p-store-about-inner .p-store-about-introduce {
  width: 56%;
  max-width: 100%;
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-store-about-inner .p-store-about-introduce {
    width: 100%;
    padding-top: 0;
  }
}

.p-store-about-inner .p-store-about-introduce .p-store-about-introduce-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .p-store-about-inner .p-store-about-introduce .p-store-about-introduce-title {
    line-height: 1.4;
    margin-bottom: 16px;
  }
}

.p-store-about-inner
  .p-store-about-introduce
  .p-store-about-introduce-title
  .pc-only {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-store-about-inner
    .p-store-about-introduce
    .p-store-about-introduce-title
    .pc-only {
    display: none;
  }
}

.p-store-about-inner
  .p-store-about-introduce
  .p-store-about-introduce-title
  .sp-only {
  display: none;
}

.p-store-about-inner .p-store-about-introduce .p-store-about-introduce-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.14285;
}

.p-store-about-inner .p-store-about-introduce-img {
  width: 40%;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .p-store-about-inner .p-store-about-introduce-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.p-store-about-inner .p-store-about-introduce-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-store-about-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-store-about-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-store-about-card .p-store-about-card-body {
  width: 33.33333%;
}

@media screen and (max-width: 767px) {
  .p-store-about-card .p-store-about-card-body {
    width: 100%;
  }
  .p-store-about-card .p-store-about-card-body:not(:last-child) {
    margin-bottom: 30px;
  }
}

.p-store-about-card .p-store-about-card-body:not(:last-child) {
  margin-right: 40px;
}

.p-store-about-card .p-store-about-card-body .p-store-about-card-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .p-store-about-card .p-store-about-card-body .p-store-about-card-img {
    margin-bottom: 3px;
  }
}

.p-store-about-card .p-store-about-card-body .p-store-about-card-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-store-about-card .p-store-about-card-body .p-store-about-card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7142;
}

/*===================
profile
===================*/
.p-store-profile {
  padding: 98px 0 0;
}

.p-store-profile-table {
  width: 100%;
}

.p-store-profile-table tr {
  border-top: 1px solid #ccc;
  vertical-align: middle;
}

.p-store-profile-table tr th,
.p-store-profile-table tr td {
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  padding: 10px 0;
}

.p-store-profile-table tr th {
  width: 140px;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-store-profile-table tr th {
    width: 85px;
  }
}

.p-store-profile-table tr td {
  width: calc(100% - 140px);
  font-size: 14px;
  font-weight: 400;
  line-height: 2.1438;
}

@media screen and (max-width: 767px) {
  .p-store-profile-table tr td {
    width: calc(100% - 85px);
  }
}

/*===================
access
===================*/
.p-store-access {
  padding: 138px 0 0;
}

@media screen and (max-width: 767px) {
  .p-store-access {
    padding: 104px 0 0;
  }
}

.p-store-access .p-store-access-text {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-store-access .p-store-access-text {
    font-size: 14px;
    line-height: 2.1;
    margin-bottom: 20px;
  }
}

.p-store-access .p-store-access-text span {
  font-weight: 700;
}

.p-store-access .p-store-access-map {
  width: 100%;
  padding-top: 40%;
  position: relative;
  margin-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .p-store-access .p-store-access-map {
    padding-top: 134%;
    margin-bottom: 27px;
  }
}

.p-store-access .p-store-access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-store-access .p-store-access-map-link {
  font-size: 14px;
  color: #0268b6;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

.p-store-access-information .p-store-access-information-title {
  font-size: 16px;
  font-weight: 700;
  background: #fddfe1;
  padding: 7px;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}

.p-store-access-information .p-store-access-information-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: #e85477;
}

.p-store-access-information-list {
  margin-bottom: 22px;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-list {
    margin-bottom: -5px;
  }
}

.p-store-access-information-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 14px 0;
}

.p-store-access-information-item
  .p-store-access-information-pink
  .p-store-access-information-number {
  font-size: 14px;
  font-weight: 400;
  background: #e85477;
  border-radius: 50%;
  padding: 7px 10px;
  color: #fff;
  width: 100%;
}

.p-store-access-information-how {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 10px;
}

.p-store-access-information-how .p-store-access-information-text {
  font-size: 14px;
  line-height: 2.2;
  font-weight: 400;
}

.p-store-access-information-how .p-store-access-information-text .is-yellow {
  background: #f7f400;
}

.p-store-access-information-how .p-store-access-information-text .is-bold {
  font-weight: 700;
}

.p-store-access-information-caution {
  font-size: 14px;
  color: #f3615c;
  font-weight: 700;
  margin-bottom: 95px;
  line-height: 2.14285;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-caution {
    margin-bottom: 97px;
  }
}

.p-store-access-information-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-store-access-information-card-item {
  width: 33.33333%;
  height: 110px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-card-item {
    width: 100%;
    height: 90px;
  }
}

.p-store-access-information-card-item:not(:last-child) {
  margin-right: 22px;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-card-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.p-store-access-information-card-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-img {
  width: 40px;
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-img
  img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-img.tel {
  width: 31px;
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-img.tel
  img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text {
  padding-left: 10px;
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text
  .p-store-access-information-card-item-tel {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text
  .p-store-access-information-card-item-openhours {
  font-size: 14px;
  font-weight: 400;
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text
  .p-store-access-information-card-item-reserve {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-card-item
    a
    .p-store-access-information-card-item-text
    .p-store-access-information-card-item-reserve {
    margin-bottom: 3px;
  }
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text
  .p-store-access-information-card-item-visit {
  font-size: 24px;
  font-weight: 700;
  padding-right: 38px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-card-item
    a
    .p-store-access-information-card-item-text
    .p-store-access-information-card-item-visit {
    padding-right: 50px;
  }
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text
  .p-store-access-information-card-item-visit::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: -10px;
  right: 0;
  background: url(../image/access/what-image09.png) no-repeat center
    center/contain;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-card-item
    a
    .p-store-access-information-card-item-text
    .p-store-access-information-card-item-visit::after {
    top: -6px;
  }
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text
  .p-store-access-information-card-item-mail {
  font-size: 20px;
  font-weight: 700;
  padding-right: 105px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-store-access-information-card-item
    a
    .p-store-access-information-card-item-text
    .p-store-access-information-card-item-mail {
    padding-right: 122px;
  }
}

.p-store-access-information-card-item
  a
  .p-store-access-information-card-item-text
  .p-store-access-information-card-item-mail::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 0;
  right: 0;
  background: url(../image/access/what-image09.png) no-repeat center
    center/contain;
}

.p-blog--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 39px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-blog--contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90%;
  }
}

.p-blog--archive {
  max-width: 728px;
  width: 73%;
}

@media screen and (max-width: 767px) {
  .p-blog--archive {
    width: 100%;
  }
}

.p-blog--archive-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-top: 1px solid #cccccc;
  padding: 30px 0 39px;
}

.p-blog--archive-item a:last-child {
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 767px) {
  .p-blog--archive-item a {
    padding: 24px 0;
  }
}

.p-blog--archive-item a img {
  width: 160px;
  height: 105px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 39px;
}

@media screen and (max-width: 767px) {
  .p-blog--archive-item a img {
    margin-right: 10px;
    width: 150px;
  }
}

.p-blog--box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-blog--time {
  font-size: 14px;
  display: inline-block;
  margin: 4px 9px 16px 0;
}

@media screen and (max-width: 767px) {
  .p-blog--time {
    margin: 4px 9px 10px 0;
  }
}

.p-blog--category {
  background-color: #ffef64;
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
  width: 72px;
  display: inline-block;
  line-height: 20px;
}

.p-blog h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .p-blog h2 {
    font-size: 14px;
  }
}

.p-blog--sideber {
  width: 23%;
}

@media screen and (max-width: 767px) {
  .p-blog--sideber {
    width: 100%;
    margin-top: 101px;
  }
}

.p-blog--sideber h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.p-blog--sideber-category {
  background-color: #fff;
  border-radius: 10px;
  padding: 19px 18px;
}

.p-blog--sideber-category li {
  padding-bottom: 19px;
  border-bottom: 1px dashed #cccccc;
  font-size: 14px;
}

.p-blog--sideber-category li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 19px;
}

.p-blog--sideber-item {
  padding-bottom: 41px;
}

.p-blog--sideber select {
  background-color: #fff;
  display: block;
  border: 1px solid #000;
  width: 100%;
  border-radius: 5px;
  padding: 15px 10px;
  position: relative;
}

.p-blog--single {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.p-blog--single-contents {
  padding-top: 30px;
}

.p-blog--single-contents p {
  font-size: 14px;
  line-height: 30px;
  padding: 14px 0;
  color: #222222;
}

.p-blog--single-contents img {
  padding: 21px 0;
  max-width: 100%;
  height: auto;
}

.p-blog--single-contents a {
  color: #0056a8;
  text-decoration: underline;
}

.p-blog--single-contents ul {
  padding: 20px 0;
}

.p-blog--single-contents ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 28px;
  color: #222222;
}

.p-blog--single-contents ul li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 10px;
  border-radius: 50%;
  background-color: #f54789;
  left: 0;
  top: 16px;
  margin-top: -7px;
}

.p-blog--single-contents ol {
  padding: 20px 0;
  list-style-type: none;
}

.p-blog--single-contents ol li {
  position: relative;
  font-size: 14px;
  line-height: 28px;
  color: #222222;
}

.p-blog--single-contents ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  /* 以下は自由に装飾... */
  padding-right: 0.5em;
  font-weight: bold;
  color: #0268b6;
}

.p-blog--single h2 {
  border-bottom: 1px solid #cccccc;
  display: block;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .p-blog--single h2 {
    line-height: 36px;
    padding-bottom: 0;
  }
}

.p-blog--single h2::before {
  position: absolute;
  content: "";
  background-color: #257cbe;
  width: 56%;
  height: 1px;
  display: inline-block;
  bottom: 0;
}

.p-blog--single h3 {
  color: #0268b6;
  border-bottom: 2px dashed #0268b6;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  padding: 20px 0 10px;
}

.p-blog--single h4 {
  margin: 20px 0;
  font-size: 16px;
  line-height: 40px;
  background-color: #fddfe1;
  font-weight: 700;
  padding-left: 15px;
  position: relative;
}

.p-blog--single h4::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 3px;
  background-color: #e85477;
  left: 0;
}

.p-blog--single h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background-color: #0aa24b;
  line-height: 30px;
  padding-left: 10px;
  margin: 20px 0;
}

.p-blog--single .box01 {
  position: relative;
  background: #fbe9ba;
  color: #454545;
  width: 100%;
  padding: 10px 11px;
  margin: 20px 0;
}

.p-blog--single .box01::after {
  position: absolute;
  content: "";
  right: -1px;
  top: -1px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ffdb88 #f4f4ea #ffdb88;
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.p-blog--single .box01 p {
  border: dashed 2px #f58c05;
  padding: 22px 23px 28px;
  color: #222222;
}

.p-blog--single .box02 {
  position: relative;
  margin: 2em 0;
  padding: 10px 23px 10px;
  border: solid 3px #e85477;
  background-color: #fff;
}

.p-blog--single .box02 .box-title {
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #e85477;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.p-blog--single .box02 p {
  font-size: 14px;
  line-height: 30px;
  color: #222222;
}

.p-blog--single .box03 {
  background-color: #fff;
  border: 1px solid #0268b6;
  border-radius: 5px;
  padding: 10px 11px;
}

.p-blog--single .box03 .p-box--url {
  position: relative;
  padding: 0 29px 0;
  color: #222222;
}

.p-blog--single .box03 .p-box--url::before {
  width: 20px;
  height: 20px;
  background-image: url(../images/blog/single-img03.jpg);
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
}

.p-blog--single .box03 .p-box--contents .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-blog--single .box03 .p-box--contents img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  padding-top: 10px;
  padding-right: 11px;
  padding-bottom: 0;
}

.p-blog--single .box03 .p-box--contents .title {
  color: #0268b6;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding-top: 11px;
}

.p-blog--single .box03 .p-box--contents p {
  padding: 12px 0 15px;
  color: #222222;
}

.p-blog--single .box03 .p-box--contents a {
  width: 100%;
  text-align: right;
  display: block;
  text-decoration: none;
}

.p-blog--single .box03 .p-box--text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-blog--single .box03 .p-box--text .wp-block-group__inner-container {
  display: block;
}

@media screen and (max-width: 599px) {
  .blog .p-contact-title-cont {
    padding: 47px 0 41px;
  }
  .blog .p-blog--contents {
    padding-top: 9px;
  }
  .blog .p-blog--archive-item a {
    padding: 22px 0 13px;
  }
}

.single h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.single .p-blog {
  padding-top: 46px;
}

@media screen and (max-width: 820px) {
  .single .p-blog {
    width: 90%;
    margin: 0 auto;
    padding-top: 31px;
  }
}

.pager .pagination {
  text-align: center;
  padding-top: 43px;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .pager .pagination li {
    border-radius: 0;
    margin: 0 13px;
  }
}

.pager .pagination li.pre,
.pager .pagination li.next {
  background: #0268b6;
  color: #fff;
}

.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pager .pagination li.pre a,
.pager .pagination li.next a {
  color: #fff;
  font-size: 20px;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .pager .pagination li a span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 16px;
  }
}

.pager .pagination li a:hover,
.pager .pagination li.active a {
  color: #000;
  background: #ffef64;
  border-radius: 10px;
  border-radius: 50px;
  animation: animScale 0.4s ease-out;
  transform-origin: 50% 50%;
  -webkit-animation: animScale 0.4s ease-out;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animScale 0.4s ease-out;
  -moz-transform-origin: 50% 50%;
}

@media only screen and (max-width: 767px) {
  .pager .pagination li a:hover,
  .pager .pagination li.active a {
    -webkit-animation: none;
    animation: none;
    background: transparent;
    color: #fff;
    opacity: 0.7;
  }
}

@keyframes animScale {
  0% {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  40% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  60% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  80% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes animScale {
  0% {
    -webkit-transform: scale(0.8, 0.8);
  }
  40% {
    -webkit-transform: scale(1.2, 1.2);
  }
  60% {
    -webkit-transform: scale(1, 1);
  }
  80% {
    -webkit-transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
  }
}

@media only screen and (max-width: 767px) {
  .pager .pagination li {
    display: none;
  }
  .pager .pagination li.pre,
  .pager .pagination li.next {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }
  .pager .pagination li.pre a,
  .pager .pagination li.next a {
    width: 100%;
    text-align: center;
    position: relative;
  }
  .pager .pagination li.pre span::after {
    content: "　前の12件へ";
    font-size: 12px;
    position: absolute;
    width: 85px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(2%, -50%);
    transform: translate(2%, -50%);
  }
  .pager .pagination li.next span::before {
    content: "次の12件へ　";
    font-size: 12px;
    position: absolute;
    width: 85px;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(2%, -50%);
    transform: translate(2%, -50%);
  }
  .pager .pagination li.next a span {
    left: auto;
    right: 16px;
  }
}

.s-pager {
  max-width: 320px;
  width: 100%;
  margin: 30px auto;
}

.s-pager .s-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.s-pager .s-pagination a {
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #000;
  text-align: center;
  height: 40px;
  display: inline-block;
  padding-top: 12px;
  font-weight: 700;
}

.s-pager .s-pagination .s-pre {
  border-radius: 50%;
  width: 40px;
}

.s-pager .s-pagination .s-pre.hidden {
  visibility: hidden;
}

.s-pager .s-pagination .all {
  width: 130px;
  border-radius: 20px;
}

.s-pager .s-pagination .s-next {
  border-radius: 50%;
  width: 40px;
}

.s-pager .s-pagination .s-next.hidden {
  visibility: hidden;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0268b6;
  border-left: 2px solid #0268b6;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.contact-input.-textarea {
  height: auto !important;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.outside {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #cccccc;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f3f3f3;
}

.inside {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #444;
  left: 3px;
  top: 3px;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
}

.no-transforms .inside {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}

.radio-input:checked + .outside .inside {
  -webkit-animation: radio-select 0.1s linear;
  animation: radio-select 0.1s linear;
  -webkit-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
  top: -2px;
  left: -2px;
}

.no-transforms .radio-input:checked + .outside .inside {
  width: 10px;
  height: 10px;
}

.contact .p-catch-title03 {
  background-image: none;
}

@media screen and (max-width: 599px) {
  .contact .p-contact--thanks {
    width: 90%;
  }
}

.p-contact {
  margin: 36px auto;
}

.p-contact-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-contact-title {
    font-size: 24px;
  }
}

.p-contact-title-cont {
  background-image: url(../images/contact/contact-image01.png);
  padding: 66px 0 41px;
  background-size: contain;
  background-position: center;
}

.p-contact--nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 26%;
  margin: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .p-contact--nav ul {
    width: 66%;
  }
}

.p-contact--nav ul li {
  font-size: 16px;
  color: #999999;
}

.p-contact--nav ul li span {
  background-color: #999999;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  line-height: 22px;
  text-align: center;
  display: inline-block;
  padding-top: 2px;
  margin-right: 9px;
}

@media screen and (max-width: 599px) {
  .p-contact--nav ul li span {
    margin-right: 2px;
  }
}

.p-contact--nav ul .-blue {
  color: #0268b6 !important;
}

.p-contact--nav ul .-blue span {
  background-color: #0268b6 !important;
}

.p-button02.-form {
  max-width: 320px;
  width: 100%;
  margin: 41px auto 30px;
  background-color: #0268b6;
  color: #fff;
  border-color: #0268b6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-button02.-form:hover {
  color: #0268b6;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.privacy-link a {
  text-decoration: underline !important;
  color: #0268b6 !important;
  font-weight: 700;
}

.c-tbl--form.-confilm dt {
  padding-bottom: 12px;
}

.c-tbl--form.-confilm dd {
  font-size: 14px;
  line-height: 30px;
  padding-bottom: 8px;
}

.c-tbl--form.-confilm p {
  text-align: center;
  font-weight: 700;
  margin-top: 70px;
}

.c-tbl--form.-confilm .p-button02.-form {
  margin: 20px auto 30px;
}

.p-contact--thanks {
  width: 80%;
  margin: 40px auto;
}

@media screen and (max-width: 599px) {
  .p-contact--thanks {
    width: 100%;
  }
}

.p-contact--thanks h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.p-contact--thanks p {
  font-size: 14px;
  line-height: 30px;
}

.p-contact--thanks p span {
  font-weight: 700;
}

.p-contact--thanks .p-button02 {
  width: 149px;
  margin: 50px auto;
  padding: 10px 0;
}

.online .p-contact-title-cont {
  padding-bottom: 62px;
}

@media screen and (max-width: 599px) {
  .online .p-contact-title-cont {
    padding: 49px 0 41px;
  }
}

.online .p-corona {
  margin-top: 39px;
  padding-bottom: 14px;
}

@media screen and (max-width: 599px) {
  .online .p-corona {
    margin-top: 30px;
  }
}

.online .p-contact--nav ul {
  width: 38%;
}

@media screen and (max-width: 599px) {
  .online .p-contact--nav ul {
    width: 100%;
  }
}

@media screen and (max-width: 599px) and (max-width: 599px) {
  .online .p-contact--nav ul li {
    margin-right: 1px;
  }
}

.online .c-tbl--form {
  max-width: 800px;
}

.online .c-tbl--form .contact-input {
  max-width: 800px;
}

.online--name {
  font-size: 26px;
  font-weight: 700;
  border-bottom: 1px solid #cccccc;
  width: 100%;
  padding-bottom: 8px;
  margin-top: 35px;
}

@media screen and (max-width: 599px) {
  .online--name {
    font-size: 20px;
  }
}

@media screen and (max-width: 599px) {
  .online .c-tbl--form {
    margin: 8px auto;
    width: 100%;
  }
}

.p-online--select {
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
}

.p-online--select span {
  display: block;
  font-weight: 700;
  padding-bottom: 7px;
}

.p-online--bonus {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .p-online--bonus {
    margin-top: 9px;
  }
}

.p-online--item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
}

@media screen and (max-width: 599px) {
  .p-online--item {
    padding-left: 28px;
    display: inline-block;
  }
}

.p-online--item span {
  background-image: url(../images/online/calendar-icon.png);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: cover;
}

.p-online--item:nth-child(2) span {
  background-image: url(../images/online/online_icon02.png);
}

.p-online--item:nth-child(3) span {
  background-image: url(../images/online/online-icon03.png);
}

.p-online--item:nth-child(4) span {
  background-image: none !important;
  width: 40px;
}

.p-online--experience {
  background-color: #fff;
  border: 1px solid #cccccc;
  padding: 22px 0 0;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
}

.p-online--experience--item {
  border-bottom: 1px solid #cccccc;
  width: 90%;
  margin: 0 auto 13px;
  padding-bottom: 18px;
}

.p-online--experience--item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.p-online--experience--item p {
  font-size: 14px;
}

.p-online--experience--ttl {
  font-weight: 700;
  padding-bottom: 11px;
}

.calendar {
  width: 100%;
  margin-top: 14px;
}

.calendar--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .calendar--block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 599px) {
  .calendar {
    background-color: #fff;
  }
}

.calendar p {
  text-align: center;
}

.calendar--container {
  width: 48%;
  max-width: 480px;
  background-color: #fff;
  padding-top: 17px;
}

@media screen and (max-width: 599px) {
  .calendar--container {
    width: 100%;
    background-color: transparent;
  }
}

.calendar--container h3 {
  text-align: center;
  font-size: 14px;
}

.calendar--container a {
  height: 59px;
  width: 100%;
  display: block;
}

.calendar--icon {
  display: block;
  position: relative;
  height: 42px;
  width: 100%;
}

.calendar--icon span {
  background-image: url(../images/online/calendar-icon.png);
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-size: cover;
  width: 20px;
  height: 20px;
}

.calendar tr {
  border: 1px solid #cccccc !important;
}

.calendar tr td {
  border-right: 1px solid #cccccc;
  width: 14.28571%;
  padding: 12px 0 0;
}

.calendar tr th {
  width: 14.28571%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 4px;
}

.calendar tr th .red {
  color: #e85477;
}

.calendar tr th .-blue {
  color: #0268b6;
}

.popup {
  display: none;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.popup p {
  font-size: 18px;
}

.popup--tbl {
  width: 100%;
  max-width: 560px;
  border: 1px solid #cccccc;
  margin-top: 7px;
}

.popup--tbl .time {
  width: 53%;
  max-width: 268px;
}

@media screen and (max-width: 599px) {
  .popup--tbl .time {
    width: 23%;
  }
}

.popup--tbl .icon {
  text-align: center;
  width: 23%;
}

@media screen and (max-width: 599px) {
  .popup--tbl .icon {
    width: 36%;
  }
}

.popup--tbl td {
  vertical-align: middle;
  border-right: 1px solid #cccccc;
  padding: 14px 10px 14px;
}

.popup--tbl td a {
  color: #0268b6;
  font-size: 14px;
  font-weight: 700;
  display: block;
  text-align: center;
}

.popup--tbl th {
  border-right: 1px solid #cccccc;
  text-align: center;
  padding: 7px 0 6px;
  font-size: 14px;
}

.popup--tbl tr {
  border-bottom: 1px solid #cccccc;
}

.popup--icon {
  display: block;
  position: relative;
}

.popup--icon span {
  background-image: url(../images/online/online_icon02.png);
  position: absolute;
  content: "";
  top: 50%;
  top: 33%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -95%);
  background-size: cover;
  width: 17px;
  height: 17px;
}

.popup--icon span::after {
  content: "空き枠あり";
  margin-left: -21px;
  text-align: center;
  bottom: -17px;
  width: 70px;
  display: inline-block;
  font-size: 12px;
  position: absolute;
}

.popup--contents {
  width: 100%;
  max-width: 560px;
  margin: 30px auto;
  background-color: #fff;
  padding: 18px 27px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .popup--contents {
    width: 90%;
    padding: 11px;
  }
}

.popup .js-modal-close {
  position: absolute;
  content: "";
  background-color: #000;
  width: 22px;
  height: 22px;
  top: -11px;
  right: -11px;
  border-radius: 50%;
}

.popup .js-modal-close span {
  background-color: #fff;
  width: 16px;
  height: 3px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
  left: 3px;
}

.popup .js-modal-close span:nth-child(2) {
  -webkit-transform: rotate(140deg);
  transform: rotate(140deg);
}

.show {
  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;
}

.modal__bg {
  width: 100%;
  height: 100vh;
  background-color: transparent;
}

.error-message {
  color: #ff0000;
}

.experience .p-handmade-text03 {
  display: block;
}

.experience .p-contact-title-cont {
  padding: 34px 0 28px;
}

.experience .p-corona {
  margin-top: 38px;
  padding-bottom: 0;
}

.experience .p-experience-item {
  margin-top: 2px;
  width: 248px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #fff;
  margin-bottom: 19px;
}

.experience .p-experience-item:hover {
  border: 2px solid #0268b6;
}

@media screen and (max-width: 599px) {
  .experience .p-experience-item {
    width: 49.5%;
  }
}

.experience .p-about-bottom {
  margin-top: 58px;
}

@media screen and (max-width: 599px) {
  .experience .p-experience-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

/*===================
gallery
===================*/
.p-gallery {
  padding: 35px 0 0;
}

/*===================
タブ
===================*/
.p-gallery-tabs {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-gallery-tabs .p-gallery-tab {
  width: 25%;
}

.p-gallery-tabs .p-gallery-tab:not(:last-child) {
  margin-right: 10px;
}

.p-gallery-tab a {
  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;
  color: #0268b6;
  background: #fff;
  padding: 11px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid #0268b6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media screen and (max-width: 992px) {
  .p-gallery-tab a {
    font-size: 10px;
  }
}

.p-gallery-tab a.active {
  background: #0268b6;
  color: #fff;
}

/*===================
gallery
===================*/
.p-gallery-image {
  padding: 40px 0 0;
}

.p-gallery-image-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -40px -20px 0 0;
}

@media screen and (min-width: 768px) {
  .p-gallery-image-item {
    width: calc(25% - 20px);
    margin: 40px 20px 0 0;
  }
  .p-gallery-image-item:not(:nth-child(4n)) {
    margin-right: 20px;
  }
  .p-gallery-image-item a {
    display: block;
    padding-top: 100%;
    position: relative;
  }
  .p-gallery-image-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  /*===================
gallery
===================*/
  .p-gallery-image {
    padding: 30px 0 0;
  }
  .p-gallery-image-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -20px -10px 0 0;
  }
  .p-gallery-image-item {
    width: calc(50% - 10px);
    margin: 20px 10px 0 0;
  }
  .p-gallery-image-item a {
    display: block;
    padding-top: 100%;
    position: relative;
  }
  .p-gallery-image-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  /*===================
タブ
===================*/
  .p-gallery-tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-gallery-tabs .p-gallery-tab {
    width: 48.5%;
    margin-bottom: 10px;
  }
  .p-gallery-tabs .p-gallery-tab:not(:last-child) {
    margin-right: 0;
  }
  .p-gallery-tab a {
    border-radius: 5px;
    font-size: 14px;
  }
}

.p-privacy-policy {
  max-width: 800px;
  margin: 0 auto;
}

.p-privacy-policy-text {
  border-bottom: 1px solid #cccccc;
  margin-top: 30px;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 2.14286;
}

.p-privacy-policy-dl {
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
  font-size: 14px;
  line-height: 2.14286;
}

.p-privacy-policy-dt {
  font-weight: 700;
}

.p-privacy-policy-dd + .p-privacy-policy-dd {
  margin-top: 25px;
}

.p-sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
}

@media screen and (max-width: 767px) {
  .p-sitemap {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-sitemap-row {
    width: 40%;
  }
}

@media screen and (max-width: 599px) {
  .p-sitemap-row {
    width: 100%;
  }
}

.p-sitemap-item {
  margin-top: 30px;
}

.p-sitemap-item + .p-sitemap-item {
  margin-top: 25px;
}

.p-sitemap-link {
  display: block;
  padding-left: 25px;
  background: url(../images/svg/icon-arrow01.svg) no-repeat left center;
}

.p-sitemap-sub-item {
  padding-left: 25px;
}

.p-sitemap-sub-link {
  display: block;
  margin-top: 5px;
  padding-left: 15px;
  background: url(../images/svg/icon-arrow02.svg) no-repeat left center;
}

.p-sitemap-target-link {
  display: block;
  padding-left: 25px;
  background: url(../images/svg/icon-target.svg) no-repeat left center;
}

.pc-only {
  display: block !important;
}

@media screen and (max-width: 599px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}

@media screen and (max-width: 599px) {
  .sp-only {
    display: block !important;
  }
}

/* -----------------------
margin
----------------------- */
.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt35 {
  margin-top: 35px;
}

@media screen and (max-width: 1023px) {
  .lmt15 {
    margin-top: 15px;
  }
}

/* --------------0705------------------------- */
.news-title-en::before {
  content: "NEWS";
  display: inline-block;
}
.blog-title-en::before {
  content: "BLOG";
  display: inline-block;
}
.gallery-title-en::before {
  content: "GALLERY";
  display: inline-block;
}
.store-title-en::before {
  content: "STORE";
  display: inline-block;
}
/* --------------0705------------------------- */
/* --------------1125------------------------- */
.p-top-experience-icon {
  background: #0268b6;
  color: #fff;
  border-radius: 12px;
  width: 140px;
  text-align: center;
  font-size: 14px;
  height: 26px;
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: center;
}
.p-top-experience-icon::after {
  right: 15px;
}
.p-top-experience-icon::before {
  display: none;
}
@media screen and (max-width: 599px) {
  .p-top-experience-icon::after {
    bottom: 0;
  }
}
.p-top-handmade-icon {
  background: #0268b6;
  color: #fff;
  border-radius: 12px;
  width: 140px;
  text-align: center;
  font-size: 14px;
  height: 26px;
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: center;
}
.p-top-handmade-icon::after {
  right: 15px;
}
.p-handmade-icon {
  background: #0268b6;
  color: #fff;
  border-radius: 12px;
  width: 140px;
  text-align: center;
  font-size: 14px;
  height: 26px;
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: center;
}
.p-handmade-icon::after {
  right: 15px;
}
.p-button04 {
  background-color: #ec6c00;
  box-shadow: inset 0 -3px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}

.p-button04::after {
  content: ""; /* 疑似要素に指定必須 */
  width: 10px; /* 線の長さを指定 */
  height: 3px; /* 線の幅を指定 */
  display: inline-block; /* インラインブロックにする */
  border-radius: 2px; /* 線を角丸にする */
  background: #fff; /* 線の色を指定 */
  position: absolute; /* 相対位置に指定 */
  right: 40px; /* 右から10pxの位置に配置 */
  top: calc(50% - 4.5px); /* 数値は微調整してください */
  transform: rotate(45deg); /* 45度回転させる */
}
.p-button04::before {
  content: ""; /* 疑似要素に指定必須 */
  width: 10px; /* 線の長さを指定 */
  height: 3px; /* 線の幅を指定 */
  display: inline-block; /* インラインブロックにする */
  border-radius: 2px; /* 線を角丸にする */
  background: #fff; /* 線の色を指定 */
  position: absolute; /* 相対位置に指定 */
  right: 40px; /* 右から10pxの位置に配置 */
  bottom: calc(50% - 4.5px); /* 数値は微調整してください */
  transform: rotate(-45deg); /* -45度回転させる */
}
/* --------------1125------------------------- */
/* --------------250821------------------------- */
.p-top-handmade-list.js-slick02 .slick-list .slick-track {
  display: flex;
  justify-content: center;
}
/* --------------250821------------------------- */
/* --------------260126------------------------- */
.p-blog--single-contents ul li::before {
  display: none;
}
/* --------------260126------------------------- */

/* --------------260520 手作りキット件数別レイアウト------------------------- */

/* 250821の justify-content:center を無効化
   → 1件・2件はPHPで別レイアウトにしたので不要。
     Slickのtransform計算と競合して初期表示が消える原因だったため。 */
.p-top-handmade-list.js-slick02 .slick-list .slick-track {
  display: block; /* 250821のflex設定を無効化（Slickはblockを前提にtransformで動かすため） */
  justify-content: flex-start;
}

/* 1件のとき：中央に大きく1枚表示 */
.p-top-handmade-list.is-single {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.p-top-handmade-list.is-single .p-top-handmade-item {
  width: 320px;
}

/* 2件のとき：横並び2カラム表示 */
.p-top-handmade-list.is-two-col {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.p-top-handmade-list.is-two-col .p-top-handmade-item {
  width: calc(50% - 40px);
  max-width: 320px;
}
@media screen and (max-width: 799px) {
  .p-top-handmade-list.is-two-col {
    flex-direction: column;
    align-items: center;
  }
  .p-top-handmade-list.is-two-col .p-top-handmade-item {
    width: 90%;
    max-width: none;
  }
}

/* 3件のとき：横並び3カラム表示 */
.p-top-handmade-list.is-three-col {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.p-top-handmade-list.is-three-col .p-top-handmade-item {
  width: calc(33.333% - 20px);
  max-width: 300px;
}
@media screen and (max-width: 799px) {
  .p-top-handmade-list.is-three-col {
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-top-handmade-list.is-three-col .p-top-handmade-item {
    width: calc(50% - 10px);
    max-width: none;
  }
}

/* 4件のとき：横並び4カラム表示 */
.p-top-handmade-list.is-four-col {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
}
.p-top-handmade-list.is-four-col .p-top-handmade-item {
  width: calc(25% - 16px);
  max-width: 260px;
}
@media screen and (max-width: 799px) {
  .p-top-handmade-list.is-four-col {
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-top-handmade-list.is-four-col .p-top-handmade-item {
    width: calc(50% - 10px);
    max-width: none;
  }
}
.p-top-notice-banner {
  max-width: 800px;
  margin-bottom: 80px !important;
}
/* --------------260520 END------------------------- */
