@charset "UTF-8";
/* foundation */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

li {
  list-style-position: inside;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

ins {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #fff;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  object-fit: cover;
  height: auto;
  display: block;
}

div {
  box-sizing: border-box;
}

/* サイト共通設定 */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background: url(images/bg/bg_01.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  color: #333;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
  letter-spacing: 0.02rem;
  position: relative;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.9;
  filter: brightness(100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* PC */
@media (min-width: 769px) {
  body {
    font-size: 1rem;
    width: 100%;
  }
  ._inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  ._sp {
    display: none !important;
  }
  /* PC版ではtelリンクなし */
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (max-width: 1350px) {
  ._inner {
    max-width: 75% !important;
  }
}
/* SP */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
    min-width: 320px;
  }
  html,
  body {
    height: 100%;
    min-height: 100%;
  }
  ._inner {
    max-width: 100% !important;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  ._pc {
    display: none !important;
  }
}
/* layout */
@media (max-width: 768px) {
  .l-header {
    position: relative;
    z-index: 999;
  }
}
@media (min-width: 769px) {
  .l-header .l-header__logo {
    position: fixed;
    top: 50px;
    left: 120px;
    z-index: 1000;
  }
}
@media (max-width: 768px) {
  .l-header .l-header__logo {
    position: absolute;
  }
}
@media (max-width: 768px) {
  .l-header .l-hamburger {
    position: fixed !important;
    z-index: 9999;
  }
}
@media (min-width: 769px) {
  .l-header .l-header__nav {
    position: fixed;
    z-index: 1000;
    right: 0;
    padding-right: 120px;
    pointer-events: none;
  }
}
@media (min-width: 769px) {
  .l-header .l-header__nav .l-header__menu-items .l-header__menu-item {
    pointer-events: auto;
  }
}
.l-header .l-header__btns {
  position: fixed;
  top: 48px;
  right: env(safe-area-inset-right, 0);
  z-index: 1000;
}
@media (min-width: 769px) {
  .l-header .l-header__btns {
    max-height: 95dvh;
    /* ← 動的な実高さいっぱい（iOS対策も〇） */
    overflow-y: auto;
    /* ← はみ出したら内側だけ縦スクロール */
  }
}
@media (max-width: 768px) {
  .l-header .l-header__btns {
    top: initial;
    right: initial;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.l-page-top .l-page-top__section-fv {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .l-page-top .l-page-top__section-fv {
    margin-bottom: 0px;
  }
}

/* component */
.c-btn-page-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 30;
}
@media (max-width: 768px) {
  .c-btn-page-top {
    bottom: 70px;
  }
}
.c-btn-page-top a img {
  width: 72px;
  height: 82px;
}

.c-btn {
  color: #fff;
  background-color: #CFAA5A;
  border: none;
  display: inline-flex;
  font-size: 0.875rem;
  position: relative;
}
@media (max-width: 768px) {
  .c-btn {
    padding: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 32px;
    gap: 8px;
  }
}
.c-btn:after {
  display: inline-block;
  content: "";
  width: 24px;
  height: 19.5px;
  background-image: url(images/icon/icon_egg_top.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s ease;
  position: relative;
  top: -5px;
  right: 32px;
}
.c-btn .icon2 {
  display: inline-block;
  content: "";
  width: 24px;
  height: 26.5px;
  background-image: url(images/icon/icon_egg_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 14px;
  right: 30px;
  transition: 0.5s ease;
  position: relative;
  bottom: 0;
  right: 0;
}
.c-btn:hover:after {
  top: -12px;
  transition: 0.5s ease;
}
.c-btn:hover .icon2 {
  bottom: -7px;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  .c-btn span {
    width: fit-content;
  }
}
@media (min-width: 769px) {
  .c-btn--vertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 15px 18.5px 10px 18.5px;
    letter-spacing: 0.3em;
    border-radius: 4px;
    display: block;
    font-size: 1rem;
  }
  .c-btn--vertical:after {
    width: 33.5px;
    height: 26px;
    top: -24px;
    right: initial;
  }
  .c-btn--vertical .icon2 {
    width: 33.5px;
    height: 36.5px;
    bottom: -15px;
    right: initial;
  }
  .c-btn--vertical:hover:after {
    top: -32px;
    transition: 0.5s ease;
  }
  .c-btn--vertical:hover .icon2 {
    bottom: -25px;
    transition: 0.5s ease;
  }
}
.c-btn--dark {
  background-color: #333;
}
.c-btn--red {
  background-color: #E34A00;
}

.c-btn-body {
  display: flex;
  justify-content: center;
}
.c-btn-body .c-btn-body__link {
  display: flex;
  align-items: end;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  gap: 8px;
  /* 幅はテキスト＋アイコン分だけ */
  width: fit-content;
  /* または必要な固定幅 */
  height: fit-content;
}
@media (max-width: 768px) {
  .c-btn-body .c-btn-body__link {
    font-size: 1rem;
  }
}
.c-btn-body .c-btn-body__link .text {
  border-bottom: 1px solid #000;
  flex: 1;
}
.c-btn-body .c-btn-body__link::after {
  content: "";
  position: absolute;
  /* ← relativeではなくabsoluteに変更 */
  bottom: 20px;
  right: 0;
  /* リンクの右端にぴったり配置 */
  width: 42px;
  height: 32px;
  background: url(images/icon/icon_egg_top_gold.png) center/contain no-repeat;
  transition: 0.5s ease;
  pointer-events: none;
  /* ←クリックを奪わない */
}
@media (max-width: 768px) {
  .c-btn-body .c-btn-body__link::after {
    width: 31px;
    height: 24px;
    bottom: 14px;
  }
}
.c-btn-body .c-btn-body__link .icon2 {
  display: inline-block;
  width: 42px;
  height: 46px;
  background: url(images/icon/icon_egg_bottom_gold.png) center/contain no-repeat;
  position: relative;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  .c-btn-body .c-btn-body__link .icon2 {
    width: 31px;
    height: 34px;
  }
}
.c-btn-body .c-btn-body__link:hover::after {
  bottom: 45px;
}
@media (max-width: 768px) {
  .c-btn-body .c-btn-body__link:hover::after {
    bottom: 33px;
  }
}
@media (min-width: 769px) {
  .c-btn-body--vertical .c-btn-body__link {
    font-size: 0.875rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    flex-direction: row-reverse;
    letter-spacing: 0.5em;
    gap: 16px;
  }
  .c-btn-body--vertical .c-btn-body__link:after {
    bottom: initial;
    top: -4px;
  }
  .c-btn-body--vertical .c-btn-body__link .text {
    border-bottom: none;
    border-right: 1px solid #000;
  }
  .c-btn-body--vertical .c-btn-body__link:hover:after {
    top: -30px;
  }
}
.c-btn-body--light .c-btn-body__link {
  color: #fff;
}
.c-btn-body--light .c-btn-body__link .text {
  border-bottom: 1px solid #fff;
}
.c-btn-body--light .c-btn-body__link::after {
  background: url(images/icon/icon_egg_top.png) center/contain no-repeat;
  height: 34px;
  bottom: 17px;
}
@media (max-width: 768px) {
  .c-btn-body--light .c-btn-body__link::after {
    bottom: 8px;
  }
}
.c-btn-body--light .c-btn-body__link .icon2 {
  background: url(images/icon/icon_egg_bottom.png) center/contain no-repeat;
}
@media (max-width: 768px) {
  .c-btn-body--light .c-btn-body__link:hover::after {
    top: -26px;
  }
}

.c-hamburger {
  position: absolute;
  background: transparent;
  height: 54px;
  right: 0;
  z-index: 9999;
  cursor: pointer;
}

.c-hamburger__icon {
  width: 32.4px;
  height: 32.4px;
  background: #CFAA5A;
  padding: 10.8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  border-radius: 0 0 0 4px;
}

.c-hamburger__icon:hover {
  cursor: pointer;
}

.c-hamburger__icon span {
  background: #fff;
  width: 27px;
  height: 2px;
  position: absolute;
  transition: 0.3s ease-out;
}

.c-hamburger__icon span:nth-of-type(1) {
  top: 16.2px;
}

.c-hamburger__icon span:nth-of-type(3) {
  bottom: 16.2px;
}

/* ハンバーガーメニューにactiveクラスがついたときのスタイル */
.c-hamburger__icon.active span:nth-of-type(1) {
  transform: translateY(9.72px) rotate(-45deg);
  transition: 0.3s ease-out;
}

.c-hamburger__icon.active span:nth-of-type(3) {
  transform: translateY(-9.72px) rotate(45deg);
  transition: 0.3s ease-out;
}

.c-hamburger__icon.active span:nth-of-type(2) {
  opacity: 0;
}

.c-epark {
  color: #333;
}
@media (min-width: 769px) {
  .c-epark {
    z-index: 1000;
    position: fixed;
    bottom: 35px;
    right: 83px;
  }
}
@media (max-width: 768px) {
  .c-epark {
    background-color: #fff;
  }
}
.c-epark .c-epark__container {
  border: none !important;
  background-color: rgba(255, 255, 255, 0.54);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  padding: 20px 17px;
}
.c-epark .c-epark__container > div:last-of-type {
  display: none;
}
@media (max-width: 768px) {
  .c-epark .c-epark__container {
    flex-direction: row;
    margin: 0 auto;
    width: fit-content;
    border-radius: 0;
    padding: 10px 20px;
  }
}
.c-epark .c-epark__container:before {
  display: block;
  content: "";
  width: 14px;
  height: 16px;
  background-image: url(images/icon/icon_bell.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .c-epark .c-epark__container:before {
    width: 17px;
    height: 19px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}
@media (max-width: 768px) {
  .c-epark .c-epark__container .c-epark__text-container {
    margin: 0 !important;
    margin-right: auto !important;
    flex: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
.c-epark .c-epark__container .c-epark__text {
  font-size: 0.875rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 400 !important;
}
@media (min-width: 769px) {
  .c-epark .c-epark__container .c-epark__text {
    white-space: initial !important;
  }
}
@media (max-width: 768px) {
  .c-epark .c-epark__container .c-epark__text {
    font-size: 1.125rem;
    -ms-writing-mode: initial;
    writing-mode: initial;
    text-orientation: initial;
    margin-right: 6px;
  }
}
.c-epark .c-epark__container .c-epark__text-02 {
  color: #71B15E !important;
  font-size: 12px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  .c-epark .c-epark__container .c-epark__text-02 {
    font-size: 1rem;
  }
}
.c-epark .c-epark__container .c-epark__text-02 span {
  color: #71B15E !important;
  font-size: 15px;
}
@media (max-width: 768px) {
  .c-epark .c-epark__container .c-epark__text-02 span {
    font-size: 1.25rem;
  }
}

.c-heading .c-heading__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02rem;
  font-size: 36px;
  color: #333;
}
@media (max-width: 768px) {
  .c-heading .c-heading__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 769px) {
  .c-heading .c-heading__title--br-none-pc br {
    display: none;
  }
}
.c-heading .c-heading__lead {
  margin-top: 8px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}
.c-heading--vertical {
  display: flex;
  flex-direction: row-reverse;
}
.c-heading--vertical .c-heading__title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.5em;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .c-heading--vertical .c-heading__title {
    margin-left: 20px;
  }
}
.c-heading--vertical .c-heading__lead {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.5em;
  padding-top: 88px;
  line-height: 250%;
}
.c-heading--light .c-heading__title {
  color: #fff;
}
.c-heading--small .c-heading__title {
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  font-weight: 600;
}

.c-heading-02 .c-heading-02__title {
  font-family: "Shippori Mincho", serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-heading-02 .c-heading-02__title {
    font-size: 1.25rem;
  }
}
.c-heading-02 .c-heading-02__text {
  font-weight: 700;
  text-align: center;
}

.c-text-media {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-text-media {
    flex-direction: column;
  }
}
.c-text-media .c-text-media__img {
  margin-right: 32px;
  width: 57.5%;
}
@media (max-width: 768px) {
  .c-text-media .c-text-media__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.c-text-media .c-text-media__img img {
  border-radius: 16px;
  width: 100%;
  height: 390px;
}
@media (max-width: 768px) {
  .c-text-media .c-text-media__img img {
    height: 350px;
  }
}
@media (max-width: 500px) {
  .c-text-media .c-text-media__img img {
    height: 225px;
  }
}
.c-text-media .c-text-media__text-area {
  width: 42.5%;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-text-media .c-text-media__text-area {
    width: 100%;
    padding-top: 0;
  }
}
.c-text-media .c-text-media__text-area .c-text-media__title {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .c-text-media .c-text-media__text-area .c-text-media__title img {
    max-width: 157px;
  }
}
@media (max-width: 768px) {
  .c-text-media .c-text-media__text-area .c-text-media__title--small img {
    max-width: 105px;
  }
}
.c-text-media .c-text-media__text-area .c-text-media__text {
  margin-bottom: 8px;
}
.c-text-media .c-text-media__text-area .c-text-media__price {
  margin-bottom: 8px;
  font-weight: 700;
}
.c-text-media .c-text-media__text-area .c-text-media__lists li {
  margin-left: 10px;
  text-indent: -10px;
}
.c-text-media .c-text-media__text-area .c-text-media__lists li::before {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 100%;
  background: #333;
  margin-right: 7px;
}
.c-text-media .c-text-media__text-area p,
.c-text-media .c-text-media__text-area ul {
  padding-left: 8px;
}

.c-text-media-02 {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .c-text-media-02 {
    max-width: 400px;
  }
}
.c-text-media-02 .c-text-media-02__img {
  width: 204px;
  height: 253px;
  overflow: hidden;
  margin-bottom: 16px;
  /* border-radius の4値をスラッシュで指定すると楕円半径を分けられる */
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
}
@media (max-width: 768px) {
  .c-text-media-02 .c-text-media-02__img {
    width: 140px;
    height: 175px;
  }
}
.c-text-media-02 .c-text-media-02__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-text-media-02 .c-text-media-02__title {
  margin-bottom: 16px;
  width: 100%;
}
.c-text-media-02 .c-text-media-02__title img {
  width: 100%;
}
@media (max-width: 768px) {
  .c-text-media-02 .c-text-media-02__title img {
    max-width: 230px;
  }
}
.c-text-media-02 .c-text-media-02__price {
  margin-bottom: 16px;
  font-weight: 700;
  width: 100%;
}
.c-text-media-02 .c-text-media-02__text {
  width: 100%;
}

.c-wave {
  background-image: url(images/bg/bg_gold_wave_top.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  width: 100%;
  min-height: clamp(9.688rem, 5.394rem + 8.93vw, 19.688rem);
  position: relative;
  bottom: -10px;
}
@media (max-width: 768px) {
  .c-wave {
    min-height: clamp(5rem, 2.913rem + 8.91vw, 7.188rem);
  }
}

.c-textlink {
  text-align: center;
}
.c-textlink .c-textlink__link {
  font-weight: 700;
  display: inline-block;
  border-bottom: 1px solid #fff;
}
.c-textlink .c-textlink__link:after {
  content: url(images/icon/icon_arrow_light.png);
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  top: 5px;
}

.c-page-header {
  height: 700px;
  background-image: url(images/bg/bg_03.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .c-page-header {
    background-image: url(images/bg/bg_03_sp.webp);
    height: 500px;
  }
}
.c-page-header .c-page-header__inner {
  margin: 0 auto;
  height: 100%;
}
.c-page-header .c-page-header__inner .c-page-header__title {
  padding-top: 430px;
  padding-left: clamp(3.75rem, -11.173rem + 23.32vw, 9.813rem);
}
@media (max-width: 768px) {
  .c-page-header .c-page-header__inner .c-page-header__title {
    padding-top: 280px;
    padding-left: 0;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .c-page-header .c-page-header__inner .c-page-header__title img {
    width: 50%;
    min-width: 203px;
    height: 50px;
    margin: 0 auto;
  }
}
.c-page-header--interview {
  background-image: url(images/pic/pic_56.webp);
}
@media (max-width: 768px) {
  .c-page-header--interview {
    background-image: url(images/pic/pic_56_sp.webp);
  }
}

.c-page-header-02 {
  background-image: url(images/pic/pic_26.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: clamp(20rem, 1.042rem + 29.62vw, 48.438rem);
  position: relative;
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media (max-width: 768px) {
  .c-page-header-02 {
    background-image: url(images/pic/pic_26_sp.webp);
    height: clamp(18.75rem, 3.353rem + 65.69vw, 35.625rem);
  }
}
.c-page-header-02 h1 {
  position: relative;
  z-index: 10;
  bottom: 30px;
  width: 35%;
}
@media (max-width: 768px) {
  .c-page-header-02 h1 {
    width: 100%;
    bottom: 0;
  }
}
.c-page-header-02 h1 img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.c-page-header-02--store {
  background-image: url(images/pic/pic_35.webp);
}
@media (max-width: 768px) {
  .c-page-header-02--store {
    background-image: url(images/pic/pic_35_sp.webp);
  }
}
.c-page-header-02--store h1 {
  max-width: 405px;
}
@media (max-width: 768px) {
  .c-page-header-02--store h1 img {
    max-width: 203px;
  }
}
.c-page-header-02--menu {
  background-image: url(images/pic/pic_40.webp);
}
@media (max-width: 768px) {
  .c-page-header-02--menu {
    background-image: url(images/pic/pic_41.webp);
  }
}
.c-page-header-02--menu h1 {
  max-width: 405px;
}
@media (max-width: 768px) {
  .c-page-header-02--menu h1 img {
    max-width: 203px;
  }
}
.c-page-header-02--news {
  background-image: url(images/pic/pic_58.webp);
}
@media (max-width: 768px) {
  .c-page-header-02--news {
    background-image: url(images/pic/pic_59.webp);
  }
}
.c-page-header-02--news h1 {
  max-width: 405px;
}
@media (max-width: 768px) {
  .c-page-header-02--news h1 img {
    max-width: 203px;
  }
}
.c-page-header-02--privacy-policy {
  background-image: url(images/pic/pic_60.webp);
}
@media (max-width: 768px) {
  .c-page-header-02--privacy-policy {
    background-image: url(images/pic/pic_60_sp.webp);
  }
}
.c-page-header-02--contact {
  background-image: url(images/pic/pic_61.webp);
}
@media (max-width: 768px) {
  .c-page-header-02--contact {
    background-image: url(images/pic/pic_61_sp.webp);
  }
}

.c-message {
  position: fixed;
  right: 150px;
  bottom: 50px;
  z-index: 1000;
}
.c-message img {
  width: 280px;
  height: 56px;
}

.c-item {
  width: 100%;
}
.c-item .c-item__title-top {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.125rem, -0.413rem + 2.4vw, 1.75rem);
  margin-bottom: 16px;
  font-weight: 600;
  height: 40px;
}
@media (max-width: 768px) {
  .c-item .c-item__title-top {
    font-size: 1.5rem;
    height: auto;
  }
}
.c-item .c-item__img {
  width: 100%;
  margin-bottom: 8px;
}
.c-item .c-item__img img {
  border-radius: 16px;
  height: 320px;
  width: 100%;
}
@media (max-width: 768px) {
  .c-item .c-item__img img {
    height: 350px;
  }
}
@media (max-width: 500px) {
  .c-item .c-item__img img {
    height: 200px;
  }
}
.c-item .c-item__title {
  margin-bottom: 8px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.125rem, 0.202rem + 1.44vw, 1.5rem);
  font-weight: 600;
}
@media (max-width: 768px) {
  .c-item .c-item__title {
    font-size: 1.25rem;
  }
}
.c-item .c-item__lists li {
  margin-bottom: 16px;
  display: flex;
  gap: 5px;
}
.c-item .c-item__lists li:last-of-type {
  margin-bottom: 0;
}
.c-item--img-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-item--img-circle .c-item__title {
  text-align: center;
  margin-bottom: 0;
  height: 70px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .c-item--img-circle .c-item__title {
    height: auto;
  }
}
.c-item--img-circle .c-item__img {
  margin-bottom: 24px;
  aspect-ratio: 1/1;
  max-width: 388px;
  max-height: 388px;
}
.c-item--img-circle .c-item__img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.c-item--img-circle .c-item__text {
  text-align: left;
}

.c-step {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-step .c-step__step {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  margin-bottom: 8px;
  font-weight: 600;
}
.c-step .c-step__img {
  width: 100%;
  height: 185px;
  max-width: 202px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .c-step .c-step__img {
    max-width: 100%;
    height: 145px;
  }
}
.c-step .c-step__img img {
  width: 100%;
  height: 100%;
}
.c-step .c-step__title {
  margin-bottom: 8px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.c-step .c-step__text {
  margin-bottom: 8px;
  display: flex;
  min-height: 120px;
}
@media (max-width: 768px) {
  .c-step .c-step__text {
    height: auto;
    min-height: auto;
  }
}
.c-step .c-step__text-box {
  font-size: 0.875rem;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  min-height: 120px;
  flex: 1;
}
@media (max-width: 768px) {
  .c-step .c-step__text-box {
    height: auto;
    min-height: auto;
  }
}

.c-svg-image-01 {
  width: 510px;
  height: 315px;
  display: block;
  object-fit: cover;
  -webkit-clip-path: url(#c-svg-01);
  clip-path: url(#c-svg-01);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-svg-image-01 {
    width: 335px;
    height: 207px;
  }
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(0.8);
  /* 左右のスライドを小さくする */
  transition: 0.7s;
  /* ゆっくり小さくさせる */
}

.swiper-slide {
  opacity: 0.9;
  /* 左右のスライドを薄くする */
  transform: scale(0.9);
  /* 左右のスライドを小さくする */
  transition: 0.7s;
  /* ゆっくり小さくさせる */
  filter: brightness(0.1) saturate(0.9);
}
@media (max-width: 768px) {
  .swiper-slide {
    padding: 4px;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
  border-radius: 20px;
  height: 480px;
}
@media (max-width: 768px) {
  .swiper-slide img {
    height: 250px;
  }
}

.swiper-slide-active {
  opacity: 1;
  /* 中央のスライドは薄くしない */
  transform: scale(1);
  /* 中央のスライドは小さくしない */
  z-index: 1;
  /* 中央のスライドを一番上にする */
  opacity: 1;
  filter: none;
  margin-top: 0;
  transition: 0.7s;
}
.swiper-slide-active img {
  height: 480px;
}
@media (max-width: 768px) {
  .swiper-slide-active img {
    height: 300px;
  }
}

.swiper-pagenation-conteinar {
  text-align: center;
  margin-top: 50px;
}

.swiper-pagenation-inner {
  position: relative !important;
  display: inline-block !important;
  margin: 0 auto !important;
}

.swiper-pagination {
  position: relative !important;
}

.swiper-button-prev {
  top: initial !important;
  bottom: -3px !important;
  left: -35px !important;
  color: #969696 !important;
}
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: 900;
}

.swiper-button-next {
  top: initial !important;
  bottom: -3px !important;
  right: -35px !important;
  color: #969696 !important;
}
.swiper-button-next:after {
  font-size: 20px !important;
  font-weight: 900;
}

.swiper-pagination-bullet-active {
  background-color: #CFAA5A !important;
}

.c-banner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .c-banner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.c-banner img {
  width: 100%;
  display: block;
  height: auto;
}

/* project */
.p-page-top-section-fv {
  position: relative;
  min-height: 780px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-page-top-section-fv {
    min-height: inherit;
  }
}

/* FV下端に“紙テクの丸カーブ”を被せる（マスクで曲線） */
@media (min-width: 769px) {
  .p-page-top-section-fv::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(64px, 12vw, 180px);
    z-index: 1;
    pointer-events: none;
    /* 親と同じ紙テク */
    background-image: var(--paper-url);
    background-repeat: repeat;
    background-position: center bottom;
    background-size: cover;
    /* ←ここが肝：SVGマスク（白=表示、透明=非表示） */
    /* 幅1440×高さ494 の座標系でそのまま */
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'><path fill='white' d='M0 0.5 C419.5 324 1025.5 359 1440 124 V492 H0 V0.5 Z'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'><path fill='white' d='M0 0.5 C419.5 324 1025.5 359 1440 124 V492 H0 V0.5 Z'/></svg>");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
    mask-position: bottom;
  }
}

/* 動画そのまま */
.p-page-top-section-fv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-page-top-section-fv__sp {
  height: 90vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-header {
  background-color: transparent;
  width: 100%;
  display: flex;
  top: 0;
  color: #fff;
}

@media (max-width: 768px) {
  .p-header__logo img {
    height: 54px;
  }
}

.p-header__nav {
  width: 100%;
  padding-left: 50px;
}
@media (max-width: 768px) {
  .p-header__nav {
    position: fixed;
    text-align: center;
    padding: 0 20px;
    padding-top: 100px;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    right: -100%;
    transition: right 0.5s;
  }
  .p-header__nav.open {
    right: 0;
    transition: right 0.5s;
  }
}
@media (max-width: 768px) {
  .p-header__nav p {
    font-size: 0.875rem;
    margin-bottom: 4px;
  }
}

/* 初期（スクロール前） */
@media (min-width: 769px) {
  #js-site-header {
    transition: all 0.5s ease;
  }
}

/* スクロール後 */
@media (min-width: 769px) {
  #js-site-header.scrolled {
    mix-blend-mode: difference;
    transition: all 0.5s ease;
  }
}

.p-header__menu-items {
  display: flex;
  justify-content: end;
}
@media (min-width: 769px) {
  .p-header__menu-items {
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .p-header__menu-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 1行目は5列 */
    grid-template-rows: auto auto;
    /* 2行 */
    gap: 60px 40px;
    /* 隙間 */
    list-style: none;
    margin: 0;
    padding: 0;
    height: fit-content;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .p-header__menu-items > li:nth-child(n+6) {
    grid-column: span 1;
    /* デフォルトは1列分 */
  }
}

.p-header__menu-item {
  text-align: center;
}
.p-header__menu-item > a {
  display: inline-block;
  line-height: 1em;
  padding-left: 26px;
  padding-right: 26px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.p-header__menu-item > a:hover {
  opacity: 0.5;
}
@media (min-width: 769px) {
  .p-header__menu-item > a {
    padding-top: 0;
    letter-spacing: 0.5em;
  }
}
@media (max-width: 768px) {
  .p-header__menu-item > a {
    padding: 0;
  }
}
@media (min-width: 769px) {
  .p-header__menu-item:last-of-type > a {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .p-header__menu-item:last-of-type > a {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .p-header__menu-items > li:nth-child(6) {
    grid-column: 2;
  }
  .p-header__menu-items > li:nth-child(7) {
    grid-column: 3;
  }
  .p-header__menu-items > li:nth-child(8) {
    grid-column: 4;
  }
}
@media (max-width: 768px) {
  .p-header__btns {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.p-header__btns .p-header__btns-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .p-header__btns .p-header__btns-container {
    width: 150px;
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .p-header__btns .p-header__btns-container {
    flex-direction: row;
    width: 100%;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .p-header__btns .p-header__btns-container .p-header__btn {
    width: 50%;
    flex: 0 0 50%;
  }
}
/* サブメニュー表示 */
.p-header__menu-item:nth-of-type(4) {
  position: relative;
}
@media (max-width: 768px) {
  .p-header__menu-item:nth-of-type(4) a {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .p-header__menu-item:nth-of-type(4) .p-header__menu-item-toggle {
    display: inline-block;
    position: absolute;
    right: 50px;
    padding: 17px;
    cursor: pointer;
  }
  .p-header__menu-item:nth-of-type(4) .p-header__menu-item-toggle::after {
    border-color: currentcolor;
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: "";
    display: block;
    height: 0.4em;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
    width: 0.4em;
  }
}
.p-header__menu-item:nth-of-type(4) .p-header__menu-item-toggle.open {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.p-header__menu-item:nth-of-type(4) .p-header__sub-menu-items {
  position: absolute;
  bottom: -48px;
  right: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .p-header__menu-item:nth-of-type(4) .p-header__sub-menu-items {
    position: relative;
    bottom: initial;
    height: 0;
  }
  .p-header__menu-item:nth-of-type(4) .p-header__sub-menu-items.open {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .p-header__menu-item:nth-of-type(4):hover .p-header__sub-menu-items {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
  }
}

/* 親の紙テクを変数化して共有 */
.p-bg {
  --paper-url: url(images/bg/bg_01.webp);
  background-image: var(--paper-url);
  background-repeat: repeat;
  background-position: center bottom;
  background-size: contain;
}

.p-page-top-section-about {
  display: flex;
  flex-direction: row-reverse;
  width: fit-content;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 65px;
}
@media (max-width: 768px) {
  .p-page-top-section-about {
    flex-wrap: wrap;
    padding-top: 64px;
    padding-bottom: 80px;
  }
}
.p-page-top-section-about .p-page-top-section-about__heading {
  width: fit-content;
}
@media (min-width: 769px) {
  .p-page-top-section-about .p-page-top-section-about__heading {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .p-page-top-section-about .p-page-top-section-about__heading {
    margin-left: 15px;
  }
}
.p-page-top-section-about .p-page-top-section-about__heading h2 {
  margin-left: clamp(1.25rem, -1.758rem + 6.26vw, 3.875rem);
}
.p-page-top-section-about .p-page-top-section-about__img {
  margin-left: clamp(1.25rem, -0.183rem + 2.98vw, 2.5rem);
  padding-top: 30px;
}
@media (min-width: 769px) {
  .p-page-top-section-about .p-page-top-section-about__img {
    flex: 0 0 clamp(18.75rem, 12.303rem + 13.41vw, 24.375rem);
  }
}
@media (max-width: 768px) {
  .p-page-top-section-about .p-page-top-section-about__img {
    order: -1;
    /* Safari対策 */
    -webkit-box-ordinal-group: 0;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }
}
.p-page-top-section-about .p-page-top-section-about__img img {
  width: 100%;
  max-width: 390px;
  min-height: 488px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-page-top-section-about .p-page-top-section-about__img img {
    margin: 0 auto;
    min-height: initial;
    max-height: 420px;
    max-width: 420px;
    margin-bottom: 48px;
  }
}
.p-page-top-section-about .p-page-top-section-about__text {
  font-family: "Shippori Mincho", serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: clamp(150%, 150% + 100 * (100vw - 769px) / 671, 250%);
  padding-top: 115px;
  margin-left: clamp(1.25rem, -1.758rem + 6.26vw, 3.875rem);
}
@media (min-width: 769px) {
  .p-page-top-section-about .p-page-top-section-about__text {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .p-page-top-section-about .p-page-top-section-about__text {
    margin-left: 0;
    line-height: 200%;
    padding-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .p-page-top-section-about .p-page-top-section-about__btn {
    align-items: end;
    flex: 1;
  }
}
@media (max-width: 768px) {
  .p-page-top-section-about .p-page-top-section-about__btn {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .p-page-top-section-about .p-page-top-section-about__btn a {
    position: relative;
    bottom: 50px;
    align-items: center;
  }
}

.p-page-top-section-concept {
  color: #fff;
  text-align: center;
  position: relative;
  width: 100%;
  min-height: 900px;
  background-image: url("images/pic/pic_03.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 200px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .p-page-top-section-concept {
    min-height: 540px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.p-page-top-section-concept:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(8.125rem, -18.644rem + 41.83vw, 19rem);
  z-index: 1;
  pointer-events: none;
  /* 親と同じ紙テク */
  background-image: var(--paper-url);
  background-repeat: repeat;
  background-position: center bottom;
  background-size: cover;
  /* ←ここが肝：SVGマスク（白=表示、透明=非表示） */
  /* 幅1440×高さ494 の座標系でそのまま */
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'><path fill='white' d='M1440 218.941C1302.89 80.9425 1046.92 -16.7044 752.354 3.69727C432.431 25.8547 113.128 136.022 0 299.744V0H1440V218.941Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'><path fill='white' d='M1440 218.941C1302.89 80.9425 1046.92 -16.7044 752.354 3.69727C432.431 25.8547 113.128 136.022 0 299.744V0H1440V218.941Z'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  mask-position: bottom;
}
@media (max-width: 768px) {
  .p-page-top-section-concept:before {
    height: clamp(2.188rem, -0.643rem + 12.41vw, 5.313rem);
  }
}
.p-page-top-section-concept::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(8.125rem, -18.644rem + 41.83vw, 19rem);
  z-index: 1;
  pointer-events: none;
  /* 親と同じ紙テク */
  background-image: var(--paper-url);
  background-repeat: repeat;
  background-position: center bottom;
  background-size: cover;
  /* ←ここが肝：SVGマスク（白=表示、透明=非表示） */
  /* 幅1440×高さ494 の座標系でそのまま */
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 330' preserveAspectRatio='none'><path fill='white' d='M0 0.427734C105.856 181.517 394.424 305.666 752.354 326.696C1046.66 343.988 1302.8 241.947 1440 99.4707V329H0V0.427734Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 330' preserveAspectRatio='none'><path fill='white' d='M0 0.427734C105.856 181.517 394.424 305.666 752.354 326.696C1046.66 343.988 1302.8 241.947 1440 99.4707V329H0V0.427734Z'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  mask-position: bottom;
}
@media (max-width: 768px) {
  .p-page-top-section-concept::after {
    height: clamp(2.188rem, -0.643rem + 12.41vw, 5.313rem);
  }
}
.p-page-top-section-concept .p-page-top-section-concept__catch {
  font-size: 46px;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 180px;
}
@media (max-width: 768px) {
  .p-page-top-section-concept .p-page-top-section-concept__catch {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.p-page-top-section-concept .p-page-top-section-concept__heading {
  margin-bottom: 16px;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 768px) {
  .p-page-top-section-concept .p-page-top-section-concept__heading {
    font-size: 28px;
  }
}
.p-page-top-section-concept .p-page-top-section-concept__text {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .p-page-top-section-concept .p-page-top-section-concept__text {
    margin-bottom: 48px;
  }
}
.p-page-top-section-menu {
  padding-top: 100px;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .p-page-top-section-menu {
    padding-bottom: 40px;
  }
}
.p-page-top-section-menu .p-page-top-section-menu__heading {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.p-page-top-section-menu .p-page-top-section-menu__items {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .p-page-top-section-menu .p-page-top-section-menu__items {
    margin-bottom: 30px;
  }
}

.p-page-top-section-takeout {
  background-image: url(images/bg/bg_gold_wave.png);
  background-repeat: repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  min-height: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .p-page-top-section-takeout .p-page-top-section-takeout__heading {
    margin-bottom: 24px;
  }
}
.p-page-top-section-takeout .p-page-top-section-takeout__items {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .p-page-top-section-takeout .p-page-top-section-takeout__items {
    flex-direction: column;
  }
}
.p-page-top-section-takeout .p-page-top-section-takeout__items .p-page-top-section-takeout__item {
  margin-right: 8.333%;
  width: 27.78%;
}
@media (max-width: 768px) {
  .p-page-top-section-takeout .p-page-top-section-takeout__items .p-page-top-section-takeout__item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.p-page-top-section-takeout .p-page-top-section-takeout__items .p-page-top-section-takeout__item:first-of-type {
  margin-top: 72px;
}
@media (max-width: 768px) {
  .p-page-top-section-takeout .p-page-top-section-takeout__items .p-page-top-section-takeout__item:first-of-type {
    margin-top: 0;
  }
}
.p-page-top-section-takeout .p-page-top-section-takeout__items .p-page-top-section-takeout__item:last-of-type {
  margin-right: 0;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .p-page-top-section-takeout .p-page-top-section-takeout__items .p-page-top-section-takeout__item:last-of-type {
    margin: 0 auto;
    margin-top: 0;
  }
}

.p-page-top-section-store {
  background-image: url(images/bg/bg_02.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  min-height: 1000px;
  position: relative;
  top: -1px;
  color: #fff;
  padding-top: 260px;
  padding-bottom: 105px;
}
@media (max-width: 768px) {
  .p-page-top-section-store {
    background-image: url(images/bg/bg_02_sp.webp);
    padding-top: 175px;
    padding-bottom: 45px;
    min-height: 890px;
  }
}
.p-page-top-section-store .p-page-top-section-store__items {
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .p-page-top-section-store .p-page-top-section-store__items {
    flex-direction: column;
    margin-bottom: 38px;
  }
}
.p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:first-of-type {
  font-family: "Shippori Mincho", serif;
  display: flex;
  flex-direction: row-reverse;
  margin-left: 80px;
}
@media (max-width: 768px) {
  .p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:first-of-type {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:first-of-type .p-page-top-section-store__heading {
    margin-left: 15px;
  }
}
.p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:first-of-type .p-page-top-section-store__lead {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:first-of-type .p-page-top-section-store__lead {
    margin-top: 20px;
  }
}
.p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:last-of-type {
  order: -1;
  padding-top: 200px;
  max-width: 450px;
}
@media (max-width: 768px) {
  .p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:last-of-type {
    order: 0;
    padding-top: 28px;
    margin: 0 auto;
  }
}
.p-page-top-section-store .p-page-top-section-store__items .p-page-top-section-store__item:last-of-type p:first-of-type {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.p-page-top-section-store .p-page-top-section-store__btn {
  margin-bottom: 28px;
}
.p-page-top-section-googlemap {
  width: 100%;
  height: 300px;
}
@media (max-width: 768px) {
  .p-page-top-section-googlemap {
    height: 200px;
  }
}
.p-page-top-section-googlemap iframe {
  width: 100%;
  height: 100%;
}

.p-page-top-section-news {
  padding-top: 105px;
  padding-bottom: 72px;
}
@media (max-width: 768px) {
  .p-page-top-section-news {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-page-top-section-news .p-page-top-section-news__items {
  display: flex;
  margin-bottom: 68px;
}
@media (max-width: 768px) {
  .p-page-top-section-news .p-page-top-section-news__items {
    flex-direction: column;
    margin-bottom: 55px;
  }
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item {
  margin-right: 72px;
  width: 150px;
}
@media (max-width: 768px) {
  .p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item {
    margin-right: 0;
    width: 100%;
    margin-bottom: 40px;
  }
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists {
  width: calc(100% - 155px);
  max-width: 690px;
}
@media (max-width: 768px) {
  .p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists {
    width: 100%;
    max-width: 100%;
  }
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list {
  border-bottom: 1px solid #CFAA5A;
  display: block;
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list:first-of-type a {
  padding-top: 0;
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list a {
  display: block;
  padding: 24px 0;
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list a:hover {
  opacity: 0.7;
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list a time {
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  color: #CFAA5A;
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list a h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list a h3 {
    font-size: 1.125rem;
  }
}
.p-page-top-section-news .p-page-top-section-news__items .p-page-top-section-news__item-lists .p-page-top-section-news__list a .p-page-top-section-news__title {
  font-weight: 600;
}
.p-page-top-section-news .p-page-top-section-news__btn {
  justify-content: end;
  padding-right: clamp(0rem, -4.615rem + 7.21vw, 1.875rem);
}

.p-page-concept-section-01 {
  background-color: #000;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  padding-top: 112px;
  padding-bottom: 190px;
  padding-right: 50px;
  position: relative;
  z-index: 10;
}
@media (max-width: 1240px) {
  .p-page-concept-section-01 {
    padding-right: 0;
    padding-top: 144px;
    padding-bottom: 56px;
    position: relative;
    overflow-x: hidden;
  }
}
.p-page-concept-section-01 .p-page-concept-section-01__items {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  max-width: 1000px;
}
.p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-textarea {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-textarea .p-page-concept-section-01__heading {
  font-size: 32px;
  letter-spacing: 0.3em;
  margin-left: clamp(0.625rem, -2.76rem + 5.29vw, 2rem);
  writing-mode: vertical-rl;
  text-orientation: upright;
  /* 文字の向き（英数字は横組風に） */
  white-space: nowrap;
  /* 空白で折り返さない */
  word-break: keep-all;
  /* CJK でも内部で切らない */
  line-break: strict;
  /* 緩い改行を抑える（iOS対策） */
  hyphens: manual;
  /* ハイフネーション無効 */
  -webkit-hyphens: manual;
  display: inline-block;
  /* 要素幅(=縦書きの見かけの高さ)を内容に合わせる */
}
@media (max-width: 1240px) {
  .p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-textarea .p-page-concept-section-01__heading {
    font-size: 1.25rem;
    margin-left: 32px;
  }
}
.p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-textarea .p-page-concept-section-01__heading span {
  display: block;
  font-size: 51px;
  padding-top: 200px;
  letter-spacing: 0.5em;
  margin-top: 0;
  margin-right: 24px;
}
@media (max-width: 1240px) {
  .p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-textarea .p-page-concept-section-01__heading span {
    font-size: 2rem;
    margin-right: 0;
    padding-top: 80px;
  }
}
.p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-textarea .p-page-concept-section-01__text {
  line-height: 300%;
  padding-top: 128px;
  writing-mode: vertical-rl;
  /* 文字の向き（英数字は横組風に） */
  white-space: nowrap;
  /* 空白で折り返さない */
  word-break: keep-all;
  /* CJK でも内部で切らない */
  line-break: strict;
  /* 緩い改行を抑える（iOS対策） */
  hyphens: manual;
  /* ハイフネーション無効 */
  -webkit-hyphens: manual;
  display: inline-block;
  -ms-writing-mode: tb-rl;
  text-orientation: upright;
  /* 要素幅(=縦書きの見かけの高さ)を内容に合わせる */
}
@media (max-width: 1240px) {
  .p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-textarea .p-page-concept-section-01__text {
    line-height: 200%;
    padding-top: 48px;
  }
}
.p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-imgs {
  margin-right: clamp(0rem, -18.462rem + 28.85vw, 7.5rem);
  padding-top: 147px;
}
@media (max-width: 1240px) {
  .p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-imgs {
    margin-right: 0;
  }
}
.p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-imgs img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
}
@media (max-width: 920px) {
  .p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-imgs img {
    width: 163px;
    height: 163px;
  }
}
.p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-imgs .p-page-concept-section-01__img-01 {
  margin-bottom: 32px;
  padding-left: 160px;
}
@media (max-width: 1240px) {
  .p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-imgs .p-page-concept-section-01__img-01 {
    margin-bottom: 0;
    position: absolute;
    padding-left: 0;
    top: 13px;
    left: -23px;
  }
}
@media (max-width: 1240px) {
  .p-page-concept-section-01 .p-page-concept-section-01__items .p-page-concept-section-01__item-imgs .p-page-concept-section-01__img-02 {
    position: absolute;
    bottom: 19px;
    right: -8px;
  }
}

.p-page-concept-section-01__bg-bottom {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 150px;
  top: -3px;
}
.p-page-concept-section-01__bg-bottom img {
  object-fit: cover;
  width: 100%;
}

.p-page-concept-section-02 {
  background-image: url(images/bg/bg_04.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 100%;
  padding-bottom: 160px;
  top: -150px;
  padding-top: 150px;
  position: relative;
}
@media (max-width: 768px) {
  .p-page-concept-section-02 {
    background-image: url(images/bg/bg_04_sp.png);
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.p-page-concept-section-02 .p-page-concept-section-02__heading {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-concept-section-02 .p-page-concept-section-02__heading {
    text-align: left;
    margin-bottom: 40px;
  }
}

.p-page-concept-section-03 {
  margin-top: -150px;
  padding-top: 80px;
}

.p-page-concept-section-03-01 .p-page-concept-section-03-01__items {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  gap: 13.333%;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-01 .p-page-concept-section-03-01__items {
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
}
.p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-heading {
  max-width: 520px;
  width: 43.33%;
  padding-right: clamp(1.875rem, -19.663rem + 33.65vw, 10.625rem);
}
@media (max-width: 768px) {
  .p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-heading {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    justify-content: center;
  }
}
.p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards {
  max-width: 520px;
  width: 43.33%;
  padding-top: 185px;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards {
    max-width: 100%;
    width: 100%;
    padding-top: 64px;
  }
}
.p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card {
  width: 100%;
  max-width: 520px;
  margin-bottom: 58px;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
.p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card:nth-of-type(3) {
  margin-bottom: 0;
  margin-bottom: 40px;
}
.p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card:last-of-type {
  position: absolute;
  right: 0;
  top: 770px;
  max-width: 520px;
  width: 43.33%;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card:last-of-type {
    position: initial;
    max-width: 100%;
    width: 100%;
  }
}
.p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card img {
  width: 100%;
}
.p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card .p-page-concept-section-03-01__sub-title {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  margin-bottom: 100px;
  font-weight: 600;
}
@media (min-width: 769px) {
  .p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card .p-page-concept-section-03-01__sub-title br {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-page-concept-section-03-01 .p-page-concept-section-03-01__items .p-page-concept-section-03-01__item-cards .p-page-concept-section-03-01__item-card .p-page-concept-section-03-01__sub-title {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }
}

.p-page-concept-section-03-02 {
  text-align: center;
  padding-top: 80px;
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__title {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  margin-bottom: 48px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    text-align: left;
  }
}
@media (min-width: 769px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__title br {
    display: none;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__title-02 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__title-02 {
    font-size: 1.25rem;
    text-align: left;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__lists {
  display: inline-block;
  text-align: left;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__lists {
    margin-bottom: 40px;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__lists .p-page-concept-section-03-02__list {
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__lists .p-page-concept-section-03-02__list {
    font-size: 1rem;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__lists .p-page-concept-section-03-02__list:last-of-type {
  margin-bottom: 0;
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__hukidashi-bg {
  background-image: var(--bg-pc);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 640px;
  position: relative;
  overflow-x: hidden;
  margin-bottom: 120px;
}
@media (max-width: 980px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__hukidashi-bg {
    min-height: clamp(23.438rem, -20.98rem + 92.42vw, 35.625rem);
    background-image: var(--bg-sp);
    margin-bottom: 330px;
    overflow-x: clip;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__hukidashi-bg .p-page-concept-section-03-02__hukidashi {
  border-radius: 50%;
  background-color: #FED095;
  padding: 50px 50px;
  aspect-ratio: 1/1;
  width: fit-content;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3em;
  line-height: 200%;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  top: 38px;
  left: clamp(40rem, 4.167rem + 55.99vw, 93.75rem);
  z-index: 10;
}
@media (max-width: 980px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__hukidashi-bg .p-page-concept-section-03-02__hukidashi {
    top: initial;
    left: initial;
    min-width: 437px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    margin: 0 auto;
    bottom: -300px;
  }
}
@media (max-width: 768px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__hukidashi-bg .p-page-concept-section-03-02__hukidashi {
    bottom: -357px;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__hukidashi-bg .p-page-concept-section-03-02__hukidashi::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -70px;
  margin-top: -55px;
  border: 50px solid transparent;
  border-right: 92px solid #FED095;
}
@media (max-width: 980px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__hukidashi-bg .p-page-concept-section-03-02__hukidashi::before {
    display: none;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__items {
  display: flex;
  justify-content: center;
  gap: 88px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-02 .p-page-concept-section-03-02__items {
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
  }
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__items .p-page-concept-section-03-02__item {
  max-width: 480px;
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__check-text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  margin-bottom: 32px;
}
.p-page-concept-section-03-02 .p-page-concept-section-03-02__check-img {
  margin-bottom: 50px;
}
.p-page-concept-section-03-03 .p-page-concept-section-03-03__items {
  display: flex;
  gap: 64px;
  justify-content: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-03 .p-page-concept-section-03-03__items {
    flex-direction: column;
    align-items: center;
  }
}
.p-page-concept-section-03-03 .p-page-concept-section-03-03__items .p-page-concept-section-03-03__item {
  max-width: 520px;
}
.p-page-concept-section-03-03 .p-page-concept-section-03-03__hauunit-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  margin-bottom: 32px;
  font-weight: 600;
  text-align: center;
}
.p-page-concept-section-03-03 .p-page-concept-section-03-03__hauunit-text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-03 .p-page-concept-section-03-03__hauunit-text {
    font-size: 1rem;
  }
}
.p-page-concept-section-03-03 .p-page-concept-section-03-03__hauunit-img {
  margin-bottom: 100px;
}
.p-page-concept-section-03-04-checklist {
  max-width: 1080px;
}
.p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards {
  display: flex;
  justify-self: center;
  gap: clamp(2.5rem, -4.577rem + 11.06vw, 5.375rem);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
  }
}
.p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards .p-page-concept-section-03-04-checklist__card {
  max-width: 200px;
  position: relative;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards .p-page-concept-section-03-04-checklist__card {
    width: 100%;
    max-width: 500px;
  }
}
.p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards .p-page-concept-section-03-04-checklist__card:after {
  content: url(images/icon/icon_arrow_step.png);
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: calc(0px - clamp(2.375rem, -0.702rem + 4.81vw, 3.625rem));
}
@media (max-width: 768px) {
  .p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards .p-page-concept-section-03-04-checklist__card:after {
    top: initial;
    transform: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    right: initial;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    margin: 0 auto;
    bottom: -40px;
    transform: rotate(90deg);
    transform-origin: left center;
    /* 中心を軸に回す（省略可） */
  }
}
.p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards .p-page-concept-section-03-04-checklist__card:last-of-type:after {
  display: none;
}
@media (max-width: 768px) {
  .p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards .p-page-concept-section-03-04-checklist__card:last-of-type:after {
    display: block;
  }
}
@media (max-width: 768px) {
  .p-page-concept-section-03-04-checklist .p-page-concept-section-03-04-checklist__cards:last-of-type .p-page-concept-section-03-04-checklist__card:last-of-type:after {
    display: none;
  }
}

.p-page-concept-section-04 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 87px;
  padding-left: calc((100% - 1200px) / 2);
  padding-right: calc((100% - 1200px) / 2);
  overflow-x: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  .p-page-concept-section-04 {
    max-width: 100% !important;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .p-page-concept-section-04 {
    padding-top: 64px;
    padding-bottom: 46px;
    flex-direction: column;
    gap: 24px;
  }
}
.p-page-concept-section-04 .p-page-concept-section-04__textarea {
  max-width: 500px;
}
@media (max-width: 768px) {
  .p-page-concept-section-04 .p-page-concept-section-04__textarea {
    min-width: 100%;
  }
}
.p-page-concept-section-04 .p-page-concept-section-04__textarea .p-page-concept-section-04__textarea-title {
  margin-bottom: 24px;
}
.p-page-concept-section-04 .p-page-concept-section-04__textarea .p-page-concept-section-04__textarea-lead {
  font-weight: 600;
}
.p-page-concept-section-04 .p-page-concept-section-04__img {
  width: 800px;
  flex: 1;
  margin-right: calc(40% - 50vw);
  position: relative;
}
@media (max-width: 768px) {
  .p-page-concept-section-04 .p-page-concept-section-04__img {
    order: -1;
    width: 100%;
    flex: auto;
    margin-right: 0;
  }
}
.p-page-concept-section-04 .p-page-concept-section-04__img img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.p-page-about-section-01 {
  text-align: center;
  position: relative;
  overflow-x: clip;
  padding-bottom: 115px;
}
@media (max-width: 768px) {
  .p-page-about-section-01 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 48px;
    padding-bottom: 64px;
  }
}
.p-page-about-section-01 .p-page-about-section-01__img-01,
.p-page-about-section-01 .p-page-about-section-01__img-02 {
  overflow: hidden;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  width: 446px;
  height: 553px;
  position: absolute;
}
@media (max-width: 1200px) {
  .p-page-about-section-01 .p-page-about-section-01__img-01,
  .p-page-about-section-01 .p-page-about-section-01__img-02 {
    width: 300px;
    height: 372px;
  }
}
@media (max-width: 768px) {
  .p-page-about-section-01 .p-page-about-section-01__img-01,
  .p-page-about-section-01 .p-page-about-section-01__img-02 {
    width: 126px;
    height: 157px;
    position: initial;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
.p-page-about-section-01 .p-page-about-section-01__img-01 img,
.p-page-about-section-01 .p-page-about-section-01__img-02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-page-about-section-01 .p-page-about-section-01__img-01 {
  top: -84px;
  left: -126px;
}
@media (max-width: 768px) {
  .p-page-about-section-01 .p-page-about-section-01__title {
    margin-bottom: 8px;
  }
}
.p-page-about-section-01 .p-page-about-section-01__title img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-page-about-section-01 .p-page-about-section-01__title img {
    width: 80%;
    max-width: 276px;
  }
}
.p-page-about-section-01 .p-page-about-section-01__text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 250%;
  margin: 0 auto;
  max-width: clamp(22.5rem, -23.342rem + 95.38vw, 62.5rem);
}
@media (max-width: 768px) {
  .p-page-about-section-01 .p-page-about-section-01__text {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .p-page-about-section-01 .p-page-about-section-01__text br {
    display: none;
  }
}
.p-page-about-section-01 .p-page-about-section-01__img-02 {
  bottom: -150px;
  right: -200px;
}
@media (max-width: 768px) {
  .p-page-about-section-01 .p-page-about-section-01__img-02 {
    display: none;
  }
}

.p-page-about-section-02 {
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 10;
  padding-top: 72px;
  padding-bottom: 245px;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 768px) {
  .p-page-about-section-02 {
    padding-top: 64px;
    padding-bottom: 220px;
  }
}
.p-page-about-section-02 .p-page-about-section-02__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 17px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .p-page-about-section-02 .p-page-about-section-02__title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
}
.p-page-about-section-02 .p-page-about-section-02__text {
  font-weight: 700;
  position: relative;
  z-index: 10;
}
.p-page-about-section-02 .p-page-about-section-02__img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  margin: 0 auto;
  bottom: -85px;
  width: 100%;
  max-width: 680px;
}
@media (max-width: 768px) {
  .p-page-about-section-02 .p-page-about-section-02__img {
    bottom: -10px;
    width: 375px;
  }
}
.p-page-about-section-02 .p-page-about-section-02__img img {
  width: 100%;
}

.p-page-about-section-03 {
  position: relative;
  padding-right: clamp(15rem, 1.154rem + 21.63vw, 20.625rem);
  display: flex;
  flex-direction: row-reverse;
  padding-top: 120px;
  max-width: 930px;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-page-about-section-03 {
    padding-right: 20px;
    padding-bottom: 75px;
    max-width: 100%;
    padding-top: 88px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .p-page-about-section-03 {
    justify-content: flex-start;
  }
}
.p-page-about-section-03 .p-page-about-section-03__heading {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.5em;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  gap: 32px;
}
@media (max-width: 768px) {
  .p-page-about-section-03 .p-page-about-section-03__heading {
    flex: 0 0 fit-content;
    padding-top: 0;
    gap: 16px;
    margin-left: 35px;
    margin-bottom: 48px;
  }
}
.p-page-about-section-03 .p-page-about-section-03__heading .p-page-about-section-03__title {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-page-about-section-03 .p-page-about-section-03__heading .p-page-about-section-03__title {
    font-size: 1.75rem;
  }
}
.p-page-about-section-03 .p-page-about-section-03__heading .p-page-about-section-03__text {
  padding-top: 32px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 250%;
}
@media (max-width: 768px) {
  .p-page-about-section-03 .p-page-about-section-03__heading .p-page-about-section-03__text {
    line-height: 200%;
  }
}
.p-page-about-section-03 .p-page-about-section-03__img-btn {
  padding-top: 90px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .p-page-about-section-03 .p-page-about-section-03__img-btn {
    padding-top: 32px;
    flex: 0 0 auto;
  }
}
.p-page-about-section-03 .p-page-about-section-03__img-btn .p-page-about-section-03__img {
  overflow: hidden;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  width: 180px;
  height: 224px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-page-about-section-03 .p-page-about-section-03__img-btn .p-page-about-section-03__img {
    width: 146px;
    height: 182px;
  }
}
.p-page-about-section-03 .p-page-about-section-03__img-btn .p-page-about-section-03__img img {
  width: 100%;
  height: 100%;
}
.p-page-about-section-03 .p-page-about-section-03__img-btn .p-page-about-section-03__btn {
  position: relative;
  left: 20px;
}
@media (max-width: 768px) {
  .p-page-about-section-03 .p-page-about-section-03__img-btn .p-page-about-section-03__btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    margin: 0 auto;
    width: 100%;
  }
}
.p-page-about-section-03 .p-page-about-section-03__img-free {
  position: absolute;
  top: 120px;
  right: 0;
  width: clamp(13.75rem, -0.096rem + 21.63vw, 19.375rem);
  max-width: 280px;
  height: 325px;
}
@media (max-width: 768px) {
  .p-page-about-section-03 .p-page-about-section-03__img-free {
    top: initial;
    right: initial;
    bottom: 90px;
    position: initial;
    width: 100%;
    max-width: 400px;
  }
}
.p-page-about-section-03 .p-page-about-section-03__img-free img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
@media (max-width: 500px) {
  .p-page-about-section-03 .p-page-about-section-03__img-free img {
    max-width: 280px;
  }
}

.p-page-about-section-04 {
  display: flex;
  flex-direction: row-reverse;
  padding-top: 140px;
  justify-content: flex-end;
  max-width: clamp(62.5rem, 31.731rem + 48.08vw, 75rem) !important;
}
@media (max-width: 1000px) {
  .p-page-about-section-04 {
    padding-left: 20px;
    padding-right: 20px;
    width: fit-content;
  }
}
@media (max-width: 768px) {
  .p-page-about-section-04 {
    padding-bottom: 32px;
    padding-top: 72px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
  }
}
.p-page-about-section-04 .p-page-about-section-04__img {
  overflow: hidden;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  width: 180px;
  height: 224px;
  margin-bottom: 40px;
  margin-left: clamp(3.125rem, -13.029rem + 25.24vw, 9.688rem);
  margin-top: 100px;
}
@media (max-width: 900px) {
  .p-page-about-section-04 .p-page-about-section-04__img {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-page-about-section-04 .p-page-about-section-04__img {
    width: 146px;
    height: 182px;
    order: 1;
    margin-bottom: 0;
    margin-left: 24px;
    margin-top: -50px;
    display: block;
  }
}
.p-page-about-section-04 .p-page-about-section-04__img img {
  width: 100%;
  height: 100%;
}
.p-page-about-section-04 .p-page-about-section-04__heading {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.5em;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  gap: 32px;
  margin-left: 48px;
}
@media (max-width: 768px) {
  .p-page-about-section-04 .p-page-about-section-04__heading {
    gap: 16px;
    margin-top: 48px;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .p-page-about-section-04 .p-page-about-section-04__heading {
    justify-content: flex-start;
  }
}
.p-page-about-section-04 .p-page-about-section-04__heading .p-page-about-section-04__title {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-page-about-section-04 .p-page-about-section-04__heading .p-page-about-section-04__title {
    font-size: 1.75rem;
  }
}
.p-page-about-section-04 .p-page-about-section-04__heading .p-page-about-section-04__text {
  padding-top: 32px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 200%;
}
@media (max-width: 768px) {
  .p-page-about-section-04 .p-page-about-section-04__heading .p-page-about-section-04__text {
    line-height: 200%;
  }
}
.p-page-about-section-04 .p-page-about-section-04__img-free {
  width: 100%;
  max-width: 280px;
  height: 325px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .p-page-about-section-04 .p-page-about-section-04__img-free {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 0;
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  .p-page-about-section-04 .p-page-about-section-04__img-free {
    max-width: 280px;
  }
}
.p-page-about-section-04 .p-page-about-section-04__img-free img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.p-page-about-section-05 {
  padding-top: 80px;
  padding-bottom: 72px;
}
.p-page-about-section-05 .p-page-about-section-05__container {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 20px;
}
.p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__title {
  padding: 40px 70px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__title {
    padding: 32px 16px;
    font-size: 1.75rem;
  }
}
.p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__img {
  width: 100%;
  height: 500px;
}
@media (max-width: 768px) {
  .p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__img {
    height: 300px;
  }
}
.p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__img img {
  width: 100%;
  height: 100%;
}
.p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__text-area {
  padding: 32px 70px;
}
@media (max-width: 768px) {
  .p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__text-area {
    padding: 16px 16px 32px;
  }
}
.p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__text-area .p-page-about-section-05__text-head {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__text-area .p-page-about-section-05__text-head {
    font-size: 1rem;
  }
}
.p-page-about-section-05 .p-page-about-section-05__container .p-page-about-section-05__text-area .p-page-about-section-05__text {
  font-family: "Shippori Mincho", serif;
}

.p-page-store-section-01 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .p-page-store-section-01 {
    flex-direction: column;
    padding-top: 64px;
    padding-bottom: 64px;
    align-items: center;
  }
}
.p-page-store-section-01 .p-page-store-section-01__text-area {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Shippori Mincho", serif;
}
.p-page-store-section-01 .p-page-store-section-01__text-area .p-page-store-section-01__title {
  font-size: 2rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .p-page-store-section-01 .p-page-store-section-01__text-area .p-page-store-section-01__title {
    font-size: 1.75rem;
  }
}
.p-page-store-section-01 .p-page-store-section-01__text-area .p-page-store-section-01__lead {
  letter-spacing: 0.3em;
  line-height: 200%;
  padding-top: 35px;
}
.p-page-store-section-01 .p-page-store-section-01__img {
  overflow: hidden;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  width: 422px;
  height: 523px;
}
@media (max-width: 970px) {
  .p-page-store-section-01 .p-page-store-section-01__img {
    width: 275px;
    height: 342px;
  }
}
@media (max-width: 768px) {
  .p-page-store-section-01 .p-page-store-section-01__img {
    order: -1;
    width: 263px;
    height: 327px;
    margin-bottom: 40px;
  }
}
.p-page-store-section-01 .p-page-store-section-01__img img {
  width: 100%;
  height: 100%;
}

.p-page-store-section-02 {
  color: #fff;
  background-image: url(images/bg/bg_06.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 1156px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 260px;
}
@media (min-width: 1440px) {
  .p-page-store-section-02 {
    min-height: clamp(72.25rem, -0.667rem + 79.91vw, 127.188rem);
  }
}
@media (max-width: 768px) {
  .p-page-store-section-02 {
    background-image: url(images/bg/bg_06_sp.webp);
    min-height: 1315px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-page-store-section-02 .p-page-store-section-02__inner {
  width: 100%;
  max-width: 1100px;
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__heading {
  text-align: center;
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__heading .p-page-store-section-02__head-title {
  margin-bottom: 24px;
  font-size: 36px;
}
@media (max-width: 768px) {
  .p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__heading .p-page-store-section-02__head-title {
    font-size: 1.75rem;
  }
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__heading .p-page-store-section-02__head-text {
  margin-bottom: 24px;
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__heading .p-page-store-section-02__head-lists {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__heading .p-page-store-section-02__head-lists {
    margin-bottom: 64px;
  }
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__items {
    flex-direction: column;
    gap: 64px;
    align-items: center;
  }
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__items .p-page-store-section-02__item {
  width: 100%;
  max-width: 470px;
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__items .p-page-store-section-02__item .p-page-store-section-02__item-img {
  margin-bottom: 24px;
  width: 100%;
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__items .p-page-store-section-02__item .p-page-store-section-02__item-img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.p-page-store-section-02 .p-page-store-section-02__inner .p-page-store-section-02__items .p-page-store-section-02__item .p-page-store-section-02__title-02 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  text-align: center;
}
.p-page-store-section-03 {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 80px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .p-page-store-section-03 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.p-page-store-section-03 .p-page-store-section-03__head-title {
  margin-bottom: 24px;
  font-size: 36px;
}
@media (max-width: 768px) {
  .p-page-store-section-03 .p-page-store-section-03__head-title {
    font-size: 1.75rem;
  }
}
.p-page-store-section-03 .p-page-store-section-03__head-text {
  margin-bottom: 32px;
}

.p-page-store-section-04-access {
  /* 各行の罫線（左右で切れないよう両方に付ける） */
  /* ラベル側の見た目 */
  /* 値側の見た目 */
  /* スマホでは1カラムに */
}
.p-page-store-section-04-access .p-page-store-section-04-access__items {
  display: flex;
  justify-content: flex-start;
  gap: clamp(1.875rem, -15.817rem + 27.64vw, 9.063rem);
}
@media (max-width: 850px) {
  .p-page-store-section-04-access .p-page-store-section-04-access__items {
    flex-direction: column;
  }
}
.p-page-store-section-04-access .p-page-store-section-04-access__items .p-page-store-section-04-access__item-map {
  width: 440px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .p-page-store-section-04-access .p-page-store-section-04-access__items .p-page-store-section-04-access__item-map {
    width: 100%;
    height: 335px;
  }
}
.p-page-store-section-04-access .p-page-store-section-04-access__items .p-page-store-section-04-access__item-map iframe {
  width: 100%;
  height: 100%;
}
.p-page-store-section-04-access .p-page-store-section-04-access__items .p-page-store-section-04-access__item-info .p-page-store-section-04-access__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 64px;
}
@media (max-width: 850px) {
  .p-page-store-section-04-access .p-page-store-section-04-access__items .p-page-store-section-04-access__item-info .p-page-store-section-04-access__title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}
.p-page-store-section-04-access .p-page-store-section-04-access__info-lists {
  display: grid;
  grid-template-columns: 8em 1fr;
  /* 左：項目ラベルの幅 */
  column-gap: 1.25rem;
  row-gap: 0.25rem;
  margin: 0;
}
@media (max-width: 850px) {
  .p-page-store-section-04-access .p-page-store-section-04-access__info-lists {
    grid-template-columns: 6em 1fr;
  }
}
.p-page-store-section-04-access .p-page-store-section-04-access__info-lists dt,
.p-page-store-section-04-access .p-page-store-section-04-access__info-lists dd {
  padding-block: 0.5rem;
  margin: 0;
  /* 既定の余白をリセット */
}
.p-page-store-section-04-access .p-page-store-section-04-access__info-lists dt {
  color: #666;
  font-weight: 600;
}
.p-page-store-section-04-access .p-page-store-section-04-access__info-lists dd {
  color: #222;
}

.p-page-store-section-05-obento {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 768px) {
  .p-page-store-section-05-obento {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.p-page-store-section-05-obento .p-page-store-section-05-obento__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  margin-bottom: 24px;
  font-weight: 600;
}
.p-page-store-section-05-obento .p-page-store-section-05-obento__img {
  overflow: hidden;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  width: 530px;
  height: 326px;
  margin: 0 auto;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-page-store-section-05-obento .p-page-store-section-05-obento__img {
    width: 335px;
    height: 206px;
  }
}
.p-page-store-section-05-obento .p-page-store-section-05-obento__img img {
  width: 100%;
  height: 100%;
}
.p-page-store-section-05-obento p {
  font-weight: 700;
}
.p-page-store-section-05-obento p a {
  text-decoration: underline;
}
.p-page-store-section-05-obento p a:hover {
  opacity: 0.5;
}

.p-page-interview-section-01 {
  background-color: #000;
  color: #fff;
  padding-top: 115px;
  padding-bottom: 115px;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner {
  width: 100%;
  max-width: 970px;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner {
    max-width: 100%;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__heading {
  margin-bottom: 135px;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__heading {
    margin-bottom: 24px;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__heading .p-page-interview-section-01__title {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__heading .p-page-interview-section-01__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__heading .p-page-interview-section-01__title br {
  display: none;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__heading .p-page-interview-section-01__title br {
    display: block;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-img {
  width: 422px;
  height: 523px;
  overflow: hidden;
  /* border-radius の4値をスラッシュで指定すると楕円半径を分けられる */
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
}
@media (max-width: 1160px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-img {
    width: 263px;
    height: 326px;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-img img {
  width: 100%;
  height: 100%;
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-textarea .p-page-interview-section-01__title-02 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 34px;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-textarea .p-page-interview-section-01__title-02 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-textarea .p-page-interview-section-01__lists li {
  margin-bottom: 16px;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-textarea .p-page-interview-section-01__lists li {
    font-size: 1rem;
    font-weight: 700;
  }
}
.p-page-interview-section-01 .p-page-interview-section-01__inner .p-page-interview-section-01__items .p-page-interview-section-01__item-textarea .p-page-interview-section-01__lists li:last-of-type {
  margin-bottom: 16px;
}

.p-page-interview-section-02-media {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-interview-section-02-media {
    padding-right: 25px;
    margin-top: -80px;
  }
}
.p-page-interview-section-02-media .p-page-interview-section-02-media__heading {
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .p-page-interview-section-02-media .p-page-interview-section-02-media__heading {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .p-page-interview-section-02-media .p-page-interview-section-02-media__heading h2 {
    font-size: 1.75rem;
    text-align-last: left;
  }
}
.p-page-interview-section-02-media .p-page-interview-section-02-media__lists .p-page-interview-section-02-media__list {
  display: flex;
  margin-bottom: 34px;
  flex-wrap: wrap;
  align-items: end;
}
@media (max-width: 768px) {
  .p-page-interview-section-02-media .p-page-interview-section-02-media__lists .p-page-interview-section-02-media__list {
    flex-direction: column;
  }
}
.p-page-interview-section-02-media .p-page-interview-section-02-media__lists .p-page-interview-section-02-media__list .p-page-interview-section-02-media__list-title {
  width: 18%;
  display: flex;
  align-items: end;
  border-bottom: 1px solid #000;
  margin-right: 2%;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-page-interview-section-02-media .p-page-interview-section-02-media__lists .p-page-interview-section-02-media__list .p-page-interview-section-02-media__list-title {
    width: 100%;
    border-bottom: none;
    margin-bottom: 8px;
  }
}
.p-page-interview-section-02-media .p-page-interview-section-02-media__lists .p-page-interview-section-02-media__list .p-page-interview-section-02-media__list-link {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-page-interview-section-02-media .p-page-interview-section-02-media__lists .p-page-interview-section-02-media__list .p-page-interview-section-02-media__list-link {
    width: 100%;
    font-size: 1rem;
  }
}

.p-page-interview-section-03 {
  text-align: center;
}
.p-page-interview-section-03 .p-page-interview-section-03__heading {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-page-interview-section-03 .p-page-interview-section-03__heading h2 {
    font-size: 1.75rem;
  }
}
.p-page-interview-section-03 .p-page-interview-section-03__lists {
  margin: 0 auto;
  display: inline-block;
  margin-bottom: 56px;
}
.p-page-interview-section-03 .p-page-interview-section-03__lists li {
  text-align: left;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-page-interview-section-03 .p-page-interview-section-03__lists li:last-of-type {
  margin-bottom: 0;
}
.p-page-interview-section-03 .p-page-interview-section-03__img {
  width: 240px;
  height: 240px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-page-interview-section-03 .p-page-interview-section-03__img {
    width: 140px;
    height: 140px;
  }
}
.p-page-interview-section-03 .p-page-interview-section-03__img img {
  width: 100%;
  height: 100%;
}

.p-page-interview-section-04-contact {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-interview-section-04-contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__heading {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__heading {
    margin-bottom: 40px;
  }
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items {
  width: 100%;
  max-width: 920px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__items {
    gap: 40px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel,
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail {
  overflow: hidden;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  width: 422px;
  height: 523px;
  padding-top: 185px;
  text-align: center;
}
@media (max-width: 1160px) {
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel,
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail {
    width: 320px;
    height: 397px;
    padding-top: 115px;
  }
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel h3,
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  margin-bottom: 12px;
  font-weight: 600;
}
@media (max-width: 1160px) {
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel h3,
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail h3 {
    font-size: 1.25rem;
  }
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel p,
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail p {
  text-align: center;
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel {
  background-color: #F1DDC3;
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel .p-page-interview-section-04-contact__tel-text {
  margin-bottom: 28px;
}
@media (max-width: 1160px) {
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel .p-page-interview-section-04-contact__tel-text {
    margin-bottom: 16px;
  }
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel .p-page-interview-section-04-contact__tel-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  justify-content: center;
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel .p-page-interview-section-04-contact__tel-link:hover {
  opacity: 0.5;
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-tel .p-page-interview-section-04-contact__tel-link:before {
  content: url(images/icon/icon_tel_dark.png);
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
  bottom: 3px;
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail {
  background-color: #333333;
  color: #fff;
}
.p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail .p-page-interview-section-04-contact__mail-text {
  margin-bottom: 40px;
}
@media (max-width: 1160px) {
  .p-page-interview-section-04-contact .p-page-interview-section-04-contact__items .p-page-interview-section-04-contact__item-mail .p-page-interview-section-04-contact__mail-text {
    margin-bottom: 28px;
  }
}
.p-page-news-archive-section-01 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.p-page-news-archive-section-01 a:hover {
  filter: none;
  opacity: 0.7;
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__heading {
  margin-bottom: 80px;
  margin-bottom: 40px;
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__heading h2 {
  font-size: 1.75rem;
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid #333;
}
@media (max-width: 768px) {
  .p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container {
    border-top: none;
  }
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article {
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
  padding-top: 40px;
  padding-right: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article {
    padding-right: 10px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__time-category-box {
  margin-bottom: 9px;
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__time-category-box .p-page-news-archive-section-01__article-time {
  font-family: "Shippori Mincho", serif;
  font-size: 0.75rem;
  margin-right: 12px;
  display: inline-block;
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__time-category-box .p-page-news-archive-section-01__article-category {
  font-family: "Shippori Mincho", serif;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid #CFAA5A;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link {
    padding-right: 40px;
  }
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a::after {
  content: "";
  position: absolute;
  /* ← relativeではなくabsoluteに変更 */
  bottom: -3px;
  right: 0;
  /* リンクの右端にぴったり配置 */
  width: 42px;
  height: 32px;
  background: url(images/icon/icon_egg_top_gold.png) center/contain no-repeat;
  transition: 0.5s ease;
  pointer-events: none;
  right: 0;
  bottom: 49px;
  /* ←クリックを奪わない */
}
@media (max-width: 768px) {
  .p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a::after {
    width: 31px;
    height: 24px;
    bottom: 43px;
  }
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a .icon2 {
  display: inline-block;
  width: 42px;
  height: 46px;
  background: url(images/icon/icon_egg_bottom_gold.png) center/contain no-repeat;
  position: absolute;
  transition: 0.5s ease;
  right: 0;
  bottom: 30px;
}
@media (max-width: 768px) {
  .p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a .icon2 {
    width: 31px;
    height: 34px;
  }
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a:hover::after {
  bottom: 75px;
}
@media (max-width: 768px) {
  .p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a:hover::after {
    bottom: 63px;
  }
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a:hover .icon {
  right: 0;
}
.p-page-news-archive-section-01 .p-page-news-archive-section-01__article-container .p-page-news-archive-section-01__article .p-page-news-archive-section-01__article__link a .p-page-news-archive-section-01__article-title {
  font-size: 1rem;
  font-weight: 600;
}

.p-page-menu-section-menu .p-page-menu-section-menu__heading {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .p-page-menu-section-menu .p-page-menu-section-menu__heading {
    padding-top: 62px;
    padding-bottom: 20px;
  }
}
.p-page-menu-section-menu .p-page-menu-section-menu__container {
  margin-bottom: 200px;
}
.p-page-menu-section-menu .p-page-menu-section-menu__container:last-of-type {
  margin-bottom: 120px;
}
.p-page-menu-section-menu .p-page-menu-section-menu__container .p-page-menu-section-menu__menu-lg {
  margin-bottom: 80px;
}
.p-page-menu-section-menu__kugiri {
  background-image: url(images/bg/bg_kugiri.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: clamp(6.375rem, 0.911rem + 6.07vw, 10.625rem);
}
@media (max-width: 768px) {
  .p-page-menu-section-menu__kugiri {
    background-image: url(images/bg/bg_kugiri_sp.png);
    height: clamp(1.688rem, 0.103rem + 6.95vw, 3.438rem);
  }
}

.p-page-news-section-01 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .p-page-news-section-01 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-page-news-section-01 .p-page-news-section-01__heading {
  margin-bottom: 40px;
}
.p-page-news-section-01 .p-page-news-section-01__heading .p-page-news-section-01__title {
  margin-bottom: 16px;
}
.p-page-news-section-01 .p-page-news-section-01__heading .p-page-news-section-01__meta-container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-page-news-section-01 .p-page-news-section-01__heading .p-page-news-section-01__meta-container .p-page-news-section-01__time {
  padding-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.p-page-news-section-01 .p-page-news-section-01__heading .p-page-news-section-01__meta-container .p-page-news-section-01__category {
  margin-left: 12px;
  font-family: "Shippori Mincho", serif;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid #CFAA5A;
}
.p-page-news-section-01 .p-page-news-section-01__content {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-news-section-01 .p-page-news-section-01__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-page-news-section-01 .p-page-news-section-01__content .p-page-news-section-01__content_inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container {
  display: flex;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 100px;
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__prev-out-box {
  width: 50%;
  padding-right: 100px;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__prev-out-box {
    padding-right: 40px;
  }
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__prev-out-box .p-page-news-section-01__prev-container {
  text-align: right;
  padding-right: 100px;
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__prev-out-box .p-page-news-section-01__prev-container .p-page-news-section-01__prev-arrow {
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-end;
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__prev-out-box .p-page-news-section-01__prev-container .p-page-news-section-01__prev-arrow:before {
  content: url(images/icon/icon_arrow_prev_dark.png);
  display: inline-block;
  top: 1px;
  position: relative;
}
@media (max-width: 768px) {
  .p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__prev-out-box .p-page-news-section-01__prev-container .p-page-news-section-01__prev-title {
    font-size: 0.875rem;
  }
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__next-out-box {
  width: 50%;
  padding-left: 100px;
}
@media (max-width: 768px) {
  .p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__next-out-box {
    padding-left: 40px;
  }
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__next-out-box .p-page-news-section-01__next-container {
  text-align: left;
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__next-out-box .p-page-news-section-01__next-container .p-page-news-section-01__next-arrow {
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-start;
}
.p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__next-out-box .p-page-news-section-01__next-container .p-page-news-section-01__next-arrow:after {
  content: url(images/icon/icon_arrow_next_dark.png);
  display: inline-block;
  top: 1px;
  position: relative;
}
@media (max-width: 768px) {
  .p-page-news-section-01 .p-page-news-section-01__pagenation-container .p-page-news-section-01__next-out-box .p-page-news-section-01__next-container .p-page-news-section-01__next-title {
    font-size: 0.875rem;
  }
}
.p-page-news-section-01 a:hover {
  opacity: 0.7;
}

.p-page-privacy-policy-section-01 {
  padding-top: 32px;
  bottom: 64px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-page-privacy-policy-section-01 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__heading {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__heading .p-page-privacy-policy-section-01__title {
    font-size: 1.5rem;
  }
}
.p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__heading p {
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__heading p br {
    display: none;
  }
}
.p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__block {
  margin-bottom: 60px;
}
.p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__block:last-of-type {
  margin-bottom: 0;
}
.p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__block .p-page-privacy-policy-section-01__block-title {
  font-size: 1.5rem;
  font-weight: 600;
  border-left: 2px solid #CFAA5A;
  padding-left: 14px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__block .p-page-privacy-policy-section-01__block-title {
    font-size: 1.25rem;
  }
}
.p-page-privacy-policy-section-01 .p-page-privacy-policy-section-01__block .p-page-privacy-policy-section-01__block-text {
  font-size: 0.875rem;
}

.p-page-contact-section-contactform7 {
  padding-top: 32px;
  bottom: 64px;
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-page-contact-section-contactform7 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 {
  /* ===============================================
      # ボタン
  =============================================== */
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 .text {
  text-align: center;
  display: block;
}
@media (max-width: 768px) {
  .p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 .text br {
    display: none;
  }
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 .text-red {
  text-align: right;
  color: #B53434;
  display: block;
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 p {
  width: 100%;
  margin-bottom: 20px;
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 p label {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02rem;
  font-size: 1rem;
  color: #333;
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 p label .red {
  color: #B53434;
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 p label .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 .wide-textarea {
  min-height: 250px;
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 .submit-container {
  text-align: center;
}
.p-page-contact-section-contactform7 .p-page-contact-section-contactform7__contactform7 .submit-container .wpcf7-submit {
  margin-left: 72px;
  padding: 10px 50px;
  height: 50px;
  background-color: #CFAA5A;
  color: #fff;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.p-page-single .wp-block-heading {
  margin-block: 1.5em 1em;
  font-weight: bold;
}
.p-page-single .wp-block-paragraph {
  margin-block: 1.2em;
  line-height: 1.8;
}
.p-page-single .wp-block-list {
  margin-block: 1.2em;
  padding-left: 1.5em;
}
.p-page-single .wp-block-list ul {
  list-style: disc;
}
.p-page-single .wp-block-list ol {
  list-style: decimal;
}
.p-page-single .wp-block-list li {
  margin-block: 0.4em;
}
.p-page-single .wp-block-quote {
  border-left: 4px solid #ddd;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #444;
}
.p-page-single .wp-block-image {
  margin-block: 1.5em;
  text-align: center;
}
.p-page-single .wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.p-page-single .wp-block-table {
  margin-block: 1.5em;
  border-collapse: collapse;
  width: 100%;
}
.p-page-single .wp-block-table th,
.p-page-single .wp-block-table td {
  border: 1px solid #ccc;
  padding: 0.6em;
  text-align: left;
}
.p-page-single .wp-block-table thead th {
  background: #f7f7f7;
}
.p-page-single .wp-block-separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2em 0;
}
.p-page-single .wp-block-group > * + * {
  margin-top: 1.5em;
}
.p-page-single .wp-block-columns {
  display: flex;
  gap: 1.5em;
}

.p-section-menu {
  width: 100%;
}
.p-section-menu .p-section-menu__item {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-section-menu .p-section-menu__item {
    margin-bottom: 50px;
  }
}
.p-section-menu .p-section-menu__item:last-of-type {
  margin-bottom: 0;
}

.p-section-menu-02 .p-section-menu-02__items {
  display: flex;
  gap: 22px;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-section-menu-02 .p-section-menu-02__items {
    flex-direction: column;
    gap: 40px;
  }
}
.p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item {
  max-width: 385px;
  flex: 1;
}
@media (max-width: 768px) {
  .p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item {
    max-width: 100%;
  }
}
.p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__img {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__img {
    height: 350px;
    margin-bottom: 16px;
  }
}
@media (max-width: 500px) {
  .p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__img {
    height: 220px;
  }
}
.p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__title {
    font-size: 1.25rem;
  }
}
.p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__text {
  margin-bottom: 8px;
}
.p-section-menu-02 .p-section-menu-02__items .p-section-menu-02__item .p-section-menu-02__price {
  font-weight: 700;
  margin-bottom: 8px;
}
.pagination {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 40px;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  color: #A2A2A2;
  background: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .current {
  background: #CFAA5A;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: #000;
  position: relative;
}
.pagination .prev:before,
.pagination .next:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
}

.pagination .prev:before {
  background-image: url(images/icon/icon_arrow_prev_glay.png);
  left: 0%;
}

.pagination .next:before {
  background-image: url(images/icon/icon_arrow_next_glay.png);
  right: 0%;
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
}

.p-items .p-items__container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-items .p-items__container {
    flex-direction: column;
  }
}
.p-items .p-items__container .p-items__item {
  width: 44.34%;
  max-width: 470px;
  margin-right: 11.321%;
}
@media (max-width: 768px) {
  .p-items .p-items__container .p-items__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
}
.p-items .p-items__container .p-items__item:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
.p-items .p-items__container .p-items__item .p-items__item-title {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .p-items .p-items__container .p-items__item .p-items__item-title {
    margin-bottom: 0;
  }
}
.p-items .p-items__container .p-items__item .p-items__item-title img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-items .p-items__container .p-items__item .p-items__item-title img {
    width: 80%;
    max-width: 172px;
    margin-left: 0;
  }
}
.p-items .p-items__container .p-items__item .p-items__item-img {
  width: 100%;
  margin-bottom: 24px;
}
.p-items .p-items__container .p-items__item .p-items__item-img img {
  width: 100%;
  max-width: 470px;
  height: 270px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-items .p-items__container .p-items__item .p-items__item-img img {
    height: 190px;
    max-width: 100%;
    height: 350px;
  }
}
@media (max-width: 500px) {
  .p-items .p-items__container .p-items__item .p-items__item-img img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-items .p-items__container .p-items__item .p-items__item-text {
    text-align: left;
  }
}

.p-footer {
  background-image: url(images/bg/bg_01.webp);
}
.p-footer .p-footer_bg {
  background-image: url(images/bg/bg_footer.png);
  padding-top: 200px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  width: 100%;
  min-height: 778px;
  text-align: center;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .p-footer .p-footer_bg {
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .p-footer .p-footer_bg {
    background-image: url(images/bg/bg_footer_sp.png);
    padding-top: 78px;
    background-position: top;
    max-width: 375px;
    min-height: auto;
    padding-bottom: 100px;
    background-size: contain;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-footer .p-footer_bg .p-footer_container {
  max-width: 800px;
  margin: 0 auto;
}
.p-footer .p-footer_bg .p-footer_container .p-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-footer .p-footer_bg .p-footer_container .p-footer__logo {
    margin-bottom: 0;
  }
}
.p-footer .p-footer_bg .p-footer_container .p-footer__logo img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-footer .p-footer_bg .p-footer_container .p-footer__logo img {
    min-width: 150px;
    max-width: 194px;
    width: 80%;
  }
}
.p-footer .p-footer_bg .p-footer_container .p-footer__text {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.p-footer .p-footer_bg .p-footer_container .p-footer__text:last-of-type {
  margin-bottom: 0px;
}
.p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists {
    padding-top: 38px;
  }
}
.p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  margin-right: 28px;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list {
    letter-spacing: 0.02rem;
  }
}
.p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list:nth-last-of-type(3) {
  margin-right: 0;
}
.p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list:nth-last-of-type(2) {
  width: 100%;
  -ms-writing-mode: initial;
  writing-mode: initial;
  margin-right: 0;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list:nth-last-of-type(2) {
    margin-top: 80px;
  }
}
.p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list:nth-last-of-type(2) img {
  margin: 0 auto;
  width: 20px;
  height: 20px;
}
.p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list:last-of-type {
  width: 100%;
  -ms-writing-mode: initial;
  writing-mode: initial;
  letter-spacing: 0.02rem;
  font-size: 0.75rem;
  margin-right: 0;
  margin-top: 32px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-footer .p-footer_bg .p-footer_container .p-footer__nav-lists .p-footer__nav-list:last-of-type {
    margin-top: 16px;
  }
}
.p-footer .p-footer_bg .p-footer_container .p-footer__copylight {
  font-family: "Shippori Mincho", serif;
  font-size: 0.75rem;
}
.p-footer a:hover {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */