@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

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

:root {
  --font-family: "Kosugi Maru", sans-serif;
  --color-text: #000;
  --color-link: #a74b51;
  --color-hover: #857147;
  --color-base: #5d7445;
  --color-main: #5e4c29;
  --color-sub1: #a74b51;
  --color-sub2: #857147;
  --color-sub3: #d7c093;
  --color-sub4: #fae78f;
  --color-sub5: #ecd9b3;
  --color-sub6: #f8eed9;
  --color-sub7: #f9f6f0;
  --color-sub8: #d0ddc2;
  --color-sub9: #e2b7ba;
  --color-sub10: #ddece3;
  --color-sub11: #ffe7e9;
  --color-grd1: rgba(0, 0, 0, 0);
  --color-grd2: rgba(0, 0, 0, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 140rem;
  --inner-width3: 160rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

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

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* 共通セクション */
.c-section {
  line-height: 1.8;
}
.c-section__secondary {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
  }
}
.c-section__secondary:not(:last-child) {
  margin-bottom: 10rem;
}
.c-section__secondary:first-of-type {
  margin-top: -5rem;
}
@media screen and (min-width: 768px), print {
  .c-section__secondary:first-of-type {
    margin-top: -7rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary:first-of-type {
    margin-top: -5rem;
  }
}
@media screen and (min-width: 1600.98px), print {
  .c-section__secondary:first-of-type {
    margin-top: -12rem;
  }
}
.c-section__inner {
  padding: 2rem;
}
@media screen and (min-width: 768px), print {
  .c-section__inner {
    padding: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-section__inner {
    padding: 5rem;
  }
}

/* 共通ヘッダー */
.c-header {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .c-header {
    margin-bottom: 5rem;
  }
}

/* 共通見出し */
.c-heading {
  display: inline-block;
  vertical-align: top;
  line-height: 1.2;
  font-size: 3.5rem;
  font-feature-settings: "palt" 1;
  color: var(--color-sub1);
  letter-spacing: 0.1em;
}
.c-heading::after {
  content: "";
  aspect-ratio: 156/25;
  display: block;
  width: 12rem;
  margin: 2rem auto 0;
  background: url(../img/base/img_title.png) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .c-heading {
    font-size: 3.9rem;
  }
  .c-heading::after {
    width: 15.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading {
    font-size: 4.6rem;
  }
}
.c-heading.__h2 {
  display: block;
  margin-top: -2rem;
  padding: 5rem 0 4rem;
  text-align: center;
}
.c-heading.__h2:not(:first-child) {
  margin-top: 6rem;
  padding-top: 0;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h2 {
    margin-top: -3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h2 {
    margin-top: -5rem;
    padding: 6rem 0 4.5rem;
  }
  .c-heading.__h2:not(:first-child) {
    margin-top: 8rem;
  }
}
.c-heading.__h3 {
  display: block;
  margin-bottom: 3rem;
  padding: 1rem 0.5rem 1.1rem;
  line-height: 1.3;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
}
.c-heading.__h3::after {
  display: none;
}
.c-heading.__h3:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h3 {
    padding: 1rem 1rem 1.2rem;
    font-size: 2.2rem;
  }
}
.c-heading.__topics-detail {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-sub5);
}
.c-heading__note {
  font-size: 0.5em;
  letter-spacing: normal;
}

/* リンクボタン */
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.7rem 5rem 1.6rem 3rem;
  line-height: 1.2;
  color: var(--color-link);
  text-align: center;
  border-radius: 10em;
  border: 1px solid currentColor;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
@media screen and (min-width: 768px), print {
  .c-link-button {
    padding: 1.8rem 5.6rem 1.7rem 3.6rem;
  }
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.1ch;
  right: 3rem;
  bottom: 0;
  width: 1.2ch;
  height: 1.2ch;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px), print {
  .c-link-button::before {
    top: -0.1ch;
    right: 3.4rem;
  }
}

/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: var(--color-link);
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    border-color: var(--color-link);
    background-color: var(--color-link);
  }
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
.c-inner__lg {
  max-width: var(--inner-width2);
}
/* Google Maps */
.c-map-area {
  position: relative;
  height: 40rem;
}
.c-map-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.c-table {
  display: block;
  margin-inline: -4px;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2rem 1rem;
  border-bottom-width: 1px;
  border-style: solid;
}
.c-table th {
  padding-right: 0;
  font-size: 1.8rem;
  color: var(--color-sub1);
  border-color: var(--color-sub9);
}
.c-table td {
  border-color: var(--color-sub5);
}
.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top-width: 1px;
}
.c-table .tel-link[href] {
  color: currentColor;
}
.c-table .tel-link[href]:hover {
  color: var(--color-hover);
}
@media screen and (max-width: 767.98px) {
  .c-table {
    margin-inline: 0;
  }
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr + tr {
    margin-top: 3rem;
  }
  .c-table th,
  .c-table td {
    border-top-width: 1px;
    border-bottom: none;
  }
  .c-table th {
    width: auto !important;
    padding: 1rem 1rem;
  }
  .c-table td {
    padding: 1.5rem 1rem 0 1.3rem;
  }
}

/* 共通コンテンツ */
.c-content {
  padding: 2rem;
}
.c-content dt {
  margin-bottom: 1rem;
}
.c-content .disc {
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
}
.c-content .disc::before {
  content: "〇";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-content .disc + .disc {
  margin-top: 0.5ch;
}
.c-content__title {
  margin-bottom: 1rem;
}
.c-content__lede {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5em;
}
.c-content__lede::before {
  content: "〇";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px), print {
  .c-content {
    padding: 2.5rem 3rem;
  }
}
/* 共通お問い合わせ（電話）*/
.c-global-tel {
  display: block;
}
.c-global-tel .tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.c-global-tel .tel-link::before {
  content: "";
  display: block;
  width: 1.4ch;
  height: 1.4ch;
  margin: 0.1ch 0.6ch 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-global-tel .tel-link[href]:hover {
  text-decoration: none;
}
/* --------------------------------

  汎用スタイル

-------------------------------- */
.u-list {
  margin-left: 3ch;
}
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style: none;
  line-height: 1.5;
}
.u-list-disc li {
  position: relative;
  padding-left: 2em;
}
.u-list-disc li + li {
  margin-top: 1ch;
}
.u-list-disc li::before {
  content: "〇";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-list__lg {
  list-style: none;
}
.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-indent {
  text-indent: 1em;
}
.u-text-link {
  color: currentColor;
}
@media screen and (min-width: 768px), print {
  .u-text-md-left {
    text-align: left;
  }
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-left {
    text-align: left;
  }
  .u-text-lg-center {
    text-align: center;
  }
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
  .u-d-md-inline {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1600px), print {
  .u-d-xl-none {
    display: none;
  }
  .u-d-xl-block {
    display: block;
  }
  .u-d-xl-flex {
    display: flex;
  }
}

.u-ft-yusei {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.u-fs__sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs__sm {
    font-size: 1.4rem;
  }
}
.u-fs__lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs__lg {
    font-size: 1.8rem;
  }
}
.u-fs__xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs__xl {
    font-size: 2rem;
  }
}

.u-fw-normal {
  font-weight: 400;
}
.u-fw-normal * {
  font-weight: 400;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-bg-dark {
  background-color: var(--color-sub2);
}
.u-bg-light {
  background-color: var(--color-sub7);
}
.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-text {
  background-color: var(--color-sub1);
}
.u-bg-box {
  background-color: var(--color-sub4);
}
.u-bg-sub {
  background-color: var(--color-sub10);
}
.u-bg-aux {
  background-color: var(--color-sub11);
}

.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-text {
  color: var(--color-link);
}
.u-color-white {
  color: #fff;
}
.u-color-danger {
  color: var(--color-sub1);
}
.u-color-sub {
  color: var(--color-sub4);
}

.u-flex-1 {
  flex: 1;
}

.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.u-lh__xs {
  line-height: 1.2;
}
.u-lh__sm {
  line-height: 1.5;
}
.u-lh__base {
  line-height: 1.8;
}
.u-lh__lg {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .u-lh__lg {
    line-height: 2;
  }
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

.u-anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -10rem;
  margin-bottom: 10rem;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point::before {
    margin-top: -18rem;
    margin-bottom: 18rem;
  }
}

.u-scroll-margin-top {
  scroll-margin-top: 10rem;
}
@media screen and (min-width: 1100px), print {
  .u-scroll-margin-top {
    scroll-margin-top: 18rem;
  }
}

.u-box-radius {
  border-radius: 1rem;
}
.u-box-radius__md {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-box-radius__md {
    border-radius: 2rem;
  }
}
.u-box-radius__lg {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-box-radius__lg {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .u-box-radius__lg {
    border-radius: 3rem;
  }
}
.u-box-shadow {
  box-shadow: var(--box-shadow);
}

.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

@media screen and (min-width: 768px), print {
  .float-md-right {
    float: right;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

.justify-content-center {
  justify-content: center;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* ios高さ100%用 */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

.u-w-100 {
  width: 100%;
}

.u-h-100 {
  height: 100%;
}

/* --------------------------------

  wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  padding-bottom: 9rem;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .l-wrapper {
    padding-bottom: 0;
  }
}

/* --------------------------------

  header

-------------------------------- */
.l-header {
  padding-top: 8rem;
}
.l-header__container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  font-size: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 900;
}
.l-header__title {
  position: relative;
  margin: 0 -2rem;
  padding: 57rem 2rem 0;
  background-color: var(--color-sub7);
  overflow: hidden;
}
@media screen and (min-width: 480px), print {
  .l-header__title {
    padding-top: 53rem;
  }
}
@media screen and (min-width: 768px), print {
  .l-header {
    padding-top: 0;
  }
  .l-header__container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
  .l-header__title {
    padding-top: 80rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__title {
    margin: 0 -5rem;
    padding: 62rem 5rem 0;
  }
}
@media screen and (min-width: 1280px), print {
  .l-header__title {
    padding-top: 66rem;
  }
}
@media screen and (min-width: 1600.98px), print {
  .l-header__title {
    padding-top: 70rem;
  }
}

/* ヘッダーロゴ */
.c-header-logo img {
  display: block;
  width: 22rem;
}
@media screen and (min-width: 480px), print {
  .c-header-logo img {
    width: 28rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-header-logo a {
    display: block;
    position: absolute;
    top: 2.5rem;
    left: 3rem;
  }
  .c-header-logo img {
    width: 39rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-header-logo a {
    top: 5rem;
    left: 2rem;
  }
  .c-header-logo img {
    width: 30rem;
  }
}
@media screen and (min-width: 1440px), print {
  .c-header-logo a {
    top: 5rem;
    left: 6rem;
  }
  .c-header-logo img {
    width: 39rem;
  }
}

/* お問い合わせボタン（電話）*/
.c-tel-button {
  display: block;
  position: fixed;
  top: 1.3rem;
  right: 1rem;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
.c-tel-button a {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-link);
}
.c-tel-button a:hover {
  text-decoration: none;
}
.c-tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.85rem;
  right: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.c-tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px), print {
  .c-tel-button {
    display: none;
  }
}

/* お問い合わせボタン（メール）*/
.c-contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  padding: 0 1rem;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .c-contact-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 12rem;
    height: auto;
    margin-top: 24rem;
    padding: 0;
    z-index: 1010;
  }
}
@media screen and (min-width: 1280px), print {
  .c-contact-button {
    margin-top: 20rem;
  }
}
.c-contact-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(to bottom right, #839f66 0%, #5d7445 100%);
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 1100px), print {
  .c-contact-button__link {
    display: grid;
    place-content: center;
    height: 18rem;
    font-size: 2rem;
    border-radius: 1rem 0 0 1rem;
  }
}
.c-contact-button__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-button__link:hover {
    background: var(--color-link);
  }
  .c-contact-button__link:hover::before {
    transform: rotate(5deg);
  }
}
.c-contact-button__link::before {
  content: "";
  aspect-ratio: 76/88;
  display: block;
  width: 5.4rem;
  margin-right: 2rem;
  background: url(../img/base/side_bnr.png) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1100px), print {
  .c-contact-button__link::before {
    width: 7.6rem;
    margin: 0.5rem auto;
  }
}
.c-contact-button__label {
  display: block;
  margin-right: 1rem;
  font-size: 1.8em;
}
@media screen and (min-width: 1100px), print {
  .c-contact-button__label {
    margin: 0;
    font-size: 1.3em;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 767.98px) {
  .is-fixed .l-header__container {
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .c-contact-button {
    position: fixed;
    top: -60px;
    margin-top: 16rem;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}
@media screen and (min-width: 1280px), print {
  .is-fixed .l-header__container {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-contact-button {
    margin-top: 18rem;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -30rem;
  width: 30rem;
  height: 100%;
  z-index: 1000;
}
.l-nav__container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  z-index: 10;
}
.l-nav__info {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
    padding: 11rem 3rem 0;
  }
  .l-nav::before {
    content: "";
    aspect-ratio: 1143/205;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 90rem;
    background: url(../img/base/bg-wave_1.svg) center no-repeat;
    background-size: cover;
    pointer-events: none;
  }
  .l-nav__container {
    background-color: transparent;
    overflow: visible;
  }
  .l-nav__info {
    position: absolute;
    top: -8.2rem;
    right: 0;
  }
}
@media screen and (min-width: 1280px), print {
  .l-nav {
    padding: 4rem 3rem 0;
  }
  .l-nav__container {
    display: flex;
  }
  .l-nav__info {
    top: 2.4rem;
    right: 3rem;
  }
}
@media screen and (min-width: 1440px), print {
  .l-nav::before {
    width: 114rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  padding: 8rem 1.5rem 0;
}
.c-nav__item {
  position: relative;
}
.c-nav__link, .c-nav__label {
  display: grid;
  place-content: center left;
  position: relative;
  height: 6rem;
  padding: 0 4.5rem 0 1rem;
  font-size: 1.8rem;
  color: var(--color-text);
}
.c-nav__link:hover {
  text-decoration: none;
  color: var(--color-text);
}
@media screen and (min-width: 768px), print {
  .c-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 10rem;
    margin: 0;
    padding: 0;
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--box-shadow);
  }
  .c-nav__item + .c-nav__item {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .c-nav__item--home {
    display: none;
  }
  .c-nav__link, .c-nav__label {
    place-content: center;
    height: 3.5rem;
    padding: 0;
    transition: color var(--transition), background-color var(--transition);
  }
  .c-nav__label {
    padding: 0 1.5rem;
    color: var(--color-sub2);
    border-radius: 10em;
    background-color: var(--color-sub6);
  }
}
@media screen and (min-width: 1280px), print {
  .c-nav {
    justify-content: flex-start;
    margin: 0 0 0 auto;
    padding: 0 25rem 0 3rem;
  }
  .c-nav__item + .c-nav__item {
    margin-right: 1.5rem;
    margin-left: 0;
  }
}
@media screen and (min-width: 1600px), print {
  .c-nav__item + .c-nav__item {
    margin-right: 2.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-nav__item {
    border-top: 1px solid var(--color-sub3);
  }
  .c-nav__item:last-child {
    border-bottom: 1px solid var(--color-sub3);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__link:hover {
    color: var(--color-link);
  }
}

/* サブメニュー */
.c-subnav {
  margin: 0 1rem 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.c-subnav__item:first-child .c-subnav__link, .c-subnav__item:last-child .c-subnav__link {
  height: 4.8rem;
}
.c-subnav__item + .c-subnav__item {
  margin-top: 1px;
}
.c-subnav__link {
  display: grid;
  place-content: center;
  height: 4.4rem;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #fff;
  background-color: rgb(133, 113, 71);
  transition: background-color var(--transition);
}
.c-subnav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-subnav__link:hover {
    color: #fff;
    background-color: var(--color-sub3);
  }
}
@media screen and (min-width: 768px), print {
  .c-subnav {
    position: relative;
    left: 50%;
    width: 24rem;
    margin: 0 0 0 -12rem;
    border-radius: 2rem;
  }
  .c-subnav__item:first-child .c-subnav__link, .c-subnav__item:last-child .c-subnav__link {
    height: 5.4rem;
  }
  .c-subnav__item + .c-subnav__item {
    margin-top: 0;
  }
  .c-subnav__link {
    height: 5rem;
    font-size: 1.6rem;
    background-color: rgba(133, 113, 71, 0.9);
  }
}
@media screen and (min-width: 1100px), print {
  .c-subnav {
    position: relative;
    left: 50%;
    width: 28rem;
    margin: 0 0 0 -14rem;
    padding: 0;
    border-radius: 3rem;
  }
  .c-subnav__item:first-child .c-subnav__link {
    height: 6.4rem;
  }
  .c-subnav__item:last-child .c-subnav__link {
    height: 6.4rem;
  }
  .c-subnav__item + .c-subnav__item {
    margin-top: 0;
  }
  .c-subnav__link {
    height: 6rem;
    font-size: 1.8rem;
    background-color: rgba(133, 113, 71, 0.9);
  }
}

/* 事業所情報 */
.c-nav-info {
  padding: 4rem 2rem;
  text-align: center;
}
.c-nav-info__logo {
  margin-bottom: 2rem;
}
.c-nav-info__tel {
  font-size: 1.4rem;
}
.c-nav-info__tel .tel-link {
  font-size: 3.2rem;
  color: var(--color-base);
}
.c-nav-info__tel .tel-link::before {
  background-image: url(../img/base/icon-tel_grn.svg);
}
@media screen and (min-width: 768px), print {
  .c-nav-info {
    padding: 0;
  }
  .c-nav-info__logo {
    display: none;
  }
  .c-nav-info__tel {
    text-align: right;
  }
}
@media screen and (min-width: 1280px), print {
  .c-nav-info__tel .tel-link {
    font-size: 2.8rem;
  }
}

/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 7rem;
  height: 8rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 768px), print {
  .c-nav-button {
    display: none;
  }
}
.nav-open .c-nav-button {
  display: none;
}
.c-nav-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-family: initial;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-link);
  text-align: center;
  letter-spacing: 0.1em;
}
.c-nav-button__icon {
  display: block;
  position: absolute;
  inset: 0;
  top: -1.8rem;
  width: 3.2rem;
  height: 2rem;
  margin: auto;
  border-top: 2px solid var(--color-link);
  border-bottom: 2px solid var(--color-link);
}
.c-nav-button__icon::before, .c-nav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid var(--color-link);
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button__close {
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  .nav-open .c-nav-button__close {
    display: block;
  }
}
.c-nav-button__close::before {
  content: "CLOSE";
}
.c-nav-button__close .c-nav-button__icon {
  border: none;
}
.c-nav-button__close .c-nav-button__icon::before {
  transform: rotate(45deg);
}
.c-nav-button__close .c-nav-button__icon::after {
  display: block;
  transform: rotate(-45deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 768px), print {
  .o-nav-screen {
    display: none;
  }
}
.o-nav-screen__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .o-nav-screen__overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.2rem;
  right: 2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid var(--color-sub2);
  border-right: 2px solid var(--color-sub2);
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.8rem;
  transform: rotate(-45deg);
}
.dropdown-toggle::after {
  display: none;
}
@media screen and (min-width: 768px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 0;
    bottom: -1.5rem;
    left: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin: auto;
    border-color: var(--color-sub2);
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: -2.3rem;
  }
  .dropdown-toggle.show + .c-nav__link, .dropdown-toggle.show + .c-nav__label {
    color: #fff;
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover + .c-nav__link, .dropdown-toggle:hover + .c-nav__label {
    color: #fff;
    background-color: var(--color-hover);
  }
}

/* ドロップダウン：メニュー */
.dropdown-menu {
  display: block !important;
  position: absolute;
  min-width: 0;
  width: 100%;
  margin: 0;
  margin-top: -10px !important;
  padding: 0;
  font-size: 100%;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .dropdown-menu {
    position: static !important;
    margin-top: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .dropdown-menu.show {
    inset: auto !important;
    transform: none !important;
    max-height: var(--max-height);
  }
}
@media screen and (min-width: 768px), print {
  .dropdown-menu {
    margin-top: 0px !important;
    transition: margin-top var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .dropdown-menu.show {
    margin-top: 40px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 768px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    padding: 3rem 3rem 0;
    background-color: transparent;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .l-nav::before {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .is-fixed .l-nav::before {
    display: block;
    opacity: 0.9;
  }
}
@media screen and (min-width: 1600px), print {
  .is-fixed .l-nav {
    padding-top: 4rem;
  }
}

/* --------------------------------

  main

-------------------------------- */
.l-main {
  padding: 0 2rem 10rem;
  background-color: var(--color-sub7);
}
.l-main__secondary {
  position: relative;
  background: linear-gradient(to bottom, #f8eed9 0%, #f9f6f0 15%);
}
.l-main__secondary::before, .l-main__secondary::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.l-main__secondary::before {
  aspect-ratio: 449/688;
  top: -6rem;
  right: -10rem;
  width: 26rem;
  background-image: url(../img/base/bg-img_1.svg);
}
.l-main__secondary::after {
  aspect-ratio: 612/513;
  top: 20rem;
  left: -20rem;
  width: 40rem;
  background-image: url(../img/base/bg-img_2.svg);
}
.l-main__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding: 0 5rem 15rem;
  }
  .l-main__secondary::before {
    top: -10rem;
    right: 50%;
    width: 40rem;
    margin-right: -70rem;
  }
  .l-main__secondary::after {
    top: 20rem;
    left: 50%;
    width: 50rem;
    margin-left: -78rem;
  }
}
@media screen and (min-width: 1600px), print {
  .l-main__secondary::before {
    width: 44.9rem;
    margin-right: -78rem;
  }
  .l-main__secondary::after {
    width: 61.2rem;
    margin-left: -88rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.l-footer__container {
  padding: 14rem 2rem 5rem;
  border-bottom: 1px solid var(--color-base);
}
.l-footer__logo {
  margin-bottom: 3rem;
  text-align: center;
}
.l-footer__tel {
  max-width: 90rem;
  margin: 0 auto 5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-sub5);
  border-bottom: 1px solid var(--color-sub5);
}
@media screen and (min-width: 768px), print {
  .l-footer__container {
    padding-top: 17rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer__container {
    padding: 20rem 5rem 8rem;
  }
  .l-footer__logo {
    margin-bottom: 6rem;
  }
  .l-footer__tel {
    margin-bottom: 6rem;
  }
  .l-footer__nav {
    margin-inline: -5rem;
  }
}

/* フッターロゴ */
.c-footer-logo {
  display: inline-block;
  vertical-align: top;
  max-width: 40rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-logo {
    max-width: 50rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-logo {
    max-width: 60rem;
  }
}

/* お問い合わせ */
.c-footer-tel {
  text-align: center;
}
.c-footer-tel__tel {
  margin-bottom: 1rem;
}
.c-footer-tel .tel-link {
  font-size: 3.5rem;
  color: var(--color-sub2);
}
.c-footer-tel .tel-link::before {
  background-image: url(../img/base/icon-tel_br.svg);
}
@media screen and (min-width: 768px), print {
  .c-footer-tel {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-footer-tel__tel {
    margin: 0 3rem 0 0;
  }
  .c-footer-tel__time {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-tel__tel {
    margin: 0 5rem 0 0;
  }
  .c-footer-tel__time {
    font-size: 2rem;
  }
  .c-footer-tel .tel-link {
    font-size: 4.1rem;
  }
}

/* フッターナビ */
.c-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.c-footer-nav__link {
  display: block;
  padding: 1.5ch 0;
  font-size: 1.2rem;
  color: var(--color-text);
  text-align: center;
  border-radius: 1rem;
  border: 1px solid var(--color-sub5);
  background-color: var(--color-sub6);
}
.c-footer-nav__link:hover {
  text-decoration: none;
}
@media screen and (min-width: 640px), print {
  .c-footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__link {
    padding: 1.4ch 0 1.2ch;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-nav {
    display: flex;
    justify-content: center;
    gap: 0;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-left: 1.25rem;
  }
  .c-footer-nav__link {
    display: block;
    position: relative;
    margin: -1rem -1rem -1rem 0;
    padding: 1rem 1rem 1rem 1.2em;
    text-align: left;
    border-radius: 0;
    border: none;
    background: none;
  }
  .c-footer-nav__link::before {
    content: "●";
    display: block;
    position: absolute;
    top: 1rem;
    left: 0;
  }
  .c-footer-nav__link:hover {
    text-decoration: underline;
    color: var(--color-link);
  }
}
@media screen and (min-width: 1280px), print {
  .c-footer-nav__item + .c-footer-nav__item {
    margin-left: 2rem;
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 10rem;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    right: 2rem;
    bottom: 11rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-pagetop {
    bottom: 2rem;
  }
}
.is-fixed .c-footer-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    background-color: var(--color-base);
  }
}
.c-footer-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy {
  display: grid;
  place-content: center;
  height: 7rem;
  background-color: var(--color-sub2);
}
.c-footer-copy small {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  color: #fff;
}
.c-footer-copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy {
    height: 9rem;
  }
  .c-footer-copy span {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy small {
    font-size: 1.8rem;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.c-page-title__container {
  position: static;
}
.c-page-title__header {
  position: absolute;
  bottom: 25rem;
  left: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  z-index: 10;
}
.c-page-title__heading {
  text-align: center;
}
.c-page-title__characters {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.c-page-title__characters::after {
  aspect-ratio: 1600/380;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80rem;
  background: url(../img/base/bg-wave_2.svg) center no-repeat;
  background-size: cover;
  pointer-events: none;
  transform: translateX(-50%);
}
.c-page-title__character1 {
  width: 25rem;
  margin: 3rem auto 0;
}
.c-page-title__character2 {
  position: absolute;
  top: -24rem;
  right: 50%;
  width: 7rem;
  margin-right: -18rem;
}
.c-page-title__character3 {
  position: absolute;
  top: -16rem;
  left: 50%;
  width: 6rem;
  margin-left: -18rem;
}
.c-page-title__img {
  position: absolute;
  top: -8rem;
  left: 50%;
  width: 48rem;
  transform: translateX(-50%);
  pointer-events: none;
}
.c-page-title__img img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 480px), print {
  .c-page-title__header {
    bottom: 21rem;
  }
  .c-page-title__character2 {
    top: -26rem;
    width: 8rem;
    margin-right: -26rem;
  }
  .c-page-title__character3 {
    width: 7rem;
    margin-left: -26rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-page-title__header {
    bottom: 25.8rem;
  }
  .c-page-title__characters::after {
    bottom: -2rem;
    width: 128rem;
  }
  .c-page-title__character1 {
    width: 28rem;
  }
  .c-page-title__character2 {
    top: -34rem;
    margin-right: -36rem;
  }
  .c-page-title__character3 {
    top: -18rem;
    margin-left: -36rem;
  }
  .c-page-title__img {
    top: 10rem;
    width: 54rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title__container {
    max-width: 115rem;
  }
  .c-page-title__header {
    right: 0;
    bottom: 20.2rem;
    left: 0;
    width: 110rem;
    margin: auto;
    padding: 0 5rem;
    text-align: left;
  }
  .c-page-title__heading {
    font-size: 5.8rem;
  }
  .c-page-title__heading::after {
    width: 18rem;
  }
  .c-page-title__characters::after {
    bottom: -7rem;
    width: 160rem;
  }
  .c-page-title__character1 {
    position: absolute;
    right: 13rem;
    bottom: -2.5rem;
    width: 38rem;
    margin: 0;
  }
  .c-page-title__character2 {
    top: -22rem;
    width: 10rem;
    margin-right: 20rem;
  }
  .c-page-title__character3 {
    width: 9rem;
    margin-left: -50rem;
  }
  .c-page-title__img {
    top: -10rem;
    width: 60rem;
    margin-left: 20rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-page-title__header {
    bottom: 22.8rem;
    width: 115rem;
    padding: 0;
  }
  .c-page-title__heading {
    font-size: 6.4rem;
  }
  .c-page-title__heading::after {
    width: 22rem;
  }
  .c-page-title__character1 {
    right: 0;
    bottom: -3.3rem;
    width: 50rem;
  }
  .c-page-title__character2 {
    top: -20rem;
    margin-right: 26rem;
  }
  .c-page-title__character3 {
    margin-left: -58rem;
  }
  .c-page-title__img {
    top: -4rem;
    width: 84rem;
    margin-left: 40rem;
  }
}
@media screen and (min-width: 1600px), print {
  .c-page-title__character1 {
    bottom: -4rem;
    width: 58.7rem;
  }
  .c-page-title__character2 {
    top: -38rem;
    width: 12.2rem;
    margin-right: -72rem;
  }
  .c-page-title__character3 {
    top: -22rem;
    width: 11.5rem;
    margin-left: -74rem;
  }
}
@media screen and (min-width: 1600.98px), print {
  .c-page-title__header {
    bottom: 26.8rem;
  }
  .c-page-title__characters::after {
    bottom: 0;
    width: 200rem;
  }
  .c-page-title__character2 {
    top: -55rem;
  }
  .c-page-title__character3 {
    top: -30rem;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
}
.loader.is-loaded {
  animation: fadeZoomOut 1s forwards;
  pointer-events: none;
}
.loader.is-reloaded {
  animation: fadeOut 0.5s forwards;
  pointer-events: none;
}
.loader-logo {
  display: block;
  width: 12rem;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (min-width: 768px), print {
  .loader-logo {
    width: 18rem;
  }
}
.loader-logo.is-loaded {
  animation: fadeInUpSpin 1s forwards;
}
.loader-logo.is-reloaded {
  display: none;
}

/* --------------------------------

  アニメーション

-------------------------------- */
.js-anime {
  pointer-events: none;
}
.js-anime.is-active {
  pointer-events: auto;
}
.js-anime.fadeIn {
  opacity: 0;
}
.js-anime.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.js-anime.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.js-anime.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.js-anime.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.js-anime.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.js-anime.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.js-anime.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.js-anime.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.js-anime.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeZoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUpSpin {
  from {
    opacity: 0;
    transform: translateY(100px) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(720deg);
  }
}
/* --------------------------------

  トップページ

-------------------------------- */
/* メイングラフィック */
.p-mv__section {
  position: relative;
  margin: 0 -2rem;
  padding: 10rem 2rem 7rem;
  overflow: hidden;
}
.p-mv__container {
  position: static;
}
.p-mv__header {
  max-width: none;
  margin: 0 0 10rem;
}
.p-mv__text {
  margin-top: 3rem;
  font-size: 1.6rem;
}
.p-mv__logo {
  margin: 1.5rem 0;
}
.p-mv__logo img {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0.5rem;
}
.p-mv__link {
  display: inline-block;
  color: currentColor;
  text-align: center;
}
.p-mv__link:hover {
  text-decoration: none;
}
.p-mv__link--whitecube {
  margin-bottom: 0.5rem;
}
.p-mv__link--whitecube:hover {
  color: var(--color-base);
}
.p-mv__link--deepfryers {
  margin-top: 1rem;
}
.p-mv__link--deepfryers:hover {
  color: var(--color-main);
}
.p-mv__characters {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48rem;
}
.p-mv__characters::before, .p-mv__characters::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.p-mv__characters::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 19rem;
  background: linear-gradient(to bottom, #f8eed9 0%, #f9f5ee 40%);
}
.p-mv__characters::after {
  aspect-ratio: 1600/380;
  top: 0;
  left: 50%;
  width: 122rem;
  background: url(../img/base/bg-wave_2.svg) center no-repeat;
  background-size: cover;
  transform: translateX(-50%);
}
.p-mv__character1 {
  width: 25rem;
  margin: 3rem auto 0;
}
.p-mv__character2 {
  position: absolute;
  top: -2rem;
  right: 50%;
  width: 7rem;
  margin-right: -16rem;
}
.p-mv__character3 {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 6rem;
  margin-left: -14rem;
}
.p-mv__img {
  position: absolute;
  top: -8rem;
  left: 50%;
  width: 48rem;
  transform: translateX(-50%);
  pointer-events: none;
}
.p-mv__img img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 480px), print {
  .p-mv__header {
    margin-bottom: 5rem;
  }
  .p-mv__link--whitecube {
    margin: 0 1ch 0 0.5ch;
  }
  .p-mv__link--deepfryers {
    margin: 0.5ch 0 0 0.5ch;
  }
  .p-mv__character1 {
    width: 28rem;
  }
  .p-mv__character2 {
    top: -4rem;
    width: 8rem;
    margin-right: -26rem;
  }
  .p-mv__character3 {
    top: 8rem;
    width: 7rem;
    margin-left: -26rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-mv__section {
    padding-top: 30rem;
  }
  .p-mv__text {
    font-size: 1.8rem;
  }
  .p-mv__characters {
    height: auto;
  }
  .p-mv__characters::before {
    display: none;
  }
  .p-mv__characters::after {
    top: auto;
    bottom: 0;
    width: 144rem;
  }
  .p-mv__character2 {
    top: auto;
    bottom: 27rem;
    margin-right: -36rem;
  }
  .p-mv__character3 {
    top: auto;
    bottom: 22rem;
    margin-left: -36rem;
  }
  .p-mv__img {
    top: 10rem;
    width: 54rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: 0 -5rem;
    padding: 30rem 5rem 7rem;
  }
  .p-mv__container {
    max-width: 115rem;
  }
  .p-mv__header {
    position: relative;
    text-align: left;
    z-index: 10;
  }
  .p-mv__heading {
    font-size: 5.8rem;
  }
  .p-mv__heading::after {
    width: 18rem;
  }
  .p-mv__text {
    margin-top: 2rem;
    font-size: 2rem;
  }
  .p-mv__logo img {
    vertical-align: middle;
    margin: 0 0 0 1rem;
  }
  .p-mv__link--whitecube {
    margin: 0;
  }
  .p-mv__link--whitecube img {
    margin: -1ch 0 0 0;
  }
  .p-mv__link--deepfryers {
    margin: 0 0 0 1ch;
  }
  .p-mv__link--deepfryers img {
    margin: -0.4ch 0 0 0;
  }
  .p-mv__characters::after {
    width: 160rem;
  }
  .p-mv__character1 {
    position: absolute;
    top: -2rem;
    right: 8rem;
    width: 38rem;
    margin: 0;
  }
  .p-mv__character2 {
    bottom: 30rem;
    width: 10rem;
    margin-right: -55rem;
  }
  .p-mv__character3 {
    bottom: 26rem;
    width: 9rem;
    margin-left: -50rem;
  }
  .p-mv__img {
    top: -10rem;
    width: 60rem;
    margin-left: 20rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-mv__heading {
    font-size: 6.4rem;
  }
  .p-mv__heading::after {
    width: 22rem;
  }
  .p-mv__character1 {
    top: -5rem;
    right: 0;
    width: 50rem;
  }
  .p-mv__character2 {
    bottom: 30rem;
    margin-right: -62rem;
  }
  .p-mv__character3 {
    bottom: 30rem;
    margin-left: -58rem;
  }
  .p-mv__img {
    top: -4rem;
    width: 84rem;
    margin-left: 40rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-mv__character1 {
    top: -8rem;
    right: 0;
    width: 58.7rem;
  }
  .p-mv__character2 {
    bottom: 27rem;
    width: 12.2rem;
    margin-right: -76rem;
  }
  .p-mv__character3 {
    bottom: 14rem;
    width: 11.5rem;
    margin-left: -72rem;
  }
}
@media screen and (min-width: 1600.98px), print {
  .p-mv__header {
    margin-bottom: 10rem;
  }
  .p-mv__characters::after {
    bottom: 0;
    width: 200rem;
  }
  .p-mv__character2 {
    bottom: 38rem;
    margin-right: -78rem;
  }
  .p-mv__character3 {
    bottom: 16rem;
    margin-left: -74rem;
  }
}

/* 事業所のご紹介 */
.p-top-intro__list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  position: relative;
  max-width: 36rem;
  margin-inline: auto;
  z-index: 10;
}
.p-top-intro__item {
  position: relative;
  padding-bottom: 4rem;
  overflow: hidden;
}
.p-top-intro__img {
  width: 12rem;
}
.p-top-intro__img .u-img-wrap {
  aspect-ratio: 1/1;
}
.p-top-intro__img img {
  transition: opacity var(--transition), transform var(--transition);
}
.p-top-intro__title {
  display: grid;
  place-content: center;
  line-height: 1.4;
  font-size: 1rem;
  padding: 0.5rem;
}
.p-top-intro__logo {
  display: grid;
  place-content: center;
  height: 4rem;
}
.p-top-intro__logo--whitecube img {
  width: 18rem;
}
.p-top-intro__logo--deepfryers img {
  width: 16rem;
}
.p-top-intro__more {
  font-size: 1.4rem;
}
.p-top-intro__more a:hover {
  text-decoration: none;
}
.p-top-intro__more a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
.p-top-intro__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  transition: background-color var(--transition);
}
.p-top-intro__link::after {
  content: "";
  display: block;
  width: 1.2ch;
  height: 1.2ch;
  margin: -0.1ch 0 0 1ch;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .p-top-intro__item:hover .p-top-intro__img img {
    opacity: 0.75;
    transform: scale(1.1);
  }
  .p-top-intro__item:hover .p-top-intro__link {
    background-color: var(--color-link);
  }
  .p-top-intro__item:hover .p-top-intro__title,
  .p-top-intro__item:hover .p-top-intro__title span {
    color: var(--color-link);
  }
}
@media screen and (min-width: 375px), print {
  .p-top-intro__title {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-top-intro__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 78rem;
  }
  .p-top-intro__img {
    width: 14rem;
  }
  .p-top-intro__title {
    font-size: 1.4rem;
  }
  .p-top-intro__more {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-intro__list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    max-width: none;
    margin: 0;
  }
  .p-top-intro__item {
    padding-bottom: 4.8rem;
  }
  .p-top-intro__img {
    width: 18rem;
  }
  .p-top-intro__img .u-img-wrap {
    aspect-ratio: 220/200;
  }
  .p-top-intro__title {
    font-size: 1.8rem;
  }
  .p-top-intro__logo {
    height: 5rem;
  }
  .p-top-intro__logo--whitecube img {
    width: 25.4rem;
  }
  .p-top-intro__logo--deepfryers img {
    width: 26.2rem;
  }
  .p-top-intro__link {
    height: 4.8rem;
  }
  .p-top-intro__link::after {
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-intro__img {
    width: 22rem;
  }
  .p-top-intro__title {
    font-size: 2.2rem;
  }
  .p-top-intro__more {
    font-size: 1.8rem;
  }
}

/* 活動内容 */
.p-top-service__section {
  position: relative;
  padding-bottom: 10rem;
}
.p-top-service__container {
  z-index: 1;
}
.p-top-service__heading {
  margin-bottom: 4rem;
}
.p-top-service__list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 5rem;
  margin-top: 5rem;
}
.p-top-service__item {
  padding: 0 2rem 3.4rem;
}
.p-top-service__img.__img1 .u-img-wrap {
  aspect-ratio: 450/300;
}
.p-top-service__img.__img2 {
  margin: -2.5rem 0 1.5rem;
}
.p-top-service__img.__img2 .u-img-wrap {
  aspect-ratio: 480/300;
}
.p-top-service__logo {
  padding: 4rem 0 3rem;
}
.p-top-service__logo img {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1rem;
}
.p-top-service__title {
  display: grid;
  place-content: center;
  margin-bottom: 2.5rem;
  padding: 1rem 0 1.2rem;
  line-height: 1.3;
  font-size: 2rem;
  text-align: center;
}
.p-top-service__text {
  font-size: 1.6rem;
}
.p-top-service__more {
  margin-top: 2.5rem;
}
.p-top-service__items {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 5rem;
  margin-top: -1rem;
}
.p-top-service__bg {
  position: absolute;
  pointer-events: none;
}
.p-top-service__bg--bg1 {
  top: 0;
  right: -10rem;
  width: 30rem;
}
.p-top-service__bg--bg2 {
  bottom: 2rem;
  left: -8rem;
  width: 30rem;
}
@media screen and (min-width: 768px), print {
  .p-top-service__section::before {
    content: "";
    display: block;
    position: absolute;
    top: -1rem;
    left: -2rem;
    width: calc(100% + 4rem);
    height: 40%;
    background: linear-gradient(to bottom, #f8eed9 0%, #f9f5ee 40%);
    pointer-events: none;
  }
  .p-top-service__img.__img1 {
    width: 50%;
    margin: 0 0 0 2rem;
  }
  .p-top-service__items {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
  }
  .p-top-service__items--item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__section::before {
    top: -1rem;
    left: -5rem;
    width: calc(100% + 10rem);
  }
  .p-top-service__item {
    padding: 0 6rem 4rem;
  }
  .p-top-service__img.__img1 {
    width: 45rem;
    margin: 0 0 0 4rem;
  }
  .p-top-service__logo {
    padding: 6rem 0 5rem;
  }
  .p-top-service__title {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
  .p-top-service__text {
    font-size: 1.8rem;
  }
  .p-top-service__more {
    margin-top: 3.5rem;
  }
  .p-top-service__items {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }
  .p-top-service__bg--bg1 {
    top: 0;
    right: -5rem;
    width: 44.9rem;
  }
  .p-top-service__bg--bg2 {
    top: 50%;
    bottom: auto;
    left: -5rem;
    width: 61.2rem;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1600.98px), print {
  .p-top-service__bg--bg1 {
    right: 50%;
    margin-right: -80rem;
  }
  .p-top-service__bg--bg2 {
    left: 50%;
    margin-left: -80rem;
    transform: translate(0, -50%);
  }
}

/* お知らせ */
.p-top-news__section {
  margin: 0 -2rem;
  padding: 0 2rem;
  background-color: #fff;
}
.p-top-news__container {
  padding: 5rem 0;
}
.p-top-news__caption {
  margin-top: 3rem;
}
.p-top-news__more {
  margin-top: 4rem;
}
@media screen and (min-width: 1100px), print {
  .p-top-news__section {
    margin: 0 -5rem;
    padding: 0 5rem;
  }
  .p-top-news__container {
    padding: 6rem 0;
  }
  .p-top-news__header {
    margin: 0 4rem 0 0;
    text-align: left;
  }
  .p-top-news__body {
    font-size: 1.1em;
  }
  .p-top-news__more {
    margin-top: 5rem;
  }
}

/* 相談・見学・お問い合わせ */
.p-contact__section {
  position: relative;
  margin: 0 -2rem -10rem;
  padding: 7rem 2rem;
  background: url(../img/base/img_contact.jpg) no-repeat center;
  background-size: cover;
}
.p-contact__section::after {
  content: "";
  aspect-ratio: 385/196;
  position: absolute;
  right: 0;
  bottom: -11rem;
  left: 0;
  display: block;
  width: 30rem;
  margin: auto;
  background: url(../img/base/img-character_4.png) center no-repeat;
  background-size: cover;
  pointer-events: none;
}
.p-contact__container {
  padding: 3rem 2rem;
}
.p-contact__heading {
  margin: 0 -2rem 3rem;
  line-height: 1.2;
  font-size: 2.2rem;
}
.p-contact__tel {
  max-width: 20ch;
  margin: 0 auto 3rem;
  font-size: 3rem;
}
.p-contact__tel .tel-link {
  display: flex;
  padding: 1.2rem 0 1.5rem;
  color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  transition: background-color var(--transition);
}
.p-contact__tel .tel-link::before {
  background-image: url(../img/base/icon-tel_wht.svg);
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__tel .tel-link[href]:hover {
    background-color: var(--color-hover);
  }
}
.p-contact__time {
  line-height: 1.35;
}
@media screen and (min-width: 375px), print {
  .p-contact__tel {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-contact__section::after {
    bottom: -14rem;
    width: 36rem;
  }
  .p-contact__heading {
    margin: 0 0 3rem;
    font-size: 2.8rem;
  }
  .p-contact__tel {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-contact__section {
    margin: 0 -5rem -15rem;
    padding: 10rem 5rem;
  }
  .p-contact__section::after {
    width: 38.5rem;
  }
  .p-contact__container {
    padding: 3rem;
  }
  .p-contact__heading {
    font-size: 3.4rem;
  }
  .p-contact__tel {
    font-size: 4.8rem;
  }
  .p-contact__time {
    font-size: 1.8rem;
  }
}

/* --------------------------------

  お知らせ

-------------------------------- */
.news-list {
  border-top: 1px solid var(--color-sub5);
}
.news-body {
  margin-top: 2.6rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-more {
  margin-top: 3rem;
  text-align: center;
}
.news-back {
  margin: 3rem 0 -2rem;
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--color-sub5);
}
.news-link {
  display: block;
  position: relative;
  padding: 1rem;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-sub5);
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-title {
  text-decoration: underline;
  color: var(--color-link);
}
.news-date {
  margin-bottom: 0.5rem;
  color: var(--color-link);
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
  color: var(--color-text);
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .news-link {
    display: flex;
    padding: 1.5rem 2rem;
  }
  .news-date {
    width: 14ch;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
  .news-back {
    margin-bottom: -3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-back {
    margin-bottom: -5rem;
  }
}

/* お知らせ一覧：サムネイル（大）*/
.news-list-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 2.5rem;
}
.news-list-img .news-link {
  display: block;
  height: 100%;
  padding: 0;
  text-align: center;
  border: none;
}
@media (hover: hover) and (pointer: fine) {
  .news-list-img .news-link:hover .news-img img {
    opacity: 0.75;
    transform: scale(1.1);
  }
}
.news-list-img .news-date {
  width: auto;
  margin: 1rem 0 -0.5rem;
  letter-spacing: 0.1em;
}
.news-list-img .news-title {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.news-list-img .news-img {
  aspect-ratio: 320/220;
  border-radius: 1rem;
  background-color: #f8f8f8;
}
.news-list-img .news-img img {
  transition: opacity var(--transition), transform var(--transition);
}
@media screen and (min-width: 768px), print {
  .news-list-img {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 3rem;
  }
  .news-list-img .news-title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img .news-title {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px), print {
  .news-list-img__secondary {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img__secondary {
    grid-column-gap: 2rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 5rem -2rem -2rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px), print {
  #topics_paging {
    margin-bottom: -3rem;
  }
}
@media screen and (min-width: 1100px), print {
  #topics_paging {
    margin-bottom: -5rem;
  }
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging_all + #topics_paging {
  margin-top: 2rem;
}
#topics_paging li {
  display: flex;
  align-items: center;
  margin: 0 0.5rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-sub8);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
#topics_paging a {
  display: block;
  margin: -1rem -1.5rem;
  padding: 1rem 1.5rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  border-radius: 0.35rem;
}
@media (hover: hover) and (pointer: fine) {
  #topics_paging a:hover {
    color: #fff;
    background-color: var(--color-link);
  }
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* ページ共通 */
.p-page__heading {
  margin-bottom: 3rem;
  line-height: 1.2;
  font-size: 1.6rem;
}
.p-page__logo {
  margin-bottom: 1.4ch;
}
.p-page-menu {
  max-width: 40ch;
  margin: 3rem auto 0;
}
.p-page-menu__item + .p-page-menu__item {
  margin-top: 2rem;
}
.p-page-menu__link {
  display: block;
  padding-top: 1.5rem;
  padding-bottom: 1.4rem;
  font-size: 1.6rem;
  text-align: left;
  border-radius: 1rem;
}
.p-page-menu__link::before {
  top: 0;
  width: 0.85ch;
  height: 0.85ch;
}
@media screen and (min-width: 768px), print {
  .p-page__heading {
    font-size: 1.8rem;
  }
  .p-page-menu {
    display: flex;
    justify-content: center;
    max-width: none;
    margin: 3rem 0 0;
  }
  .p-page-menu__item + .p-page-menu__item {
    margin-top: 0;
    margin-left: 2rem;
  }
  .p-page-menu__link {
    display: inline-block;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-page__heading {
    font-size: 2rem;
  }
  .p-page-menu__link {
    font-size: 2.4rem;
  }
}

/* 運営会社 */
.p-company__heading {
  margin-bottom: 3rem;
  line-height: 1.2;
  font-size: 3rem;
}
.p-company__logo {
  display: block;
  width: 19ch;
  margin: 0 auto 1.4ch;
}
.p-company__img {
  margin-top: 3rem;
}
.p-company__outline th {
  width: 15rem;
}
@media screen and (min-width: 768px), print {
  .p-company__heading {
    font-size: 3.4rem;
  }
  .p-company__logo {
    margin-inline: 0;
  }
  .p-company__img {
    width: 26rem;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-company__heading {
    font-size: 3.8rem;
  }
  .p-company__logo {
    width: 38.3rem;
    margin-bottom: 4rem;
  }
  .p-company__img {
    width: 30rem;
    margin-left: 4rem;
  }
}

/* 大豆製品の製造 */
.p-products__img {
  max-width: 30rem;
  margin: 0 auto 3rem;
}
.p-products__detail {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-products__img {
    width: 25rem;
    max-width: none;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-products__img {
    width: 45rem;
    margin-left: 4rem;
  }
}

/* 訪問販売 */
.p-sales__img {
  max-width: 30rem;
  margin: 0 auto 3rem;
}
.p-sales__detail {
  margin-top: 5rem;
}
.p-sales__more {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-sales__img {
    width: 30rem;
    max-width: none;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-sales__img {
    width: 45rem;
    margin-left: 4rem;
  }
}

/* 飲食店・ショップオーナー様へ */
.p-contact-owners {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-sub3);
}
.p-contact-owners__title {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
.p-contact-owners__text {
  margin-bottom: 1.5rem;
}
.p-contact-owners__tel .tel-link {
  font-size: 3.2rem;
  color: var(--color-sub2);
}
.p-contact-owners__tel .tel-link::before {
  background-image: url(../img/base/icon-tel_br.svg);
}
@media screen and (min-width: 768px), print {
  .p-contact-owners__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-contact-owners {
    padding: 2rem 2.5rem;
  }
  .p-contact-owners__title {
    font-size: 2.4rem;
  }
  .p-contact-owners__tel .tel-link {
    font-size: 4.1rem;
  }
}

/* 豆腐ができるまで */
.p-soy-flow {
  counter-reset: soy_flow;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
}
.p-soy-flow__img {
  position: relative;
  padding: 1.5rem 0 0 1.5rem;
}
.p-soy-flow__img .u-img-wrap {
  aspect-ratio: 435/285;
}
.p-soy-flow__caption {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.p-soy-flow__counter {
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 4rem;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 100%;
  border: 3px solid currentColor;
  background-color: var(--color-sub1);
}
.p-soy-flow__counter::before {
  counter-increment: soy_flow;
  content: counter(soy_flow, decimal-leading-zero);
}
.p-soy-flow__more {
  margin-bottom: -2rem;
  padding: 3rem 0;
}
@media screen and (min-width: 768px), print {
  .p-soy-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-soy-flow__more {
    margin-bottom: -3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-soy-flow {
    grid-column-gap: 3rem;
    grid-row-gap: 2.5rem;
  }
  .p-soy-flow__img {
    padding: 2rem 0 0 2rem;
  }
  .p-soy-flow__caption {
    font-size: 1.4rem;
  }
  .p-soy-flow__counter {
    width: 5rem;
    font-size: 2.4rem;
  }
  .p-soy-flow__more {
    margin-bottom: -5rem;
    padding: 5rem 0;
  }
}

/* オリジナルプリント製品の製造と販売 */
.p-goods__img {
  max-width: 30rem;
  margin: 0 auto 3rem;
}
.p-goods__detail {
  margin-top: 5rem;
}
.p-goods__more {
  padding: 3rem 0 1rem;
}
@media screen and (min-width: 768px), print {
  .p-goods__img {
    width: 30rem;
    max-width: none;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-goods__img {
    width: 45rem;
    margin-left: 4rem;
  }
  .p-goods__more {
    padding: 5rem 0 0;
  }
}

/* ご注文の流れ */
.p-goods-flow {
  counter-reset: goods_flow;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 3.6rem;
  max-width: 30rem;
  margin-inline: auto;
  padding: 1.5rem 0 0;
}
.p-goods-flow__item {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 0 2rem 0 2rem;
}
.p-goods-flow__counter {
  display: grid;
  place-content: center;
  position: absolute;
  top: -2.3rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 4.6rem;
  height: 4.6rem;
  font-size: 2.4rem;
  color: #fff;
  border-radius: 100%;
  border: 3px solid currentColor;
}
.p-goods-flow__counter::before {
  counter-increment: goods_flow;
  content: counter(goods_flow, decimal-leading-zero);
}
.p-goods-flow__label {
  display: block;
  position: relative;
}
.p-goods-flow__note {
  display: block;
  position: absolute;
  left: -10%;
  width: 120%;
  margin-top: 0.5rem;
  font-size: 1rem;
  letter-spacing: normal;
}
@media screen and (min-width: 480px), print {
  .p-goods-flow {
    grid-template-columns: repeat(3, 1fr);
    max-width: 50rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-goods-flow {
    max-width: 56rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-goods-flow {
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 2rem;
    max-width: none;
    margin-inline: 0;
  }
}

/* 店舗販売 */
.p-store__img {
  max-width: 30rem;
  margin: 0 auto 3rem;
}
.p-store__detail {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-store__img {
    width: 30rem;
    max-width: none;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-store__img {
    width: 45rem;
    margin-left: 4rem;
  }
}

/* こんなシーンで喜ばれています！ */
.p-goods-scene {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.p-goods-scene__col {
  padding: 2rem;
}
.p-goods-scene__label {
  display: grid;
  place-content: center;
  width: 20rem;
  height: 4rem;
  margin: auto;
  font-size: 1.6rem;
  border-radius: 10em;
  border: 3px solid #fff;
}
.p-goods-scene dt {
  margin-top: -2rem;
  padding: 2rem 0 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-goods-scene {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-goods-scene__col {
    padding: 2rem 2.4rem;
  }
  .p-goods-scene__label {
    font-size: 2rem;
  }
  .p-goods-scene dt {
    padding: 2.5rem 0 2rem;
  }
}

/* ご利用の流れ */
.p-flow__section {
  counter-reset: flow_list;
}
.p-flow__item {
  position: relative;
}
.p-flow__item:not(:last-child) {
  margin-bottom: 7rem;
}
.p-flow__item:not(:last-child)::before {
  content: "";
  aspect-ratio: 5/2.8;
  display: block;
  position: absolute;
  right: 0;
  bottom: -5rem;
  left: 0;
  width: 4rem;
  margin: auto;
  background-color: var(--color-base);
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  pointer-events: none;
}
.p-flow__heading {
  display: block;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
  border-bottom: 3px solid var(--color-sub8);
}
.p-flow__heading::before {
  counter-increment: flow_list;
  content: counter(flow_list);
  display: grid;
  place-content: center;
  width: 2.4ch;
  height: 2.4ch;
  margin: 0 auto 1rem;
  padding: 0 0 0.15ch 0.15ch;
  line-height: 1em;
  border-radius: 100%;
  border: 3px solid currentColor;
}
.p-flow__heading::after {
  display: none;
}
.p-flow__img {
  margin-top: 3rem;
  padding-bottom: 3rem;
}
.p-flow__outline {
  margin-top: 2rem;
}
.p-flow__outline th {
  width: 15rem;
}
.p-flow__list {
  margin-top: 1.5em;
}
@media screen and (min-width: 1100px), print {
  .p-flow__item:not(:last-child) {
    margin-bottom: 9rem;
  }
  .p-flow__item:not(:last-child)::before {
    bottom: -6.2rem;
    width: 5rem;
  }
  .p-flow__heading {
    position: relative;
    margin-bottom: 3.5rem;
    padding: 0 0 3.5rem 3.5ch;
    text-align: left;
    border-bottom-width: 5px;
  }
  .p-flow__heading::before {
    position: absolute;
    top: -0.15ch;
    left: 0;
    margin: 0;
  }
  .p-flow__img {
    margin: 0 0 0 5rem;
  }
}

/* 事業所紹介 */
.p-overview__menu:not(:last-child) {
  margin-bottom: 5rem;
}
.p-overview__outline th {
  width: 15rem;
}
.p-overview__map {
  height: 30rem;
  margin: 4rem 0 3rem;
}
.p-overview__img {
  max-width: 30rem;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px), print {
  .p-overview__img {
    max-width: 40rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-overview__img {
    width: 45rem;
    max-width: none;
    margin: 0 0 0 5rem;
  }
}

/* 人に喜ばれる仕事 */
.p-overview-jobs {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.p-overview-jobs__caption {
  padding: 1rem 0;
  border-radius: 1rem 1rem 0 0;
}
.p-overview-jobs__way {
  font-size: 2rem;
}
.p-overview-jobs__label {
  padding: 1rem 0;
  font-size: 2.2rem;
  letter-spacing: none;
}
.p-overview-jobs__text {
  margin-top: 1rem;
}
@media screen and (min-width: 480px), print {
  .p-overview-jobs__caption {
    height: 4.6rem;
    padding: 0 1.8rem;
  }
  .p-overview-jobs__job {
    padding: 0.5ch 0 0;
  }
  .p-overview-jobs__way {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px), print {
  .p-overview-jobs__label {
    padding: 0.5rem;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-overview-jobs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px), print {
  .p-overview-jobs__label {
    font-size: 3rem;
  }
}

/* 送迎場所 */
.p-transfer {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.p-transfer__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0px;
}
.p-transfer__title {
  padding: 2rem 0;
}
.p-transfer__label {
  display: inline-flex;
  align-items: center;
  height: 6rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 10em;
}
.p-transfer__map {
  height: 30rem;
}
.p-transfer__more {
  padding: 2rem 0;
}
@media screen and (min-width: 768px), print {
  .p-transfer__label {
    height: 5rem;
    font-size: 2rem;
  }
  .p-transfer__map {
    margin: 0 3rem;
  }
  .p-transfer__more {
    padding: 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-transfer {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */