@charset "UTF-8";
@font-face {
  font-family: "hannari Mincho";
  src: url("../fonts/HannariMincho-Regular.otf") format("opentype");
}
:root {
  --color-main: #be9d24;
  --color-sub: #211815;
  --color-text: #000;
  --color-base: #fff;
  --color-border: #cecece;
  --header-width: 70px;
  --container: 1000px;
  --container-narrow: 800px;
  --gutter: 30px;
  --font-serif: "hannari Mincho", "YuMincho","Yu Mincho","游明朝体","ヒラギノ明朝 ProN","Hiragino Mincho ProN",serif;
  --font-system: "YuMincho","Yu Mincho","游明朝体","ヒラギノ明朝 ProN","Hiragino Mincho ProN",serif;
}

/*------------------------------------------------------------------------
// Foundation
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

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, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

span, small, strong, em, b, i {
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-serif);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-base);
}

a {
  color: currentColor;
}

img {
  width: 100%;
  height: auto;
}
img.self-size {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
	Form Parts
----------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  font-family: inherit;
  color: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/* select
--------------------------*/
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  rotate: 45deg;
  pointer-events: none;
}

/*------------------------------------------------------------------------
// Layout
------------------------------------------------------------------------*/
/* ヘッダー
------------------------------------------------------ */
.l-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  width: var(--header-width);
  height: 100%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-header {
    background: var(--color-main);
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  gap: 30px;
}
.l-header__inner > * {
  pointer-events: auto;
}

.l-header__logo {
  margin-top: 22px;
  pointer-events: auto;
}
.l-header__logo img {
  width: auto;
  height: 107px;
}
.l-header__logo a {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-header__list-block {
  display: none;
}

.l-header__list a {
  font-size: 18px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.l-header__sns img {
  width: 25px;
}
.l-header__sns a {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.l-header__button img {
  width: 26.1572px;
  height: 15.2116px;
}

@media (any-hover: hover) {
  .l-header__logo a:hover,
  .l-header__list a:hover,
  .l-header__button:hover,
  .l-header__sns a:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) {
  .l-header__logo {
    margin-top: 26px;
  }
  .l-header__logo img {
    height: 250px;
  }
  .l-header__list-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#header {
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  opacity: 0;
  visibility: hidden;
}
#header.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  #header {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* グローバルメニュー
------------------------------------------------------ */
.l-global-menu {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fee6b0;
  background-position: center;
  background-size: cover;
  background-image: url("../images/bg_pattern-2_sp.webp");
  visibility: hidden;
  opacity: 0;
  -webkit-transition-property: visibility, opacity;
  transition-property: visibility, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.l-global-menu.is-active {
  visibility: visible;
  opacity: 1;
}

.l-global-menu__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px calc(var(--header-width) + 10px) 50px var(--gutter);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.l-global-menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-global-menu__logo {
  position: fixed;
  top: 0;
  right: calc(var(--header-width) / 2);
  translate: 50% 0;
  margin-top: 22px;
}
.l-global-menu__logo img {
  width: auto;
  height: 107px;
}

.l-global-menu__button {
  position: fixed;
  bottom: 0;
  right: calc(var(--header-width) / 2);
  translate: 50% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.l-global-menu__button img {
  width: 25px;
  height: 26.9361px;
}

.l-global-menu__nav {
  padding-bottom: 39px;
  border-bottom: 1px dashed;
}
.l-global-menu__nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
.l-global-menu__nav > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
.l-global-menu__nav > ul > li > a {
  font-size: 22px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-global-menu__child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  padding-left: 22px;
}
.l-global-menu__child li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
.l-global-menu__child li::before {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  background: url("../images/icon_list-mark.webp") center/contain no-repeat;
}
.l-global-menu__child a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-global-menu__address {
  font-size: 12px;
  line-height: 1.4166666667;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
.l-global-menu__address em {
  font-style: normal;
  font-size: 14px;
  line-height: 2.1428571429;
}

.l-global-menu__list-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.l-global-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 0;
}
.l-global-menu__list a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  line-height: 1.5833333333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

@media (min-width: 768px) {
  .l-global-menu {
    background-image: url("../images/bg_pattern-2_pc.webp");
  }
  .l-global-menu__logo {
    right: 0;
    translate: 0;
    margin-top: 44px;
    margin-right: 28px;
  }
  .l-global-menu__logo img {
    height: 260px;
  }
  .l-global-menu__nav > ul {
    gap: 35px;
  }
  .l-global-menu__nav > ul > li {
    gap: 14px;
  }
  .l-global-menu__nav > ul > li > a {
    font-size: 35px;
  }
  .l-global-menu__child {
    gap: 20px;
    padding-left: 35px;
  }
  .l-global-menu__child li {
    gap: 12px;
  }
  .l-global-menu__child li::before {
    width: 22px;
    height: 22px;
  }
  .l-global-menu__child a {
    font-size: 22px;
  }
  .l-global-menu__address {
    font-size: 25px;
    line-height: 1.6;
  }
  .l-global-menu__address em {
    font-size: 100%;
    line-height: inherit;
  }
  .l-global-menu__list-block {
    gap: 30px;
  }
  .l-global-menu__list {
    gap: 20px;
  }
  .l-global-menu__list a {
    font-size: 18px;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .l-global-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 750px;
  }
  .l-global-menu__inner {
    width: 100%;
    padding: 100px 200px 50px var(--gutter);
  }
  .l-global-menu__content {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: min(4.0650406504vw, 50px);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .l-global-menu__nav {
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-global-menu__nav > ul {
    gap: min(5.2032520325vw, 64px);
  }
  .l-global-menu__nav > ul > li {
    gap: min(1.1382113821vw, 14px);
  }
  .l-global-menu__nav > ul > li > a {
    font-size: min(2.8455284553vw, 35px);
  }
  .l-global-menu__child {
    gap: min(1.6260162602vw, 20px);
    padding-left: 0;
    padding-top: min(2.8455284553vw, 35px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-height: 700px;
  }
  .l-global-menu__child li {
    gap: min(0.9756097561vw, 12px);
  }
  .l-global-menu__child li::before {
    width: min(1.7886178862vw, 22px);
    height: min(1.7886178862vw, 22px);
  }
  .l-global-menu__child a {
    font-size: min(1.7886178862vw, 22px);
  }
  .l-global-menu__address {
    font-size: min(2.0325203252vw, 25px);
  }
  .l-global-menu__address span {
    text-orientation: sideways;
  }
  .l-global-menu__list-block {
    gap: min(2.4390243902vw, 30px);
    margin-top: auto;
    margin-right: auto;
  }
  .l-global-menu__list {
    gap: min(1.6260162602vw, 20px);
  }
  .l-global-menu__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: min(0.796460177vw, 9px);
  }
  .l-global-menu__list li::before {
    content: "";
    width: 1px;
    height: min(3.982300885vw, 45px);
    background-color: currentColor;
  }
  .l-global-menu__list a {
    font-size: min(1.4634146341vw, 18px);
  }
}
@media (any-hover: hover) {
  .l-global-menu__nav a:hover,
  .l-global-menu__list a:hover {
    opacity: 0.6;
  }
}
/* メインコンテンツ
------------------------------------------------------ */
.l-main-contents {
  width: 100%;
  padding: 0 0 80px;
}
.l-main-contents._home {
  padding: 0;
}
@media (min-width: 768px) {
  .l-main-contents {
    width: calc(100% - var(--header-width));
    padding: 0 0 140px;
  }
}
@media (min-width: 992px) {
  .l-main-contents {
    padding: 0 0 200px;
  }
}

/* フッター
------------------------------------------------------ */
.l-footer {
  padding: 80px 0;
  background-color: #fee6b0;
  background-position: center;
  background-size: cover;
  background-image: url("../images/bg_pattern-2_sp.webp");
}

.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-footer__info {
  margin-top: 20px;
}

.l-footer__logo {
  display: none;
}

.l-footer__address {
  font-size: 12px;
  line-height: 1.4166666667;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
.l-footer__address em {
  font-style: normal;
  font-size: 14px;
  line-height: 2.1428571429;
}

.l-footer__nav {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding-bottom: 35px;
  border-bottom: 1px dashed;
}
.l-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.l-footer__nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
.l-footer__nav li::before {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  background: url("../images/icon_list-mark.webp") center/contain no-repeat;
}
.l-footer__nav a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-footer__list-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 0;
}
.l-footer__list a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  line-height: 1.5833333333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-footer__copyright {
  font-size: 12px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .l-footer {
    width: calc(100% - var(--header-width));
    min-height: 750px;
    background-image: url("../images/bg_pattern-2_pc.webp");
  }
  .l-footer__info {
    margin-top: 30px;
  }
  .l-footer__address {
    font-size: 20px;
    line-height: 1.6;
  }
  .l-footer__address em {
    font-size: 100%;
    line-height: inherit;
  }
  .l-footer__nav {
    padding-bottom: 39px;
    border-bottom: 1px dashed;
  }
  .l-footer__nav ul {
    gap: 35px;
  }
  .l-footer__nav li {
    gap: 9px;
  }
  .l-footer__nav li::before {
    width: 30px;
    height: 30px;
  }
  .l-footer__nav a {
    font-size: 24px;
  }
  .l-footer__list-block {
    gap: 30px;
    margin-top: 30px;
  }
  .l-footer__list {
    gap: 20px;
  }
  .l-footer__list a {
    font-size: 12px;
    line-height: 1;
  }
  .l-footer__copyright {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .l-footer__content {
    width: 100%;
    gap: min(4.4247787611vw, 50px);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .l-footer__info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: min(4.4247787611vw, 50px);
  }
  .l-footer__logo {
    display: block;
    width: min(10.6194690265vw, 120px);
  }
  .l-footer__address {
    font-size: min(1.7699115044vw, 20px);
  }
  .l-footer__address span {
    text-orientation: sideways;
  }
  .l-footer__nav {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-right: auto;
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-footer__nav ul {
    gap: min(3.7168141593vw, 42px);
  }
  .l-footer__nav li {
    gap: min(1.5044247788vw, 17px);
  }
  .l-footer__nav li::before {
    width: min(2.6548672566vw, 30px);
    height: min(2.6548672566vw, 30px);
  }
  .l-footer__nav a {
    font-size: min(2.1238938053vw, 24px);
  }
  .l-footer__list-block {
    gap: 2.6548672566vw;
    margin-top: 0;
  }
  .l-footer__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: min(0.796460177vw, 9px);
  }
  .l-footer__list li::before {
    content: "";
    width: 1px;
    height: min(3.982300885vw, 45px);
    background-color: currentColor;
  }
  .l-footer__list a {
    font-size: min(1.0619469027vw, 12px);
  }
  .l-footer__copyright {
    font-size: min(1.0619469027vw, 12px);
  }
}
@media (any-hover: hover) {
  .l-footer__nav a:hover,
  .l-footer__list a:hover {
    opacity: 0.6;
  }
}
/* コンテンツ幅
------------------------------------------------------ */
.l-container {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.l-container._narrow {
  max-width: var(--container-narrow);
}

/* ページ幅
------------------------------------------------------ */
.l-page-wrap {
  width: calc(100% - (var(--header-width) - var(--gutter) + 10px));
}
@media (min-width: 768px) {
  .l-page-wrap {
    width: 100%;
  }
}

/* グリッドレイアウト
------------------------------------------------------ */
.l-grid {
  display: grid;
  grid-template-rows: auto;
  gap: 30px;
}
@media (min-width: 576px) {
  .l-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .l-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}

/*------------------------------------------------------------------------
// Object（component）
------------------------------------------------------------------------*/
/* ボタン
------------------------------------------------------ */
.c-button {
  display: inline-block;
  min-width: 210px;
  padding: 13.5px;
  font-size: 13px;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: var(--color-sub);
  border: none;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-button {
    min-width: 353px;
    padding: 18px;
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    background: var(--color-main);
  }
}
.c-button-wrap {
  margin-top: 80px;
  text-align: center;
}

/* 見出し
------------------------------------------------------ */
.c-heading {
  font-size: 24px;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .c-heading {
    font-size: 35px;
  }
}

/* 矢印つきリンク
------------------------------------------------------ */
.c-text-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
}
.c-text-link a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  text-underline-offset: 8px;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.c-text-link::before {
  content: "";
  width: 22px;
  height: 25px;
  background: url("../images/icon_link-arrow.svg") left bottom/contain no-repeat;
}

@media (any-hover: hover) {
  .c-text-link a:hover {
    color: var(--color-main);
  }
}
@media (min-width: 768px) {
  .c-text-link {
    gap: 13px;
  }
  .c-text-link a {
    font-size: 16px;
  }
  .c-text-link::before {
    width: 29px;
    height: 33px;
  }
}
/* タグ
------------------------------------------------------ */
.c-tag {
  font-family: var(--font-system);
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
  line-height: 1;
  color: #fff;
  background: var(--color-main);
}

/* セレクトボックス
------------------------------------------------------ */
.c-select-box {
  position: relative;
  display: inline-block;
  width: 100%;
}
.c-select-box .selected {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 11px 16px;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  letter-spacing: 0.2em;
}
.c-select-box .selected::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  rotate: 45deg;
  pointer-events: none;
}
.c-select-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-top: none;
  position: absolute;
  width: 100%;
  background: #fff;
  display: none;
  z-index: 1000;
}
.c-select-box a {
  display: block;
  padding: 11px 16px;
  text-decoration: none;
  letter-spacing: 0.2em;
}
.c-select-box a:hover {
  background: #f0f0f0;
}

/* ページネーション
------------------------------------------------------ */
.pagination {
  margin-top: 50px;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  text-decoration: none;
}
.pagination .page-numbers.dots {
  width: auto;
}
.pagination .page-numbers.current {
  position: relative;
}
.pagination .page-numbers.current::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 27px;
  height: 1px;
  background: currentColor;
}
.pagination .page-numbers.prev {
  width: auto;
  margin-right: 10px;
}
.pagination .page-numbers.next {
  width: auto;
  margin-left: 10px;
}
.pagination a.page-numbers {
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.pagination a.page-numbers:hover {
  color: var(--color-main);
}

@media (min-width: 768px) {
  .pagination {
    margin-top: 100px;
  }
  .pagination .nav-links {
    gap: 8px;
  }
  .pagination .page-numbers {
    font-size: 20px;
  }
  .pagination .page-numbers.prev {
    margin-right: 28px;
  }
  .pagination .page-numbers.next {
    margin-left: 28px;
  }
}
/*------------------------------------------------------------------------
// Object（project）
------------------------------------------------------------------------*/
/* パララックス
------------------------------------------------------ */
.p-parallax-wrap {
  position: relative;
}

.p-parallax {
  position: sticky;
  top: 0;
  min-height: 435px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f2eadc;
  background-size: 357px 667px;
  background-image: url("../images/bg_pattern_sp.webp");
}
@media (min-width: 768px) {
  .p-parallax {
    min-height: 100svh;
    background-size: 1210px 750px;
    background-image: url("../images/bg_pattern_pc.webp");
  }
}

/* メインビジュアル（トップページ）
------------------------------------------------------ */
.p-mv {
  position: relative;
  z-index: 0;
  height: 100svh;
  min-height: 667px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-mv__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.p-mv__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__logo {
  width: 156px;
  margin-bottom: 98px;
}

@media (min-width: 768px) {
  .p-mv {
    min-height: 750px;
  }
  .p-mv__logo {
    margin-bottom: 74px;
  }
}
/* 導入（トップページ）
------------------------------------------------------ */
.p-intro {
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 100svh;
  min-height: 667px;
  background-position: center;
  background-size: cover;
}
.p-intro--first {
  color: #fff;
  background-image: url("../images/pic_top-2_sp.webp");
}
.p-intro--second {
  background-image: url("../images/pic_top-3_sp.webp");
}
.p-intro--second .p-intro__inner::before {
  display: none;
}

.p-intro__inner {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}
.p-intro__inner::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.p-intro__text {
  padding: 35px;
  font-size: 13px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2em;
  line-height: 2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-intro__text span {
  text-orientation: sideways;
}

@media (min-width: 768px) {
  .p-intro {
    min-height: 750px;
  }
  .p-intro--first {
    background-image: url("../images/pic_top-2_pc.webp");
  }
  .p-intro--first .p-intro__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-intro--second {
    color: #fff;
    background-image: url("../images/pic_top-3_pc.webp");
  }
  .p-intro--second .p-intro__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-intro--second .p-intro__inner::before {
    display: block;
    left: initial;
    right: calc(50% - 50vw + var(--header-width) / 2);
    content: "";
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 250px);
  }
  .p-intro__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-intro__inner::before {
    top: 0;
    left: calc(50% - 50vw + var(--header-width) / 2);
    content: "";
    width: calc((100vw - var(--header-width)) / 2 - 50% + 250px);
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 250px);
  }
  .p-intro__text {
    margin-top: 15%;
    padding: 0;
    font-size: 16px;
    letter-spacing: 0.15em;
  }
}
/* 五人百姓と銘菓こんぴら飴（トップページ）
------------------------------------------------------ */
.p-about {
  padding: 73px 0 0;
}

.p-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.p-about__content {
  max-width: 400px;
  width: 100%;
  padding-right: calc(var(--header-width) - var(--gutter) + 10px);
  margin: 0 auto;
}

.p-about__text {
  margin-top: 15px;
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

.p-about__img {
  margin: 0 calc(var(--gutter) * -1);
  height: 435px;
}
.p-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .p-about {
    padding: 50px 0 0;
  }
  .p-about__inner {
    gap: 50px;
  }
  .p-about__content {
    padding: 0;
  }
  .p-about_heading {
    font-size: 35px;
  }
  .p-about__text {
    margin-top: 30px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .p-about {
    padding: 100px 0 50px 0;
  }
  .p-about__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 50px;
  }
  .p-about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(3.0973451327vw, 35px);
    max-width: none;
    width: auto;
    margin: 0;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .p-about_heading {
    font-size: min(3.0973451327vw, 35px);
    line-height: 1.1428571429;
  }
  .p-about__text {
    font-size: min(1.4159292035vw, 16px);
    margin-top: auto;
  }
  .p-about__text span {
    text-orientation: sideways;
  }
  .p-about__img {
    height: min(57.5221238938vw, 650px);
    margin: 0;
  }
}
/* しあわせを分け合う〜ものがたりを知る（トップページ）
------------------------------------------------------ */
.p-story__inner {
  padding: 80px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 22px;
}

.p-story__logo {
  text-align: center;
}
.p-story__logo img {
  width: auto;
  height: 133px;
}

.p-story__content {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding-right: calc(var(--header-width) - var(--gutter) + 10px);
}

.p-story__text {
  margin-top: 19px;
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

.p-story__link {
  margin-top: 16px;
}

.p-story__slider {
  margin: 0 calc(var(--gutter) * -1);
}
.p-story__slider .swiper {
  width: 100%;
}
.p-story__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.p-story__slider .swiper-slide {
  width: 200px;
  aspect-ratio: 1/1;
}
.p-story__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-story__button-block {
  padding: 24px var(--gutter) 80px;
  margin: 0 calc(var(--gutter) * -1);
  background: #fff;
}

.p-story__button {
  text-align: center;
}

.p-story__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 0 calc(var(--gutter) * -1);
  background: #fff;
}

.p-story__img {
  position: relative;
  height: 278px;
}
.p-story__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-story__img-text {
  position: absolute;
  top: 0;
  left: 24px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.p-story__img-text p {
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.6153846154;
  background: #fff;
}
.p-story__img-text p span {
  text-orientation: sideways;
}

@media (min-width: 768px) {
  .p-story__inner {
    min-height: 750px;
    padding: 80px 0 66px;
    gap: 50px;
  }
  .p-story__content {
    padding: 0;
  }
  .p-story__logo img {
    height: 250px;
  }
  .p-story__text {
    margin-top: 30px;
    font-size: 16px;
  }
  .p-story__link {
    margin-top: 30px;
  }
  .p-story__slider {
    margin: 0 calc(50% - 50vw + var(--header-width) / 2);
  }
  .p-story__slider .swiper-slide {
    width: 300px;
  }
  .p-story__button-block {
    padding: 60px calc(50vw - 50% - var(--header-width) / 2) 80px;
    margin: 0 calc(50% - 50vw + var(--header-width) / 2);
  }
  .p-story__img-wrap {
    margin: 0 calc(50% - 50vw + var(--header-width) / 2);
  }
  .p-story__img {
    height: auto;
    aspect-ratio: 605/450;
    max-height: 450px;
  }
  .p-story__img-text {
    left: 60px;
    gap: 12px;
  }
  .p-story__img-text p {
    padding: 16px 0;
    font-size: 24px;
    line-height: 1.4583333333;
  }
}
@media (min-width: 992px) {
  .p-story__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .p-story__logo img {
    height: min(22.1238938053vw, 250px);
  }
  .p-story__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(3.0973451327vw, 35px);
    max-width: none;
    width: auto;
    margin: 0;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .p-story__heading {
    font-size: min(3.0973451327vw, 35px);
    line-height: 1.1428571429;
  }
  .p-story__text {
    margin-top: min(16.814159292vw, 190px);
    margin-bottom: min(3.2743362832vw, 37px);
    font-size: min(1.4159292035vw, 16px);
  }
  .p-story__text span {
    text-orientation: sideways;
  }
  .p-story__link {
    gap: min(1.1504424779vw, 13px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: auto;
    margin-right: 30px;
  }
  .p-story__link a {
    font-size: min(1.4159292035vw, 16px);
    text-decoration: none;
  }
  .p-story__link::before {
    width: min(2.5663716814vw, 29px);
    height: min(2.9203539823vw, 33px);
  }
  .p-story__img-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .p-story__img {
    width: 50%;
  }
  .p-story__img-text {
    left: min(4.6875vw, 60px);
    gap: min(0.9375vw, 12px);
  }
  .p-story__img-text p {
    padding: min(1.25vw, 16px) 0;
    font-size: min(1.875vw, 24px);
  }
}
/* カルーセル（トップページ）
------------------------------------------------------ */
.p-carousel {
  position: relative;
  height: 435px;
}

.p-carousel__slider {
  position: absolute;
  inset: 0;
}
.p-carousel__slider .swiper {
  height: 100%;
}
.p-carousel__slider .swiper-slide {
  height: 100%;
}
.p-carousel__slider .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-carousel {
    height: 100svh;
  }
}
/* 五人百姓 池商店の想い（トップページ）
------------------------------------------------------ */
.p-message {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.p-message::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  content: "";
  width: 224px;
  height: 275px;
  background: url("../images/shape_konpira_sp.webp") center/contain no-repeat;
}

.p-message__inner {
  padding: 80px 0;
  min-height: 600px;
  margin-top: auto;
}

@media (min-width: 768px) {
  .p-message__inner {
    min-height: 750px;
  }
}
@media (min-width: 992px) {
  .p-message::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: calc(50% - 84px);
    translate: 0 -50%;
    content: "";
    width: min(60vw, 678px);
    height: min(73.982300885vw, 836px);
    background-image: url("../images/shape_konpira_pc.webp");
  }
  .p-message__inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
/* お知らせ（トップページ）
------------------------------------------------------ */
.p-news {
  padding: 80px 0;
  background: #fff;
}

.p-news__heading:not(:first-child) {
  margin-top: 70px;
}
.p-news__heading + * {
  margin-top: 26px;
}

.p-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  gap: 9px;
  padding: 14px 0 13px;
  border-bottom: 1px solid;
}

.p-news-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.p-news-list__meta time {
  font-size: 13px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1;
}

.p-news-list__data {
  font-family: var(--font-system);
  font-size: 15px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1.3333333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

@media (any-hover: hover) {
  .p-news-list__item:hover .p-news-list__data {
    color: var(--color-main);
  }
}
.p-news__link {
  margin-top: 24px;
}

.p-news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

@media (any-hover: hover) {
  .p-news-card:hover .p-news-list__data {
    color: var(--color-main);
  }
}
.p-news-card__thumb img {
  aspect-ratio: 265/220;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

@media (min-width: 768px) {
  .p-news__heading:not(:first-child) {
    margin-top: 45px;
  }
  .p-news-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 18px;
    padding: 20px 0 19px;
  }
  .p-news-list__meta {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 7px;
  }
  .p-news-list__meta time {
    font-size: 18px;
  }
  .p-news-list__data {
    font-size: 18px;
    -webkit-line-clamp: 1;
  }
  .p-news__link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .p-news__link a {
    text-decoration: none;
  }
  .p-news-card__thumb {
    aspect-ratio: 6/5;
  }
  .p-news-card .p-news-list__data {
    -webkit-line-clamp: 2;
  }
}
/* ページヘッダー
------------------------------------------------------ */
.p-page-header {
  display: grid;
  place-content: center;
  width: 100%;
  padding: var(--gutter);
  min-height: 400px;
  background-color: #f2eadc;
  background-size: 357px 667px;
  background-image: url("../images/bg_pattern_sp.webp");
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.p-page-header__title {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .p-page-header {
    background-size: 1210px 750px;
    background-image: url("../images/bg_pattern_pc.webp");
  }
  .p-page-header__title {
    font-size: 40px;
  }
}
/* ページボディ
------------------------------------------------------ */
.p-page-body {
  margin-top: 80px;
  width: calc(100% - (var(--header-width) - var(--gutter) + 10px));
}
@media (min-width: 768px) {
  .p-page-body {
    width: 100%;
  }
}

/* カテゴリー
------------------------------------------------------ */
.p-category + * {
  margin-top: 40px;
}

.p-category-tab__title {
  margin-bottom: 10px;
  letter-spacing: 0.2em;
  color: #666;
}

.p-category-list {
  display: none;
}

@media (min-width: 768px) {
  .p-category + * {
    margin-top: 72px;
  }
  .p-category-tab {
    display: none;
  }
  .p-category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 36px;
    padding: 47px 30px;
    border: 1px solid var(--color-border);
  }
  .p-category-list::before {
    content: "";
    width: 1px;
    height: 22px;
    background: var(--color-border);
  }
  .p-category-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 40px;
  }
  .p-category-list a {
    text-decoration: none;
    letter-spacing: 0.2em;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .p-category-list a:hover {
    color: var(--color-main);
  }
  .p-category-list__title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    color: #666;
    letter-spacing: 0.2em;
  }
}
/* 投稿ヘッダー
------------------------------------------------------ */
.p-post-header {
  background-color: #f2eadc;
  background-size: 357px 667px;
  background-image: url("../images/bg_pattern_sp.webp");
}

.p-post-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 116px;
}

.p-post-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 45px;
}

.p-post-header__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.p-post-header__meta time {
  font-size: 13px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1;
}

.p-post-header__title {
  font-family: var(--font-system);
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

.p-post-header__eyecatch {
  margin: 0 calc(var(--gutter) * -1);
  aspect-ratio: 6/5;
}
.p-post-header__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .p-post-header {
    background-size: 1210px 750px;
    background-image: url("../images/bg_pattern_pc.webp");
  }
  .p-post-header__content {
    gap: 15px;
  }
  .p-post-header__meta time {
    font-size: 14px;
  }
  .p-post-header__title {
    font-size: 32px;
    line-height: 1.5625;
  }
}
@media (min-width: 992px) {
  .p-post-header {
    height: 700px;
  }
  .p-post-header__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-top: 166px;
    height: calc(100% - 166px);
  }
  .p-post-header__content {
    gap: min(3.125vw, 40px);
    width: min(32.8125vw, 420px);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin-left: 45px;
  }
  .p-post-header__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 12px;
  }
  .p-post-header__meta::after {
    content: "";
    width: 1px;
    height: 62px;
    background: #000;
  }
  .p-post-header__meta .c-tag {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 10px 2px;
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
  }
  .p-post-header__title {
    font-size: min(2.5vw, 32px);
    text-orientation: upright;
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
  }
  .p-post-header__eyecatch {
    margin-left: calc(50% - 50vw + var(--header-width) / 2);
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/* 投稿エリア
------------------------------------------------------ */
.p-post-body {
  margin-top: 80px;
  font-family: var(--font-system);
}
@media (min-width: 768px) {
  .p-post-body {
    margin-top: 120px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .p-post-body {
    margin-top: 160px;
  }
}
.p-post-body::after {
  content: "";
  display: block;
  clear: both;
}
.p-post-body > *:not(h2, h3, h4, h5, h6) {
  margin-top: 2em;
  font-size: 0.9375em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (min-width: 768px) {
  .p-post-body > *:not(h2, h3, h4, h5, h6) {
    font-size: 1.125em;
  }
}
.p-post-body h2 {
  margin-top: 80px;
  font-size: 24px;
}
.p-post-body h2 + * {
  margin-top: 24px;
}
.p-post-body h3 {
  margin-top: 40px;
  font-size: 20px;
}
.p-post-body h3 + * {
  margin-top: 20px;
}
.p-post-body h4 {
  margin-top: 30px;
  font-size: 18px;
}
.p-post-body h4 + * {
  margin-top: 15px;
}
.p-post-body h5 {
  margin-top: 30px;
}
.p-post-body h5 + * {
  margin-top: 10px;
}
.p-post-body h6 {
  margin-top: 30px;
  font-size: 15px;
  color: #666;
}
.p-post-body h6 + * {
  margin-top: 10px;
}
.p-post-body ul > li {
  position: relative;
  padding-left: 1em;
}
.p-post-body ul > li::before {
  position: absolute;
  left: 0;
  top: 0.75em;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-main);
}
.p-post-body ol > li {
  margin-left: 1em;
  list-style-type: decimal;
}
.p-post-body table {
  width: 100%;
}
.p-post-body table th {
  padding: 1em;
  border: 1px solid var(--color-border);
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
}
.p-post-body table td {
  padding: 1em;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}
.p-post-body img.alignnone,
.p-post-body img.alignleft,
.p-post-body img.alignright,
.p-post-body img.aligncenter {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .p-post-body img.alignnone {
    margin-left: 0;
  }
  .p-post-body img.alignleft {
    float: left;
    max-width: 50%;
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .p-post-body img.alignright {
    float: right;
    max-width: 50%;
    margin-left: 10px;
    margin-bottom: 10px;
  }
}

/* 投稿SNSシェア
------------------------------------------------------ */
.p-post-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.p-post-share::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
}
.p-post-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.p-post-share ul a {
  display: block;
  width: 25px;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

@media (any-hover: hover) {
  .p-post-share ul a:hover {
    opacity: 0.6;
  }
}
.p-post-share__title {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 14px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .p-post-share {
    margin-top: 80px;
  }
  .p-post-share ul a {
    width: 32px;
  }
  .p-post-share__title {
    font-size: 18px;
  }
}
/* 投稿ナビゲーション
------------------------------------------------------ */
.p-post-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 400px;
  margin: 40px auto 0;
}

.p-post-nav__link {
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  text-underline-offset: 10px;
  -webkit-text-decoration: underline 1px #000;
          text-decoration: underline 1px #000;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.p-post-nav__link.no-link {
  text-decoration: none;
  color: #999;
  pointer-events: none;
}

@media (any-hover: hover) {
  .p-post-nav__link:hover {
    color: var(--color-main);
  }
}
@media (min-width: 768px) {
  .p-post-nav {
    margin: 80px auto 0;
  }
  .p-post-nav__link {
    font-size: 20px;
  }
}
/* ページヒーロー
------------------------------------------------------ */
.p-page-hero {
  position: relative;
  z-index: 0;
  height: 550px;
  color: #fff;
}

.p-page-hero__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.p-page-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 100%;
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--gutter);
}

.p-page-hero__title {
  font-size: 30px;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .p-page-hero__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .p-page-hero {
    height: 100svh;
    max-height: 820px;
  }
  .p-page-hero__content {
    padding: 80px var(--gutter);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
/* 体験画像（ものがたりを知るページ）
------------------------------------------------------ */
.p-exp-main {
  margin-top: 80px;
}

.p-exp-main__heading {
  font-size: 19px;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: -0.075em;
}

.p-exp-main__img {
  margin-top: 27px;
  aspect-ratio: 265/173;
}
.p-exp-main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-exp-main__img[aria-hidden=true] {
  display: none;
}

.p-exp-main__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: -12px;
  margin-top: 16px;
}
.p-exp-main__thumbs li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc((100% - 24px) / 3);
}
.p-exp-main__thumbs a {
  display: block;
  aspect-ratio: 1/1;
}
.p-exp-main__thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .p-exp-main {
    margin-top: 140px;
  }
  .p-exp-main__heading {
    font-size: 24px;
    letter-spacing: 0.03em;
  }
  .p-exp-main__thumbs {
    gap: 20px;
    margin-top: 30px;
  }
  .p-exp-main__thumbs li {
    width: calc((100% - 60px) / 4);
  }
}
@media (min-width: 992px) {
  .p-exp-main {
    margin-top: 200px;
  }
  .p-exp-main__heading {
    font-size: 35px;
  }
  .p-exp-main__thumbs {
    gap: 33px;
    margin-top: 45px;
  }
  .p-exp-main__thumbs li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc((100% - 99px) / 4);
  }
}
/* 体験情報（ものがたりを知るページ）
------------------------------------------------------ */
.p-exp-info {
  margin-top: 80px;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc((var(--header-width) + 10px) * -1);
  padding-left: var(--gutter);
  padding-right: calc(var(--header-width) + 10px);
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f2eadc;
  background-size: 357px 667px;
  background-image: url("../images/bg_pattern_sp.webp");
}

.p-exp-info__data {
  border-top: 1px solid #000;
  font-family: var(--font-system);
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 20px 0 0 0;
}
.p-exp-info__data dt {
  font-size: 16px;
  font-weight: 600;
}
.p-exp-info__data dt:not(:first-child) {
  margin-top: 30px;
}
.p-exp-info__data dd {
  font-size: 16px;
  margin-top: 1em;
}
.p-exp-info__data dd > * {
  margin-top: 0.5em;
}

.p-exp-info__data-item {
  padding: 24px 0 30px;
  border-bottom: 1px solid #000;
}

@media (min-width: 768px) {
  .p-exp-info {
    margin: 160px calc(50% - 50vw + var(--header-width) / 2) 0;
    padding: 160px calc(50vw - 50% - var(--header-width) / 2);
    background-size: 1210px 750px;
    background-image: url("../images/bg_pattern_pc.webp");
  }
  .p-exp-info__data{
    margin: 35px 0 0 0;
  }
  .p-exp-info__data dt {
    font-size: 22px;
    font-weight: 600;
  }
  .p-exp-info__data dd {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .p-exp-info__data {
    padding-bottom: 0;
    margin: 35px 0 0 0;
  }
  .p-exp-info__data dt {
    /*clear: left;
    float: left;
    width: 166px;*/
    font-size: 22px;
    font-weight: 600;
  }
  .p-exp-info__data dt:not(:first-child) {
    margin-top: 0;
  }
  .p-exp-info__data dd {
    overflow: hidden;
    margin-top: 8px;
  }
}
/* 体験予約（ものがたりを知るページ）
------------------------------------------------------ */
.p-exp-reserve {
  margin-top: 80px;
}

.p-exp-reserve__text {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-family: var(--font-system);
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
.p-exp-reserve__text > * {
  margin-top: 0.5em;
}
.p-exp-reserve__text + * {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .p-exp-reserve {
    margin-top: 160px;
  }
  .p-exp-reserve__text {
    margin-top: 35px;
    padding: 33px 0;
    font-size: 15px;
    line-height: 1.6;
  }
  .p-exp-reserve__text > * {
    margin-top: 0.5em;
  }
  .p-exp-reserve__text + * {
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .p-exp-reserve__heading {
    text-align: center;
  }
  .p-exp-reserve__text-inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
/* コンセプト（池商店についてページ）
------------------------------------------------------ */
.p-about-concept {
  margin-top: 80px;
}

.p-about-concept__inner {
  max-width: 400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
}

.p-about-concept__head h2 {
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2em;
  color: var(--color-sub);
}
.p-about-concept__head h2 span {
  font-size: 0.625em;
  letter-spacing: 0.08em;
}
.p-about-concept__head p {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.6842105263;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-about-concept__content h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2em;
  color: var(--color-sub);
}
.p-about-concept__content h3 span {
  font-size: 0.625em;
  letter-spacing: 0.08em;
}
.p-about-concept__content p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
.p-about-concept__content ul {
  margin-top: 6px;
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
.p-about-concept__content ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-about-concept__content ul li::before {
  content: "◆ ";
  font-size: 0.5384615385em;
}
.p-about-concept__content:not(:first-child) {
  margin-top: 33px;
}

@media (min-width: 768px) {
  .p-about-concept {
    margin-top: 140px;
  }
  .p-about-concept__inner {
    max-width: var(--container-narrow);
    gap: 45px;
  }
  .p-about-concept__head h2 {
    font-size: 27px;
  }
  .p-about-concept__head p {
    margin-top: 30px;
    font-size: 34px;
    line-height: 1.7647058824;
    letter-spacing: 0.05em;
  }
  .p-about-concept__content h3 {
    font-size: 24px;
  }
  .p-about-concept__content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.2em;
  }
  .p-about-concept__content ul {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.2em;
  }
  .p-about-concept__content:not(:first-child) {
    margin-top: 48px;
  }
}
@media (min-width: 992px) {
  .p-about-concept {
    margin-top: 200px;
  }
  .p-about-concept__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-about-concept__head {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .p-about-concept__head p {
    margin-top: 0;
    margin-right: 30px;
  }
  .p-about-concept__body {
    margin-top: 45px;
  }
}
/* プロフィール（池商店についてページ）
------------------------------------------------------ */
.p-about-profile {
  margin-top: 80px;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc((var(--header-width) + 10px) * -1);
  padding-left: var(--gutter);
  padding-right: calc(var(--header-width) + 10px);
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f2eadc;
  background-size: 357px 667px;
  background-image: url("../images/bg_pattern_sp.webp");
}

.p-about-profile__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  max-width: 400px;
  margin: 0 auto;
}

.p-about-profile__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 180px;
}

.p-about-profile__name {
  font-family: var(--font-system);
  font-size: 16px;
  font-weight: 100;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03rem;
  color: var(--color-sub);
}

.p-about-profile__post {
  margin-top: 6px;
  font-size: 13px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--color-sub);
}

.p-about-profile__message {
  margin-top: 18px;
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.011em;
}

@media (min-width: 768px) {
  .p-about-profile {
    margin: 160px calc(50% - 50vw + var(--header-width) / 2) 0;
    padding: 100px calc(50vw - 50% - var(--header-width) / 2);
    background-size: 1210px 750px;
    background-image: url("../images/bg_pattern_pc.webp");
  }
  .p-about-profile__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 34px;
    max-width: 100%;
  }
  .p-about-profile__img {
    width: 300px;
  }
  .p-about-profile__name {
    font-size: 20px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.1rem;
  }
  .p-about-profile__post {
    margin-top: 8px;
    font-size: 18px;
  }
  .p-about-profile__message {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }
}
@media (min-width: 992px) {
  .p-about-profile__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 75px;
  }
}
/* 講演のご依頼（池商店についてページ）
------------------------------------------------------ */
.p-about-lecture + * {
  padding: 0;
  margin-top: 140px;
}

.p-about-lecture__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 30px;
}

.p-about-lecture__img {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc((var(--header-width) + 10px) * -1);
}

.p-about-lecture__content {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.p-about-lecture__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
.p-about-lecture__heading::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../images/icon_list-mark.webp") center/contain no-repeat;
}

.p-about-lecture__text {
  margin-top: 19px;
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

.p-about-lecture__link {
  margin-top: 16px;
}

.p-about-lecture__slider {
  margin: 0 calc(var(--gutter) * -1);
}
.p-about-lecture__slider .swiper {
  width: 100%;
}
.p-about-lecture__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.p-about-lecture__slider .swiper-slide {
  width: 200px;
  aspect-ratio: 1/1;
}
.p-about-lecture__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-lecture__button-block {
  padding: 24px var(--gutter) 80px;
  margin: 0 calc(var(--gutter) * -1);
  background: #fff;
}

@media (min-width: 768px) {
  .p-about-lecture__inner {
    gap: 50px;
  }
  .p-about-lecture__img {
    margin: 0 calc(50% - 50vw + var(--header-width) / 2) 0;
  }
  .p-about-lecture__text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.75;
  }
  .p-about-lecture__link {
    margin-top: 30px;
  }
  .p-about-lecture__content {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .p-about-lecture {
    margin-top: 200px;
  }
  .p-about-lecture__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-about-lecture__img {
    margin: 0;
    width: min(39.8230088496vw, 450px);
  }
  .p-about-lecture__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(5.1327433628vw, 58px);
    max-width: none;
    width: auto;
    margin: 0;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .p-about-lecture__heading {
    font-size: min(3.0973451327vw, 35px);
    line-height: 1.1428571429;
  }
  .p-about-lecture__text {
    margin-top: min(10.6194690265vw, 120px);
    margin-right: min(2.1238938053vw, 24px);
    font-size: min(1.7699115044vw, 16px);
    line-height: 2.3;
  }
  .p-about-lecture__text span {
    text-orientation: sideways;
  }
  .p-about-lecture__link {
    gap: min(1.1504424779vw, 13px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto 0;
  }
  .p-about-lecture__link a {
    font-size: min(1.7699115044vw, 20px);
    text-decoration: none;
  }
  .p-about-lecture__link::before {
    width: min(2.5663716814vw, 29px);
    height: min(2.9203539823vw, 33px);
  }
}
/* 会社概要（池商店についてページ）
------------------------------------------------------ */
.p-about-company {
  margin-top: 80px;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc((var(--header-width) + 10px) * -1);
  padding-left: var(--gutter);
  padding-right: calc(var(--header-width) + 10px);
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #e6e6e6;
  background-size: 357px 667px;
  background-image: url("../images/bg_pattern_sp.webp");
  background-blend-mode: multiply;
}

.p-about-company__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}

.p-about-company__data dt {
  width: 6.5em;
  clear: left;
  float: left;
  font-size: 13px;
}
.p-about-company__data dd {
  overflow: hidden;
  font-size: 13px;
}
.p-about-company__data dd a {
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

@media (any-hover: hover) {
  .p-about-company__data dd a:hover {
    opacity: 0.6;
  }
}
.p-about-company__data-item {
  padding: 20px 0 12px;
  border-bottom: 1px solid #000;
}

.p-about-company__logo {
  text-align: center;
}
.p-about-company__logo img {
  width: 100px;
}

@media (min-width: 768px) {
  .p-about-company {
    margin: 160px calc(50% - 50vw + var(--header-width) / 2) 0;
    padding: 140px calc(50vw - 50% - var(--header-width) / 2);
    background-size: 1210px 750px;
    background-image: url("../images/bg_pattern_pc.webp");
  }
  .p-about-company__inner {
    gap: 50px;
  }
  .p-about-company__data dt {
    font-size: 20px;
  }
  .p-about-company__data dd {
    font-size: 20px;
  }
  .p-about-company__data-item {
    padding: 45px 0 15px;
  }
  .p-about-company__logo {
    margin-top: 50px;
  }
  .p-about-company__logo img {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .p-about-company__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-about-company__data {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 590px;
  }
  .p-about-company__logo {
    margin-top: -45px;
  }
}
/* お問い合わせフォーム
------------------------------------------------------ */
.p-form__item:not(:first-child) {
  margin-top: 40px;
}
.p-form__item:has(.p-form__button) {
  text-align: center;
}

.p-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.p-form__field {
  margin-top: 8px;
}

.p-form__label {
  font-size: 16px;
}

.p-form__button {
  width: auto;
  font-family: inherit;
  letter-spacing: inherit;
}

@media (min-width: 768px) {
  .p-form__item:has(.p-form__button) {
    margin-top: 100px;
  }
  .p-form__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
  .p-form__group-item {
    width: calc((100% - 50px) / 2);
  }
}
/* オープニング画面
------------------------------------------------------ */
.p-splash {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: #fff;
  display: grid;
  place-content: center;
  -webkit-transition: opacity 1s ease-in-out 0.3s;
  transition: opacity 1s ease-in-out 0.3s;
}

.p-splash__text {
  font-family: var(--font-system);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.04em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #000;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.p-splash__text span {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (min-width: 768px) {
  .p-splash__text {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .p-splash__text {
    font-size: 32px;
  }
}

.p-splash.is-loaded {
  opacity: 0;
}

.p-splash__text.is-hidden {
  opacity: 0;
}

.p-splash__text span.is-visible {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*------------------------------------------------------------------------
// Object（utility）
------------------------------------------------------------------------*/
.u-md-none {
  display: block;
}
@media (min-width: 768px) {
  .u-md-none {
    display: none;
  }
}

.u-md-block {
  display: none;
}
@media (min-width: 768px) {
  .u-md-block {
    display: block;
  }
}

.u-lg-none {
  display: block;
}
@media (min-width: 992px) {
  .u-lg-none {
    display: none;
  }
}

.u-lg-block {
  display: none;
}
@media (min-width: 992px) {
  .u-lg-block {
    display: block;
  }
}




[data-scroll-anima] {
  opacity: 0;
}

.u-maskFadeIn {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(80%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 80%, transparent 100%);
          mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(80%, #000), to(transparent));
          mask-image: linear-gradient(90deg, #000 0, #000 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-mask-position: 200% 0;
          mask-position: 200% 0;
}
.u-maskFadeIn[data-scroll-anima=true] {
  opacity: 1;
  -webkit-animation: 2s linear 0s 1 normal forwards maskFadeIn;
          animation: 2s linear 0s 1 normal forwards maskFadeIn;
}

@-webkit-keyframes maskFadeIn {
  0% {
    -webkit-mask-position: 200% 0;
            mask-position: 200% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}

@keyframes maskFadeIn {
  0% {
    -webkit-mask-position: 200% 0;
            mask-position: 200% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
/* ローディング画面
------------------------------------------------------ */
#loading {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: #FFF;
  opacity: 1;
}
#loading.is-loaded {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(20%, #000), to(#000));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 100%);
          mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(20%, #000), to(#000));
          mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
  -webkit-animation: 1s linear 0s 1 normal forwards maskFadeOut;
          animation: 1s linear 0s 1 normal forwards maskFadeOut;
}

@-webkit-keyframes maskFadeOut {
  0% {
    -webkit-mask-position: 100% 0;
            mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: -100% 0;
            mask-position: -100% 0;
  }
}

@keyframes maskFadeOut {
  0% {
    -webkit-mask-position: 100% 0;
            mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: -100% 0;
            mask-position: -100% 0;
  }
}/*# sourceMappingURL=common.css.map */