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

base

---------------------------------*/
:root {
  --layout-width: 570px;
  --z-index-hamburger: 10000;
  --z-index-drawer: 1000;
  --z-index-header: 100;
  --z-index-float-button: 10;
  --color-primary: #74541B;
  --color-secondary: #CF4E33;
  --color-white: #FFF;
  --color-gray: #B2B2B2;
  --color-gray02: #626262;
  --color-gray03: #C1C1C1;
  --color-blue: #4485EC;
  --bg-color-primary: #FFFAF0;
  --bg-color-secondary: #FFFAEF;
  --bg-color-gray: #EAE5DD;
  --bg-color-gray02: #F2EDE4;
  --bg-color-red: #F4706A;
  --bg-color-orange: #F9AD43;
  --bg-color-yellow: #FDE67A;
  --bg-color-yellow02: #FEF5CA;
  --bg-color-green: #EAF4DB;
  --bg-color-green02: #DCECC2;
  --bg-color-green03: #E8F4D7;
  --bg-color-green04: #80AE00;
  --bg-color-pink: #F8DAD4;
  --font-primary: "Kosugi Maru", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-zen: "Zen Maru Gothic", sans-serif;
  --line-height-base: 1.75;
  --line-height-sm: 1.45;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  vertical-align: baseline;
}

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

body {
  background-color: var(--bg-color-primary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

li, dd {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: bottom;
}

[type=checkbox],
[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

[type=checkbox] + span,
[type=radio] + span {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 0 0 1.2em;
  cursor: pointer;
}

[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  background: #FFF;
  content: "";
}

[type=checkbox] + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  rotate: -45deg;
  opacity: 0;
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  content: "";
}

[type=checkbox]:checked + span::after {
  opacity: 1;
}

[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  border-radius: 50%;
  background: #FFF;
  content: "";
}

[type=radio] + span::after {
  position: absolute;
  top: 50%;
  left: 4px;
  translate: 0 -50%;
  opacity: 0;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid transparent;
  border-radius: 50%;
  background: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  content: "";
}

[type=radio]:checked + span::after {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*---------------------------------

Layout

---------------------------------*/
/*
    l-wrapper
---------------------------------*/
.l-wrapper {
  min-height: 100vh;
}

/*
    l-pc-left
---------------------------------*/
.l-pc-left {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(50% - var(--layout-width) / 2);
  height: 100vh;
}
.l-pc-left::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.05)), to(transparent));
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0.05), transparent);
  content: "";
}

/*
    l-pc-right
---------------------------------*/
.l-pc-right {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(50% - var(--layout-width) / 2);
  height: 100vh;
}
.l-pc-right::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.05)), to(transparent));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.05), transparent);
  content: "";
}

/*
    l-low-header
---------------------------------*/
.l-low-header {
  position: sticky;
  top: 0;
  z-index: var(--z-index-header);
  height: 6.25rem;
}

@media (max-width: 590px) {
  .l-low-header {
    height: 5rem;
  }
}
/*
    l-footer
---------------------------------*/
/*
    l-main
---------------------------------*/
.l-main {
  position: relative;
  z-index: 1;
  width: var(--layout-width);
  max-width: 100%;
  margin-inline: auto;
}

/*
    l-section
---------------------------------*/
.l-section {
  padding-block: 3.75rem;
}

.l-section.l-section--pb0 {
  -webkit-padding-after: 0;
          padding-block-end: 0;
}

/*
    l-inner
---------------------------------*/
.l-inner {
  padding-inline: 35px;
}

@media (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
  }
}
/*---------------------------------

Component

---------------------------------*/
/*
    c-hamburger
---------------------------------*/
.c-hamburger {
  display: block;
  position: fixed;
  top: 0;
  right: calc(50% - 285px);
  z-index: var(--z-index-hamburger);
  width: 100px;
  height: 100px;
}

.l-low-header .c-hamburger {
  position: absolute;
  right: 0;
}

.c-hamburger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  translate: -50%;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
  -webkit-transition: translate 0.3s, rotate 0.3s;
  transition: translate 0.3s, rotate 0.3s;
}

.c-hamburger span:nth-child(1) {
  top: 39px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.c-hamburger span:nth-child(2) {
  top: 49px;
}

.c-hamburger span:nth-child(3) {
  top: 59px;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.c-hamburger.is-active span {
  translate: -65%;
}

.c-hamburger.is-active span:nth-child(1) {
  rotate: -45deg;
}

.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-child(3) {
  rotate: 45deg;
}

@media (max-width: 590px) {
  .c-hamburger {
    right: 0;
    width: 80px;
    height: 80px;
  }
  .c-hamburger span:nth-child(1) {
    top: 29px;
  }
  .c-hamburger span:nth-child(2) {
    top: 39px;
  }
  .c-hamburger span:nth-child(3) {
    top: 49px;
  }
}
/*  
    c-button
---------------------------------*/
.c-button {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 22.5rem;
  max-width: 100%;
  min-height: 3.75rem;
  padding: 0.5em 2.5em;
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: var(--line-height-base);
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-button:focus-visible {
  background: var(--color-white);
  color: var(--color-primary);
}

.c-button__arrow {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  translate: 0 -50%;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-button__arrow::before {
  display: inline-block;
  width: 0.375rem;
  height: 0.4375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 10%;
  background-color: var(--color-primary);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  content: "";
}

.c-button:focus-visible .c-button__arrow {
  background-color: var(--color-primary);
}
.c-button:focus-visible .c-button__arrow::before {
  background-color: var(--color-white);
}

.c-button.c-button--reverse {
  background-color: var(--color-white);
  color: var(--color-primary);
}
.c-button.c-button--reverse:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.c-button.c-button--reverse .c-button__arrow {
  background-color: var(--color-primary);
}
.c-button.c-button--reverse .c-button__arrow::before {
  background-color: var(--color-white);
}

.c-button.c-button--reverse:focus-visible .c-button__arrow {
  background-color: var(--color-white);
}
.c-button.c-button--reverse:focus-visible .c-button__arrow::before {
  background-color: var(--color-primary);
}

.c-button.c-button--type02 {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}
.c-button.c-button--type02:focus-visible {
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.c-button.c-button--type02 .c-button__arrow::before {
  background-color: var(--color-secondary);
}

.c-button.c-button--type02:focus-visible .c-button__arrow {
  background-color: var(--color-secondary);
}
.c-button.c-button--type02:focus-visible .c-button__arrow::before {
  background-color: var(--color-white);
}

.c-button.c-button--sm {
  place-items: center start;
  min-height: 3.125rem;
  padding: 0.5em 2.8em 0.6em 1.7em;
  font-size: 1rem;
  text-align: left;
}

.c-button.c-button--sm .c-button__arrow {
  width: 1rem;
  height: 1rem;
}
.c-button.c-button--sm .c-button__arrow::before {
  width: 0.3125rem;
  height: 0.375rem;
}

@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    background: var(--color-white);
    color: var(--color-primary);
  }
  .c-button:hover .c-button__arrow {
    background-color: var(--color-primary);
  }
  .c-button:hover .c-button__arrow::before {
    background-color: var(--color-white);
  }
  .c-button.c-button--reverse:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-button.c-button--reverse:hover .c-button__arrow {
    background-color: var(--color-white);
  }
  .c-button.c-button--reverse:hover .c-button__arrow::before {
    background-color: var(--color-primary);
  }
  .c-button.c-button--type02:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
  }
  .c-button.c-button--type02:hover .c-button__arrow {
    background-color: var(--color-secondary);
  }
  .c-button.c-button--type02:hover .c-button__arrow::before {
    background-color: var(--color-white);
  }
}
@media (max-width: 767px) {
  .c-button {
    min-height: 3.125rem;
    font-size: 1rem;
  }
  .c-button.c-button--sm {
    font-size: 0.75rem;
  }
  .c-button.c-button--sm .c-button__arrow {
    width: 0.75rem;
    height: 0.75rem;
  }
  .c-button.c-button--sm .c-button__arrow::before {
    width: 0.25rem;
    height: 0.3125rem;
  }
}
/*  
    c-button02
---------------------------------*/
.c-button02 {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 22.5rem;
  max-width: 100%;
  min-height: 6.25rem;
  padding: 0.3em 1em;
  border-radius: 9999px;
  border: 1px solid var(--color-secondary);
  background-color: var(--color-white);
  color: var(--color-secondary);
  font-family: var(--font-noto);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.c-button02:focus-visible {
  border-color: var(--color-white);
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.c-button02__arrow {
  display: grid;
  place-items: center;
  position: absolute;
  right: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-button02__arrow::before {
  display: inline-block;
  width: 0.375rem;
  height: 0.4375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 10%;
  background-color: var(--color-white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  content: "";
}

.c-button02:focus-visible .c-button02__arrow {
  background-color: var(--color-white);
}
.c-button02:focus-visible .c-button02__arrow::before {
  background-color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .c-button02:hover {
    border-color: var(--color-white);
    background-color: var(--color-secondary);
    color: var(--color-white);
  }
  .c-button02:hover .c-button02__arrow {
    background-color: var(--color-white);
  }
  .c-button02:hover .c-button02__arrow::before {
    background-color: var(--color-secondary);
  }
}
@media (max-width: 767px) {
  .c-button02 {
    min-height: 5rem;
    font-size: 2rem;
  }
}
/*  
    c-button03
---------------------------------*/
.c-button03 {
  display: grid;
  grid-template-columns: 1fr auto;
  place-items: center start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  min-height: 4.375rem;
  padding: 0.5em 0.9em 0.5em 1.5em;
  border-radius: 20px;
  background-color: var(--color-white);
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1.25rem;
  line-height: var(--line-height-base);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-button03:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
}

.c-button03__arrow {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-button03__arrow::before {
  display: inline-block;
  width: 0.375rem;
  height: 0.4375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 10%;
  background-color: var(--color-white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  content: "";
}

.c-button03:focus-visible .c-button03__arrow {
  background-color: var(--color-white);
}
.c-button03:focus-visible .c-button03__arrow::before {
  background-color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .c-button03:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
  .c-button03:hover .c-button03__arrow {
    background-color: var(--color-white);
  }
  .c-button03:hover .c-button03__arrow::before {
    background-color: var(--color-primary);
  }
}
@media (max-width: 767px) {
  .c-button03 {
    min-height: 3.5rem;
    padding: 0.5em 0.9em 0.5em 1.2em;
    border-radius: 16px;
    font-size: 1rem;
  }
  .c-button03__arrow {
    width: 1rem;
    height: 1rem;
  }
  .c-button03__arrow::before {
    width: 0.3125rem;
    height: 0.375rem;
  }
}
/*
    c-heading
---------------------------------*/
.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  position: relative;
  -webkit-padding-after: 1.5625rem;
          padding-block-end: 1.5625rem;
  font-family: var(--font-zen);
  font-weight: 700;
  text-align: center;
}
.c-heading::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 3.125rem;
  height: 0.625rem;
  background-image: url(../images/common/title-dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.c-heading__ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.375rem;
  line-height: 1.4;
}

.c-heading__ja span {
  display: inline-block;
  opacity: 0;
  translate: 0 50%;
  -webkit-transition: opacity 0.5s, translate 0.5s;
  transition: opacity 0.5s, translate 0.5s;
}

.c-heading__ja.is-show span {
  opacity: 1;
  translate: 0 0;
}

.c-heading__en {
  color: var(--color-secondary);
  font-size: 1.5rem;
  line-height: 1.2;
}

.c-heading.c-heading--sm .c-heading__ja {
  font-size: 1.75rem;
}

.c-heading.c-heading--sm .c-heading__en {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .c-heading {
    -webkit-padding-after: 1.375rem;
            padding-block-end: 1.375rem;
  }
  .c-heading::after {
    width: 2.5rem;
    height: 0.5rem;
  }
  .c-heading__ja {
    font-size: 1.6875rem;
  }
  .c-heading__en {
    font-size: 1.125rem;
  }
  .c-heading.c-heading--sm .c-heading__ja {
    font-size: 1.1875rem;
  }
  .c-heading.c-heading--sm .c-heading__en {
    font-size: 0.9375rem;
  }
}
/*
    c-label-title
---------------------------------*/
.c-label-title {
  padding-inline: 1em;
  border-radius: 8px;
  background-color: var(--bg-color-yellow);
  color: var(--color-secondary);
  font-family: var(--font-zen);
  font-size: 1.75rem;
  line-height: var(--line-height-sm);
  text-align: center;
}

@media (max-width: 767px) {
  .c-label-title {
    border-radius: 6px;
    font-size: 1.375rem;
  }
}
/*
    c-label-title02
---------------------------------*/
.c-label-title02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 17.5rem;
  padding: 0.08em 1em;
  margin-inline: auto;
  border-radius: 9999px;
  background-color: var(--bg-color-yellow);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: var(--line-height-sm);
  text-align: center;
}

@media (max-width: 767px) {
  .c-label-title02 {
    min-width: 15.625rem;
    font-size: 1.125rem;
  }
}
/*
    c-label-title03
---------------------------------*/
.c-label-title03 {
  padding: 7px 16px;
  border-radius: 8px;
  background-color: var(--bg-color-yellow);
  font-family: var(--font-zen);
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.c-label-title03.c-label-title03--type02 {
  background-color: var(--bg-color-green03);
}

@media (max-width: 767px) {
  .c-label-title03 {
    font-size: 1.25rem;
  }
}
/*
    c-label-title04
---------------------------------*/
.c-label-title04 {
  display: grid;
  place-items: center;
  min-height: 4.75rem;
  padding: 0.5em 1.3em;
  border-radius: 9999px;
  background-color: var(--bg-color-pink);
  font-family: var(--font-zen);
  font-size: 1.625rem;
  line-height: var(--line-height-sm);
  text-align: center;
}

@media (max-width: 767px) {
  .c-label-title04 {
    min-height: 3.5rem;
    font-size: 1.25rem;
  }
}
/*
    c-dot-title
---------------------------------*/
.c-dot-title {
  position: relative;
  -webkit-padding-after: 0.75em;
          padding-block-end: 0.75em;
  color: var(--color-secondary);
  background-image: url(../images/common/title-dot02.png);
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 9px 5px;
  font-family: var(--font-zen);
  font-size: 2rem;
  line-height: 1.375;
  text-align: center;
}

.c-dot-title span {
  font-size: 1.6875rem;
}

@media (max-width: 767px) {
  .c-dot-title {
    background-size: 7px 4px;
    font-size: 1.4375rem;
  }
  .c-dot-title span {
    font-size: 1.125rem;
  }
}
/*
    c-dot-title02
---------------------------------*/
.c-dot-title02 {
  position: relative;
  -webkit-padding-after: 0.65em;
          padding-block-end: 0.65em;
  background-image: url(../images/common/title-dot02.png);
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 9px 5px;
  font-family: var(--font-zen);
  font-size: 2.5rem;
  line-height: 1.375;
  text-align: center;
}

.c-dot-title02 span {
  color: var(--color-secondary);
}

@media (max-width: 767px) {
  .c-dot-title02 {
    background-size: 7px 4px;
    font-size: 1.75rem;
  }
}
/*
    c-border-title
---------------------------------*/
.c-border-title {
  -webkit-padding-after: 0.3em;
          padding-block-end: 0.3em;
  -webkit-border-after: 1px solid;
          border-block-end: 1px solid;
  color: var(--color-secondary);
  font-family: var(--font-zen);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line-height-sm);
}

@media (max-width: 767px) {
  .c-border-title {
    font-size: 1.25rem;
  }
}
/*
    c-title
---------------------------------*/
.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-zen);
  font-size: 1.875rem;
  line-height: var(--line-height-sm);
  text-align: center;
}

.c-title.c-title--secondary {
  color: var(--color-secondary);
}

.c-title span {
  display: inline-block;
  opacity: 0;
  translate: 0 50%;
  -webkit-transition: opacity 0.5s, translate 0.5s;
  transition: opacity 0.5s, translate 0.5s;
}

.c-title.is-show span {
  opacity: 1;
  translate: 0 0;
}

@media (max-width: 767px) {
  .c-title {
    font-size: 1.5rem;
  }
}
/*
    c-title02
---------------------------------*/
.c-title02 {
  color: var(--color-secondary);
  font-family: var(--font-zen);
  font-size: 2.375rem;
  letter-spacing: -0.12em;
  line-height: 1.26;
  text-align: center;
}

.c-title02 span {
  display: inline-block;
  opacity: 0;
  translate: 0 50%;
  -webkit-transition: opacity 0.5s, translate 0.5s;
  transition: opacity 0.5s, translate 0.5s;
}

.c-title02.is-show span {
  opacity: 1;
  translate: 0 0;
}

@media (max-width: 767px) {
  .c-title02 {
    font-size: 1.875rem;
  }
}
/*
    c-text
---------------------------------*/
.c-text {
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}

@media (max-width: 767px) {
  .c-text {
    font-size: 1rem;
  }
}
/*
    c-entry
---------------------------------*/
.c-entry {
  display: none;
  position: fixed;
  right: calc(50% - var(--layout-width) / 2);
  bottom: 10px;
  z-index: var(--z-index-float-button);
  opacity: 0;
  visibility: hidden;
  height: 4.6875rem;
  padding: 16px;
  border: 3px solid var(--color-secondary);
  -webkit-border-end: none;
          border-inline-end: none;
  border-radius: 20px 0 0 20px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: 1.125rem;
  font-weight: 700;
  -webkit-transition: opacity 0.3s, visibility 0.3s ease-out, background-color 0.3s, color 0.3s;
  transition: opacity 0.3s, visibility 0.3s ease-out, background-color 0.3s, color 0.3s;
}
.c-entry:focus-visible {
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.c-entry.is-active {
  opacity: 1;
  visibility: visible;
}

.c-entry__arrow {
  display: grid;
  place-items: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: var(--color-white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-entry__arrow::before {
  display: inline-block;
  width: 0.3125rem;
  height: 0.375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 10%;
  background-color: var(--color-secondary);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  content: "";
}

.c-entry:focus-visible .c-entry__arrow {
  background-color: var(--color-secondary);
}
.c-entry:focus-visible .c-entry__arrow::before {
  background-color: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
  .c-entry:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
  }
  .c-entry:hover .c-entry__arrow {
    background-color: var(--color-secondary);
  }
  .c-entry:hover .c-entry__arrow::before {
    background-color: var(--color-white);
  }
}
@media (max-width: 1200px) {
  .c-entry {
    display: inline-grid;
    place-items: center;
    grid-template-columns: 1fr auto;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media (max-width: 590px) {
  .c-entry {
    right: 0;
  }
}
/*
    c-movie
---------------------------------*/
.c-movie {
  position: relative;
  aspect-ratio: 500/280;
  overflow: hidden;
  border-radius: 20px;
}

.c-movie__cover {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.c-movie iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .c-movie__cover img {
    width: 70px;
  }
}
/*
    c-border-img
---------------------------------*/
.c-border-img {
  border: 6px solid var(--color-white);
  border-radius: 20px;
}

/*
    c-breadcrumb
---------------------------------*/
.c-breadcrumb {
  display: grid;
  place-items: center start;
  min-height: 2.5rem;
  padding: 8px 20px;
  background-color: var(--bg-color-gray02);
  font-family: var(--font-noto);
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: var(--line-height-sm);
}

.c-breadcrumb ol li {
  display: inline;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}

.c-breadcrumb ol li + li {
  position: relative;
  -webkit-padding-start: 0.9em;
          padding-inline-start: 0.9em;
}
.c-breadcrumb ol li + li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-secondary);
  content: ">";
}

.c-breadcrumb ol li a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-breadcrumb ol li a:focus-visible {
  color: var(--color-secondary);
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb ol li a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .c-breadcrumb {
    min-height: 2rem;
    font-size: 0.75rem;
  }
}
/*
    c-pagination
---------------------------------*/
.c-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}

.c-pagination a,
.c-pagination span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  background-color: var(--color-white);
  font-size: 1.25rem;
}

.c-pagination a:not(.prev):not(.next) {
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-pagination a:not(.prev):not(.next):focus-visible {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.c-pagination span.current {
  background-color: var(--bg-color-gray);
}

.c-pagination .prev,
.c-pagination .next {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  color: transparent;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-pagination .prev::before,
.c-pagination .next::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
}
.c-pagination .prev:focus-visible,
.c-pagination .next:focus-visible {
  opacity: 0.7;
}

.c-pagination .prev::before {
  rotate: 45deg;
  translate: -30% -50%;
  -webkit-border-start: 4px solid var(--color-white);
          border-inline-start: 4px solid var(--color-white);
  -webkit-border-after: 4px solid var(--color-white);
          border-block-end: 4px solid var(--color-white);
}

.c-pagination .next::before {
  rotate: -45deg;
  translate: -70% -50%;
  -webkit-border-end: 4px solid var(--color-white);
          border-inline-end: 4px solid var(--color-white);
  -webkit-border-after: 4px solid var(--color-white);
          border-block-end: 4px solid var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
  .c-pagination a:not(.prev):not(.next):hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-pagination .prev:hover,
  .c-pagination .next:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .c-pagination a,
  .c-pagination span {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.125rem;
  }
  .c-pagination .prev::before,
  .c-pagination .next::before {
    width: 0.75rem;
    height: 0.75rem;
  }
  .c-pagination .prev::before {
    border-inline-start-width: 3px;
    border-block-end-width: 3px;
  }
  .c-pagination .next::before {
    border-inline-end-width: 3px;
    border-block-end-width: 3px;
  }
}
/*
    c-fadeIn
---------------------------------*/
.c-fadeIn {
  opacity: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.8s, translate 0.8s;
  transition: opacity 0.8s, translate 0.8s;
}

.c-fadeIn.is-show {
  opacity: 1;
  translate: 0 0;
}

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

Project

---------------------------------*/
/*
    p-pc-left
---------------------------------*/
.p-pc-left {
  background-image: url(../images/common/pc_bg_left.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: min(852px, 127%) auto;
}

.p-pc-left__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 17vh 100px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  text-align: center;
}

.p-pc-left__logo {
  display: grid;
  place-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-pc-left__logo:focus-visible {
  opacity: 0.7;
}

.p-pc-left__logo-text {
  color: var(--color-secondary);
  font-family: var(--font-noto);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.p-pc-left__logo-icon {
  display: inline-block;
  -webkit-margin-before: 1.125rem;
          margin-block-start: 1.125rem;
}

.p-pc-left__logo-title {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

.p-pc-left__list {
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}

.p-pc-left__list img {
  max-width: 62%;
}

@media (hover: hover) and (pointer: fine) {
  .p-pc-left__logo:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1600px) {
  .p-pc-left__inner {
    padding: 17vh 60px;
  }
  .p-pc-left__logo-text {
    font-size: 1.875vw;
  }
}
@media (max-width: 1400px) {
  .p-pc-left__inner {
    padding: 17vh 40px;
  }
  .p-pc-left__list img {
    max-width: 70%;
  }
}
@media (max-width: 1200px) {
  .p-pc-left {
    background-size: 391px auto;
  }
  .p-pc-left__inner {
    display: none;
  }
}
@media (max-height: 900px) {
  .p-pc-left {
    background-size: min(66vh, 127%) auto;
  }
}
@media (max-height: 750px) {
  .p-pc-left {
    background-size: min(48vh, 127%) auto;
  }
}
/*
    p-pc-right
---------------------------------*/
.p-pc-right {
  background-image: url(../images/common/pc_bg_right.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: min(564px, 85%) auto;
}

.p-pc-right__inner {
  display: grid;
  place-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 17vh 85px;
}

.p-pc-right__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.p-pc-right__entry {
  position: absolute;
  right: 85px;
  bottom: 40px;
  max-width: min(10.94vw, 20.8vh);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-pc-right__entry:focus-visible {
  opacity: 0.7;
}

@media (hover: hover) and (pointer: fine) {
  .p-pc-right__entry:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1700px) {
  .p-pc-right__inner {
    padding: 17vh 70px;
  }
  .p-pc-right__entry {
    right: 70px;
  }
}
@media (max-width: 1600px) {
  .p-pc-right__inner {
    padding: 17vh 45px;
  }
  .p-pc-right__entry {
    right: 45px;
  }
}
@media (max-width: 1500px) {
  .p-pc-right__list {
    display: block;
    max-height: 60vh;
    -webkit-padding-end: 20px;
            padding-inline-end: 20px;
    overflow-y: auto;
  }
  .p-pc-right__list-block + .p-pc-right__list-block {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
  .p-pc-right__entry {
    right: 60px;
    bottom: 40px;
    max-width: 9vw;
  }
}
@media (max-width: 1300px) {
  .p-pc-right__inner {
    padding: 17vh 40px;
  }
  .p-pc-right__entry {
    right: 55px;
  }
}
@media (max-width: 1200px) {
  .p-pc-right {
    background-size: 260px auto;
  }
  .p-pc-right__inner {
    display: none;
  }
}
@media (max-height: 1000px) {
  .p-pc-right__entry {
    bottom: 30px;
  }
}
@media (max-height: 900px) {
  .p-pc-right {
    background-size: min(48vh, 85%) auto;
  }
  .p-pc-right__entry {
    max-width: min(10.94vw, 17vh);
  }
}
@media (max-height: 800px) {
  .p-pc-right__entry {
    bottom: 20px;
    max-width: min(10.94vw, 17vh);
  }
}
@media (max-height: 700px) {
  .p-pc-right__list {
    max-height: 88%;
    overflow-y: auto;
    -webkit-padding-end: 20px;
            padding-inline-end: 20px;
  }
}
/*
    p-home-header
---------------------------------*/
.p-home-header {
  padding-block: 3.5rem 2.5rem;
}

.p-home-header__logo-link {
  display: block;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-home-header__logo-link:focus-visible {
  opacity: 0.7;
}

.p-home-header__logo-text {
  color: var(--color-secondary);
  font-family: var(--font-noto);
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-home-header__logo-title {
  -webkit-margin-before: 0.875rem;
          margin-block-start: 0.875rem;
}

.p-home-header__list {
  -webkit-margin-before: 1.375rem;
          margin-block-start: 1.375rem;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .p-home-header__logo-link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .p-home-header__list img {
    max-width: 87%;
  }
}
/*
    p-low-header
---------------------------------*/
.p-low-header {
  background-color: var(--bg-color-secondary);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.p-low-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-inline: 22px;
}

.p-low-header__logo-link {
  display: inline-block;
  width: 184px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-low-header__logo-link:focus-visible {
  opacity: 0.7;
}

.p-low-header__text {
  position: relative;
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  color: var(--color-secondary);
  font-family: var(--font-noto);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.p-low-header__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 1px;
  height: 3.125rem;
  background-color: rgba(122, 82, 5, 0.5);
  content: "";
}

@media (hover: hover) and (pointer: fine) {
  .p-low-header__logo-link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 590px) {
  .p-low-header__inner {
    padding-inline: 20px;
  }
  .p-low-header__logo-link {
    width: 110px;
  }
  .p-low-header__text {
    -webkit-padding-start: 14px;
            padding-inline-start: 14px;
    -webkit-margin-start: 14px;
            margin-inline-start: 14px;
    font-size: 1rem;
  }
  .p-low-header__text::before {
    height: 2rem;
  }
}
/*
    p-drawer
---------------------------------*/
.p-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: var(--z-index-drawer);
  translate: -50%;
  width: var(--layout-width);
  max-width: 100%;
  background-color: var(--bg-color-primary);
  -webkit-transition: opacity 0.3s, visibility 0.3s ease-out;
  transition: opacity 0.3s, visibility 0.3s ease-out;
}

.p-drawer[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-drawer__inner {
  height: 100%;
  padding: 100px 40px;
  overflow-y: auto;
}

.p-drawer .p-menu__item-link {
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}

/*
    p-footer
---------------------------------*/
.p-footer {
  position: relative;
}

.p-footer__body {
  padding-block: 5rem 4.625rem;
  background-color: var(--bg-color-gray);
}

.p-footer__inner {
  padding-inline: 30px;
}

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

.p-footer__logo-link {
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer__logo-link:focus-visible {
  opacity: 0.7;
}

.p-footer__address {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  font-size: 1.125rem;
  line-height: var(--line-height-sm);
  text-align: center;
}

.p-footer__contact {
  -webkit-margin-before: 3.375rem;
          margin-block-start: 3.375rem;
}

.p-footer__contact-title {
  font-size: 1.375rem;
  text-align: center;
}

.p-footer__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-footer__item:nth-child(even) {
  position: relative;
}
.p-footer__item:nth-child(even)::before {
  position: absolute;
  top: 0;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: var(--color-primary);
  content: "";
}

.p-footer__item-title {
  padding: 0.18em 0.6em;
  border-radius: 4px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.25rem;
  text-align: center;
}

.p-footer__item-sub-title {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  font-size: 1rem;
  text-align: center;
}

.p-footer__item-tel {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 100%;
  padding: 11px 10px 15px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  border-radius: 20px;
  background-color: var(--color-white);
  font-family: var(--font-zen);
  font-size: 1.875rem;
  font-weight: 700;
}
.p-footer__item-tel::before {
  display: inline-block;
  -ms-flex-item-align: center;
      align-self: center;
  width: 1.875rem;
  aspect-ratio: 1/1;
  translate: 0 0.1875rem;
  background-image: url(../images/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-footer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-margin-before: 4.375rem;
          margin-block-start: 4.375rem;
}

.p-footer__copy {
  display: grid;
  place-items: center;
  height: 6.25rem;
  padding-inline: 35px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.p-footer__copy small {
  font-family: var(--font-noto);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

@media (hover: hover) and (pointer: fine) {
  .p-footer__logo-link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .p-footer__logo-link {
    width: 240px;
  }
  .p-footer__address {
    font-size: 1rem;
  }
  .p-footer__contact-title {
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
  .p-footer__contact-title {
    font-size: 1.125rem;
  }
  .p-footer__items {
    gap: 30px;
  }
  .p-footer__item:nth-child(even)::before {
    left: -15px;
  }
  .p-footer__item-title {
    font-size: 1rem;
  }
  .p-footer__item-sub-title {
    font-size: 0.625rem;
  }
  .p-footer__item-tel {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    padding: 10px 10px 11px;
    font-size: 1rem;
  }
  .p-footer__item-tel::before {
    width: 1.25rem;
    translate: 0 0.0625rem;
  }
  .p-footer__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
  .p-footer__copy {
    height: 5rem;
  }
  .p-footer__copy small {
    font-size: 0.75rem;
  }
}
/*
    p-menu
---------------------------------*/
.p-menu + .p-menu {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-menu__title {
  -webkit-padding-after: 0.6em;
          padding-block-end: 0.6em;
  -webkit-border-after: 1px solid currentColor;
          border-block-end: 1px solid currentColor;
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.p-menu__items {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

.p-menu__item + .p-menu__item {
  -webkit-margin-before: 0.75rem;
          margin-block-start: 0.75rem;
}

.p-menu__item-link {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 1rem;
  line-height: var(--line-height-sm);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-menu__item-link::after {
  display: inline-block;
  -ms-flex-item-align: center;
      align-self: center;
  width: 0.375rem;
  height: 0.4375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color-secondary);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  content: "・";
}
.p-menu__item-link:focus-visible {
  color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .p-menu__item-link:hover {
    color: var(--color-secondary);
  }
}
/*
    p-menu02
---------------------------------*/
.p-menu02 + .p-menu02 {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-menu02__title {
  -webkit-padding-after: 0.6em;
          padding-block-end: 0.6em;
  -webkit-border-after: 1px solid currentColor;
          border-block-end: 1px solid currentColor;
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.p-menu02__items {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

.p-menu02__item + .p-menu02__item {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}

.p-menu02__item-link {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  font-size: 1.125rem;
  line-height: var(--line-height-sm);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-menu02__item-link::before {
  color: var(--color-secondary);
  content: "・";
}
.p-menu02__item-link:focus-visible {
  color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .p-menu02__item-link:hover {
    color: var(--color-secondary);
  }
}
@media (max-width: 767px) {
  .p-menu02__title {
    font-size: 1.125rem;
  }
  .p-menu02__item-link {
    font-size: 0.875rem;
  }
}
/*
    p-home-fv
---------------------------------*/
.p-home-fv {
  position: relative;
  z-index: 1;
}

.p-home-fv__slide-img {
  width: 480px;
  aspect-ratio: 480/400;
  overflow: hidden;
  border-radius: 40px;
}

.p-home-fv__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-fv .splide__track {
  -webkit-padding-after: 32px;
          padding-block-end: 32px;
}

.p-home-fv .splide__pagination {
  bottom: 0;
}

.p-home-fv .splide__pagination {
  gap: 16px;
}

.p-home-fv .splide__pagination li {
  width: 12px;
}

.p-home-fv .splide__pagination__page {
  width: 12px;
  height: 12px;
  opacity: 1;
  margin: 0;
  background-color: var(--color-gray);
}

.p-home-fv .splide__pagination__page.is-active {
  background-color: var(--color-primary);
  -webkit-transform: unset;
          transform: unset;
}

@media (max-width: 767px) {
  .p-home-fv__slide-img {
    width: 78vw;
    border-radius: 30px;
  }
  .p-home-fv .splide__pagination__page {
    width: 10px;
    height: 10px;
  }
  .p-home-fv .splide__pagination {
    gap: 12px;
  }
  .p-home-fv .splide__pagination li {
    width: 10px;
  }
}
/*
    p-low-fv
---------------------------------*/
.p-low-fv {
  display: grid;
  place-items: center;
  min-height: 9.625rem;
  padding: 2rem 35px;
  background-image: url(../images/common/low-fv_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-low-fv__title {
  font-family: var(--font-zen);
  font-size: 2rem;
  line-height: 1.375;
  text-align: center;
}

@media (max-width: 767px) {
  .p-low-fv {
    min-height: 8.125rem;
    padding: 1.25rem 20px;
  }
  .p-low-fv__title {
    font-size: 1.5rem;
  }
}
/*
    p-low-top-img
---------------------------------*/
.p-low-top-img {
  display: block;
  height: 220px;
}

.p-low-top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-low-top-img {
    height: 160px;
  }
}
/*
    p-home-thought
---------------------------------*/
.p-home-thought {
  position: relative;
  -webkit-padding-before: 2.8125rem;
          padding-block-start: 2.8125rem;
}
.p-home-thought::before {
  position: absolute;
  top: 1.0625rem;
  left: 0;
  width: 118px;
  aspect-ratio: 236/272;
  background-image: url(../images/top/deco01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-home-thought::after {
  position: absolute;
  top: -10.625rem;
  right: 0;
  width: 175px;
  aspect-ratio: 350/510;
  background-image: url(../images/top/deco02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-thought__inner {
  position: relative;
  z-index: 1;
}

.p-home-thought__contents {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

.p-home-thought__text {
  text-align: center;
}

.p-home-thought__button {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-home-thought::before {
    width: 82px;
  }
  .p-home-thought::after {
    top: -6.875rem;
    width: 122px;
  }
}
/*
    p-home-philosophy
---------------------------------*/
.p-home-philosophy {
  position: relative;
  z-index: 1;
}

.p-home-philosophy__box {
  padding: 3.75rem 50px;
  border-radius: 100px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0 30px rgba(162, 81, 39, 0.2);
          box-shadow: 0 0 30px rgba(162, 81, 39, 0.2);
}

.p-home-philosophy__contents {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-home-philosophy__button {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-home-philosophy__box {
    padding: 3.75rem 20px;
    border-radius: 50px;
  }
}
/*
    p-home-workplace
---------------------------------*/
.p-home-workplace {
  position: relative;
}
.p-home-workplace::before {
  position: absolute;
  top: 3.75rem;
  left: 40px;
  width: 89px;
  aspect-ratio: 178/176;
  background-image: url(../images/top/deco03.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-home-workplace::after {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 142px;
  aspect-ratio: 284/422;
  background-image: url(../images/top/deco04.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-workplace__inner {
  position: relative;
  z-index: 1;
}

.p-home-workplace__contents {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-home-workplace__contents .p-card {
  position: relative;
  z-index: 1;
}
.p-home-workplace__contents .p-card::before {
  z-index: -1;
}

.p-home-workplace__contents .p-card:nth-child(1)::before {
  position: absolute;
  top: 9.375rem;
  right: -35px;
  width: 112px;
  aspect-ratio: 224/390;
  background-image: url(../images/top/deco05.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-workplace__contents .p-card:nth-child(2)::before {
  position: absolute;
  top: 3.75rem;
  left: -35px;
  width: 125px;
  aspect-ratio: 250/758;
  background-image: url(../images/top/deco06.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-workplace__contents .p-card:nth-child(3)::before {
  position: absolute;
  top: 9.875rem;
  right: -35px;
  width: 110px;
  aspect-ratio: 220/390;
  background-image: url(../images/top/deco07.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-workplace__contents .p-card:nth-child(4)::before {
  position: absolute;
  top: 3.75rem;
  left: -35px;
  width: 125px;
  aspect-ratio: 250/758;
  background-image: url(../images/top/deco08.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-workplace__contents .p-card:nth-child(5)::before {
  position: absolute;
  top: 9.5rem;
  right: -35px;
  width: 110px;
  aspect-ratio: 220/390;
  background-image: url(../images/top/deco09.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media (max-width: 767px) {
  .p-home-workplace::before {
    left: 10px;
    width: 62px;
  }
  .p-home-workplace::after {
    top: -2.5rem;
    width: 99px;
  }
  .p-home-workplace__contents .p-card:nth-child(1)::before {
    top: 9.375rem;
    right: -20px;
    width: 78px;
  }
  .p-home-workplace__contents .p-card:nth-child(2)::before {
    top: 3.4375rem;
    width: 88px;
  }
  .p-home-workplace__contents .p-card:nth-child(3)::before {
    top: 9.0625rem;
    right: -20px;
    width: 77px;
  }
  .p-home-workplace__contents .p-card:nth-child(4)::before {
    top: 3.125rem;
    width: 88px;
  }
  .p-home-workplace__contents .p-card:nth-child(5)::before {
    top: 7.8125rem;
    right: -20px;
    width: 77px;
  }
}
/*
    p-home-news
---------------------------------*/
.p-home-news {
  -webkit-padding-before: 3.125rem;
          padding-block-start: 3.125rem;
}

.p-home-news__contents {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

.p-home-news__button {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: center;
}

.p-home-news__button + .p-home-news__button {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

/*
    p-home-movie
---------------------------------*/
.p-home-movie {
  position: relative;
}
.p-home-movie::before {
  position: absolute;
  bottom: -4.1875rem;
  left: 0;
  width: 128px;
  aspect-ratio: 256/206;
  background-image: url(../images/top/deco10.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-home-movie::after {
  position: absolute;
  bottom: -5.625rem;
  right: 0;
  width: 106px;
  aspect-ratio: 212/416;
  background-image: url(../images/top/deco11.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-movie__inner {
  position: relative;
  z-index: 1;
}

.p-home-movie__contents {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

.p-home-movie__text {
  text-align: center;
}

.p-home-movie__movie {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

@media (max-width: 767px) {
  .p-home-movie::before {
    bottom: -2.8125rem;
    width: 90px;
  }
  .p-home-movie::after {
    bottom: -3.75rem;
    width: 74px;
  }
}
/*
    p-home-oneday
---------------------------------*/
.p-home-oneday__contents {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

.p-home-oneday__text {
  text-align: center;
}

.p-home-oneday__box {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

/*
    p-home-system
---------------------------------*/
.p-home-system__item + .p-home-system__item {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-home-message
---------------------------------*/
.p-home-message {
  position: relative;
  -webkit-padding-before: 10rem;
          padding-block-start: 10rem;
}
.p-home-message::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url(../images/top/message_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}

.p-home-message__box {
  position: relative;
  z-index: 1;
}

.p-home-message__contents {
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}

.p-home-message__img img {
  border-radius: 20px;
}

.p-home-message__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-home-message__text + .p-home-message__text {
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}

.p-home-message__text:last-of-type {
  text-align: right;
}

.p-home-message__button {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-home-message__text + .p-home-message__text {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}
/*
    p-home-contact
---------------------------------*/
.p-home-contact {
  position: relative;
}
.p-home-contact::before {
  position: absolute;
  top: -5.9375rem;
  left: 0;
  width: 138px;
  aspect-ratio: 276/414;
  background-image: url(../images/top/deco12.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-home-contact::after {
  position: absolute;
  top: -1.25rem;
  right: 0;
  width: 98px;
  aspect-ratio: 196/192;
  background-image: url(../images/top/deco13.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-contact__inner {
  position: relative;
  z-index: 1;
}

.p-home-contact {
  -webkit-padding-before: 3.5rem;
          padding-block-start: 3.5rem;
}

.p-home-contact__contents {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

.p-home-contact__text {
  text-align: center;
}

.p-home-contact__img {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.p-home-contact__button {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-home-contact::before {
    top: -5rem;
    width: 97px;
  }
  .p-home-contact::after {
    top: -1.125rem;
    width: 69px;
  }
}
/*
    p-home-information
---------------------------------*/
.p-home-information__contents {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.p-home-information__button {
  text-align: center;
}

.p-home-information__button + .p-home-information__button {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

/*
    p-home-recruit
---------------------------------*/
.p-home-recruit__contents {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-home-entry
---------------------------------*/
.p-home-entry {
  position: relative;
  background-color: var(--color-secondary);
  text-align: center;
}
.p-home-entry::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 103px;
  aspect-ratio: 206/140;
  background-image: url(../images/top/deco14.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-home-entry::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 103px;
  aspect-ratio: 206/200;
  background-image: url(../images/top/deco15.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-entry__inner {
  position: relative;
  z-index: 1;
}

.p-home-entry__title {
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: 1.375rem;
  line-height: var(--line-height-sm);
}

.p-home-entry__contents {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

@media (max-width: 767px) {
  .p-home-entry::before {
    width: 72px;
  }
  .p-home-entry::after {
    width: 72px;
  }
  .p-home-entry__title {
    font-size: 1.125rem;
  }
}
/*
    p-home-recruit02
---------------------------------*/
.p-home-recruit02 {
  position: relative;
}
.p-home-recruit02::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  aspect-ratio: 400/484;
  background-image: url(../images/top/deco16.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-home-recruit02::after {
  position: absolute;
  top: 30.3125rem;
  right: 0;
  width: 192px;
  aspect-ratio: 384/536;
  background-image: url(../images/top/deco17.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-home-recruit02__inner {
  position: relative;
  z-index: 1;
}

.p-home-recruit02__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.07em 0.2em 0.07em 0.55em;
  margin-inline: auto;
  background-color: var(--color-white);
  font-family: var(--font-zen);
  font-size: 3.125rem;
  letter-spacing: 0.04em;
}

.p-home-recruit02__title span {
  color: var(--color-secondary);
}

.p-home-recruit02__contents {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

.p-home-recruit02__text {
  margin-inline: -5px;
  text-align: center;
}

.p-home-recruit02__img {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  text-align: center;
}

.p-home-recruit02__img img {
  width: 400px;
  border-radius: 20px;
}

.p-home-recruit02__box {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-home-recruit02__button {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: center;
}

.p-home-recruit02__button + .p-home-recruit02__button {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

@media (max-width: 767px) {
  .p-home-recruit02::before {
    width: 140px;
  }
  .p-home-recruit02::after {
    top: 27.5rem;
    width: 134px;
  }
  .p-home-recruit02__title {
    font-size: 2.25rem;
  }
}
/*
    p-home-introduction
---------------------------------*/
.p-home-introduction__contents {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

.p-home-introduction__text {
  text-align: center;
}

.p-home-introduction__items {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-home-about
---------------------------------*/
.p-home-about {
  position: relative;
  -webkit-padding-before: 3.125rem;
          padding-block-start: 3.125rem;
  background-image: url(../images/top/about_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-home-about::before {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
  content: "";
}

.p-home-about__title {
  position: relative;
  z-index: 1;
}

.p-home-about__contents {
  position: relative;
  z-index: 1;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  text-align: center;
}

.p-home-about__button {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.p-home-about__button + .p-home-about__button {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

@media (max-width: 767px) {
  .p-home-about__title {
    font-size: 1.25rem;
  }
}
/*
    p-article
---------------------------------*/
.p-article {
  -webkit-padding-after: 2.5rem;
          padding-block-end: 2.5rem;
}

/*
    p-list
---------------------------------*/
.p-list__item + .p-list__item {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-list__text {
  -webkit-margin-before: 0.875rem;
          margin-block-start: 0.875rem;
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
  text-align: center;
}

@media (max-width: 767px) {
  .p-list__text {
    font-size: 1.125rem;
  }
}
/*
    p-list02
---------------------------------*/
.p-list02__item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  padding-block: 0.5rem;
  -webkit-border-before: 1px solid var(--color-primary);
          border-block-start: 1px solid var(--color-primary);
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}

.p-list02__item:last-child {
  -webkit-border-after: 1px solid var(--color-primary);
          border-block-end: 1px solid var(--color-primary);
}

.p-list02__term {
  color: var(--color-secondary);
  font-weight: 400;
}

.p-list02__child-item {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.p-list02__child-item::before {
  content: "●";
}

@media (max-width: 767px) {
  .p-list02__item {
    grid-template-columns: 6.25rem 1fr;
    font-size: 1rem;
  }
  .p-list02__child-item {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
}
/*
    p-list03
---------------------------------*/
.p-list03__item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  padding-block: 0.5rem;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
}

.p-list03__item:last-child {
  -webkit-border-after: 1px solid;
          border-block-end: 1px solid;
}

.p-list03__term {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  font-weight: 400;
}
.p-list03__term::before {
  content: "●";
}

.p-list03__child-item {
  display: grid;
  grid-template-columns: auto 1fr;
}
.p-list03__child-item::before {
  font-size: 1.25rem;
  line-height: var(--line-height-base);
  content: "・";
}

.p-list03__text + .p-list03__text {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.p-list03__text span {
  font-size: 1.125rem;
  line-height: var(--line-height-base);
}

@media (max-width: 767px) {
  .p-list03__item {
    grid-template-columns: 6.25rem 1fr;
  }
  .p-list03__child-item::before {
    font-size: 1rem;
  }
  .p-list03__text span {
    font-size: 0.875rem;
  }
}
/*
    p-cards
---------------------------------*/
.p-cards__item + .p-cards__item {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-card
---------------------------------*/
.p-card {
  display: grid;
  position: relative;
}

.p-card__number {
  display: grid;
  place-items: center;
  position: absolute;
  top: -10px;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 2.25rem;
}

.p-card__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.p-card__img {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 400/285;
  overflow: hidden;
  margin-inline: auto;
  border-radius: 30px;
}

.p-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-card__text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}

@media (max-width: 767px) {
  .p-card__number {
    left: -10px;
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.6875rem;
  }
  .p-card__img {
    border-radius: 20px;
  }
}
/*
    p-cards02
---------------------------------*/
.p-cards02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .p-cards02 {
    gap: 16px;
  }
}
/*
    p-card02
---------------------------------*/
.p-card02__link {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 30px 13px 24px 30px;
  border-radius: 20px;
  background-color: var(--color-white);
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.p-card02__label {
  display: inline-block;
  padding: 0.03em 1em;
  border-radius: 9999px;
  background-color: var(--bg-color-red);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: var(--line-height-sm);
  text-align: center;
}

.p-card02__label.p-card02__label--type02 {
  background-color: var(--bg-color-orange);
}

.p-card02__title {
  -webkit-margin-before: 0.375rem;
          margin-block-start: 0.375rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: var(--line-height-sm);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-card02__arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-card02__arrow::before {
  display: inline-block;
  width: 0.375rem;
  height: 0.4375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 10%;
  background-color: var(--color-white);
  content: "";
}

.p-card02__link:focus-visible .p-card02__title {
  color: var(--color-secondary);
}

.p-card02__link:focus-visible .p-card02__arrow {
  background-color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .p-card02__link:hover .p-card02__title {
    color: var(--color-secondary);
  }
  .p-card02__link:hover .p-card02__arrow {
    background-color: var(--color-secondary);
  }
}
@media (max-width: 767px) {
  .p-card02__link {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    padding: 20px 12px 20px 18px;
    border-radius: 10px;
  }
  .p-card02__label {
    font-size: 1rem;
  }
  .p-card02__title {
    font-size: 1rem;
  }
  .p-card02__arrow {
    width: 1rem;
    height: 1rem;
  }
  .p-card02__arrow::before {
    width: 0.3125rem;
    height: 0.375rem;
  }
}
/*
    p-cards03
---------------------------------*/
.p-cards03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

@media (max-width: 767px) {
  .p-cards03 {
    gap: 20px 16px;
  }
}
/*
    p-card03
---------------------------------*/
.p-card03 {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.p-card03__body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 10rem;
  padding: 15px 15px 20px;
  background-color: var(--color-white);
}

.p-card03__title {
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-card03__button {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

.p-card03__img {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  aspect-ratio: 240/140;
}

.p-card03__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-card03 {
    border-radius: 10px;
  }
  .p-card03__title {
    font-size: 1rem;
  }
}
/*
    p-cards04
---------------------------------*/
/*
    p-card04
---------------------------------*/
.p-card04__img img {
  width: 100%;
  border-radius: 20px;
}

.p-card04__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

/*
    p-cards05
---------------------------------*/
.p-cards05__item + .p-cards05__item {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-card05
---------------------------------*/
.p-card05__title {
  font-size: 1.875rem;
}

.p-card05__text {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.p-card05__img {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-card05__img img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .p-card05__title {
    font-size: 1.4375rem;
  }
}
/*
    p-cards06
---------------------------------*/
.p-cards06__item + .p-cards06__item {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}

/*
    p-card06
---------------------------------*/
.p-card06__img {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.p-card06__img img {
  width: 100%;
  border-radius: 20px;
}

.p-card06__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-card06__list {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.p-card06__box {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.p-card06__text + .p-card06__box {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

/*
    p-news-list
---------------------------------*/
.p-news-list__item {
  -webkit-border-before: 1px solid var(--color-primary);
          border-block-start: 1px solid var(--color-primary);
}

.p-news-list__item:last-child {
  -webkit-border-after: 1px solid var(--color-primary);
          border-block-end: 1px solid var(--color-primary);
}

.p-news-list__item-link {
  display: block;
  position: relative;
  padding-block: 1rem;
  -webkit-padding-end: 30px;
          padding-inline-end: 30px;
  font-size: 1.125rem;
}
.p-news-list__item-link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  width: 0.375rem;
  height: 0.4375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color-primary);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  content: "";
}
.p-news-list__item-link:focus-visible::after {
  background-color: var(--color-secondary);
}

.p-news-list__item-date {
  color: var(--color-secondary);
}

.p-news-list__item-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-news-list__item-link:focus-visible .p-news-list__item-title {
  color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .p-news-list__item-link:hover::after {
    background-color: var(--color-secondary);
  }
  .p-news-list__item-link:hover .p-news-list__item-title {
    color: var(--color-secondary);
  }
}
@media (max-width: 767px) {
  .p-news-list__item-link {
    font-size: 1rem;
  }
}
/*
    p-news-archive
---------------------------------*/
.p-news-archive__pagination {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-news-detail
---------------------------------*/
.p-news-detail h2 {
  -webkit-padding-after: 0.7em;
          padding-block-end: 0.7em;
  margin-block: 3.75rem 1.25rem;
  background-image: url(../images/common/title-dot02.png);
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 9px 5px;
  color: var(--color-secondary);
  font-family: var(--font-zen);
  font-size: 1.875rem;
  line-height: var(--line-height-sm);
}

.p-news-detail h2:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.p-news-detail h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  padding-block: 0.07em;
  margin-block: 2.5rem 1.25rem;
  font-family: var(--font-zen);
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}
.p-news-detail h3::before {
  display: inline-block;
  width: 16px;
  height: 100%;
  border-radius: 8px;
  background-color: var(--color-secondary);
  content: "";
}

.p-news-detail figure {
  margin-block: 1.5rem;
}

.p-news-detail figure img {
  width: 100%;
  border-radius: 20px;
}

.p-news-detail p {
  margin-block: 1.25rem;
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}

.p-news-detail a {
  color: var(--color-blue);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  word-break: break-all;
}
.p-news-detail a:focus-visible {
  text-decoration: underline;
}

.p-news-detail .annotation {
  margin-block: 2.25rem;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--color-white);
  font-size: 1rem;
  line-height: var(--line-height-sm);
}

.p-news-detail .l-inner > *:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

@media (hover: hover) and (pointer: fine) {
  .p-news-detail a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .p-news-detail h2 {
    background-size: 7px 4px;
    font-size: 1.4375rem;
  }
  .p-news-detail h3 {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    font-size: 1.25rem;
  }
  .p-news-detail h3::before {
    width: 10px;
    border-radius: 5px;
  }
  .p-news-detail p {
    font-size: 1rem;
  }
  .p-news-detail .annotation {
    font-size: 0.875rem;
  }
}
/*
    p-box
---------------------------------*/
.p-box {
  padding: 40px;
  border-radius: 20px;
  background-color: var(--bg-color-green02);
  background-image: url(../images/top/oneday_box-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-box__img img {
  border-radius: 20px;
}

.p-box__button {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-box {
    padding: 30px 20px;
  }
}
/*
    p-box02
---------------------------------*/
.p-box02 {
  padding: 1.25rem 30px 1.875rem;
  border-radius: 20px;
  background-color: var(--color-white);
}

.p-box02__media {
  display: grid;
  grid-template-columns: 1fr 57%;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}

.p-box02__img img {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .p-box02 {
    padding: 1.25rem 20px 1.875rem;
  }
}
/*
    p-box03
---------------------------------*/
.p-box03 {
  padding: 3.75rem 40px;
  border-radius: 20px;
  background-color: var(--color-white);
}

@media (max-width: 767px) {
  .p-box03 {
    padding: 3.75rem 20px;
  }
}
/*
    p-box04
---------------------------------*/
.p-box04 {
  border-radius: 40px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0 10px rgba(224, 65, 37, 0.2);
          box-shadow: 0 0 10px rgba(224, 65, 37, 0.2);
  text-align: center;
}

.p-box04.p-box04--type01 {
  padding: 2.5rem 24px 2rem;
}

.p-box04.p-box04--type02 {
  padding: 2rem 24px;
}

.p-box04__item + .p-box04__item {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.p-box04__item .p-box04__text {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}

.p-box04__img + .p-box04__text {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.p-box04__text.p-box04__text--left {
  text-align: left;
}

.p-box04__text a {
  color: var(--color-blue);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  word-break: break-all;
}
.p-box04__text a:focus-visible {
  text-decoration: underline;
}

.p-box04__img img {
  width: 320px;
  border-radius: 20px;
}

.p-box04__caption {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}

@media (hover: hover) and (pointer: fine) {
  .p-box04__text a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .p-box04 {
    border-radius: 30px;
  }
  .p-box04.p-box04--type01 {
    padding: 2.5rem 20px 2rem;
  }
  .p-box04.p-box04--type02 {
    padding: 2rem 20px;
  }
  .p-box04__caption {
    font-size: 1.125rem;
  }
  .p-box04__img img {
    width: 240px;
  }
}
/*
    p-box05
---------------------------------*/
.p-box05 {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--color-secondary);
  background-color: var(--color-white);
  font-size: 1rem;
  line-height: var(--line-height-sm);
}

.p-box05__title {
  color: var(--color-secondary);
}

.p-box05__item {
  display: grid;
  grid-template-columns: auto 1fr;
}
.p-box05__item::before {
  content: "・";
}

.p-box05__text:not(:first-child) {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

@media (max-width: 767px) {
  .p-box05 {
    font-size: 0.8125rem;
  }
}
/*
    p-panel
---------------------------------*/
.p-panel__link {
  display: grid;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-panel__link:focus-visible {
  opacity: 0.7;
}

.p-panel__body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  padding: 15px 60px 20px 30px;
  background-color: var(--color-white);
}

.p-panel__title {
  font-family: var(--font-zen);
  font-size: 1.75rem;
  line-height: 1.4;
}

.p-panel__title span {
  color: var(--color-secondary);
  font-size: 2rem;
}

.p-panel__arrow {
  display: grid;
  place-items: center;
  position: absolute;
  right: 17px;
  bottom: 20px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-panel__arrow::before {
  display: inline-block;
  width: 0.375rem;
  height: 0.4375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 10%;
  background-color: var(--color-white);
  content: "";
}

.p-panel__img {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  aspect-ratio: 500/320;
}

.p-panel__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  .p-panel__link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .p-panel__body {
    padding: 15px 50px 15px 20px;
  }
  .p-panel__title {
    font-size: 1.375rem;
  }
  .p-panel__title span {
    font-size: 1.5rem;
  }
}
/*
    p-policy
---------------------------------*/
.p-policy__block + .p-policy__block {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}

.p-policy__card {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-philosophy
---------------------------------*/
.p-philosophy__contents {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-message
---------------------------------*/
.p-message__contents {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

/*
    p-one-day
---------------------------------*/
.p-one-day__bottom {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.p-one-day__bottom-contents {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

@media (max-width: 767px) {
  .p-one-day__bottom-title {
    font-size: 1.25rem;
  }
}
/*
    p-one-day-item
---------------------------------*/
.p-one-day-item {
  position: relative;
  -webkit-padding-after: 2.5rem;
          padding-block-end: 2.5rem;
}
.p-one-day-item::before {
  position: absolute;
  top: 0;
  left: 1.1875rem;
  width: 2px;
  height: 100%;
  background-color: var(--color-secondary);
  content: "";
}

.p-one-day-item:last-child {
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
}

.p-one-day-item__title {
  display: grid;
  grid-template-columns: 2.5rem 6.25rem 1fr;
  position: relative;
  z-index: 1;
  font-family: var(--font-zen);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: var(--line-height-sm);
}
.p-one-day-item__title::before {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/one-day/icon_clock.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-one-day-item__date {
  display: inline-block;
  translate: 0 -0.125rem;
  -webkit-margin-start: 0.33em;
          margin-inline-start: 0.33em;
}

.p-one-day-item__title-text {
  display: inline-block;
  translate: 0 -0.1875rem;
  color: var(--color-secondary);
}

.p-one-day-item__body {
  -webkit-padding-start: 3.125rem;
          padding-inline-start: 3.125rem;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-one-day-item__img img {
  width: 100%;
  border-radius: 20px;
}

.p-one-day-item__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-one-day-item__text + .p-one-day-item__text {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

@media (max-width: 767px) {
  .p-one-day-item::before {
    left: 0.875rem;
  }
  .p-one-day-item__title {
    grid-template-columns: 1.875rem 4.6875rem 1fr;
    font-size: 1.4375rem;
  }
  .p-one-day-item__title::before {
    width: 1.875rem;
    height: 1.875rem;
  }
  .p-one-day-item__body {
    -webkit-padding-start: 2.5rem;
            padding-inline-start: 2.5rem;
  }
}
/*
    p-system
---------------------------------*/
.p-system__text + .p-system__text {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-system__list {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

/*
    p-recruit
---------------------------------*/
.p-recruit__item + .p-recruit__item {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

/*
    p-recruit-detail
---------------------------------*/
.p-recruit-detail__block + .p-recruit-detail__block {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}

.p-recruit-detail__list {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.p-recruit-detail__item + .p-recruit-detail__item {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.p-recruit-detail__item-contents {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.p-recruit-detail__text + .p-recruit-detail__text {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.p-recruit-detail__date {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  color: var(--color-gray02);
  font-family: var(--font-noto);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: var(--line-height-base);
  text-align: center;
}

.p-recruit-detail__date + * {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.p-recruit-detail__button {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-recruit-detail__date {
    font-size: 1.25rem;
  }
}
/*
    p-faq
---------------------------------*/
.p-faq__text + .p-faq__text {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-faq__list {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}

.p-faq__item + .p-faq__item {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}

.p-faq__item-detail {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

/*
    p-faq-item
---------------------------------*/
.p-faq-item__term {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.p-faq-item__alphabet {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--bg-color-green04);
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: 1.375rem;
  font-weight: 700;
}

.p-faq-item__alphabet abbr {
  text-decoration: none;
}

.p-faq-item__title {
  -webkit-padding-before: 0.18em;
          padding-block-start: 0.18em;
  color: var(--bg-color-green04);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: var(--line-height-sm);
}

.p-faq-item__contents {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.p-faq-item__contents .p-faq-item__alphabet {
  border: 1px solid var(--bg-color-green04);
  background-color: var(--color-white);
  color: var(--bg-color-green04);
}

.p-faq-item__text:first-of-type {
  -webkit-padding-before: 0.18em;
          padding-block-start: 0.18em;
}

.p-faq-item__text a {
  color: var(--color-blue);
}
.p-faq-item__text a:focus-visible {
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .p-faq-item__text a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .p-faq-item__term {
    grid-template-columns: 1.875rem 1fr;
  }
  .p-faq-item__alphabet {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
  .p-faq-item__title {
    -webkit-padding-before: 0.12em;
            padding-block-start: 0.12em;
    font-size: 1.125rem;
  }
  .p-faq-item__contents {
    grid-template-columns: 1.875rem 1fr;
  }
  .p-faq-item__text:first-of-type {
    -webkit-padding-before: 0.12em;
            padding-block-start: 0.12em;
  }
}
/*
    p-tour
---------------------------------*/
.p-tour__item + .p-tour__item {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}

.p-tour__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-tour__text + .p-tour__text {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-tour__text a {
  color: var(--color-blue);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  word-break: break-all;
}
.p-tour__text a:focus-visible {
  text-decoration: underline;
}

.p-tour__flow {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}

.p-tour__bottom {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.p-tour__bottom-title {
  font-size: 1.5rem;
}

.p-tour__bottom-contents {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

@media (hover: hover) and (pointer: fine) {
  .p-tour__text a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .p-tour__bottom-title {
    font-size: 1.125rem;
  }
}
/*
    p-flow
---------------------------------*/
.p-flow__item {
  position: relative;
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
}
.p-flow__item::before {
  position: absolute;
  top: 0;
  left: 1.1875rem;
  width: 2px;
  height: 100%;
  background-color: var(--color-secondary);
  content: "";
}

.p-flow__item-title {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: relative;
  z-index: 1;
  color: var(--color-secondary);
  font-family: var(--font-zen);
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.p-flow__item-number {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 3px solid var(--color-secondary);
  background-color: var(--bg-color-yellow);
  color: var(--color-secondary);
  font-family: var(--font-noto);
  font-size: 1.25rem;
  font-weight: 700;
}

.p-flow__item-title-text {
  display: inline-block;
  -webkit-margin-before: 0.125rem;
          margin-block-start: 0.125rem;
}

.p-flow__item-body {
  -webkit-padding-start: 3.125rem;
          padding-inline-start: 3.125rem;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-flow__item-img img {
  width: 100%;
  border-radius: 20px;
}

.p-flow__item-text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-flow__item-text + .p-flow__item-text {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

@media (max-width: 767px) {
  .p-flow__item::before {
    left: 0.875rem;
  }
  .p-flow__item-title {
    font-size: 1.375rem;
  }
  .p-flow__item-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
  .p-flow__item-title-text {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  .p-flow__item-body {
    -webkit-padding-start: 2.5rem;
            padding-inline-start: 2.5rem;
  }
}
/*
    p-internships
---------------------------------*/
.p-internships__item + .p-internships__item {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}

.p-internships__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-internships__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-internships__img img {
  width: 100%;
  aspect-ratio: 240/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.p-internships__imgs + .p-internships__text {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-internships__button {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-internships__imgs {
    gap: 12px;
  }
}
/*
    p-entry
---------------------------------*/
.p-entry__title {
  font-size: 1.875rem;
}

.p-entry__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-entry__form {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.p-entry__contact {
  -webkit-margin-before: 5.625rem;
          margin-block-start: 5.625rem;
}

.p-entry__list {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.p-entry__item + .p-entry__item {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.p-entry__item-title {
  color: var(--color-secondary);
  font-family: var(--font-zen);
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.p-entry__child-list {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.p-entry__child-item {
  display: grid;
  grid-template-columns: 4em 1fr;
}

.p-entry__child-item-term {
  font-weight: 400;
}

.p-entry__child-item-contents {
  display: grid;
  grid-template-columns: auto 1fr;
}
.p-entry__child-item-contents::before {
  content: "：";
}

.p-entry__child-item-contents a:not([href^="tel:"]) {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-entry__child-item-contents a:not([href^="tel:"]):focus-visible {
  color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .p-entry__child-item-contents a:not([href^="tel:"]):hover {
    color: var(--color-secondary);
  }
}
@media (max-width: 767px) {
  .p-entry__title {
    font-size: 1.4375rem;
  }
  .p-entry__item-title {
    font-size: 1.25rem;
  }
  .p-entry__child-item {
    grid-template-columns: 3em 1fr;
  }
}
/*
    p-form
---------------------------------*/
.p-form__item + .p-form__item {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-form__term {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 3px 16px;
  border-radius: 10px;
  background-color: var(--bg-color-gray02);
  font-family: var(--font-zen);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line-height-sm);
}

.p-form__term label {
  display: block;
}

.p-form__term label span {
  font-size: 0.875rem;
}

.p-form__term:has(label span) {
  padding: 5px 16px;
  line-height: 1.2;
}

.p-form__must {
  display: inline-grid;
  place-items: center;
  align-self: center;
  width: 3.125rem;
  height: 1.375rem;
  border-radius: 4px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
}

.p-form__contents {
  padding-inline: 16px;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}

.p-form__radio-wrap > span > span {
  display: grid;
  row-gap: 0.875rem;
}

.p-form__radio-wrap label {
  display: inline-block;
  position: relative;
}

.p-form__radio-wrap input + span {
  -webkit-padding-start: 2.9375rem;
          padding-inline-start: 2.9375rem;
}
.p-form__radio-wrap input + span::before {
  top: 0.0625rem;
  translate: 0 0;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-gray03);
}
.p-form__radio-wrap input + span::after {
  top: 0.5625rem;
  left: 0.5rem;
  translate: 0 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-secondary);
}

.p-form__checkbox-wrap > span > span {
  display: grid;
  row-gap: 0.875rem;
}

.p-form__checkbox-wrap label {
  display: inline-block;
  position: relative;
}

.p-form__checkbox-wrap input + span {
  -webkit-padding-start: 2.9375rem;
          padding-inline-start: 2.9375rem;
}
.p-form__checkbox-wrap input + span::before {
  top: 0.0625rem;
  translate: 0 0;
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  border: 2px solid var(--color-gray03);
}
.p-form__checkbox-wrap input + span::after {
  top: 0.6875rem;
  left: 0.375rem;
  translate: 0 0;
  width: 1.25rem;
  height: 0.875rem;
  -webkit-border-after: 3px solid var(--color-secondary);
          border-block-end: 3px solid var(--color-secondary);
  -webkit-border-start: 3px solid var(--color-secondary);
          border-inline-start: 3px solid var(--color-secondary);
}

.p-form input,
.p-form textarea {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--color-gray03);
  border-radius: 8px;
  background-color: var(--color-white);
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.p-form textarea {
  resize: vertical;
  min-height: 18.125rem;
}

.p-form ::-webkit-input-placeholder {
  color: rgba(122, 82, 5, 0.4);
}

.p-form ::-moz-placeholder {
  color: rgba(122, 82, 5, 0.4);
}

.p-form :-ms-input-placeholder {
  color: rgba(122, 82, 5, 0.4);
}

.p-form ::-ms-input-placeholder {
  color: rgba(122, 82, 5, 0.4);
}

.p-form ::placeholder {
  color: rgba(122, 82, 5, 0.4);
}

.p-form__privacy-check {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  font-size: 1.25rem;
  line-height: var(--line-height-base);
  text-align: center;
}

.p-form__privacy-check label {
  display: inline-block;
  position: relative;
}

.p-form__privacy-check input + span {
  -webkit-padding-start: 2.9375rem;
          padding-inline-start: 2.9375rem;
}
.p-form__privacy-check input + span::before {
  top: 0.0625rem;
  translate: 0 0;
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  border: 2px solid var(--color-gray03);
}
.p-form__privacy-check input + span::after {
  top: 0.6875rem;
  left: 0.375rem;
  translate: 0 0;
  width: 1.25rem;
  height: 0.875rem;
  -webkit-border-after: 3px solid var(--color-secondary);
          border-block-end: 3px solid var(--color-secondary);
  -webkit-border-start: 3px solid var(--color-secondary);
          border-inline-start: 3px solid var(--color-secondary);
}

.p-form__privacy-text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 1.25rem;
  line-height: var(--line-height-base);
  text-align: center;
}

.p-form__privacy-text a {
  color: var(--color-blue);
}
.p-form__privacy-text a:focus-visible {
  text-decoration: underline;
}

.p-form__submit {
  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;
  row-gap: 0.625rem;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: center;
}

.p-form__submit .wpcf7-spinner {
  background-color: var(--color-secondary);
}

.p-form .wpcf7-list-item {
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .p-form__privacy-text a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .p-form__term {
    border-radius: 8px;
    font-size: 1.25rem;
  }
  .p-form__term label span {
    font-size: 0.8125rem;
  }
  .p-form__must {
    width: 2.625rem;
    height: 1.25rem;
    font-size: 0.8125rem;
  }
  .p-form__contents {
    font-size: 1rem;
  }
  .p-form__radio-wrap > span > span {
    row-gap: 0.75rem;
  }
  .p-form__radio-wrap input + span {
    -webkit-padding-start: 2.375rem;
            padding-inline-start: 2.375rem;
  }
  .p-form__radio-wrap input + span::before {
    width: 1.625rem;
    height: 1.625rem;
  }
  .p-form__radio-wrap input + span::after {
    top: 0.4375rem;
    left: 0.375rem;
    width: 0.875rem;
    height: 0.875rem;
  }
  .p-form__checkbox-wrap > span > span {
    row-gap: 0.75rem;
  }
  .p-form__checkbox-wrap input + span {
    -webkit-padding-start: 2.375rem;
            padding-inline-start: 2.375rem;
  }
  .p-form__checkbox-wrap input + span::before {
    width: 1.625rem;
    height: 1.625rem;
  }
  .p-form__checkbox-wrap input + span::after {
    top: 0.625rem;
    left: 0.3125rem;
    width: 1rem;
    height: 0.6875rem;
  }
  .p-form input,
  .p-form textarea {
    border-radius: 6px;
    font-size: 1rem;
  }
  .p-form textarea {
    min-height: 15.625rem;
  }
  .p-form__privacy-check {
    font-size: 1rem;
  }
  .p-form__privacy-check input + span {
    -webkit-padding-start: 2.375rem;
            padding-inline-start: 2.375rem;
  }
  .p-form__privacy-check input + span::before {
    width: 1.625rem;
    height: 1.625rem;
  }
  .p-form__privacy-check input + span::after {
    top: 0.625rem;
    left: 0.3125rem;
    width: 1rem;
    height: 0.6875rem;
  }
  .p-form__privacy-text {
    font-size: 1rem;
  }
}
/*
    p-facility
---------------------------------*/
.p-facility__title {
  font-size: 1.875rem;
}

.p-facility__block {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}

.p-facility__block + .p-facility__block {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}

.p-facility__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 20px;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

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

.p-facility__img:nth-child(1),
.p-facility__img:nth-child(2) {
  grid-column: 1/3;
}

.p-facility__img img {
  width: 100%;
  border-radius: 10px;
}

.p-facility__caption {
  -webkit-margin-before: 0.75rem;
          margin-block-start: 0.75rem;
}

.p-facility__address {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.p-facility__map {
  aspect-ratio: 500/420;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-facility__map iframe {
  width: 100%;
  height: 100%;
}

.p-facility__access {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-facility__access + .p-facility__access {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-facility__box {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.p-facility__block .p-facility__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

@media (max-width: 767px) {
  .p-facility__title {
    font-size: 1.4375rem;
  }
  .p-facility__gallery {
    gap: 1rem 16px;
  }
  .p-facility__address {
    font-size: 1.125rem;
  }
}
/*
    p-group
---------------------------------*/
.p-group__block + .p-group__block {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}

.p-group__contents {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.p-group__text + .p-group__text {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-group__chart {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.p-group__chart-title {
  position: relative;
  width: 26.25rem;
  max-width: 100%;
  padding: 18px 20px;
  margin-inline: auto;
  border-radius: 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
  text-align: center;
}
.p-group__chart-title::after {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 2px;
  height: 1.5rem;
  background-color: var(--color-primary);
  content: "";
}

.p-group__chart-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
.p-group__chart-list::before {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  translate: -50%;
  width: calc(50% - 10px + 22px);
  height: 2px;
  background-color: var(--color-primary);
  content: "";
}

.p-group__chart-item {
  position: relative;
  padding: 16px 15px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  background-color: var(--color-white);
  text-align: center;
}
.p-group__chart-item::before {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  translate: -50%;
  width: 2px;
  height: 2.5rem;
  background-color: var(--color-primary);
  content: "";
}

.p-group__chart-child-item {
  padding: 12px;
  border-radius: 10px;
  background-color: var(--bg-color-green03);
  font-size: 1.25rem;
  line-height: var(--line-height-sm);
}

.p-group__chart-child-item + .p-group__chart-child-item {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.p-group__chart-item-text {
  -webkit-margin-before: 0.875rem;
          margin-block-start: 0.875rem;
  font-size: 1.5rem;
  line-height: var(--line-height-sm);
}

.p-group__chart-text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-group__chart-title {
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.125rem;
  }
  .p-group__chart-list {
    gap: 17px;
  }
  .p-group__chart-list::before {
    width: calc(50% - 10px + 20px);
  }
  .p-group__chart-item {
    border-radius: 10px;
  }
  .p-group__chart-child-item {
    padding: 12px 10px;
    font-size: 0.875rem;
  }
  .p-group__chart-item-text {
    font-size: 1.125rem;
  }
}
/*
    p-privacy-policy
---------------------------------*/
.p-privacy-policy__list {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.p-privacy-policy__item + .p-privacy-policy__item {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}

.p-privacy-policy__text {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-privacy-policy__intro .p-privacy-policy__text {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

/*
    p-thanks
---------------------------------*/
.p-thanks__text + .p-thanks__text {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-thanks__button {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: center;
}

/*
    p-not-found
---------------------------------*/
.p-not-found__text + .p-not-found__text {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}

.p-not-found__button {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: center;
}

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

Utility

---------------------------------*/
@media (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-only-pc {
    display: none !important;
  }
}
/*
    スクリーンリーダー用
---------------------------------*/
.u-visually-hidden {
  position: absolute !important;
  clip: rect(0, 0, 0, 0) !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/*
    英語大文字対応
---------------------------------*/
.u-text-uppercase {
  text-transform: uppercase;
}

/*
    背景色
---------------------------------*/
.u-bg-white {
  background-color: var(--color-white);
}

.u-bg-green {
  background-color: var(--bg-color-green);
}

.u-bg-yellow {
  background-color: var(--bg-color-yellow02);
}
