@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

code,
kbd,
samp {
  font-size: 1em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: 1px solid #000;
  border-radius: 0;
  outline: none;
}

button {
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
}
button:disabled {
  cursor: default;
}

input[type=file], input[type=range] {
  border: none;
}
input[type=file], input[type=range], input[type=search], input[type=submit], input[type=text], input[type=button], input[type=email], input[type=number], input[type=password], input[type=reset], input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
}
input:-webkit-autofill {
  background-color: transparent;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  min-height: 2em;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 3px 5px;
}
select::-ms-expand {
  display: none;
}

/*=======================================================================
# base - 全体に共通するスタイル
=======================================================================*/
body {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-size: 16px;
  color: #372a1f;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

a {
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

b,
em,
strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #333;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

textarea {
  vertical-align: top;
  resize: vertical;
  min-height: 200px;
}

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 8px;
  border: 1px solid #333;
  border-radius: 0;
  font-family: inherit;
  color: #372a1f;
  background-color: #fff;
  font-size: 16px;
}

button,
[type=button],
[type=submit] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  margin: 0;
  background-color: #aed1ca;
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0.4em 2.4em 0.4em 0.8em;
  border-radius: 0;
  background-image: url(../img/common/arrow-down.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 6px center;
  font-family: inherit;
  font-size: 16px;
  color: inherit;
  border: 1px solid #333;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.l-inner, .l-header__inner {
  display: block;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 40px;
  height: inherit;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
@media (max-width: 599px) {
  .l-inner, .l-header__inner {
    padding: 0 20px;
  }
}

.l-inner.l-inner--narrow, .l-inner--narrow.l-header__inner {
  max-width: 870px;
}

.l-inner.l-inner--wide, .l-inner--wide.l-header__inner {
  max-width: 1180px;
}

.l-inner.l-inner--fit, .l-inner--fit.l-header__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 950px) {
  .l-inner.l-inner--fit, .l-inner--fit.l-header__inner {
    max-width: 600px;
    width: 100%;
  }
}

.l-header {
  width: 100%;
  height: 50px;
  background-color: transparent;
  color: #fff;
}

/* ヘッダー固定 */
body.is-header-fixed .l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.l-header__inner {
  max-width: initial;
}
@media (max-width: 950px) {
  .l-header__inner {
    padding: 0 15px;
  }
}

.l-header__content {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__logo {
  margin-top: 60px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 950px) {
  .l-header__logo {
    font-size: 20px;
  }
}

.l-header__logo-link,
.custom-logo-link {
  display: block;
  font-weight: 700;
}

.custom-logo-link > img {
  width: 100%;
}

/* ハンバーガーメニュー
-----------------------------------------------------------*/
.l-header__spnav {
  display: block;
}

.p-spnav {
  position: relative;
}

/* ハンバーガーメニューボタン
-----------------------------------------------------------*/
.p-spnav__button {
  position: fixed;
  top: 25px;
  right: 40px;
  height: 50px;
  width: 50px;
  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;
  z-index: 1010;
  background-color: #aed1ca;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media (max-width: 599px) {
  .p-spnav__button {
    right: 10px;
  }
}

.p-spnav__button span,
.p-spnav__button span::before,
.p-spnav__button span::after {
  content: "";
  display: block;
  height: 2.5px;
  width: 26px;
  border-radius: 2em;
  background-color: #ffffff;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-spnav__button span::before {
  bottom: 9px;
}

.p-spnav__button span::after {
  top: 9px;
}

#hamburger-button:checked ~ .p-spnav__button {
  border: 2px solid #fff;
}

#hamburger-button:checked ~ .p-spnav__button span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#hamburger-button:checked ~ .p-spnav__button span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-button:checked ~ .p-spnav__button span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger-button {
  display: none;
}

/* ハンバーガーメニューコンテンツ
-----------------------------------------------------------*/
.p-spnav__content {
  width: 300px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%); /* メニューを画面外へ */
  z-index: 1005;
  background-color: #aed1ca;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /* アニメーション設定 */
  padding: 100px 60px 0;
  overflow: scroll;
}

.p-spnav__content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.p-spnav__content ul li + li {
  margin-top: 15px;
}

.p-spnav__content ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 5px;
  position: relative;
}
.p-spnav__content ul li a > .en {
  display: none;
}

#hamburger-button:checked ~ .p-spnav__content {
  -webkit-transform: translateX(0);
  transform: translateX(0); /*メニューを画面内へ*/
}

/* ハンバーガーメニュー背景
-----------------------------------------------------------*/
.p-spnav__bg {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%); /* メニューを画面外へ */
  background-color: #000;
  z-index: 1000;
}

#hamburger-button:checked ~ .p-spnav__bg {
  -webkit-transform: translateX(0);
  transform: translateX(0); /* メニューを画面内へ */
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 599px) {
  .l-footer .l-inner {
    padding-left: 55px;
    padding-right: 55px;
  }
}

.l-footer__nav {
  padding-top: 55px;
  padding-bottom: 25px;
  color: #fff;
  background-color: #aed1ca;
  text-align: center;
}
@media (max-width: 599px) {
  .l-footer__nav {
    padding-top: 50px;
    padding-bottom: 45px;
  }
}

.l-footer__nav-menu {
  font-size: 14px;
  margin-top: -20px;
  margin-left: -50px;
}
.l-footer__nav-menu > li {
  margin-top: 20px;
  margin-left: 50px;
  display: inline-block;
}
.l-footer__nav-menu > li > a {
  text-decoration: underline;
}
.l-footer__nav-menu > li > a:hover, .l-footer__nav-menu > li > a:focus {
  text-decoration: none;
}
@media (max-width: 599px) {
  .l-footer__nav-menu {
    text-align: left;
    margin-left: 0;
  }
  .l-footer__nav-menu > li {
    margin-left: 0;
    display: block;
  }
}

.l-footer__nav-sns {
  margin-top: 50px;
}
.l-footer__nav-sns a:hover, .l-footer__nav-sns a:focus {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .l-footer__nav-sns {
    margin-top: 40px;
  }
}

.l-footer__copy {
  text-align: center;
  line-height: 1.2;
  background-color: #fff;
  padding: 10px 0;
}
.l-footer__copy small {
  font-size: 12px;
  font-weight: 300;
  vertical-align: top;
}

.l-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: clamp(40px, 3.90625vw, 50px) 0 clamp(80px, 9.375vw, 120px);
}

/* トップのみ */
.home .l-content {
  padding: 0;
}

/* トップのみ */
.home .l-container {
  padding: 0;
}

.l-container.l-container--col2 > .l-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
@media (max-width: 950px) {
  .l-container.l-container--col2 > .l-inner {
    grid-template-columns: 1fr;
    max-width: 660px;
  }
}

.c-custom-button {
  text-align: center;
}

.c-custom-button__link {
  display: inline-block;
  text-align: center;
  color: #0d0d0d;
  font-size: 16px;
  padding: 1.1em 0.9em;
  min-width: 320px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.4;
}
@media (max-width: 599px) {
  .c-custom-button__link {
    font-size: 14px;
    padding: 1em;
    min-width: 235px;
  }
}

.c-custom-button.c-custom-button--ghost .c-custom-button__link {
  border: 1px solid #c0cbd8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-custom-button.c-custom-button--ghost .c-custom-button__link:hover, .c-custom-button.c-custom-button--ghost .c-custom-button__link:focus {
  opacity: 0.6;
}

.c-custom-button.c-custom-button--fill .c-custom-button__link {
  color: #fff;
  background-color: #aed1ca;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-custom-button.c-custom-button--fill .c-custom-button__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #aed1ca;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: -1;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: opacity 0.5s, border-color 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, border-color 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s, border-color 0.5s;
  transition: transform 0.5s, opacity 0.5s, border-color 0.5s, -webkit-transform 0.5s;
}
.c-custom-button.c-custom-button--fill .c-custom-button__link:hover, .c-custom-button.c-custom-button--fill .c-custom-button__link:focus {
  color: #aed1ca;
  background-color: transparent;
  border-color: #aed1ca;
}
.c-custom-button.c-custom-button--fill .c-custom-button__link:hover::before, .c-custom-button.c-custom-button--fill .c-custom-button__link:focus::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  border: 1px solid transparent;
}

.c-custom-button.c-custom-button--accent .c-custom-button__link {
  color: #fff;
  background-color: #fffcf7;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-custom-button.c-custom-button--accent .c-custom-button__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fffcf7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: -1;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: opacity 0.5s, border-color 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, border-color 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s, border-color 0.5s;
  transition: transform 0.5s, opacity 0.5s, border-color 0.5s, -webkit-transform 0.5s;
}
.c-custom-button.c-custom-button--accent .c-custom-button__link:hover, .c-custom-button.c-custom-button--accent .c-custom-button__link:focus {
  color: #fffcf7;
  background-color: transparent;
  border-color: #fffcf7;
}
.c-custom-button.c-custom-button--accent .c-custom-button__link:hover::before, .c-custom-button.c-custom-button--accent .c-custom-button__link:focus::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  border: 1px solid transparent;
}

.c-shareSNS {
  margin-top: clamp(70px, 5.46875vw, 70px);
}

.c-shareSNS__content {
  text-align: center;
}

.c-shareSNS__title {
  font-weight: 400;
  font-size: clamp(22px, 2.03125vw, 26px);
  margin-bottom: 2em;
  color: #61a9a2;
  line-height: 1.5;
}

.c-shareSNS__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.c-shareSNS__list .c-shareSNS__item + .c-shareSNS__item {
  margin-left: clamp(15px, 1.5625vw, 20px);
}

.c-shareSNS__item > a {
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-shareSNS__item > a:hover, .c-shareSNS__item > a:focus {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.c-shareSNS__item > a > img {
  width: clamp(35px, 4.6875vw, 60px);
  height: clamp(35px, 4.6875vw, 60px);
}

.c-btn {
  display: inline-block;
  text-align: center;
  color: #372a1f;
  border: 1px solid #372a1f;
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  max-width: 346px;
  padding: 9px 20px;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn:hover, .c-btn:focus {
  opacity: 0.6;
}

.c-btn.c-btn--long {
  max-width: 700px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.c-btn.c-btn--arrow::after {
  content: ">";
  margin-left: 1em;
}

.c-btn.c-btn--return::before {
  content: "<";
  margin-right: 1em;
}

.c-btn.c-btn--close::after {
  content: "×";
  margin-left: 1em;
}

.c-btn.c-btn--mc {
  border-color: #aed1ca;
  color: #aed1ca;
}

.c-btn.c-btn--mc-dark2 {
  border-color: #61a9a2;
  color: #61a9a2;
}

.c-btn.c-btn--round {
  border-radius: 100vh;
}

.c-btn.c-btn--fill {
  background-color: #aed1ca;
  color: #fff;
}

.p-content__header {
  margin-bottom: 3em;
}

.p-content__title {
  font-size: clamp(22px, 2.8125vw, 36px);
  font-weight: bold;
  line-height: 1.5;
}

.p-content__body > *:not(:last-child):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  margin-bottom: 40px;
}
.p-content__body h1,
.p-content__body h2,
.p-content__body h3,
.p-content__body h4,
.p-content__body h5,
.p-content__body h6 {
  font-weight: 400;
  line-height: 1.5;
  font-size: clamp(18px, 1.5625vw, 20px);
}
.p-content__body > h2,
.p-content__body > h3,
.p-content__body > h4,
.p-content__body > h5,
.p-content__body > h6 {
  margin-top: 4em;
  margin-bottom: 2em;
}
@media (max-width: 599px) {
  .p-content__body > h2,
  .p-content__body > h3,
  .p-content__body > h4,
  .p-content__body > h5,
  .p-content__body > h6 {
    margin-top: 2em;
  }
}
.p-content__body > h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #61a9a2;
}
.p-content__body p {
  font-weight: 300;
  line-height: 2.5;
  font-size: clamp(15px, 1.25vw, 16px);
}
.p-content__body a {
  text-decoration: underline;
  color: #4f96f6;
  margin: 0 0.2em;
}
.p-content__body a:hover, .p-content__body a:focus {
  text-decoration: none;
}
.p-content__body b,
.p-content__body strong {
  font-weight: bold;
}
.p-content__body em {
  font-weight: bold;
  font-style: italic;
}
.p-content__body ul {
  list-style: disc;
  padding-left: 2.5em;
}
.p-content__body ol {
  list-style: decimal;
  padding-left: 2.5em;
}
.p-content__body .wp-block-image figcaption,
.p-content__body .wp-block-video figcaption,
.p-content__body .blocks-gallery-caption {
  font-weight: 400;
  font-size: clamp(12px, 1.09375vw, 14px);
}
.p-content__body .wp-block-group .wp-block-group__inner-container > *:not(:last-child) {
  margin-bottom: 40px;
}
.p-content__body .wp-block-columns .wp-block-column h1,
.p-content__body .wp-block-columns .wp-block-column h2,
.p-content__body .wp-block-columns .wp-block-column h3,
.p-content__body .wp-block-columns .wp-block-column h4,
.p-content__body .wp-block-columns .wp-block-column h5,
.p-content__body .wp-block-columns .wp-block-column h6 {
  margin-bottom: 0.6em;
  font-size: clamp(18px, 1.5625vw, 20px);
  margin: 0;
  padding: 0;
  border: 0;
  position: static;
}
.p-content__body .wp-block-columns .wp-block-column h1::before, .p-content__body .wp-block-columns .wp-block-column h1::after,
.p-content__body .wp-block-columns .wp-block-column h2::before,
.p-content__body .wp-block-columns .wp-block-column h2::after,
.p-content__body .wp-block-columns .wp-block-column h3::before,
.p-content__body .wp-block-columns .wp-block-column h3::after,
.p-content__body .wp-block-columns .wp-block-column h4::before,
.p-content__body .wp-block-columns .wp-block-column h4::after,
.p-content__body .wp-block-columns .wp-block-column h5::before,
.p-content__body .wp-block-columns .wp-block-column h5::after,
.p-content__body .wp-block-columns .wp-block-column h6::before,
.p-content__body .wp-block-columns .wp-block-column h6::after {
  display: none;
}
.p-content__body .wp-block-gallery,
.p-content__body .wp-block-gallery-1 {
  --wp--style--unstable-gallery-gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 2em))) !important;
  gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 2em))) !important;
}
@media (max-width: 599px) {
  .p-content__body .wp-block-gallery,
  .p-content__body .wp-block-gallery-1 {
    --wp--style--unstable-gallery-gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 1em))) !important;
    gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 1em))) !important;
  }
}
.p-content__body .wp-block-table {
  line-height: 1.5;
}
.p-content__body .wp-block-table th,
.p-content__body .wp-block-table td {
  padding: 1em;
}
@media (max-width: 599px) {
  .p-content__body .wp-block-table th,
  .p-content__body .wp-block-table td {
    padding: 0.8em;
  }
}

.p-post-content__category {
  margin-bottom: 20px;
  border-bottom: 1px solid #61a9a2;
  padding-bottom: 20px;
}
.p-post-content__category > li {
  display: inline-block;
  font-size: clamp(18px, 1.5625vw, 20px);
  color: #72aaa5;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
}
.p-post-content__category > li + li::before {
  content: "/";
  margin: 0 5px;
}

.p-post-content__date {
  margin-bottom: 20px;
  border-bottom: 1px solid #61a9a2;
  padding-bottom: 20px;
}
.p-post-content__date > time {
  font-size: clamp(18px, 1.5625vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Lora", serif;
}

.p-content__header {
  margin-bottom: 5em;
}
@media (max-width: 599px) {
  .p-content__header {
    margin-bottom: 3em;
  }
}

.p-post-content__title {
  color: #423933;
  font-size: clamp(24px, 2.34375vw, 30px);
  font-weight: 400;
  line-height: 1.5;
}

.p-post-content__series {
  text-align: right;
  margin-top: 25px;
}
.p-post-content__series > li {
  display: inline-block;
  text-align: center;
  min-width: 185px;
  color: #aed1ca;
  font-size: clamp(15px, 1.328125vw, 17px);
  font-weight: 400;
  line-height: 1.1;
  padding: 5px 16px;
  border: 1px solid #aed1ca;
}

.p-post-content__body {
  max-width: 640px;
  margin: 0 auto;
}

.p-post-content__thumbnail {
  margin-top: 40px;
}
@media (max-width: 599px) {
  .p-post-content__thumbnail {
    margin-top: 20px;
  }
}

.p-post-content__footer {
  margin-top: 90px;
}

.p-post-content__return {
  margin-top: 100px;
  text-align: center;
}
.p-post-content__return .c-btn {
  font-size: 20px;
}

.p-post .p-popular-post {
  margin-top: 120px;
}

.p-page-content__body a {
  color: inherit;
  text-decoration: underline;
}
.p-page-content__body a:hover, .p-page-content__body a:focus {
  text-decoration: none;
  opacity: 0.6;
}
.p-page-content__body .faq-list > .faq-list__item + .faq-list__item {
  margin-top: 80px;
}
@media (max-width: 599px) {
  .p-page-content__body .faq-list > .faq-list__item + .faq-list__item {
    margin-top: 60px;
  }
}
.p-page-content__body .faq-list__item dt {
  color: #72aaa5;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  position: relative;
  padding-left: calc(1em + 24px);
  text-indent: calc(-1em - 24px);
}
.p-page-content__body .faq-list__item dt::before {
  content: "Q.";
  margin-right: 24px;
}
.p-page-content__body .faq-list__item dd {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-page-content__body .faq-list__item dd::before {
  content: "A.";
  margin-right: 24px;
}
.p-page-content__body .faq-list__item dd p {
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}
.p-page-content__body .faq-list__item dd p + p {
  margin-top: 2em;
}
.p-page-content__body .faq-list__item dd p a {
  color: inherit;
  text-decoration: underline;
}
.p-page-content__body .faq-list__item dd p a:hover, .p-page-content__body .faq-list__item dd p a:focus {
  text-decoration: none;
  opacity: 0.6;
}

.p-archive-header {
  margin-bottom: clamp(30px, 3.90625vw, 50px);
}
.p-archive-header.p-archive-header--underline {
  margin-bottom: clamp(60px, 6.25vw, 80px);
}
.p-archive-header.p-archive-header--underline .p-archive-header__content {
  border-bottom: 1px solid #61a9a2;
  padding-bottom: clamp(40px, 4.6875vw, 60px);
}

.p-archive-header__title {
  font-size: clamp(52px, 6.40625vw, 82px);
  color: rgba(55, 42, 31, 0.8);
  text-align: center;
  font-family: "Lora", serif;
  text-transform: capitalize;
}

.p-archive-content__nav {
  margin-bottom: 60px;
  background-color: #aed1ca;
  padding: 60px 30px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  color: #fff;
}
@media (max-width: 599px) {
  .p-archive-content__nav {
    padding: 50px 30px;
    margin-bottom: 40px;
  }
}
.p-archive-content__nav-inner {
  max-width: 860px;
  margin: 0 auto;
}
.p-archive-content__nav-cat {
  font-weight: 500;
  margin-top: -15px;
  margin-left: -20px;
}
@media (max-width: 599px) {
  .p-archive-content__nav-cat {
    text-align: center;
    font-size: 15px;
  }
}
.p-archive-content__nav-cat li {
  display: inline-block;
  margin-top: 15px;
  margin-left: 20px;
}
.p-archive-content__nav-cat li a {
  text-align: center;
  display: block;
  padding: 3px 25px 5px;
  line-height: 1.5;
  min-width: 220px;
  border: 1px solid #fff;
  border-radius: 2px;
  text-transform: capitalize;
}
.p-archive-content__nav-cat li a:hover, .p-archive-content__nav-cat li a:focus {
  background-color: #fff;
  color: #aed1ca;
}
.p-archive-content__nav-cat li a.is-current {
  background-color: #fff;
  color: #aed1ca;
  pointer-events: none;
}
.p-archive-content__nav-cat li a .ja {
  font-size: 10px;
  letter-spacing: -0.1em;
  margin-left: 4px;
}
.p-archive-content__nav-tag {
  font-weight: 500;
  margin-top: 20px;
  margin-left: -40px;
}
@media (max-width: 599px) {
  .p-archive-content__nav-tag {
    text-align: center;
    font-size: 15px;
  }
}
.p-archive-content__nav-tag li {
  display: inline-block;
  margin-top: 5px;
  margin-left: 40px;
}
.p-archive-content__nav-tag li a {
  display: block;
  text-decoration: underline;
}
.p-archive-content__nav-tag li a::before {
  content: "#";
}
.p-archive-content__nav-tag li a:hover, .p-archive-content__nav-tag li a:focus {
  opacity: 0.6;
  text-decoration: none;
}

.p-archive-content__title {
  font-size: clamp(44px, 5.625vw, 72px);
  font-family: "Lora", serif;
  color: #aed1ca;
  margin-bottom: 50px;
  line-height: 1;
}
@media (max-width: 599px) {
  .p-archive-content__title {
    margin-bottom: 30px;
  }
}

.p-archive-content__title-ja {
  font-size: clamp(30px, 4.0625vw, 52px);
  font-family: "Kiwi Maru", serif;
}

body.tag .p-archive-content__title {
  font-size: clamp(30px, 4.0625vw, 52px);
  font-family: "Kiwi Maru", serif;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  body.tag .p-archive-content__title {
    margin-bottom: 40px;
  }
}

.p-archive-content__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 80px 50px;
}
@media (max-width: 950px) {
  .p-archive-content__list {
    gap: 60px 40px;
  }
}
@media (max-width: 599px) {
  .p-archive-content__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
.p-archive-content__list .p-card:nth-child(1) {
  grid-area: 1/1/2/4;
}
@media (min-width: 600px) {
  .p-archive-content__list .p-card:nth-child(1) .p-card__cat {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(1) .p-card__title {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(1) {
    grid-area: 1/1/2/3;
  }
}
.p-archive-content__list .p-card:nth-child(2) {
  grid-area: 1/4/2/7;
}
@media (min-width: 600px) {
  .p-archive-content__list .p-card:nth-child(2) .p-card__cat {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(2) .p-card__title {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(2) {
    grid-area: 2/1/3/3;
  }
}
.p-archive-content__list .p-card:nth-child(3) {
  grid-area: 2/1/3/3;
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(3) {
    grid-area: 3/1/4/2;
  }
}
.p-archive-content__list .p-card:nth-child(4) {
  grid-area: 2/3/3/5;
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(4) {
    grid-area: 3/2/4/3;
  }
}
.p-archive-content__list .p-card:nth-child(5) {
  grid-area: 2/5/3/7;
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(5) {
    grid-area: 4/1/5/2;
  }
}
.p-archive-content__list .p-card:nth-child(6) {
  grid-area: 3/1/4/3;
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(6) {
    grid-area: 4/2/5/3;
  }
}
.p-archive-content__list .p-card:nth-child(7) {
  grid-area: 3/3/4/5;
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(7) {
    grid-area: 5/1/6/2;
  }
}
.p-archive-content__list .p-card:nth-child(8) {
  grid-area: 3/5/4/7;
}
@media (max-width: 599px) {
  .p-archive-content__list .p-card:nth-child(8) {
    grid-area: 5/2/6/3;
  }
}
@media (min-width: 600px) {
  .p-archive-content__list .p-card:nth-child(2) ~ .p-card .p-card__title {
    font-size: 16px;
  }
}

.p-archive-content .p-popular-post {
  margin-top: 120px;
}
@media (max-width: 599px) {
  .p-archive-content .p-popular-post {
    margin-top: 60px;
  }
}

.pagination {
  margin-top: 120px;
  overflow-x: auto;
  overflow-y: hidden;
}
@media (max-width: 599px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination .nav-links ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination .nav-links ul.page-numbers li {
  margin: 0 15px;
}
@media (max-width: 599px) {
  .pagination .nav-links ul.page-numbers li {
    margin: 0 5px;
  }
}
.pagination .nav-links ul.page-numbers li .page-numbers {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #72aaa5;
  font-size: 15px;
  font-weight: 400;
  background-color: transparent;
  border-radius: 50%;
  line-height: 1;
}
@media (max-width: 599px) {
  .pagination .nav-links ul.page-numbers li .page-numbers {
    font-size: 12px;
    width: 25px;
    height: 25px;
  }
}
.pagination .nav-links ul.page-numbers li .page-numbers:hover, .pagination .nav-links ul.page-numbers li .page-numbers:focus {
  color: #fff;
  background-color: #72aaa5;
}
.pagination .nav-links ul.page-numbers li .page-numbers.current {
  color: #fff;
  background-color: #72aaa5;
}
.pagination .nav-links ul.page-numbers li .page-numbers.prev,
.pagination .nav-links ul.page-numbers li .page-numbers.next,
.pagination .nav-links ul.page-numbers li .page-numbers.dots {
  border: 0;
}
.pagination .nav-links ul.page-numbers li .page-numbers.prev:hover, .pagination .nav-links ul.page-numbers li .page-numbers.prev:focus,
.pagination .nav-links ul.page-numbers li .page-numbers.next:hover,
.pagination .nav-links ul.page-numbers li .page-numbers.next:focus,
.pagination .nav-links ul.page-numbers li .page-numbers.dots:hover,
.pagination .nav-links ul.page-numbers li .page-numbers.dots:focus {
  color: #72aaa5;
  background-color: transparent;
}
.pagination .nav-links ul.page-numbers li .page-numbers.prev {
  width: auto;
  margin-right: 20px;
}
@media (max-width: 599px) {
  .pagination .nav-links ul.page-numbers li .page-numbers.prev {
    margin-right: 5px;
  }
}
.pagination .nav-links ul.page-numbers li .page-numbers.prev:hover, .pagination .nav-links ul.page-numbers li .page-numbers.prev:focus {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}
.pagination .nav-links ul.page-numbers li .page-numbers.next {
  width: auto;
  margin-left: 20px;
}
@media (max-width: 599px) {
  .pagination .nav-links ul.page-numbers li .page-numbers.next {
    margin-left: 5px;
  }
}
.pagination .nav-links ul.page-numbers li .page-numbers.next:hover, .pagination .nav-links ul.page-numbers li .page-numbers.next:focus {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.p-card {
  background-color: #fff;
}
.p-card__link {
  display: block;
}
.p-card__link:hover, .p-card__link:focus {
  opacity: 0.6;
}
.p-card__link:hover .p-card__photo img, .p-card__link:focus .p-card__photo img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.p-card__photo {
  display: block;
  overflow: hidden;
  position: relative;
}
.p-card__photo::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.p-card__photo img, .p-card__photo iframe, .p-card__photo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-card__photo img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-card__cat {
  border-bottom: 1px solid #72aaa5;
  padding-bottom: 6px;
  margin-top: 15px;
}
@media (max-width: 599px) {
  .p-card__cat {
    margin-top: 10px;
  }
}
.p-card__cat > li {
  display: inline-block;
  font-size: 16px;
  color: #72aaa5;
  line-height: 1.33;
}
.p-card__cat > li + li::before {
  content: "/";
  margin: 0 5px;
}
.p-card__title {
  font-size: clamp(14px, 1.40625vw, 18px);
  font-weight: 400;
  line-height: 1.33;
  margin-top: 10px;
}
.p-card__series {
  text-align: right;
  margin-top: 15px;
}
.p-card__series > li {
  display: inline-block;
  text-align: center;
  min-width: 123px;
  color: #aed1ca;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.1;
  padding: 5px 16px;
  border: 1px solid #aed1ca;
}

.p-card.p-card--row .p-card__link {
  display: grid;
  grid-template-columns: 1fr 0.97fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "photo cat" "photo title" "photo series";
  gap: 0 20px;
  height: 100%;
}
@media (max-width: 599px) {
  .p-card.p-card--row .p-card__link {
    display: block;
  }
}
.p-card.p-card--row .p-card__photo {
  grid-area: photo;
}
.p-card.p-card--row .p-card__cat {
  grid-area: cat;
  margin-top: 10px;
}
.p-card.p-card--row .p-card__title {
  grid-area: title;
}
@media (min-width: 600px) {
  .p-card.p-card--row .p-card__title {
    font-size: 16px;
  }
}
.p-card.p-card--row .p-card__series {
  grid-area: series;
}

.swiper-container {
  position: relative;
  padding: 0 90px;
}
@media (max-width: 950px) {
  .swiper-container {
    padding: 0 70px;
  }
}
@media (max-width: 599px) {
  .swiper-container {
    padding: 0;
  }
}

/* ページネーションをスライドの外に出す */
.swiper-pagination {
  bottom: -52px !important;
}
@media (max-width: 599px) {
  .swiper-pagination {
    bottom: 0 !important;
    top: 330px;
  }
}

/* デフォルトの矢印を非表示 */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

/* 独自の矢印を作成 */
.swiper-button-prev,
.swiper-button-next {
  width: 45px; /* ボタンの幅 */
  height: 45px; /* ボタンの高さ */
  background-size: contain; /* 表示したいサイズ */
  background-repeat: no-repeat;
  margin-top: -22.5px;
}
@media (max-width: 599px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 38px;
    height: 38px;
    margin-top: -19px;
    opacity: 0.6;
  }
}

/* 前矢印のスタイル */
.swiper-button-prev {
  background-image: url("../img/common/slide-arrow_left.png");
}
@media (max-width: 599px) {
  .swiper-button-prev {
    left: -19px;
    top: 157.5px;
  }
}

/* 後矢印のスタイル */
.swiper-button-next {
  background-image: url("../img/common/slide-arrow_right.png");
}
@media (max-width: 599px) {
  .swiper-button-next {
    right: -19px;
    top: 157.5px;
  }
}

.swiper-pagination-bullet {
  width: 68px;
  height: 10px;
  border-radius: 5px;
  opacity: 1;
  background-color: rgba(55, 42, 31, 0.5);
}
@media (max-width: 599px) {
  .swiper-pagination-bullet {
    width: 54px;
    height: 5px;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}

.swiper-pagination-bullet-active {
  background-color: #72aaa5;
}

@media (min-width: 951px) {
  .p-popular-post {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50% - 30px);
    padding-right: calc(50vw - 50% - 30px);
  }
}
.p-popular-post__title {
  font-size: clamp(22px, 2.03125vw, 26px);
  font-weight: 400;
  position: relative;
  padding: 0 60px;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-popular-post__title::before {
  content: "";
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 1px;
  background-color: #72aaa5;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 599px) {
  .p-popular-post__title {
    padding: 0 40px;
  }
}
.p-popular-post__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}
@media (min-width: 951px) {
  .p-popular-post__list {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .p-popular-post__list {
    gap: 20px;
    margin-top: 40px;
  }
}

@media (min-width: 951px) {
  .single .p-popular-post {
    padding-left: calc(50vw - 50% - 120px);
    padding-right: calc(50vw - 50% - 120px);
  }
}

.p-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 599px) {
  .p-shop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-shop__photo {
  width: 48%;
  margin-left: 60px;
  display: block;
  overflow: hidden;
  position: relative;
}
.p-shop__photo::before {
  content: "";
  display: block;
  padding-top: 74.5098039216%;
}
.p-shop__photo img, .p-shop__photo iframe, .p-shop__photo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 599px) {
  .p-shop__photo {
    width: 100%;
    margin: 0;
  }
}
.p-shop__body {
  width: calc(52% - 60px);
  line-height: 2.25;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .p-shop__body {
    font-size: 15px;
    width: 100%;
    margin-top: 40px;
  }
}
.p-shop__title {
  padding-bottom: 13px;
  margin-bottom: 20px;
  border-bottom: 1px solid #372a1f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 599px) {
  .p-shop__title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.p-shop__title h3 {
  font-size: 20px;
  font-weight: 500;
  margin-right: 15px;
}
.p-shop__taxfree {
  border: 1px solid #95232c;
  color: #95232c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 0 10px 2px;
  margin: 7px 0;
}
.p-shop__map > a {
  display: inline-block;
  background-color: rgba(55, 42, 31, 0.8);
  color: #fff;
  padding: 3px 4px 5px;
  min-width: 100px;
  border-radius: 12px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.p-shop__map > a::after {
  content: ">";
  margin-left: 0.3em;
}
.p-shop__map > a:hover, .p-shop__map > a:focus {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .p-shop__map > a {
    width: 140px;
    padding: 8px 4px 10px;
    border-radius: 17px;
  }
}
.p-shop__tel {
  margin-top: 15px;
}
@media (max-width: 599px) {
  .p-shop__tel {
    margin-top: 30px;
  }
}
.p-shop__desc > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.p-shop__desc dt {
  font-weight: 500;
}
.p-shop__desc dd {
  margin-left: 15px;
  font-weight: 400;
}

.p-shop-small__header {
  padding-bottom: 3px;
  border-bottom: 1px solid #372a1f;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-shop-small__header-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-right: 20px;
}
.p-shop-small__header-taxfree {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #95232c;
  border: 1px solid #95232c;
  padding: 2px 12px 4px;
  margin: 7px 0;
}
.p-shop-small__body {
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}
.p-shop-small__body span {
  margin-right: 1em;
}
@media (max-width: 599px) {
  .p-shop-small__body span {
    margin-right: 0;
    display: block;
  }
}
.p-shop-small__body .btn-map {
  margin-left: 10px;
  font-size: 10px;
  display: inline-block;
  background-color: rgba(55, 42, 31, 0.8);
  color: #fff;
  padding: 5px 4px 6px;
  min-width: 83px;
  border-radius: 10px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.p-shop-small__body .btn-map::after {
  content: ">";
  margin-left: 0.3em;
}
.p-shop-small__body .btn-map:hover, .p-shop-small__body .btn-map:focus {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .p-shop-small__body .btn-map {
    width: 100px;
    padding: 7px 4px 8px;
    border-radius: 17px;
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.p-shop-content__shop-list > li + li {
  margin-top: 40px;
}
.p-shop-content__shop-item {
  padding: clamp(40px, 7.8125vw, 100px) clamp(30px, 7.03125vw, 90px);
  background-color: rgba(174, 209, 202, 0.5);
}
.p-shop-content__shop-item .p-shop__body {
  font-size: 13px;
}
.p-shop-content__shop-item .p-shop__title {
  padding-bottom: 5px;
}
.p-shop-content__shop-item .p-shop__title h3 {
  font-size: 16px;
}
.p-shop-content__shop-item .p-shop__taxfree {
  font-size: 12px;
  padding: 2px 12px 4px;
}
.p-shop-content__shop-item .p-shop__map {
  margin-top: 5px;
}
@media (max-width: 599px) {
  .p-shop-content__shop-item .p-shop__map > a {
    width: 120px;
    padding: 6px 4px 8px;
  }
}

.p-shop-content__section {
  margin-top: 90px;
}
@media (max-width: 599px) {
  .p-shop-content__section {
    margin-top: 60px;
  }
}
.p-shop-content__section-title {
  color: #fff;
  background-color: #72aaa5;
  font-size: clamp(22px, 2.03125vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  padding: 20px 90px;
}
@media (max-width: 599px) {
  .p-shop-content__section-title {
    padding: 15px 30px;
  }
}
.p-shop-content__section-body {
  padding: 90px;
}
@media (max-width: 599px) {
  .p-shop-content__section-body {
    padding: 30px;
  }
}
.p-shop-content__section-body .section-desc {
  color: #72aaa5;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}
.p-shop-content__section-donguri {
  margin-top: 10px;
  padding: clamp(40px, 7.03125vw, 90px);
  background-color: #fffcf7;
}
.p-shop-content__section-donguri-title {
  font-size: clamp(20px, 2.03125vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
}
.p-shop-content__section-donguri-text {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 300;
  line-height: 2;
}
.p-shop-content__section-donguri-link {
  text-align: right;
  margin-top: 15px;
}
.p-shop-content__section-donguri-link a {
  text-decoration: underline;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
}
.p-shop-content__section-donguri-link a:hover, .p-shop-content__section-donguri-link a:focus {
  text-decoration: none;
  opacity: 0.6;
}
.p-shop-content__section-footer {
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 599px) {
  .p-shop-content__section-footer {
    margin-top: 60px;
  }
}
.p-shop-content__section-footer .c-btn--mc {
  color: #61a9a2;
  border-color: #61a9a2;
}

.p-shop-content__section.shop-corner .p-shop-content__section-body {
  padding-top: 15px;
}
.p-shop-content__section.shop-corner .section-desc {
  margin-bottom: 90px;
}
@media (max-width: 599px) {
  .p-shop-content__section.shop-corner .section-desc {
    margin-bottom: 40px;
  }
}

.p-shop-content__section.shop-goods.is-open .p-shop-content__section-title .arrow {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.p-shop-content__section.shop-goods .p-shop-content__section-title {
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.p-shop-content__section.shop-goods .p-shop-content__section-title:focus-visible {
  outline: thin dotted #372a1f;
}
.p-shop-content__section.shop-goods .p-shop-content__section-title .arrow {
  margin-left: 1.5em;
  display: inline-block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-shop-content__section.shop-goods .p-shop-content__section-body {
  background-color: #fffcf7;
}

.shop-group + .shop-group {
  margin-top: 90px;
}
@media (max-width: 599px) {
  .shop-group + .shop-group {
    margin-top: 70px;
  }
}
.shop-group__title {
  color: #72aaa5;
  font-size: clamp(20px, 2.03125vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: clamp(30px, 3.125vw, 40px);
}
.shop-group__list li + li {
  margin-top: 70px;
}
@media (max-width: 599px) {
  .shop-group__list li + li {
    margin-top: 40px;
  }
}

.p-shop-content__goods {
  margin-top: 150px;
}

.p-related-products {
  padding: clamp(60px, 7.8125vw, 100px) clamp(30px, 4.6875vw, 60px);
  background-color: #fffcf7;
}

.p-related-products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -35px;
  margin-left: -35px;
}
@media (max-width: 599px) {
  .p-related-products__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -20px;
  }
}
.p-related-products__list li {
  max-width: 160px;
  margin-top: 35px;
  margin-left: 35px;
}
@media (max-width: 599px) {
  .p-related-products__list li {
    max-width: 125px;
    margin-left: 20px;
  }
}

.p-related-products__card-link {
  display: block;
}
.p-related-products__card-link:hover, .p-related-products__card-link:focus {
  opacity: 0.6;
}
.p-related-products__card-link:hover .p-related-products__card-title,
.p-related-products__card-link:hover .p-related-products__card-price, .p-related-products__card-link:focus .p-related-products__card-title,
.p-related-products__card-link:focus .p-related-products__card-price {
  text-decoration: none;
}
.p-related-products__card-photo {
  display: block;
  overflow: hidden;
  position: relative;
}
.p-related-products__card-photo::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-related-products__card-photo img, .p-related-products__card-photo iframe, .p-related-products__card-photo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-related-products__card-title, .p-related-products__card-price {
  text-decoration: underline;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
}
.p-related-products__card-title {
  margin-top: 15px;
}

.p-product-recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 599px) {
  .p-product-recommend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-product-recommend__photo {
  width: calc(60% - 45px);
  display: block;
  overflow: hidden;
  position: relative;
}
.p-product-recommend__photo::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-recommend__photo img, .p-product-recommend__photo iframe, .p-product-recommend__photo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 599px) {
  .p-product-recommend__photo {
    width: 100%;
    margin: 0;
    height: 315px;
  }
}
.p-product-recommend__body {
  width: 40%;
  margin-left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 599px) {
  .p-product-recommend__body {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }
}
.p-product-recommend__header {
  margin-top: 70px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .p-product-recommend__header {
    margin-top: 40px;
  }
}
.p-product-recommend__link {
  display: block;
  text-decoration: underline;
}
.p-product-recommend__link:hover, .p-product-recommend__link:focus {
  opacity: 0.6;
  text-decoration: none;
}
.p-product-recommend__desc {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
}
@media (max-width: 599px) {
  .p-product-recommend__desc {
    font-size: 16px;
    line-height: 2.25;
  }
}

.p-news-content__list {
  max-width: 740px;
  margin: 0 auto;
}
.p-news-content__list > li + li {
  margin-top: 80px;
}
@media (max-width: 599px) {
  .p-news-content__list > li + li {
    margin-top: 50px;
  }
}

.p-news-item__date {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
}
.p-news-item__title {
  margin-top: 20px;
}
@media (max-width: 599px) {
  .p-news-item__title {
    margin-top: 10px;
  }
}
.p-news-item__title > a {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  text-decoration: underline;
}
.p-news-item__title > a:hover, .p-news-item__title > a:focus {
  opacity: 0.6;
  text-decoration: none;
}

/*=======================================================================
# section共通
=======================================================================*/
.section {
  padding-top: clamp(110px, 8.59375vw, 110px);
  padding-bottom: clamp(100px, 7.8125vw, 100px);
}
.section__title {
  font-size: clamp(52px, 6.40625vw, 82px);
  margin-bottom: 50px;
  text-align: center;
  font-family: "Lora", serif;
  text-transform: capitalize;
  color: rgba(55, 42, 31, 0.8);
}
@media (max-width: 599px) {
  .section__title {
    margin-bottom: 35px;
  }
}

/*=======================================================================
# MV
=======================================================================*/
.mv {
  padding-top: 50px;
}
@media (max-width: 950px) {
  .mv {
    padding-top: 10px;
  }
}

.mv__container {
  background-color: #aed1ca;
  padding: 85px 95px 55px;
  margin-left: 50px;
}
@media (max-width: 950px) {
  .mv__container {
    padding: 20px;
    margin: 0 10px;
  }
}
.mv__container .l-inner {
  position: relative;
  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;
  padding: 0;
}
@media (max-width: 950px) {
  .mv__container .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.mv_slider {
  margin-left: 110px;
  width: 54%;
  margin-top: -135px;
}
@media (max-width: 950px) {
  .mv_slider {
    width: 100%;
    max-width: 460px;
    margin: -30px auto 0;
  }
}

.mv__photo {
  display: block;
  overflow: hidden;
  position: relative;
  position: relative;
}
.mv__photo::before {
  content: "";
  display: block;
  padding-top: 130.3571428571%;
}
.mv__photo img, .mv__photo iframe, .mv__photo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mv__photo-copy {
  font-size: clamp(24px, 3.203125vw, 41px);
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 45px 12px;
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 10;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media (max-width: 599px) {
  .mv__photo-copy {
    padding: 30px 12px;
  }
}

.mv__text {
  width: calc(46% - 110px);
}
@media (max-width: 950px) {
  .mv__text {
    width: 100%;
  }
}
.mv__text-logo {
  text-align: center;
}
.mv__text-logo img {
  width: 100%;
}
@media (max-width: 950px) {
  .mv__text-logo {
    margin-top: 50px;
  }
  .mv__text-logo img {
    max-width: 240px;
  }
}
.mv__text-lead {
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.25;
}
@media (max-width: 950px) {
  .mv__text-lead {
    color: #fff;
    line-height: 2;
    font-size: min(14px, 3.8vw);
  }
}

.mv__news {
  position: absolute;
  bottom: -55px;
  right: -55px;
  border-radius: 50%;
  width: 210px;
  height: 210px;
  padding: 25px 50px 25px;
  z-index: 10;
  background-color: #aed1ca;
  background-image: url(../img/top/news_circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 83%;
}
@media (max-width: 950px) {
  .mv__news {
    position: static;
    margin-top: 60px;
    background-color: #fff;
    background-image: none;
    border-radius: 0;
    width: 100%;
    height: auto;
    padding: 50px 50px 70px;
  }
}
@media (max-width: 599px) {
  .mv__news {
    padding: 50px 15px 70px;
  }
}
.mv__news-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  padding-right: 112px;
  position: relative;
  white-space: nowrap;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.mv__news-title::after {
  content: "";
  width: 61px;
  height: 28px;
  background: url(../img/common/flower01.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 950px) {
  .mv__news-title {
    text-align: left;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    font-size: 24px;
    display: inline-block;
    margin-bottom: 15px;
    padding-right: 120px;
  }
  .mv__news-title::after {
    width: 118px;
    height: 55px;
  }
}
.mv__news-item time {
  font-size: 10px;
  line-height: 1;
}
@media (max-width: 950px) {
  .mv__news-item time {
    font-size: 12px;
  }
}
.mv__news-item h3 {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: -5px;
}
@media (max-width: 950px) {
  .mv__news-item h3 {
    font-size: 15px;
  }
}
.mv__news-item h3 a {
  text-decoration: underline;
}
.mv__news-item h3 a:hover, .mv__news-item h3 a:focus {
  text-decoration: none;
}

/* スライダー
-----------------------------------------------------------*/
.swiper-mv,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

/*=======================================================================
# TOPICS
=======================================================================*/
.topics {
  padding: 120px 0 200px;
}
.topics .topics__item .p-card__photo {
  aspect-ratio: 6/4;
}
.topics .topics__item .p-card__date {
  font-size: 0.8rem;
}
.topics .topics__item .p-card__title {
  font-size: 1.1rem;
  line-height: 140%;
  font-weight: 500;
}
.topics .topics__item p {
  line-height: 140%;
  margin-top: 10px;
}
.topics .topics__item:nth-child(2), .topics .topics__item:nth-child(3) {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}
.topics .topics__item:nth-child(2) h1 + p, .topics .topics__item:nth-child(3) h1 + p {
  display: none;
}
@media (max-width: 599px) {
  .topics {
    padding-bottom: 100px;
  }
  .topics .topics__list .topics__item {
    margin-bottom: 30px;
  }
}
.topics .swiper-container {
  padding: 0;
}
.topics .section__title {
  margin-bottom: 55px;
}

@media (min-width: 600px) {
  .topics__list {
    display: grid;
    gap: 20px 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .topics__list .topics__item .p-card__link {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: auto auto 1fr;
  }
  .topics__list .topics__item .p-card__link .p-card__photo {
    grid-area: 1/1/4/2;
    margin-right: 20px;
  }
  .topics__list .topics__item .p-card__link .p-card__date {
    grid-area: 1/2/2/3;
    margin-bottom: 10px;
  }
  .topics__list .topics__item .p-card__link .p-card__title {
    grid-area: 2/2/3/3;
    margin-top: 0;
  }
  .topics__list .topics__item .p-card__link p {
    grid-area: 3/2/4/3;
    font-size: 1rem;
    line-height: 150%;
  }
  .topics__list .topics__item:nth-child(1) {
    grid-area: 1/1/2/3;
  }
  .topics__list .topics__item:nth-child(1) .p-card__link {
    grid-template-columns: 25% 1fr;
  }
  .topics__list .topics__item:nth-child(2) {
    grid-area: 2/1/3/2;
  }
  .topics__list .topics__item:nth-child(3) {
    grid-area: 2/2/3/3;
  }
}

/* スライダー
-----------------------------------------------------------*/
.swiper-pagination.swiper-topics-pagination {
  bottom: auto !important;
  top: -34px;
  left: 0;
  width: auto;
}
@media (min-width: 600px) {
  .swiper-pagination.swiper-topics-pagination {
    display: none;
  }
}

/*=======================================================================
# PICK UP
=======================================================================*/
.pickup {
  padding-bottom: 120px;
}
.pickup .l-inner {
  max-width: 1280px;
  padding: 0;
}

.pickup__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 950px) {
  .pickup__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.pickup__intro-text {
  padding: 130px 81px 200px;
  background-color: rgba(244, 193, 176, 0.5);
  width: 42.5%;
}
@media (max-width: 950px) {
  .pickup__intro-text {
    padding: 90px 60px;
    width: 100%;
  }
}
@media (max-width: 599px) {
  .pickup__intro-text {
    padding: 90px 30px;
  }
}
.pickup__intro-title {
  font-size: clamp(24px, 2.1875vw, 28px);
  color: #f4c1b0;
  border-bottom: 1px solid #f4c1b0;
  padding-bottom: 5px;
  font-family: "Lora", serif;
  text-transform: capitalize;
}
.pickup__intro-en {
  font-size: clamp(38px, 4.0625vw, 52px);
  font-family: "Lora", serif;
  color: #372a1f;
  line-height: 1.2;
  margin-top: 15px;
}
@media (max-width: 599px) {
  .pickup__intro-en {
    line-height: 1.38;
  }
}
.pickup__intro-ja {
  font-size: 30px;
  font-size: clamp(26px, 2.34375vw, 30px);
  margin-top: 35px;
}
@media (max-width: 599px) {
  .pickup__intro-ja {
    margin-top: 25px;
  }
}
.pickup__intro-desc {
  line-height: 2.25;
  margin-top: 35px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.pickup__intro-photo {
  width: 65%;
  margin-left: -100px;
  position: relative;
  z-index: -1;
}
.pickup__intro-photo img {
  width: 100%;
}
@media (max-width: 950px) {
  .pickup__intro-photo {
    width: 100%;
    margin-top: -50px;
    margin-left: 0;
    padding-left: 60px;
    z-index: 10;
  }
}
@media (max-width: 599px) {
  .pickup__intro-photo {
    padding-left: 30px;
  }
}

.pickup__en {
  font-size: clamp(50px, 6.25vw, 80px);
  font-family: "Lora", serif;
  color: rgba(244, 193, 176, 0.5);
  line-height: 1.52;
}
.pickup__en.intro {
  margin: -120px 0 120px 20px;
}
@media (max-width: 950px) {
  .pickup__en.intro {
    margin: 10px 0 0 60px;
  }
}
@media (max-width: 599px) {
  .pickup__en.intro {
    margin: 5px 0 0 30px;
  }
}
.pickup__en.list {
  margin: -70px 0 70px 20px;
}
@media (max-width: 950px) {
  .pickup__en.list {
    margin: -45px 0 45px 20px;
  }
}
@media (max-width: 599px) {
  .pickup__en.list {
    margin: 40px 0 0;
  }
}

.pickup__list {
  margin-top: 180px;
}
@media (max-width: 950px) {
  .pickup__list {
    margin-top: 160px;
  }
}
@media (max-width: 599px) {
  .pickup__list {
    margin-top: 40px;
  }
}
.pickup__list li + li {
  margin-top: 100px;
}
@media (max-width: 950px) {
  .pickup__list li + li {
    margin-top: 40px;
  }
}
@media (max-width: 599px) {
  .pickup__list li + li {
    margin-top: 30px;
  }
}
.pickup__list li.pickup__item--random {
  margin-top: 30px;
}
@media (max-width: 950px) {
  .pickup__list li.pickup__item--random {
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .pickup__list li.pickup__item--random {
    margin-top: 30px;
  }
}

.pickup__item {
  display: grid;
  grid-template-columns: 61% 37.5%;
  gap: 55px 0;
  grid-template-areas: "main-photo sub-photo" "main-photo text";
}
@media (max-width: 950px) {
  .pickup__item {
    grid-template-columns: 60% 40%;
  }
}
@media (max-width: 599px) {
  .pickup__item {
    display: block;
  }
}
.pickup__item-photo-a > div, .pickup__item-photo-b > div {
  display: block;
  overflow: hidden;
  position: relative;
}
.pickup__item-photo-a > div::before, .pickup__item-photo-b > div::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.pickup__item-photo-a > div img, .pickup__item-photo-a > div iframe, .pickup__item-photo-a > div video, .pickup__item-photo-b > div img, .pickup__item-photo-b > div iframe, .pickup__item-photo-b > div video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pickup__item-photo-a {
  grid-area: main-photo;
  position: relative;
  z-index: 10;
}
@media (max-width: 599px) {
  .pickup__item-photo-a {
    margin-top: 40px;
    padding-right: 30px;
  }
}
.pickup__item-photo-b {
  grid-area: sub-photo;
  -webkit-transform: translate(-82px, -80px);
  transform: translate(-82px, -80px);
  position: relative;
  z-index: 20;
}
.pickup__item-photo-b img {
  position: relative;
  z-index: 10;
}
@media (max-width: 599px) {
  .pickup__item-photo-b {
    -webkit-transform: initial;
    transform: initial;
    width: 54%;
    margin-left: auto;
    margin-right: 20px;
  }
  .pickup__item-photo-b::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 193, 176, 0.5);
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: -1;
  }
}
.pickup__item-text {
  padding: 20px 0 20px 130px;
  grid-area: text;
  -webkit-transform: translate(-82px, -80px);
  transform: translate(-82px, -80px);
}
@media (max-width: 950px) {
  .pickup__item-text {
    padding: 5px 0 5px 110px;
  }
}
@media (max-width: 599px) {
  .pickup__item-text {
    -webkit-transform: initial;
    transform: initial;
    padding: 30px;
  }
}
.pickup__item-shadow {
  grid-area: sub-photo;
  background-color: rgba(244, 193, 176, 0.5);
  -webkit-transform: translate(-32px, -30px);
  transform: translate(-32px, -30px);
  z-index: -1;
  display: block;
  overflow: hidden;
  position: relative;
}
.pickup__item-shadow::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.pickup__item-shadow img, .pickup__item-shadow iframe, .pickup__item-shadow video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 950px) {
  .pickup__item-shadow {
    -webkit-transform: translate(-52px, -50px);
    transform: translate(-52px, -50px);
  }
}
@media (max-width: 599px) {
  .pickup__item-shadow {
    display: none;
  }
}
.pickup__item-shadow.pickup__item-shadow--green {
  background-color: rgba(188, 223, 193, 0.5);
}
.pickup__item-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
}
.pickup__item-link {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 25px;
  display: block;
}
.pickup__item-link:hover, .pickup__item-link:focus {
  text-decoration: none;
}
.pickup__item-title, .pickup__item-price {
  line-height: inherit;
}

.pickup__item.pickup__item--reverse {
  grid-template-columns: 37.5% 61%;
  gap: 55px 0;
  grid-template-areas: "sub-photo main-photo" "text main-photo";
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 950px) {
  .pickup__item.pickup__item--reverse {
    grid-template-columns: 40% 60%;
  }
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--reverse .pickup__item-photo-a {
    padding-right: 0;
    padding-left: 30px;
  }
}
.pickup__item.pickup__item--reverse .pickup__item-photo-b {
  -webkit-transform: translate(82px, -80px);
  transform: translate(82px, -80px);
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--reverse .pickup__item-photo-b {
    -webkit-transform: initial;
    transform: initial;
    margin-left: 20px;
  }
  .pickup__item.pickup__item--reverse .pickup__item-photo-b::after {
    left: -20px;
    right: auto;
  }
}
.pickup__item.pickup__item--reverse .pickup__item-text {
  -webkit-transform: translate(82px, -80px);
  transform: translate(82px, -80px);
  padding: 20px 130px 20px 0;
}
@media (max-width: 950px) {
  .pickup__item.pickup__item--reverse .pickup__item-text {
    padding: 5px 110px 5px 0;
  }
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--reverse .pickup__item-text {
    -webkit-transform: initial;
    transform: initial;
    padding: 30px;
  }
}
.pickup__item.pickup__item--reverse .pickup__item-shadow {
  -webkit-transform: translate(32px, -30px);
  transform: translate(32px, -30px);
}
@media (max-width: 950px) {
  .pickup__item.pickup__item--reverse .pickup__item-shadow {
    -webkit-transform: translate(52px, -50px);
    transform: translate(52px, -50px);
  }
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--reverse .pickup__item-shadow {
    display: none;
  }
}

.pickup__item.pickup__item--random {
  grid-template-columns: 61% 39%;
  gap: 100px 0;
  grid-template-areas: "main-photo text" "... sub-photo";
}
@media (max-width: 950px) {
  .pickup__item.pickup__item--random {
    grid-template-columns: 60% 40%;
    gap: 40px 0;
  }
}
.pickup__item.pickup__item--random .pickup__item-text {
  -webkit-transform: initial;
  transform: initial;
  padding: 30px 50px;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
@media (min-width: 951px) {
  .pickup__item.pickup__item--random .pickup__item-text {
    padding-right: 90px;
  }
}
.pickup__item.pickup__item--random .pickup__item-photo-b {
  -webkit-transform: initial;
  transform: initial;
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--random .pickup__item-photo-b::after {
    left: auto;
    right: -20px;
    bottom: -20px;
  }
}
.pickup__item.pickup__item--random .pickup__item-shadow {
  -webkit-transform: translate(-50px, 50px);
  transform: translate(-50px, 50px);
}
@media (max-width: 950px) {
  .pickup__item.pickup__item--random .pickup__item-shadow {
    -webkit-transform: translate(-30px, 30px);
    transform: translate(-30px, 30px);
  }
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--random .pickup__item-shadow {
    display: none;
  }
}
.pickup__item.pickup__item--random.pickup__item--random-reverse {
  grid-template-columns: 39% 61%;
  grid-template-areas: "text main-photo" "sub-photo ...";
}
@media (max-width: 950px) {
  .pickup__item.pickup__item--random.pickup__item--random-reverse {
    grid-template-columns: 40% 60%;
  }
}
@media (min-width: 951px) {
  .pickup__item.pickup__item--random.pickup__item--random-reverse .pickup__item-text {
    padding-right: 50px;
    padding-left: 90px;
  }
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--random.pickup__item--random-reverse .pickup__item-photo-a {
    padding-right: 0;
    padding-left: 30px;
  }
}
.pickup__item.pickup__item--random.pickup__item--random-reverse .pickup__item-photo-b {
  margin-left: 20px;
}
@media (max-width: 599px) {
  .pickup__item.pickup__item--random.pickup__item--random-reverse .pickup__item-photo-b::after {
    left: -20px;
    right: auto;
  }
}
.pickup__item.pickup__item--random.pickup__item--random-reverse .pickup__item-shadow {
  -webkit-transform: translate(50px, 50px);
  transform: translate(50px, 50px);
}
@media (max-width: 950px) {
  .pickup__item.pickup__item--random.pickup__item--random-reverse .pickup__item-shadow {
    -webkit-transform: translate(30px, 30px);
    transform: translate(30px, 30px);
  }
}

.pickup__footer {
  margin-top: 200px;
  text-align: center;
}
@media (max-width: 950px) {
  .pickup__footer {
    margin-top: 100px;
  }
}
.pickup__footer .c-btn {
  background-color: rgba(255, 252, 247, 0.5);
}
@media (max-width: 599px) {
  .pickup__footer .c-btn {
    max-width: 315px;
  }
}

/*=======================================================================
# GOODS
=======================================================================*/
.goods {
  padding: 0 0 200px;
}
@media (max-width: 599px) {
  .goods {
    padding-bottom: 90px;
  }
}

.goods__header .l-inner {
  position: relative;
  max-width: 1366px;
}
.goods__header-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.goods__header-bg img {
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 950px) {
  .goods__header-bg img {
    height: 380px;
  }
}
@media (max-width: 599px) {
  .goods__header-bg img {
    height: 137px;
  }
}
.goods__header-text {
  padding: 80px;
  background-color: rgba(255, 255, 255, 0.7);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 950px) {
  .goods__header-text {
    padding: 60px;
  }
}
@media (max-width: 599px) {
  .goods__header-text {
    position: static;
    padding: 35px 0;
    background-color: transparent;
  }
}
.goods__header-text h2 {
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .goods__header-text h2 {
    margin-bottom: 20px;
  }
}
.goods__header-text p {
  line-height: 2.25;
}

.goods .section__body {
  margin-top: 110px;
}
@media (max-width: 599px) {
  .goods .section__body {
    margin-top: 10px;
  }
}
.goods .section__body .l-inner {
  max-width: 870px;
}

.goods__list {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 599px) {
  .goods__list {
    gap: 50px 15px;
  }
}

/*=======================================================================
# RECOMMEND
=======================================================================*/
.recommend {
  background-color: #fffcf7;
}
@media (min-width: 600px) {
  .recommend .l-inner {
    padding: 0;
  }
}

/* スライダー
-----------------------------------------------------------*/
.swiper-recommend {
  max-width: 870px;
  margin-bottom: 52px;
}

/*=======================================================================
# OFFICIAL INSTAGRAM
=======================================================================*/
#sbi_images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto repeat(3, 172.5px);
  gap: 3px;
}
@media (max-width: 950px) {
  #sbi_images {
    grid-template-rows: auto repeat(3, 112px);
  }
}
@media (max-width: 599px) {
  #sbi_images {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 110px auto repeat(7, 82px);
    gap: 2px;
  }
}
#sbi_images .sbi_item .sbi_photo_wrap {
  height: 100%;
}
#sbi_images .sbi_item .sbi_photo_wrap .sbi_photo {
  height: 100% !important;
  padding-top: 100%;
}
#sbi_images .sbi_insert_item {
  grid-area: 1/1/2/7;
}
#sbi_images .sbi_insert_item > a {
  display: block;
  height: 100%;
}
#sbi_images .sbi_insert_item img {
  width: 100%;
  height: 100%;
}
#sbi_images .sbi_item:nth-child(2) {
  grid-area: 2/1/3/2;
}
#sbi_images .sbi_item:nth-child(3) {
  grid-area: 2/2/3/3;
}
#sbi_images .sbi_item:nth-child(4) {
  grid-area: 3/1/5/3;
}
#sbi_images .sbi_item:nth-child(5) {
  grid-area: 2/3/4/5;
}
#sbi_images .sbi_item:nth-child(6) {
  grid-area: 4/3/5/4;
}
#sbi_images .sbi_item:nth-child(7) {
  grid-area: 4/4/5/5;
}
#sbi_images .sbi_item:nth-child(8) {
  grid-area: 2/5/3/6;
}
#sbi_images .sbi_item:nth-child(9) {
  grid-area: 2/6/3/7;
}
#sbi_images .sbi_item:nth-child(10) {
  grid-area: 3/5/5/7;
}
@media (max-width: 599px) {
  #sbi_images .sbi_insert_item {
    grid-area: 2/1/6/13;
  }
  #sbi_images .sbi_item:nth-child(2) {
    grid-area: 1/1/2/5;
  }
  #sbi_images .sbi_item:nth-child(3) {
    grid-area: 1/5/2/9;
  }
  #sbi_images .sbi_item:nth-child(4) {
    grid-area: 1/9/2/13;
  }
  #sbi_images .sbi_item:nth-child(5) {
    grid-area: 6/1/7/4;
  }
  #sbi_images .sbi_item:nth-child(6) {
    grid-area: 6/4/7/7;
  }
  #sbi_images .sbi_item:nth-child(7) {
    grid-area: 7/1/9/7;
  }
  #sbi_images .sbi_item:nth-child(8) {
    grid-area: 6/7/8/13;
  }
  #sbi_images .sbi_item:nth-child(9) {
    grid-area: 8/7/9/10;
  }
  #sbi_images .sbi_item:nth-child(10) {
    grid-area: 8/10/9/13;
  }
}

#instagram.section {
  padding-top: 0;
}

.btn__box {
  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;
  gap: 20px;
  margin: 40px 0 0 0;
}
@media (max-width: 599px) {
  .btn__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 0 0;
  }
}
.btn__box .recommend__btn {
  font-size: 22px;
  text-align: center;
  width: 400px;
}
@media (max-width: 599px) {
  .btn__box .recommend__btn {
    width: 80%;
  }
}
.btn__box .shop__btn {
  font-size: 22px;
  width: 400px;
  text-align: center;
}
@media (max-width: 599px) {
  .btn__box .shop__btn {
    width: 80%;
  }
}

/*=======================================================================
# SHOP
=======================================================================*/
.shop {
  background-color: #fffcf7;
}
.shop .section__title {
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  .shop .section__title {
    margin-bottom: 40px;
  }
}

/*=======================================================================
# FAQ
=======================================================================*/
.faq {
  padding: 0 0 200px;
}
.faq__banner {
  text-align: center;
}
.faq__banner > a {
  display: inline-block;
  max-width: 620px;
}
@media (max-width: 599px) {
  .faq__banner > a {
    width: 85%;
    max-width: 350px;
  }
}
.faq__banner > a:hover, .faq__banner > a:focus {
  opacity: 0.6;
}
.faq__banner > a img {
  width: 100%;
}

.error404 .p-content {
  text-align: center;
}

.alignfull {
  max-width: initial;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.alignwide {
  width: 110%;
  margin-left: -5%;
  margin-right: -5%;
}

.alignleft {
  margin-right: auto;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  margin-left: auto;
}

.wp-block-button {
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

.wp-block-buttons .wp-block-button .wp-block-button__link {
  display: block;
  text-align: center;
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 20px;
  text-decoration: none !important;
  color: #61a9a2;
  border: 1px solid #61a9a2;
  border-radius: 0;
  margin: 0 !important;
  border-radius: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-block-buttons .wp-block-button .wp-block-button__link::after {
  content: ">";
  margin-left: 1em;
}
.wp-block-buttons .wp-block-button .wp-block-button__link:hover, .wp-block-buttons .wp-block-button .wp-block-button__link:focus {
  opacity: 0.6;
}

/* fill */
.wp-block-button.is-style-fill .wp-block-button__link {
  color: #fff;
  border-color: #aed1ca;
  background-color: #aed1ca;
}

/* outline */
.wp-block-button.is-style-outline .wp-block-button__link {
  color: #61a9a2;
  border-color: #61a9a2;
  background-color: transparent;
}

@media (min-width: 951px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media (min-width: 600px) and (max-width: 950px) {
  .u-hidden-tab {
    display: none !important;
  }
}

@media (max-width: 599px) {
  .u-hidden-sp {
    display: none !important;
  }
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-m-0 {
  margin: 0 !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

@media (max-width: 599px) {
  .u-mt-sp-0 {
    margin-top: 0px !important;
  }
  .u-mb-sp-0 {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-5 {
    margin-top: 5px !important;
  }
  .u-mb-sp-5 {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-10 {
    margin-top: 10px !important;
  }
  .u-mb-sp-10 {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-15 {
    margin-top: 15px !important;
  }
  .u-mb-sp-15 {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-20 {
    margin-top: 20px !important;
  }
  .u-mb-sp-20 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-25 {
    margin-top: 25px !important;
  }
  .u-mb-sp-25 {
    margin-bottom: 25px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-30 {
    margin-top: 30px !important;
  }
  .u-mb-sp-30 {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-35 {
    margin-top: 35px !important;
  }
  .u-mb-sp-35 {
    margin-bottom: 35px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-40 {
    margin-top: 40px !important;
  }
  .u-mb-sp-40 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-45 {
    margin-top: 45px !important;
  }
  .u-mb-sp-45 {
    margin-bottom: 45px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-50 {
    margin-top: 50px !important;
  }
  .u-mb-sp-50 {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-55 {
    margin-top: 55px !important;
  }
  .u-mb-sp-55 {
    margin-bottom: 55px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-60 {
    margin-top: 60px !important;
  }
  .u-mb-sp-60 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-65 {
    margin-top: 65px !important;
  }
  .u-mb-sp-65 {
    margin-bottom: 65px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-70 {
    margin-top: 70px !important;
  }
  .u-mb-sp-70 {
    margin-bottom: 70px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-75 {
    margin-top: 75px !important;
  }
  .u-mb-sp-75 {
    margin-bottom: 75px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-80 {
    margin-top: 80px !important;
  }
  .u-mb-sp-80 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-85 {
    margin-top: 85px !important;
  }
  .u-mb-sp-85 {
    margin-bottom: 85px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-90 {
    margin-top: 90px !important;
  }
  .u-mb-sp-90 {
    margin-bottom: 90px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-95 {
    margin-top: 95px !important;
  }
  .u-mb-sp-95 {
    margin-bottom: 95px !important;
  }
}
@media (max-width: 599px) {
  .u-mt-sp-100 {
    margin-top: 100px !important;
  }
  .u-mb-sp-100 {
    margin-bottom: 100px !important;
  }
}
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-text-vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.u-text-decoration {
  text-decoration: underline !important;
}
.u-text-decoration:hover {
  opacity: 1;
  text-decoration: none !important;
}

/* スクリーンリーダー用のスタイル */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*# sourceMappingURL=sourcemaps/style.css.map */