@charset "UTF-8";
/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #333333;
  --color-white: #FFFFFF;
  --color-gray: #CCCCCC;
  --color-bg: #DFDDDE;
  --color-bg1: #F4E6DF;
  --color-main1: #C2B4A9;
  --color-main2: #BCBE9E;
  --color-main3: #7A8795;
  --color-main4: #696969; }

/* ==========================================================================
   font-size
========================================================================== */
:root {
  --font-size-10: 1rem;
  --font-size-11: 1.1rem;
  --font-size-12: 1.2rem;
  --font-size-13: 1.3rem;
  --font-size-14: 1.4rem;
  --font-size-15: 1.5rem;
  --font-size-16: 1.6rem;
  --font-size-17: 1.7rem;
  --font-size-18: 1.8rem;
  --font-size-19: 1.9rem;
  --font-size-20: 2rem;
  --font-size-22: 2.2rem;
  --font-size-24: 2.4rem;
  --font-size-26: 2.6rem;
  --font-size-28: 2.8rem;
  --font-size-30: 3.0rem;
  --font-size-32: 3.2rem;
  --font-size-34: 3.4rem;
  --font-size-36: 3.6rem; }

@media screen and (max-width: 799px) {
  :root {
    --font-size-11: 1rem;
    --font-size-12: 1.1rem;
    --font-size-13: 1.2rem;
    --font-size-14: 1.3rem;
    --font-size-15: 1.4rem;
    --font-size-16: 1.5rem;
    --font-size-17: 1.6rem;
    --font-size-18: 1.6rem;
    --font-size-19: 1.7rem;
    --font-size-20: 1.8rem;
    --font-size-22: 1.8rem;
    --font-size-24: 2rem;
    --font-size-26: 2rem;
    --font-size-28: 2.2rem;
    --font-size-30: 2.4rem;
    --font-size-32: 2.6rem;
    --font-size-34: 2.8rem;
    --font-size-36: 3rem; } }
/* ==========================================================================
   font-family
========================================================================== */
:root {
  --font-family-main: YakuHanJPs, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  --font-family-sans: "Inter", sans-serif; }

/* ==========================================================================
   font-wight
========================================================================== */
:root {
  --font-wight-400: 400;
  --font-wight-500: 500;
  --font-wight-600: 600;
  --font-wight-700: 700; }

/* ==========================================================================
   line-height
========================================================================== */
:root {
  --line-height-s: 1.6;
  --line-height-m: 1.8;
  --line-height-l: 2.0; }

/* ==========================================================================
   letter-spacing
========================================================================== */
:root {
  --letter-spacing-s: .025em;
  --letter-spacing-m: .05em;
  --letter-spacing-l: .075em; }

/* ==========================================================================
   width
========================================================================== */
:root {
  --container-s: 96rem;
  --container-m: 132rem;
  --container-l: 144rem; }

/* ==========================================================================
   z-index
========================================================================== */
:root {
  --z-index-toggle: 100;
  --z-index-sitemap: 90;
  --z-index-header: 80;
  --z-index-contact: 70;
  --z-index-sns: 60;
  --z-index-footer: 50;
  --z-index-main: 40; }

/* ==========================================================================
 *
 * mixin scss
 *
========================================================================== */
/* ==========================================================================
   container
========================================================================== */
/* ==========================================================================
   font-feature-settings
========================================================================== */
/* ==========================================================================
   writing-mode-vertical
========================================================================== */
/* ==========================================================================
 *
 * nav scss
 *
========================================================================== */
/* ==========================================================================
   toggle
========================================================================== */
.l-toggle span {
  transition-property: transform, opacity, top, bottom, width;
  transition-duration: .5s;
  transition-timing-function: ease; }

.l-toggle.js-active span:nth-child(1) {
  top: 6px;
  transform: rotate(15deg); }
.l-toggle.js-active span:nth-child(2) {
  opacity: 0; }
.l-toggle.js-active span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-15deg);
  width: 100%; }

/* ==========================================================================
   sitemap
========================================================================== */
.l-sitemap {
  opacity: 0;
  visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: .25s;
  transition-timing-function: ease; }
  .l-sitemap ul li {
    transform: translate(0, 20px);
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .l-sitemap ul li:nth-child(2) {
      transition-delay: 0.2s; }
    .l-sitemap ul li:nth-child(3) {
      transition-delay: 0.4s; }
    .l-sitemap ul li:nth-child(4) {
      transition-delay: 0.6s; }
    .l-sitemap ul li:nth-child(5) {
      transition-delay: 0.8s; }
    .l-sitemap ul li:nth-child(6) {
      transition-delay: 1s; }
    .l-sitemap ul li:nth-child(7) {
      transition-delay: 1.2s; }
    .l-sitemap ul li:nth-child(8) {
      transition-delay: 1.4s; }
    .l-sitemap ul li:nth-child(9) {
      transition-delay: 1.6s; }
    .l-sitemap ul li:nth-child(10) {
      transition-delay: 1.8s; }
    .l-sitemap ul li:nth-child(11) {
      transition-delay: 2s; }

.l-sitemap.js-active {
  opacity: 1;
  visibility: visible; }
  .l-sitemap.js-active ul li {
    transform: translate(0, 0);
    opacity: 1; }

/* ==========================================================================
 *
 * nav scss
 *
========================================================================== */
/* ==========================================================================
   img-scale
========================================================================== */
.c-img-scale {
  overflow: hidden; }
  .c-img-scale img {
    transform: scale(1.2);
    transition-property: transform;
    transition-duration: 3.5s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }

.c-img-scale.js-active img {
  transform: scale(1); }

/* ==========================================================================
   footer-hide
========================================================================== */
.c-footer-hide {
  transition-property: opacity, visibility;
  transition-duration: .25s;
  transition-timing-function: ease; }

.c-footer-hide.js-active {
  opacity: 0;
  visibility: hidden; }

/* ==========================================================================
   fade
========================================================================== */
.c-fade {
  transform: translateY(10px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 2s;
  transition-delay: .3s;
  transition-timing-function: ease; }

.c-fade._d1 {
  transition-delay: .6s; }

.c-fade._d2 {
  transition-delay: .9s; }

.c-fade.js-active {
  transform: translateY(0);
  opacity: 1; }

/* ==========================================================================
   link-target
========================================================================== */
.c-link-target {
  padding-top: .1rem;
  margin-top: -.1rem; }

/* ==========================================================================
 *
 * accordion scss
 * -
 *
========================================================================== */
.c-accordion {
  position: relative; }
  .c-accordion .accordion__input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0; }
  .c-accordion .accordion__label {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease; }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '+';
      top: 0;
      right: 0; }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0; }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    opacity: 1; }
  .c-accordion .accordion__input:checked ~ .accordion__label::before {
    content: '-'; }

/* ==========================================================================
 *
 * btn scss
 *
========================================================================== */
/* ==========================================================================
   btn1
========================================================================== */
.c-btn1 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn1 svg {
    fill: var(--color-white);
    width: 1.8rem;
    height: 1.8rem; }
  .c-btn1:hover {
    background: var(--color-black); }

/* ==========================================================================
   btn2
========================================================================== */
.c-btn2 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn2 svg {
    fill: var(--color-white);
    width: 2.6rem;
    height: 2.6rem; }
  .c-btn2:hover {
    background: var(--color-black); }

.c-btn2__label {
  flex: 1;
  margin-left: 2rem; }

.c-btn2__txt {
  display: block;
  font-size: var(--font-size-15);
  margin-bottom: .3rem; }

.c-btn2__num {
  font-size: var(--font-size-10); }

/* ==========================================================================
   btn3
========================================================================== */
.c-btn3 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center; }
  .c-btn3 svg {
    width: 1.6rem;
    height: 1.6rem; }
  .c-btn3:hover .c-btn3__icon {
    background: var(--color-black); }
  .c-btn3:hover svg {
    fill: var(--color-white); }

.c-btn3__icon {
  border: solid var(--color-black) 1px;
  border-radius: 50%;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 3.6rem;
  transition: background .25s ease; }

/* ==========================================================================
   btn4
========================================================================== */
.c-btn4 {
  position: relative;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15); }
  .c-btn4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.5rem;
    width: 0;
    height: 1px;
    background-color: var(--color-black);
    transition: width .25s ease; }
  .c-btn4:hover::after {
    width: 100%; }

/* ==========================================================================
 *
 * text scss
 * text-anime1 / text-anime2
 *
========================================================================== */
/* ==========================================================================
   text-anime1
========================================================================== */
.c-text-anime1 .c-text-block {
  display: block; }
.c-text-anime1 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime1 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime1 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime1.js-active .c-text-block {
  display: block; }
.c-text-anime1.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* ==========================================================================
   text-anime2
========================================================================== */
.c-text-anime2 .c-text-block {
  display: block; }
.c-text-anime2 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime2 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scale(2);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime2 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime2.js-active .c-text-block {
  display: block; }
.c-text-anime2.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1); }

/* ==========================================================================
 *
 * common scss
 *
========================================================================== */
/* ==========================================================================
   #general
========================================================================== */
html {
  font-size: 62.5%; }
  @media screen and (min-width: 1920px) {
    html {
      font-size: 0.5211047421vw; } }
  @media screen and (min-width: 800px) and (max-width: 1199px) {
    html {
      font-size: 0.834028357vw; } }
  @media screen and (max-width: 374px) {
    html {
      font-size: 2.6737967914vw; } }

body {
  font-family: var(--font-family-main);
  font-optical-sizing: auto;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

h1, h2, h3, h4, h5, p, li, dt, dd {
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing-m); }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
img {
  max-width: 100%;
  height: auto; }

/* ==========================================================================
   #other
========================================================================== */
.c-spBlock {
  display: none; }
  @media screen and (max-width: 579px) {
    .c-spBlock {
      display: block; } }

@media screen and (max-width: 579px) {
  .c-spNone {
    display: none; } }

.c-head {
  border-top: solid var(--color-main1) 1px;
  padding: 3.5rem 0 0; }
  @media screen and (max-width: 799px) {
    .c-head {
      padding: 2rem 0 0; } }
  .c-head ._label {
    color: var(--color-main1);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-14);
    font-weight: var(--font-wight-600); }

.c-cap {
  font-size: var(--font-size-30);
  line-height: var(--line-height-m); }
  @media screen and (max-width: 799px) {
    .c-cap {
      font-size: var(--font-size-26); } }

.c-btn {
  position: relative;
  margin-top: 4rem;
  width: fit-content; }
  .c-btn ._btn {
    position: relative;
    width: 22.5rem;
    height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid #625D57 1px;
    border-radius: 2.6rem;
    color: #625D57;
    font-size: var(--font-size-14);
    z-index: 2; }
    @media screen and (max-width: 799px) {
      .c-btn ._btn {
        width: 20rem;
        height: 5rem;
        border-radius: 2.5rem; } }
    .c-btn ._btn::before {
      position: absolute;
      content: '';
      top: 50%;
      right: -3rem;
      width: 5rem;
      height: 1px;
      background: #625D57; }
  .c-btn span {
    position: absolute;
    content: '';
    top: .6rem;
    left: .6rem;
    width: 22.5rem;
    height: 5.2rem;
    background: var(--color-bg1);
    border-radius: 2.6rem;
    transition: .3s;
    z-index: 1; }
    @media screen and (max-width: 799px) {
      .c-btn span {
        width: 20rem;
        height: 5rem;
        border-radius: 2.5rem; } }
  .c-btn:hover span {
    top: 0;
    left: 0; }

.c-btn._ct {
  margin-left: auto;
  margin-right: auto; }

.c-btn._wt span {
  background: rgba(255, 255, 255, 0.5); }

.c-subhead {
  border-top: solid var(--color-main1) 1px;
  padding: 3.5rem 0 0; }
  @media screen and (max-width: 799px) {
    .c-subhead {
      padding: 2rem 0 0; } }
  .c-subhead ._label {
    color: var(--color-main1);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-24);
    font-weight: var(--font-wight-600); }

.c-subhead._ct ._label,
.c-subhead._ct .c-subcap {
  text-align: center; }

.c-subhead._bk {
  border-top-color: var(--color-main4); }
  .c-subhead._bk ._label,
  .c-subhead._bk .c-subcap {
    color: var(--color-main4); }

.c-subcap {
  color: var(--color-main1);
  font-size: var(--font-size-15);
  font-weight: var(--font-wight-500);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .c-subcap {
      font-size: 1.3rem;
      margin-top: 1.5rem; } }

.c-subhero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh; }
  .c-subhero .c-subhero-photo {
    width: 100%;
    height: 100%; }
    .c-subhero .c-subhero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .c-subhero .c-subhero-logo {
    position: absolute;
    top: 3rem;
    left: 3%; }
    @media screen and (max-width: 799px) {
      .c-subhero .c-subhero-logo {
        top: 2.5rem;
        left: 5%; } }
    .c-subhero .c-subhero-logo img {
      width: 16rem;
      height: 5.8rem; }
      @media screen and (max-width: 799px) {
        .c-subhero .c-subhero-logo img {
          width: 12rem;
          height: 4.4rem; } }
  .c-subhero .c-subhero-head {
    position: absolute;
    left: 8%;
    bottom: 12rem;
    padding-right: 8%; }
    @media screen and (max-width: 799px) {
      .c-subhero .c-subhero-head {
        bottom: 15rem; } }
    .c-subhero .c-subhero-head ._cap {
      font-family: var(--font-family-sans);
      font-size: 5rem;
      font-weight: var(--font-wight-500); }
      @media screen and (max-width: 799px) {
        .c-subhero .c-subhero-head ._cap {
          font-size: 4rem; } }
    .c-subhero .c-subhero-head ._breadcrumb {
      display: flex;
      flex-wrap: wrap;
      column-gap: .5rem;
      margin-top: 1rem;
      margin-left: .5rem; }
      .c-subhero .c-subhero-head ._breadcrumb li {
        font-size: var(--font-size-12);
        line-height: 1.4;
        letter-spacing: 0; }
        @media screen and (max-width: 799px) {
          .c-subhero .c-subhero-head ._breadcrumb li {
            font-size: 1rem; } }
  .c-subhero .c-subhero-cap {
    position: absolute;
    right: 5%;
    bottom: 24rem; }
    @media screen and (max-width: 799px) {
      .c-subhero .c-subhero-cap {
        right: 8%;
        bottom: 30rem; } }
    .c-subhero .c-subhero-cap ._txt {
      color: var(--color-white);
      font-size: var(--font-size-30);
      font-weight: var(--font-wight-500);
      line-height: var(--line-height-l);
      letter-spacing: .2em;
      text-align: right; }
      @media screen and (max-width: 799px) {
        .c-subhero .c-subhero-cap ._txt {
          font-size: var(--font-size-22); } }

.c-leaf {
  position: absolute;
  width: 25rem; }
  @media screen and (max-width: 799px) {
    .c-leaf {
      width: 14rem; } }
  .c-leaf img {
    width: 100%;
    opacity: .5; }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: .5rem;
  padding: 1.75rem 5rem;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      display: none; } }
  .l-header .header__list {
    display: flex;
    column-gap: 3rem; }
    .l-header .header__list li {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14);
      font-weight: var(--font-wight-600); }
    .l-header .header__list a {
      transition: color .3s; }
    .l-header .header__list a:hover {
      color: #999999; }
  .l-header ._submenu {
    position: absolute;
    top: 100%;
    left: -20%;
    width: 140%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 4rem;
    background: rgba(255, 255, 255, 0.6);
    border: solid #cccccc 1px;
    border-radius: .5rem;
    list-style: none;
    margin: .3rem 0 0;
    padding: 2rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: translateY(10px); }
    .l-header ._submenu li {
      position: relative; }
    .l-header ._submenu li::before {
      position: absolute;
      content: '';
      left: -2rem;
      width: 1px;
      height: 100%;
      background: #cccccc; }
    .l-header ._submenu li:first-child::before {
      display: none; }
    .l-header ._submenu a {
      display: block;
      white-space: nowrap; }
    .l-header ._submenu ._label {
      display: block;
      font-family: var(--font-family-main);
      font-size: var(--font-size-13);
      font-weight: var(--font-wight-400);
      margin-top: 1rem;
      text-align: center; }
  .l-header ._sub:hover ._submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 3rem;
  right: 2.5rem;
  z-index: var(--z-index-toggle); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 5rem;
    height: 13px; }
  .l-toggle span {
    background: var(--color-black);
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px; }
  .l-toggle span:nth-child(1) {
    top: 0; }
  .l-toggle span:nth-child(2) {
    top: 6px;
    width: 60%; }
  .l-toggle span:nth-child(3) {
    bottom: 0;
    width: 30%; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FCFCFC;
  padding: 12rem 5% 2rem;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__wrap {
    height: 100%;
    overflow-y: scroll;
    padding: 0 2rem 6rem; }
  .l-sitemap .sitemap__logo {
    position: absolute;
    top: 3rem;
    left: 2rem; }
    .l-sitemap .sitemap__logo img {
      width: 12rem;
      height: 4.4rem; }
  .l-sitemap .sitemap__list > li {
    font-size: var(--font-size-12);
    font-weight: var(--font-wight-600);
    border-bottom: solid #DBCFC6 1px;
    padding: 2.5rem 0 2rem; }
  .l-sitemap .sitemap__list ._en {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-22);
    font-weight: var(--font-wight-600);
    margin-right: .8rem; }
  .l-sitemap .sitemap__list a {
    color: var(--color-main1); }
  .l-sitemap .sitemap__list ._submenu {
    margin-top: 1.5rem;
    padding-left: 2rem; }
  .l-sitemap .sitemap__list ._submenu li + li {
    margin-top: .8rem; }
  .l-sitemap .sitemap__list ._submenu a {
    color: #DBCFC6; }
  .l-sitemap .sitemap__list ._submenu ._cap {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    margin-right: .5rem; }
  .l-sitemap .sitemap__list ._submenu ._label {
    font-size: var(--font-size-12); }

/* ==========================================================================
   #sns
========================================================================== */
.l-sns {
  position: absolute;
  top: 4rem;
  right: 4%;
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
  z-index: var(--z-index-sns); }
  @media screen and (max-width: 799px) {
    .l-sns {
      top: 2.5rem;
      right: 11rem;
      column-gap: 1.5rem; } }
  .l-sns .sns__btn svg {
    width: 3rem;
    height: 3rem;
    fill: var(--color-black); }
    @media screen and (max-width: 799px) {
      .l-sns .sns__btn svg {
        width: 2.6rem;
        height: 2.6rem; } }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 45rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: .5rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      right: 1rem;
      bottom: 1rem;
      width: 50rem; } }
  @media screen and (max-width: 579px) {
    .l-contact {
      width: calc(100% - 2rem); } }
  .l-contact .contact__btn {
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border: solid var(--color-gray) 1px;
    border-radius: .5rem;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__btn {
        height: 5.2rem; } }
    .l-contact .contact__btn:hover {
      background: white; }
    .l-contact .contact__btn ._label {
      font-size: var(--font-size-12); }
      @media screen and (max-width: 799px) {
        .l-contact .contact__btn ._label {
          font-size: 1rem; } }
    .l-contact .contact__btn ._en {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      font-weight: var(--font-wight-600);
      margin-right: .75rem; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__btn ._en {
          font-size: 1.3rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 4rem;
  margin-top: 16rem;
  padding-bottom: 10rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .l-footer {
      display: block;
      margin-top: 7rem;
      padding-bottom: 3.5rem; } }
  .l-footer .footer__info {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__info {
        text-align: center; } }
    .l-footer .footer__info img {
      width: 22.5rem;
      height: 8.1rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__info img {
          width: 13rem;
          height: 4.7rem; } }
    .l-footer .footer__info ._add {
      font-size: var(--font-size-14);
      line-height: var(--line-height-s);
      margin-top: 5rem;
      margin-bottom: 1rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__info ._add {
          font-size: 1.2rem;
          margin-top: 4rem;
          margin-bottom: .5rem; } }
    .l-footer .footer__info dl {
      display: flex;
      column-gap: 1rem;
      margin-top: .5rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__info dl {
          display: block; } }
    .l-footer .footer__info dt {
      width: 5.5rem;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14);
      line-height: var(--line-height-s); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__info dt {
          width: 100%;
          font-size: 1.2rem;
          text-align: center; } }
    .l-footer .footer__info dd {
      flex: 1;
      font-size: var(--font-size-14);
      line-height: var(--line-height-s); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__info dd {
          font-size: 1.2rem; } }
  @media screen and (max-width: 799px) {
    .l-footer .footer__link {
      margin-top: 2.5rem; } }
  .l-footer .footer__link-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    column-gap: 3rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__link-nav {
        justify-content: center;
        padding: 0 8%; } }
    .l-footer .footer__link-nav li {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-13);
      font-weight: var(--font-wight-600);
      line-height: var(--line-height-s); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__link-nav li {
          margin-top: 1.5rem; } }
    .l-footer .footer__link-nav a {
      transition: opacity .3s; }
    .l-footer .footer__link-nav a:hover {
      opacity: .5; }
  .l-footer .footer__link-sns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 2rem;
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__link-sns {
        justify-content: center;
        margin-top: 4rem; } }
    .l-footer .footer__link-sns svg {
      width: 2.6rem;
      height: 2.6rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__link-sns svg {
          width: 2.4rem;
          height: 2.4rem; } }
  .l-footer .footer__link-copy {
    border-top: solid var(--color-main1) 1px;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-13);
    margin-top: 6rem;
    padding-top: 5rem;
    text-align: right; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__link-copy {
        font-size: 1.1rem;
        margin-top: 5rem;
        padding-top: 3rem;
        text-align: center; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh; }
  .p-index-hero .hero__photo {
    width: 100%;
    height: 100%; }
    .p-index-hero .hero__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-index-hero .hero__logo {
    position: absolute;
    left: 8%;
    bottom: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__logo {
        bottom: 12rem; } }
    .p-index-hero .hero__logo img {
      width: 25rem;
      height: 9rem; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__logo img {
          width: 17.5rem;
          height: 6.3rem; } }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-about {
      margin-top: 7rem; } }
  .p-index-about .about__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__wrap {
        display: block; } }
  .p-index-about .about__wrap-conte {
    flex: 1; }
  .p-index-about .about__wrap-note {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__wrap-note {
        margin-top: 4rem; } }
    .p-index-about .about__wrap-note ._cap {
      margin-bottom: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__wrap-note ._cap {
          margin-bottom: 2rem; } }
    .p-index-about .about__wrap-note ._txt {
      font-size: var(--font-size-15);
      line-height: var(--line-height-l);
      margin-top: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__wrap-note ._txt {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          margin-top: 1.5rem; } }
  .p-index-about .about__wrap-photo {
    width: 52.5%;
    display: flex;
    align-items: flex-end;
    column-gap: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__wrap-photo {
        width: 100%;
        display: block;
        margin-top: 5rem; } }
    .p-index-about .about__wrap-photo ._photo1 {
      width: 75%;
      padding-bottom: 12rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__wrap-photo ._photo1 {
          width: 85%;
          padding-bottom: 0; } }
    .p-index-about .about__wrap-photo ._photo2 {
      flex: 1; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__wrap-photo ._photo2 {
          width: 35%;
          margin-top: -4rem;
          margin-left: auto; } }
    .p-index-about .about__wrap-photo img {
      width: 100%; }
  .p-index-about .about__sepalate {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__sepalate {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__sepalate {
        width: 100%;
        margin-top: 6rem;
        padding-right: 8%; } }
    .p-index-about .about__sepalate img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__sepalate img {
          height: 37.5rem; } }
      @media screen and (max-width: 579px) {
        .p-index-about .about__sepalate img {
          height: 22.5rem; } }
  .p-index-about .c-leaf {
    top: 30%;
    left: 0; }
    @media screen and (max-width: 799px) {
      .p-index-about .c-leaf {
        top: auto;
        left: 0;
        bottom: 16rem; } }

/* ==========================================================================
   #concept
========================================================================== */
.p-index-concept {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-concept {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-concept {
      margin-top: 7rem; } }
  .p-index-concept .concept__wrap {
    width: 75%;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-index-concept .concept__wrap {
        width: 100%; } }
  .p-index-concept .concept__conte {
    display: flex;
    column-gap: 12rem;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-concept .concept__conte {
        display: block;
        margin-top: 4rem; } }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__conte-note {
      margin-top: 2rem; } }
  .p-index-concept .concept__conte-note ._txt {
    font-size: var(--font-size-15);
    line-height: var(--line-height-l); }
    @media screen and (max-width: 799px) {
      .p-index-concept .concept__conte-note ._txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word; } }
  .p-index-concept .concept__conte-note ._txt + ._txt {
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-concept .concept__conte-note ._txt + ._txt {
        margin-top: 1.5rem; } }

/* ==========================================================================
   #child
========================================================================== */
.p-index-child {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  column-gap: 8rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-child {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-child {
      width: 100%;
      display: block;
      margin-top: 7rem; } }
  .p-index-child .child__photo {
    width: 40%; }
    @media screen and (max-width: 799px) {
      .p-index-child .child__photo {
        width: 100%;
        padding-left: 8%; } }
    .p-index-child .child__photo img {
      width: 100%; }
      @media screen and (max-width: 799px) {
        .p-index-child .child__photo img {
          height: 37.5rem;
          object-fit: cover;
          object-position: 50% 25%; } }
      @media screen and (max-width: 579px) {
        .p-index-child .child__photo img {
          height: 22.5rem; } }
  .p-index-child .child__conte {
    flex: 1;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-child .child__conte {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-l);
        margin-top: 5rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-child .child__conte {
      width: 84%; } }

  .p-index-child .child__conte-note {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-child .child__conte-note {
        margin-top: 4rem; } }
  .p-index-child .child__conte-inner {
    width: 85%;
    margin-top: 4rem;
    padding-left: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-child .child__conte-inner {
        width: 100%;
        margin-top: 2rem;
        padding-left: 0; } }
    .p-index-child .child__conte-inner ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
    .p-index-child .child__conte-inner ._table {
      margin-top: 2rem;
      margin-bottom: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-child .child__conte-inner ._table {
          margin-top: 1.5rem;
          margin-bottom: 3rem; } }
    .p-index-child .child__conte-inner dl {
      display: flex;
      column-gap: 1rem; }
    .p-index-child .child__conte-inner dt {
      width: 15rem;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 1.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-index-child .child__conte-inner dt {
          width: 10rem; } }
    .p-index-child .child__conte-inner dd {
      flex: 1;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 1.5rem 0; }

/* ==========================================================================
   #company
========================================================================== */
.p-index-company {
  display: flex;
  background: var(--color-bg);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-company {
      display: block;
      margin-top: 7rem; } }
  .p-index-company .company__conte {
    flex: 1;
    padding: 10rem 0 10rem 6%; }
    @media screen and (max-width: 799px) {
      .p-index-company .company__conte {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-l);
        padding: 5rem 0 6rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-company .company__conte {
      width: 84%; } }

    .p-index-company .company__conte .c-head {
      border-color: var(--color-white); }
    .p-index-company .company__conte .c-head ._label {
      color: var(--color-white); }
  .p-index-company .company__conte-inner {
    margin-top: 3rem;
    padding-right: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-company .company__conte-inner {
        padding-right: 0; } }
  .p-index-company .company__conte-photo {
    text-align: right; }
    .p-index-company .company__conte-photo img {
      width: 30%;
      margin-left: auto; }
      @media screen and (max-width: 799px) {
        .p-index-company .company__conte-photo img {
          width: 45%; } }
  @media screen and (max-width: 799px) {
    .p-index-company .company__conte-note {
      margin-top: 2rem; } }
  .p-index-company .company__conte-note .c-cap {
    margin-bottom: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-company .company__conte-note .c-cap {
        margin-bottom: 2rem; } }
  .p-index-company .company__conte-note ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-15);
    line-height: var(--line-height-l);
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-company .company__conte-note ._txt {
        margin-top: 1.5rem; } }
  .p-index-company .company__photo {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-index-company .company__photo {
        width: 100%; } }
    .p-index-company .company__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media screen and (max-width: 799px) {
        .p-index-company .company__photo img {
          height: 37.5rem; } }
      @media screen and (max-width: 579px) {
        .p-index-company .company__photo img {
          height: 25rem; } }

/* ==========================================================================
   #news
========================================================================== */
.p-index-news {
  position: relative;
  margin-top: 16rem;
  padding-bottom: 2rem; }
  @media screen and (max-width: 799px) {
    .p-index-news {
      margin-top: 7rem; } }
  .p-index-news .news__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-news .news__wrap {
        width: 84%; } }
  .p-index-news .news__list {
    width: 75%;
    margin-top: 6rem;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-index-news .news__list {
        width: 100%;
        margin-top: 5rem; } }
  .p-index-news .news__list-item {
    display: flex;
    align-items: center;
    column-gap: 4rem;
    border-bottom: solid var(--color-main1) 1px;
    padding-bottom: 1.5rem;
    transition: .5s; }
    @media screen and (max-width: 799px) {
      .p-index-news .news__list-item {
        align-items: flex-start;
        padding-bottom: 2rem; } }
    .p-index-news .news__list-item + .news__list-item {
      margin-top: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-news .news__list-item + .news__list-item {
          margin-top: 3.5rem; } }
    .p-index-news .news__list-item:hover .news__list-photo img {
      transform: scale(1.1); }
  .p-index-news .news__list-conte {
    flex: 1; }
    .p-index-news .news__list-conte ._cap {
      font-size: var(--font-size-16);
      line-height: var(--line-height-m);
      margin-top: 1rem; }
      @media screen and (max-width: 799px) {
        .p-index-news .news__list-conte ._cap {
          font-size: var(--font-size-15); } }
  .p-index-news .news__list-term {
    display: flex;
    column-gap: 1.5rem; }
    .p-index-news .news__list-term ._date {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-12); }
    .p-index-news .news__list-term ._cat {
      position: relative;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-12);
      padding-left: 1.75rem; }
      @media screen and (max-width: 799px) {
        .p-index-news .news__list-term ._cat {
          padding-left: 1.5rem; } }
      .p-index-news .news__list-term ._cat::before {
        position: absolute;
        content: '●';
        top: 0;
        left: 0;
        color: var(--color-main1); }
  .p-index-news .news__list-photo {
    width: 22.5%; }
    .p-index-news .news__list-photo ._thumb {
      position: relative;
      padding-top: 62.5%;
      overflow: hidden; }
      @media screen and (max-width: 579px) {
        .p-index-news .news__list-photo ._thumb {
          padding-top: 100%; } }
    .p-index-news .news__list-photo img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .3s; }
  .p-index-news .news__link .c-btn {
    width: fit-content;
    margin-top: 6rem;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-index-news .news__link .c-btn {
        margin-top: 5rem;
        margin-left: 0; } }
  .p-index-news .c-leaf {
    top: -8rem;
    right: 0; }
    @media screen and (max-width: 799px) {
      .p-index-news .c-leaf {
        width: 15rem; } }

/* ==========================================================================
   #recruit
========================================================================== */
.p-index-recruit {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  flex-direction: row-reverse;
  column-gap: 8rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-recruit {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-recruit {
      display: block;
      margin-top: 5rem; } }
  .p-index-recruit .recruit__conte {
    flex: 1;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-recruit .recruit__conte {
        margin-top: 5rem; } }
  .p-index-recruit .recruit__conte-note {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-recruit .recruit__conte-note {
        margin-top: 4rem; } }
    .p-index-recruit .recruit__conte-note .c-cap {
      margin-bottom: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-recruit .recruit__conte-note .c-cap {
          margin-bottom: 2rem; } }
    .p-index-recruit .recruit__conte-note ._txt {
      font-size: var(--font-size-15);
      line-height: var(--line-height-l);
      margin-top: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-recruit .recruit__conte-note ._txt {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          margin-top: 1.5rem; } }
  .p-index-recruit .recruit__photo {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-index-recruit .recruit__photo {
        width: 75%;
        margin-left: auto; } }

/* ==========================================================================
   #shop
========================================================================== */
.p-index-shop {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  flex-direction: row-reverse;
  column-gap: 8rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-shop {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-shop {
      display: block;
      margin-top: 7rem; } }
  .p-index-shop .shop__conte {
    flex: 1;
    margin-top: 4rem; }
  .p-index-shop .shop__conte-inner {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-shop .shop__conte-inner {
        margin-top: 4rem; } }
  .p-index-shop .shop__conte-note {
    width: 90%; }
    @media screen and (max-width: 799px) {
      .p-index-shop .shop__conte-note {
        width: 100%; } }
    .p-index-shop .shop__conte-note .c-cap {
      font-family: var(--font-family-sans); }
    .p-index-shop .shop__conte-note ._txt {
      font-size: var(--font-size-15);
      margin-bottom: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-shop .shop__conte-note ._txt {
          margin-bottom: 3rem; } }
    .p-index-shop .shop__conte-note dl {
      display: flex;
      column-gap: 1rem;
      padding-left: 5rem; }
      @media screen and (max-width: 799px) {
        .p-index-shop .shop__conte-note dl {
          padding-left: 0; } }
    .p-index-shop .shop__conte-note dt {
      width: 12.5rem;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 1.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-index-shop .shop__conte-note dt {
          width: 8rem; } }
    .p-index-shop .shop__conte-note dd {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex: 1;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 1.5rem 0; }
  .p-index-shop .shop__map {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-index-shop .shop__map {
        width: 100%;
        margin-top: 5rem; } }
    .p-index-shop .shop__map iframe {
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 799px) {
        .p-index-shop .shop__map iframe {
          height: 30rem; } }

/* ==========================================================================
   #sns
========================================================================== */
.p-index-sns {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-sns {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-sns {
      margin-top: 7rem; } }
  .p-index-sns .c-head ._label {
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-sns .c-head ._label {
        text-align: left; } }
  .p-index-sns .sns__wrap {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__wrap {
        margin-top: 4rem; } }
  .p-index-sns .sns__block + .sns__block {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__block + .sns__block {
        margin-top: 5rem; } }
  .p-index-sns .sns__block-cap ._cap {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-20);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__block-cap ._cap {
        font-size: var(--font-size-16);
        text-align: left; } }
  .p-index-sns .sns__block-cap ._label {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-13);
    margin-top: 1rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__block-cap ._label {
        font-size: var(--font-size-11);
        text-align: right; } }
  .p-index-sns .sns__block-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .5rem;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__block-list {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 1rem; } }
  .p-index-sns .sns__block-list2 {
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__block-list2 {
        margin-top: 1rem; } }
  .p-index-sns .sns__block-item {
    background: #f2f2f2;
    padding-top: 100%; }

/* ==========================================================================
   #sepalate
========================================================================== */
.p-index-sepalate {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-sepalate {
      margin-top: 7rem; } }
  .p-index-sepalate .sepalate__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-sepalate .sepalate__wrap {
        width: 84%; } }
  .p-index-sepalate .sepalate__photo1 img {
    width: 75%; }
    @media screen and (max-width: 799px) {
      .p-index-sepalate .sepalate__photo1 img {
        width: 85%; } }
  .p-index-sepalate .sepalate__photo2 {
    margin-top: 6rem;
    text-align: right; }
    @media screen and (max-width: 799px) {
      .p-index-sepalate .sepalate__photo2 {
        margin-top: 1.5rem; } }
    .p-index-sepalate .sepalate__photo2 img {
      width: 75%; }
      @media screen and (max-width: 799px) {
        .p-index-sepalate .sepalate__photo2 img {
          width: 85%; } }
  .p-index-sepalate .sepalate__leaf {
    position: absolute;
    left: 0;
    bottom: 10rem;
    width: 25rem;
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-sepalate .sepalate__leaf {
        left: 0;
        bottom: 0;
        width: 15rem; } }
    .p-index-sepalate .sepalate__leaf img {
      width: 100%;
      opacity: .1; }

/* ==========================================================================
 *
 * shop scss
 *
========================================================================== */
/* ==========================================================================
   #slide
========================================================================== */
.p-shop-slide {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    .p-shop-slide {
      margin-top: 5rem; } }
  .p-shop-slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .p-shop-slide .swiper-slide {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-shop-slide .swiper-slide {
        width: 90%; } }
    .p-shop-slide .swiper-slide img {
      width: 100%; }

/* ==========================================================================
   #welcome
========================================================================== */
.p-shop-welcome {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    .p-shop-welcome {
      margin-top: 5rem; } }
  .p-shop-welcome .welcome__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-shop-welcome .welcome__head {
        width: 84%; } }
  .p-shop-welcome .welcome__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    margin-top: 8rem;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-shop-welcome .welcome__list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-shop-welcome .welcome__list {
        margin-top: 5rem; } }
  .p-shop-welcome .welcome__list-item {
    width: 80%;
    display: flex;
    align-items: flex-end;
    column-gap: 10rem;
    border-bottom: solid #CFC7BB 1px;
    margin-left: auto;
    padding-right: 5%;
    padding-bottom: 5rem; }
    @media screen and (max-width: 799px) {
      .p-shop-welcome .welcome__list-item {
        width: 100%;
        display: block;
        padding-right: 0; } }
    .p-shop-welcome .welcome__list-item + .welcome__list-item {
      margin-top: 7rem; }
      @media screen and (max-width: 799px) {
        .p-shop-welcome .welcome__list-item + .welcome__list-item {
          margin-top: 5rem; } }
  .p-shop-welcome .welcome__list-photo {
    width: 32.5%;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-shop-welcome .welcome__list-photo {
        width: 80%;
        margin: 0 auto; } }
    .p-shop-welcome .welcome__list-photo img {
      width: 100%; }
  .p-shop-welcome .welcome__list-conte {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-shop-welcome .welcome__list-conte {
        margin-top: 3rem; } }
  .p-shop-welcome .welcome__list-menu {
    display: flex;
    align-items: center;
    column-gap: 3rem; }
    @media screen and (max-width: 579px) {
      .p-shop-welcome .welcome__list-menu {
        column-gap: 2rem; } }
    .p-shop-welcome .welcome__list-menu ._target {
      width: 10rem;
      height: 10rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #E3CFC6;
      border-radius: 100%;
      font-size: var(--font-size-16);
      font-weight: var(--font-wight-500);
      line-height: 1.4;
      padding-top: .3rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-shop-welcome .welcome__list-menu ._target {
          width: 8rem;
          height: 8rem;
          font-size: 1.3rem; } }
    .p-shop-welcome .welcome__list-menu ._note {
      flex: 1; }
    .p-shop-welcome .welcome__list-menu ._label {
      color: var(--color-main1);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14);
      font-weight: var(--font-wight-500); }
      @media screen and (max-width: 799px) {
        .p-shop-welcome .welcome__list-menu ._label {
          font-size: 1.2rem; } }
    .p-shop-welcome .welcome__list-menu ._cap {
      border-bottom: dotted var(--color-main1) 1px;
      font-size: var(--font-size-28);
      line-height: var(--line-height-s);
      margin-top: .5rem;
      padding-bottom: 2rem; }
      @media screen and (max-width: 799px) {
        .p-shop-welcome .welcome__list-menu ._cap {
          font-size: 2rem; } }
  .p-shop-welcome .welcome__list-price {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    column-gap: .8rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-shop-welcome .welcome__list-price {
        margin-top: 3rem; } }
    .p-shop-welcome .welcome__list-price ._np {
      font-size: var(--font-size-18); }
      @media screen and (max-width: 799px) {
        .p-shop-welcome .welcome__list-price ._np {
          font-size: 1.3rem; } }
    .p-shop-welcome .welcome__list-price ._sp {
      color: #EB6250;
      font-size: var(--font-size-20); }
      .p-shop-welcome .welcome__list-price ._sp span {
        font-family: var(--font-family-sans);
        font-size: var(--font-size-36); }
  .p-shop-welcome .welcome__list-link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1rem;
    margin-top: 3rem; }
    @media screen and (max-width: 579px) {
      .p-shop-welcome .welcome__list-link {
        max-width: 37.5rem;
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: .5rem;
        margin-top: 2.5rem;
        margin-left: auto; } }
    .p-shop-welcome .welcome__list-link ._btn {
      background: var(--color-main4);
      border: solid #ccc 1px;
      border-radius: .8rem;
      padding: 1rem 0 1.2rem;
      text-align: center;
      transition: background .3s; }
      @media screen and (max-width: 579px) {
        .p-shop-welcome .welcome__list-link ._btn {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 2.5rem; } }
      .p-shop-welcome .welcome__list-link ._btn:hover {
        background: #424141; }
    .p-shop-welcome .welcome__list-link ._btn._line {
      background: var(--color-main2); }
      .p-shop-welcome .welcome__list-link ._btn._line:hover {
        background: #9fa181; }
    .p-shop-welcome .welcome__list-link ._btn._line svg {
      fill: var(--color-black); }
    .p-shop-welcome .welcome__list-link ._btn._line ._label {
      color: var(--color-black); }
    .p-shop-welcome .welcome__list-link ._btn._web {
      background: var(--color-main3); }
      .p-shop-welcome .welcome__list-link ._btn._web:hover {
        background: #64707d; }
    .p-shop-welcome .welcome__list-link svg {
      width: 3rem;
      height: 3rem;
      fill: var(--color-white); }
    .p-shop-welcome .welcome__list-link ._label {
      display: block;
      color: var(--color-white);
      font-size: var(--font-size-15);
      font-weight: var(--font-wight-500);
      margin-top: .6rem; }
      @media screen and (max-width: 579px) {
        .p-shop-welcome .welcome__list-link ._label {
          margin-right: 2.5rem; } }

/* ==========================================================================
   #menu
========================================================================== */
.p-shop-menu {
  position: relative;
  background: #F7F7F7;
  margin-top: 14rem;
  padding: 12rem 0; }
  @media screen and (max-width: 799px) {
    .p-shop-menu {
      margin-top: 7rem;
      padding: 6rem 0 7rem; } }
  .p-shop-menu .menu__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__wrap {
        width: 100%; } }
  @media screen and (max-width: 799px) {
    .p-shop-menu .menu__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-l); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-shop-menu .menu__head {
      width: 84%; } }

  .p-shop-menu .menu__conte {
    display: flex;
    column-gap: 4rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__conte {
        display: block;
        margin-top: 5rem; } }
  .p-shop-menu .menu__conte-nav {
    width: 35rem; }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__conte-nav {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-l); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-shop-menu .menu__conte-nav {
      width: 84%; } }

  .p-shop-menu .menu__conte-nav-inner {
    position: sticky;
    top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__conte-nav-inner ._mainmenu {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-row-gap: 2rem; } }
    @media screen and (max-width: 579px) {
      .p-shop-menu .menu__conte-nav-inner ._mainmenu {
        grid-template-columns: repeat(2, 1fr); } }
    .p-shop-menu .menu__conte-nav-inner ._mainmenu > li {
      position: relative;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-18);
      padding-left: 1.5rem; }
      .p-shop-menu .menu__conte-nav-inner ._mainmenu > li::before {
        position: absolute;
        content: '';
        top: .6rem;
        left: 0;
        width: .5rem;
        height: .5rem;
        border-radius: 100%;
        background: #E3CFC6; }
      .p-shop-menu .menu__conte-nav-inner ._mainmenu > li + li {
        margin-top: 2.5rem; }
        @media screen and (max-width: 799px) {
          .p-shop-menu .menu__conte-nav-inner ._mainmenu > li + li {
            margin-top: 0; } }
    .p-shop-menu .menu__conte-nav-inner ._mainmenu a {
      transition: opacity .3s; }
    .p-shop-menu .menu__conte-nav-inner ._mainmenu a:hover {
      opacity: .5; }
    .p-shop-menu .menu__conte-nav-inner ._submenu li {
      position: relative;
      color: #aaa;
      font-size: var(--font-size-14);
      margin-top: 1.5rem;
      padding-left: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-nav-inner ._submenu li {
          font-size: 1.2rem;
          margin-top: 1rem; } }
      .p-shop-menu .menu__conte-nav-inner ._submenu li::before {
        position: absolute;
        content: '-';
        top: 0;
        left: 0; }
  .p-shop-menu .menu__conte-list {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__conte-list {
        margin-top: 5rem; } }
  .p-shop-menu .menu__conte-list-item + .menu__conte-list-item {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__conte-list-item + .menu__conte-list-item {
        margin-top: 5rem; } }
  @media screen and (max-width: 799px) {
    .p-shop-menu .menu__conte-list-head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-l); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-shop-menu .menu__conte-list-head {
      width: 84%; } }

  .p-shop-menu .menu__conte-list-head ._cap {
    position: relative;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-30);
    padding-left: 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__conte-list-head ._cap {
        font-size: 2rem;
        padding-left: 2rem; } }
    .p-shop-menu .menu__conte-list-head ._cap::before {
      position: absolute;
      content: '';
      top: 1.2rem;
      left: 0;
      width: 1rem;
      height: 1rem;
      border-radius: 100%;
      background: #E3CFC6; }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-head ._cap::before {
          top: .5rem; } }
  .p-shop-menu .menu__conte-list-table {
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-shop-menu .menu__conte-list-table {
        margin-top: 3rem; } }
    .p-shop-menu .menu__conte-list-table ._head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--color-bg1);
      border-radius: .8rem;
      padding: 2.2rem 5rem; }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table ._head {
          width: 94%;
          margin-left: auto;
          margin-right: auto;
          padding: 1.5rem 2rem; } }
    .p-shop-menu .menu__conte-list-table ._cap {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-22); }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table ._cap {
          font-size: 1.6rem; } }
    .p-shop-menu .menu__conte-list-table ._min {
      font-size: var(--font-size-12); }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table ._min {
          font-size: 1rem; } }
    .p-shop-menu .menu__conte-list-table ._list {
      padding: 0 5rem; }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table ._list {
          padding: 0 8%; } }
    .p-shop-menu .menu__conte-list-table dl {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: solid #ccc 1px;
      padding: 3rem 0; }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table dl {
          padding: 2rem 0; } }
    .p-shop-menu .menu__conte-list-table dt {
      font-size: var(--font-size-16); }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table dt {
          font-size: var(--font-size-15); } }
    .p-shop-menu .menu__conte-list-table dd {
      font-size: var(--font-size-16); }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table dd {
          font-size: var(--font-size-15); } }
    .p-shop-menu .menu__conte-list-table .accordion__label {
      font-size: var(--font-size-16);
      border-bottom: solid #ccc 1px;
      padding: 3rem 0; }
      @media screen and (max-width: 799px) {
        .p-shop-menu .menu__conte-list-table .accordion__label {
          font-size: var(--font-size-15);
          padding: 2rem 0; } }
      .p-shop-menu .menu__conte-list-table .accordion__label::before {
        top: 3rem;
        right: 1.5rem;
        font-size: var(--font-size-16); }
        @media screen and (max-width: 799px) {
          .p-shop-menu .menu__conte-list-table .accordion__label::before {
            top: 2rem; } }
  .p-shop-menu .c-leaf {
    top: 0;
    right: 0; }

/* ==========================================================================
   #features
========================================================================== */
.p-shop-features {
  position: relative;
  background: var(--color-bg);
  margin-top: 16rem;
  padding: 12rem 0; }
  @media screen and (max-width: 799px) {
    .p-shop-features {
      margin-top: 0;
      padding: 7rem 0; } }
  .p-shop-features .features__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    position: relative;
    display: flex;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      .p-shop-features .features__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-shop-features .features__wrap {
        display: block; } }
  .p-shop-features .features__head {
    width: 25%; }
    @media screen and (max-width: 799px) {
      .p-shop-features .features__head {
        width: 100%; } }
  .p-shop-features .features__body {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-shop-features .features__body {
        margin-top: 6rem; } }
    .p-shop-features .features__body .swiper-slide {
      width: 45%; }
      @media screen and (max-width: 799px) {
        .p-shop-features .features__body .swiper-slide {
          width: 100%; } }
    .p-shop-features .features__body ._label {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14);
      font-weight: var(--font-wight-500); }
    .p-shop-features .features__body ._photo {
      background: rgba(255, 255, 255, 0.2);
      margin-top: 2.5rem;
      padding: 3.5rem; }
      @media screen and (max-width: 799px) {
        .p-shop-features .features__body ._photo {
          margin-top: 2rem;
          padding: 4rem; } }
    .p-shop-features .features__body img {
      width: 100%; }
    .p-shop-features .features__body ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin-top: 3rem; }
    .p-shop-features .features__body ._price {
      background: var(--color-white);
      border-radius: .8rem;
      margin-top: 2.5rem;
      padding: 1.5rem 2rem; }
      .p-shop-features .features__body ._price dl {
        display: flex; }
        .p-shop-features .features__body ._price dl + dl {
          margin-top: .5rem; }
      .p-shop-features .features__body ._price dt {
        width: 6rem;
        font-size: var(--font-size-14);
        font-weight: var(--font-wight-500);
        line-height: var(--line-height-s); }
      .p-shop-features .features__body ._price dd {
        flex: 1;
        font-size: var(--font-size-14);
        line-height: var(--line-height-s); }
    .p-shop-features .features__body .swiper-nav {
      position: absolute;
      left: 0;
      bottom: 40%;
      width: 16rem;
      height: 10rem; }
      @media screen and (max-width: 799px) {
        .p-shop-features .features__body .swiper-nav {
          top: 6rem;
          left: auto;
          right: 0;
          bottom: auto;
          width: 12rem;
          height: 8rem; } }
      .p-shop-features .features__body .swiper-nav .swiper-button-prev,
      .p-shop-features .features__body .swiper-nav .swiper-button-next {
        top: auto;
        bottom: 3rem;
        margin-top: 0;
        width: 7rem;
        height: 7rem;
        background: var(--color-white);
        border-radius: 100%;
        color: var(--color-main1); }
        @media screen and (max-width: 799px) {
          .p-shop-features .features__body .swiper-nav .swiper-button-prev,
          .p-shop-features .features__body .swiper-nav .swiper-button-next {
            width: 5rem;
            height: 5rem; } }
        .p-shop-features .features__body .swiper-nav .swiper-button-prev::after,
        .p-shop-features .features__body .swiper-nav .swiper-button-next::after {
          font-size: 2rem; }
          @media screen and (max-width: 799px) {
            .p-shop-features .features__body .swiper-nav .swiper-button-prev::after,
            .p-shop-features .features__body .swiper-nav .swiper-button-next::after {
              font-size: 1rem; } }
      .p-shop-features .features__body .swiper-nav .swiper-button-prev {
        left: 0; }
      .p-shop-features .features__body .swiper-nav .swiper-button-next {
        right: 0; }
      .p-shop-features .features__body .swiper-nav .swiper-pagination {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-column-gap: .2em;
        bottom: 0; }
        .p-shop-features .features__body .swiper-nav .swiper-pagination .swiper-pagination-bullet {
          width: 100%;
          height: 1px;
          border-radius: 0;
          background: #555;
          margin: 0; }
  .p-shop-features .c-leaf {
    left: 0;
    bottom: 0; }

/* ==========================================================================
   #staff
========================================================================== */
.p-shop-staff {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-shop-staff {
      margin-top: 7rem; } }
  .p-shop-staff .staff__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-shop-staff .staff__head {
        width: 84%; } }
  .p-shop-staff .staff__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 4rem;
    grid-row-gap: 8rem;
    margin-top: 7rem; }
    @media screen and (max-width: 799px) {
      .p-shop-staff .staff__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-shop-staff .staff__body {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 5rem;
        margin-top: 5rem; } }
    @media screen and (max-width: 579px) {
      .p-shop-staff .staff__body {
        grid-template-columns: repeat(1, 1fr); } }
  @media screen and (max-width: 799px) {
    .p-shop-staff .staff__body-photo {
      width: 80%;
      margin: 0 auto; } }
  .p-shop-staff .staff__body-photo img {
    width: 100%; }
  .p-shop-staff .staff__body-info {
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-shop-staff .staff__body-info {
        margin-top: 3.5rem; } }
    .p-shop-staff .staff__body-info ._cap {
      font-size: var(--font-size-20); }
    .p-shop-staff .staff__body-info ._kana {
      color: var(--color-main1);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-13);
      margin-top: 1rem; }
    .p-shop-staff .staff__body-info ._lank {
      font-size: var(--font-size-13);
      margin-top: 3rem; }
      @media screen and (max-width: 799px) {
        .p-shop-staff .staff__body-info ._lank {
          margin-top: 2.5rem; } }
  .p-shop-staff .staff__body-note .accordion__label {
    border-bottom: solid var(--color-main1) 1px;
    color: var(--color-main1);
    font-size: 2.4rem;
    padding-bottom: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-shop-staff .staff__body-note .accordion__label {
        font-size: 2rem;
        padding-bottom: 1rem; } }
  .p-shop-staff .staff__body-note .accordion__input:checked ~ .accordion__conte {
    padding-top: 2rem; }
  .p-shop-staff .staff__body-note ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m); }
  .p-shop-staff .c-leaf {
    right: 0;
    bottom: 10rem; }

/* ==========================================================================
   #salon
========================================================================== */
.p-shop-salon {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-shop-salon {
      margin-top: 7rem; } }
  .p-shop-salon .salon__photo {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__photo {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__photo {
        width: 100%;
        padding-left: 8%; } }
    .p-shop-salon .salon__photo img {
      width: 100%;
      height: 55vh;
      object-fit: cover; }
  .p-shop-salon .salon__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__head {
        margin-top: 6rem; } }
  .p-shop-salon .salon__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    column-gap: 8rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__body {
        display: block;
        margin-top: 5rem; } }
  .p-shop-salon .salon__body-info {
    flex: 1; }
  .p-shop-salon .salon__body-cap ._cap {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-26); }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__body-cap ._cap {
        font-size: 1.8rem; } }
  .p-shop-salon .salon__body-cap ._label {
    font-size: var(--font-size-15);
    margin-top: 1rem; }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__body-cap ._label {
        font-size: 1.3rem; } }
  .p-shop-salon .salon__body-table {
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__body-table {
        margin-top: 1rem; } }
    .p-shop-salon .salon__body-table dl {
      display: flex;
      column-gap: 1rem; }
      @media screen and (max-width: 799px) {
        .p-shop-salon .salon__body-table dl {
          column-gap: .5rem; } }
    .p-shop-salon .salon__body-table dt {
      width: 12.5rem;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-shop-salon .salon__body-table dt {
          width: 9rem; } }
    .p-shop-salon .salon__body-table dd {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex: 1;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
    .p-shop-salon .salon__body-table ul {
      display: flex; }
    .p-shop-salon .salon__body-table li:nth-child(1) {
      width: 5.5rem; }
    .p-shop-salon .salon__body-table li:nth-child(2) {
      flex: 1; }
    .p-shop-salon .salon__body-table li span {
      color: var(--color-white); }
  .p-shop-salon .salon__body-map {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-shop-salon .salon__body-map {
        width: 100%;
        margin-top: 6rem; } }
    .p-shop-salon .salon__body-map iframe {
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 799px) {
        .p-shop-salon .salon__body-map iframe {
          height: 35rem; } }

/* ==========================================================================
   #reserve
========================================================================== */
.p-shop-reserve {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-shop-reserve {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-shop-reserve {
      width: 94%;
      margin-top: 7rem; } }
  .p-shop-reserve .reserve__wrap {
    background: var(--color-bg);
    border-radius: 2rem;
    padding: 9rem 10%; }
    @media screen and (max-width: 799px) {
      .p-shop-reserve .reserve__wrap {
        padding: 6rem 8%; } }
  .p-shop-reserve .reserve__head .c-head {
    border-top-color: var(--color-white); }
  .p-shop-reserve .reserve__head .c-head ._label {
    color: var(--color-white);
    text-align: center; }
  .p-shop-reserve .reserve__head .c-subcap {
    color: var(--color-black);
    text-align: center; }
  .p-shop-reserve .reserve__body {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1rem;
    margin-top: 6rem;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 579px) {
      .p-shop-reserve .reserve__body {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: .5rem;
        margin-top: 4rem; } }
    .p-shop-reserve .reserve__body ._btn {
      background: var(--color-main4);
      border: solid #ccc 1px;
      border-radius: .8rem;
      padding: 1.5rem 0 1.75rem;
      text-align: center;
      transition: background .3s; }
      .p-shop-reserve .reserve__body ._btn:hover {
        background: #424141; }
    .p-shop-reserve .reserve__body ._btn._line {
      background: var(--color-main2); }
      .p-shop-reserve .reserve__body ._btn._line:hover {
        background: #9fa181; }
    .p-shop-reserve .reserve__body ._btn._line svg {
      fill: var(--color-black); }
    .p-shop-reserve .reserve__body ._btn._line ._label {
      color: var(--color-black); }
    .p-shop-reserve .reserve__body ._btn._web {
      background: var(--color-main3); }
      .p-shop-reserve .reserve__body ._btn._web:hover {
        background: #64707d; }
    .p-shop-reserve .reserve__body svg {
      width: 3.4rem;
      height: 3.4rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .p-shop-reserve .reserve__body svg {
          width: 3rem;
          height: 3rem; } }
    .p-shop-reserve .reserve__body ._label {
      display: block;
      color: var(--color-white);
      font-size: var(--font-size-18);
      font-weight: var(--font-wight-500);
      margin-top: .6rem; }
      @media screen and (max-width: 799px) {
        .p-shop-reserve .reserve__body ._label {
          font-size: var(--font-size-16); } }
  .p-shop-reserve .reserve__link {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-shop-reserve .reserve__link {
        margin-top: 4rem; } }

/* ==========================================================================
 *
 * company scss
 *
========================================================================== */
/* ==========================================================================
   #concept
========================================================================== */
.p-company-concept {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-company-concept {
      margin-top: 7rem; } }
  .p-company-concept .concept__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-company-concept .concept__wrap {
        width: 84%; } }
  .p-company-concept .concept__inner {
    width: 85%;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-company-concept .concept__inner {
        width: 100%; } }
  .p-company-concept .concept__body {
    display: flex;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-company-concept .concept__body {
        display: block;
        margin-top: 4rem; } }
  .p-company-concept .concept__body-cap {
    flex: 1; }
    @media screen and (max-width: 579px) {
      .p-company-concept .concept__body-cap {
        text-align: right; } }
  .p-company-concept .concept__body-note {
    width: 55%; }
    @media screen and (max-width: 799px) {
      .p-company-concept .concept__body-note {
        width: 100%;
        margin-top: 3rem; } }
    .p-company-concept .concept__body-note ._txt {
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
      .p-company-concept .concept__body-note ._txt + ._txt {
        margin-top: 2rem; }
        @media screen and (max-width: 799px) {
          .p-company-concept .concept__body-note ._txt + ._txt {
            margin-top: 1rem; } }
  .p-company-concept .c-leaf {
    left: 0;
    bottom: 0; }

/* ==========================================================================
   #outline
========================================================================== */
.p-company-outline {
  background: var(--color-bg);
  margin-top: 16rem;
  padding: 14rem 0; }
  @media screen and (max-width: 799px) {
    .p-company-outline {
      margin-top: 7rem;
      padding: 6rem 0; } }
  .p-company-outline .outline__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      .p-company-outline .outline__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-company-outline .outline__wrap {
        display: block; } }
  .p-company-outline .outline__photo {
    position: relative;
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-company-outline .outline__photo {
        height: 55vh; } }
    .p-company-outline .outline__photo img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-company-outline .outline__conte {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-company-outline .outline__conte {
        width: 100%;
        margin-top: 6rem; } }
  .p-company-outline .outline__conte-body {
    margin-top: 6rem;
    padding-left: 4rem; }
    @media screen and (max-width: 799px) {
      .p-company-outline .outline__conte-body {
        margin-top: 3rem;
        padding-left: 0; } }
    .p-company-outline .outline__conte-body dl {
      display: flex;
      column-gap: 1rem; }
      @media screen and (max-width: 799px) {
        .p-company-outline .outline__conte-body dl {
          column-gap: .5rem; } }
    .p-company-outline .outline__conte-body dt {
      width: 12.5rem;
      border-bottom: solid #ccc 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-company-outline .outline__conte-body dt {
          width: 9.5rem;
          padding: 2rem 0; } }
    .p-company-outline .outline__conte-body dd {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex: 1;
      border-bottom: solid #ccc 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-company-outline .outline__conte-body dd {
          padding: 2rem 0; } }
    .p-company-outline .outline__conte-body .min {
      position: relative;
      margin-left: 1.5rem;
      padding-left: 1.2rem; }
      @media screen and (max-width: 799px) {
        .p-company-outline .outline__conte-body .min {
          margin-left: 0; } }
    .p-company-outline .outline__conte-body .min::before {
      position: absolute;
      content: '-';
      top: 0;
      left: 0; }

/* ==========================================================================
   #history
========================================================================== */
.p-company-history {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-company-history {
      margin-top: 7rem; } }
  .p-company-history .history__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-company-history .history__head {
        width: 84%; } }
  .p-company-history .history__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-company-history .history__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-company-history .history__body {
        margin-top: 4rem; } }
  .p-company-history .history__body-list {
    position: relative;
    width: 85%;
    margin-top: 10rem;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-company-history .history__body-list {
        width: 100%;
        margin-top: 4rem; } }
    .p-company-history .history__body-list::before {
      position: absolute;
      content: '';
      top: 1rem;
      left: .8rem;
      width: 1px;
      height: calc(100% - 1rem);
      background: #E3CFC6; }
      @media screen and (max-width: 799px) {
        .p-company-history .history__body-list::before {
          left: .6rem; } }
  .p-company-history .history__body-list-item + .history__body-list-item {
    margin-top: 3rem; }
  .p-company-history .history__body-list-item ._year {
    position: relative;
    font-size: var(--font-size-18);
    padding-left: 4rem; }
    @media screen and (max-width: 799px) {
      .p-company-history .history__body-list-item ._year {
        font-size: var(--font-size-15); } }
    .p-company-history .history__body-list-item ._year::before {
      position: absolute;
      content: '';
      top: 1rem;
      left: 0;
      width: 1.7rem;
      height: 1.7rem;
      background: #E3CFC6;
      border-radius: 100%; }
      @media screen and (max-width: 799px) {
        .p-company-history .history__body-list-item ._year::before {
          top: .5rem;
          width: 1.3rem;
          height: 1.3rem; } }
    .p-company-history .history__body-list-item ._year span {
      font-size: var(--font-size-30); }
      @media screen and (max-width: 799px) {
        .p-company-history .history__body-list-item ._year span {
          font-size: var(--font-size-26); } }
  .p-company-history .history__body-list-item dl {
    display: flex;
    column-gap: 3rem;
    margin-left: 22.5rem; }
    @media screen and (max-width: 799px) {
      .p-company-history .history__body-list-item dl {
        align-items: baseline;
        column-gap: 1.5rem;
        margin-top: 1rem;
        margin-left: 4rem; } }
  .p-company-history .history__body-list-item dt {
    position: relative;
    width: 10rem;
    font-size: var(--font-size-16);
    line-height: var(--line-height-m); }
    @media screen and (max-width: 799px) {
      .p-company-history .history__body-list-item dt {
        width: 6rem;
        font-size: var(--font-size-13); } }
    .p-company-history .history__body-list-item dt::before {
      position: absolute;
      content: '';
      top: 50%;
      right: 0;
      width: 2.5rem;
      height: 1px;
      background: var(--color-black); }
      @media screen and (max-width: 799px) {
        .p-company-history .history__body-list-item dt::before {
          width: 1.5rem;
          top: 1.5rem; } }
    .p-company-history .history__body-list-item dt span {
      font-size: var(--font-size-20); }
      @media screen and (max-width: 799px) {
        .p-company-history .history__body-list-item dt span {
          font-size: var(--font-size-17); } }
  .p-company-history .history__body-list-item dd {
    flex: 1;
    font-size: var(--font-size-16);
    line-height: var(--line-height-m); }
    @media screen and (max-width: 799px) {
      .p-company-history .history__body-list-item dd {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: var(--font-size-15); } }
  .p-company-history .c-leaf {
    right: 0;
    bottom: 0; }

/* ==========================================================================
   #salon
========================================================================== */
.p-company-salon {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-company-salon {
      margin-top: 7rem; } }
  .p-company-salon .salon__photo {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__photo {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__photo {
        width: 100%;
        padding-left: 4%; } }
    .p-company-salon .salon__photo img {
      width: 100%;
      height: 65vh;
      object-fit: cover; }
      @media screen and (max-width: 799px) {
        .p-company-salon .salon__photo img {
          height: 50vh; } }
  .p-company-salon .salon__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__head {
        margin-top: 6rem; } }
  .p-company-salon .salon__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    column-gap: 8rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__body {
        display: block;
        margin-top: 4rem; } }
  .p-company-salon .salon__body-info {
    flex: 1; }
  .p-company-salon .salon__body-cap ._cap {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-26); }
  .p-company-salon .salon__body-cap ._label {
    font-size: var(--font-size-15);
    margin-top: 1rem; }
  .p-company-salon .salon__body-table {
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__body-table {
        margin-top: 1rem; } }
    .p-company-salon .salon__body-table dl {
      display: flex;
      column-gap: 1rem; }
      @media screen and (max-width: 799px) {
        .p-company-salon .salon__body-table dl {
          column-gap: .5rem; } }
    .p-company-salon .salon__body-table dt {
      width: 12.5rem;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-company-salon .salon__body-table dt {
          width: 9rem; } }
    .p-company-salon .salon__body-table dd {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex: 1;
      border-bottom: solid #CFC7BB 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
    .p-company-salon .salon__body-table ul {
      display: flex; }
    .p-company-salon .salon__body-table li:nth-child(1) {
      width: 5.5rem; }
    .p-company-salon .salon__body-table li:nth-child(2) {
      flex: 1; }
    .p-company-salon .salon__body-table li span {
      color: var(--color-white); }
  .p-company-salon .salon__body-map {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-company-salon .salon__body-map {
        width: 100%;
        margin-top: 6rem; } }
    .p-company-salon .salon__body-map iframe {
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 799px) {
        .p-company-salon .salon__body-map iframe {
          height: 35rem; } }

/* ==========================================================================
 *
 * topics scss
 *
========================================================================== */
/* ==========================================================================
   #common
========================================================================== */
.c-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 7rem; }
  @media screen and (max-width: 799px) {
    .c-archive {
      grid-template-columns: repeat(2, 1fr);
      grid-row-gap: 4rem; } }
  @media screen and (max-width: 579px) {
    .c-archive {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 4rem; } }
  .c-archive ._item {
    border-bottom: solid #ccc 1px;
    padding-bottom: 4rem; }
  .c-archive ._item:hover ._photo img {
    transform: scale(1.1); }
  .c-archive ._photo {
    position: relative;
    padding-top: 62.5%;
    overflow: hidden; }
    .c-archive ._photo img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s; }
  .c-archive ._term {
    margin-top: 2rem; }
  .c-archive ._date {
    font-size: var(--font-size-13); }
  .c-archive ._cat {
    position: relative;
    font-size: var(--font-size-13);
    margin-top: .8rem;
    padding-left: 1rem; }
    .c-archive ._cat::before {
      position: absolute;
      content: '';
      top: .4rem;
      left: 0;
      width: .5rem;
      height: .5rem;
      background: #E3CFC6;
      border-radius: 100%; }
  .c-archive ._cap {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    margin-top: 1rem; }

.c-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    .c-pager {
      margin-top: 6rem; } }
  .c-pager .page-numbers {
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: solid #625D57 1px;
    border-radius: 100%;
    color: #625D57;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-12); }
    @media screen and (max-width: 799px) {
      .c-pager .page-numbers {
        width: 4.2rem;
        height: 4.2rem; } }
    .c-pager .page-numbers.current {
      background: #625D57;
      color: var(--color-white); }

/* ==========================================================================
   #archive / content
========================================================================== */
.p-news-a-content {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-news-a-content {
      margin-top: 7rem; } }
  .p-news-a-content .content__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-news-a-content .content__head {
        width: 84%; } }
  .p-news-a-content .content__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    column-gap: 4rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-news-a-content .content__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-news-a-content .content__body {
        display: block;
        margin-top: 5rem; } }
  .p-news-a-content .content__body-aside {
    width: 20%; }
    @media screen and (max-width: 799px) {
      .p-news-a-content .content__body-aside {
        width: 100%; } }
  .p-news-a-content .content__body-aside-inner {
    position: sticky;
    top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-news-a-content .content__body-aside-inner ul {
        display: flex;
        flex-wrap: wrap;
        column-gap: 2rem; } }
    .p-news-a-content .content__body-aside-inner li {
      position: relative;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14);
      padding-left: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-news-a-content .content__body-aside-inner li {
          padding-left: 1.2rem; } }
      .p-news-a-content .content__body-aside-inner li::before {
        position: absolute;
        content: '';
        top: .4rem;
        left: 0;
        width: .7rem;
        height: .7rem;
        background: #E3CFC6;
        border-radius: 100%; }
        @media screen and (max-width: 799px) {
          .p-news-a-content .content__body-aside-inner li::before {
            width: .5rem;
            height: .5rem; } }
      .p-news-a-content .content__body-aside-inner li + li {
        margin-top: 1.5rem; }
        @media screen and (max-width: 799px) {
          .p-news-a-content .content__body-aside-inner li + li {
            margin-top: 0; } }
    .p-news-a-content .content__body-aside-inner a {
      transition: opacity .3s; }
    .p-news-a-content .content__body-aside-inner a:hover {
      opacity: .5; }
  .p-news-a-content .content__body-archive {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-news-a-content .content__body-archive {
        margin-top: 5rem; } }
  .p-news-a-content .c-leaf {
    top: -10rem;
    right: 0; }
    @media screen and (max-width: 799px) {
      .p-news-a-content .c-leaf {
        top: -4rem; } }

/* ==========================================================================
   #single / content
========================================================================== */
.p-news-s-content {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-news-s-content {
      margin-top: 7rem; } }
  .p-news-s-content .content__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-news-s-content .content__head {
        width: 84%; } }
  .p-news-s-content .content__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    column-gap: 4rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-news-s-content .content__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-news-s-content .content__body {
        display: block;
        margin-top: 4rem; } }
  .p-news-s-content .content__body-aside {
    width: 20%; }
    @media screen and (max-width: 799px) {
      .p-news-s-content .content__body-aside {
        display: none; } }
  .p-news-s-content .content__body-aside-inner {
    position: sticky;
    top: 12rem; }
    .p-news-s-content .content__body-aside-inner li {
      position: relative;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14);
      padding-left: 1.5rem; }
      .p-news-s-content .content__body-aside-inner li::before {
        position: absolute;
        content: '';
        top: .4rem;
        left: 0;
        width: .7rem;
        height: .7rem;
        background: #E3CFC6;
        border-radius: 100%; }
      .p-news-s-content .content__body-aside-inner li + li {
        margin-top: 1.5rem; }
    .p-news-s-content .content__body-aside-inner a {
      transition: opacity .3s; }
    .p-news-s-content .content__body-aside-inner a:hover {
      opacity: .5; }
  .p-news-s-content .content__body-post {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-news-s-content .content__body-post .post__article-term {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap: 1rem; } }
    @media screen and (max-width: 579px) {
      .p-news-s-content .content__body-post .post__article-term {
        justify-content: flex-end; } }
    .p-news-s-content .content__body-post .post__article-term ._date {
      font-size: var(--font-size-15); }
      @media screen and (max-width: 799px) {
        .p-news-s-content .content__body-post .post__article-term ._date {
          font-size: var(--font-size-13); } }
    .p-news-s-content .content__body-post .post__article-term ._cat {
      position: relative;
      font-size: var(--font-size-15);
      margin-top: 1rem;
      padding-left: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-news-s-content .content__body-post .post__article-term ._cat {
          font-size: var(--font-size-13);
          margin-top: 0;
          padding-left: 1.25rem; } }
      .p-news-s-content .content__body-post .post__article-term ._cat::before {
        position: absolute;
        content: '';
        top: .6rem;
        left: 0;
        width: .7rem;
        height: .7rem;
        background: #E3CFC6;
        border-radius: 100%; }
        @media screen and (max-width: 799px) {
          .p-news-s-content .content__body-post .post__article-term ._cat::before {
            top: .4rem;
            width: .5rem;
            height: .5rem; } }
    .p-news-s-content .content__body-post .post__article-cap {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-24);
      line-height: var(--line-height-m);
      margin-top: 1rem; }
    .p-news-s-content .content__body-post .post__article-edit {
      margin-top: 4rem; }
      .p-news-s-content .content__body-post .post__article-edit p {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: var(--font-size-15);
        line-height: var(--line-height-m); }
      .p-news-s-content .content__body-post .post__article-edit h3 {
        font-size: var(--font-size-20);
        line-height: 1.8;
        padding-bottom: 1rem;
        position: relative;
        margin-bottom: 1rem; }
        .p-news-s-content .content__body-post .post__article-edit h3::before, .p-news-s-content .content__body-post .post__article-edit h3::after {
          position: absolute;
          content: '';
          left: 0;
          bottom: 0;
          height: 2px; }
        .p-news-s-content .content__body-post .post__article-edit h3::before {
          width: 100%;
          background: #DCDCDC; }
        .p-news-s-content .content__body-post .post__article-edit h3::after {
          width: 30%;
          background: var(--color-main2); }
      .p-news-s-content .content__body-post .post__article-edit h4 {
        font-size: var(--font-size-18);
        line-height: 1.8;
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: .5rem; }
        .p-news-s-content .content__body-post .post__article-edit h4::before {
          position: absolute;
          content: '';
          top: 2px;
          left: 0;
          width: 5px;
          height: 90%;
          background: var(--color-main2); }
      .p-news-s-content .content__body-post .post__article-edit h5 {
        font-size: var(--font-size-17);
        line-height: 1.8;
        padding-left: 2rem;
        position: relative;
        margin-bottom: .5rem; }
        .p-news-s-content .content__body-post .post__article-edit h5::before {
          position: absolute;
          content: '●';
          top: 0;
          left: 0;
          color: var(--color-main2); }
      .p-news-s-content .content__body-post .post__article-edit strong {
        font-weight: 600; }
      .p-news-s-content .content__body-post .post__article-edit em {
        font-style: italic; }
      .p-news-s-content .content__body-post .post__article-edit a {
        display: inline-block;
        text-decoration: underline;
        color: #551a8b; }
      .p-news-s-content .content__body-post .post__article-edit hr {
        margin: 1.5rem 0; }
    .p-news-s-content .content__body-post .post__nav {
      margin-top: 14rem; }
      @media screen and (max-width: 799px) {
        .p-news-s-content .content__body-post .post__nav {
          margin-top: 6rem; } }
    .p-news-s-content .content__body-post .post__nav-link {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 3rem;
      margin-top: 6rem; }
      @media screen and (max-width: 799px) {
        .p-news-s-content .content__body-post .post__nav-link {
          grid-column-gap: 1rem;
          grid-row-gap: .8rem;
          margin-top: 5rem; } }
      @media screen and (max-width: 579px) {
        .p-news-s-content .content__body-post .post__nav-link {
          grid-template-columns: repeat(1, 1fr); } }
      .p-news-s-content .content__body-post .post__nav-link ._btn {
        border: solid #625D57 1px;
        border-radius: .5rem;
        padding: 2.5rem 1rem 2rem;
        transition: background .3s; }
        @media screen and (max-width: 799px) {
          .p-news-s-content .content__body-post .post__nav-link ._btn {
            padding: 2rem 1rem 1.75rem; } }
        .p-news-s-content .content__body-post .post__nav-link ._btn:hover {
          background: #f5f5f5; }
      .p-news-s-content .content__body-post .post__nav-link ._btn:nth-child(2) ._icon {
        background: var(--color-white); }
      .p-news-s-content .content__body-post .post__nav-link ._btn:nth-child(2) svg {
        width: 3rem;
        height: 3rem;
        fill: #625D57; }
      .p-news-s-content .content__body-post .post__nav-link ._icon {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #625D57;
        border-radius: 100%;
        margin: 0 auto; }
        @media screen and (max-width: 799px) {
          .p-news-s-content .content__body-post .post__nav-link ._icon {
            width: 2.4rem;
            height: 2.4rem; } }
      .p-news-s-content .content__body-post .post__nav-link svg {
        width: 1.8rem;
        height: 1.8rem;
        fill: var(--color-white); }
        @media screen and (max-width: 799px) {
          .p-news-s-content .content__body-post .post__nav-link svg {
            width: 1.1rem;
            height: 1.1rem; } }
      .p-news-s-content .content__body-post .post__nav-link ._label {
        display: block;
        color: #625D57;
        font-size: var(--font-size-14);
        font-weight: var(--font-wight-500);
        margin-top: 1.5rem;
        text-align: center; }
        @media screen and (max-width: 799px) {
          .p-news-s-content .content__body-post .post__nav-link ._label {
            margin-top: 1.2rem; } }
    .p-news-s-content .content__body-post .post__recommend {
      margin-top: 14rem; }
      @media screen and (max-width: 799px) {
        .p-news-s-content .content__body-post .post__recommend {
          margin-top: 6rem; } }
    .p-news-s-content .content__body-post .post__recommend-list {
      margin-top: 6rem; }
      @media screen and (max-width: 799px) {
        .p-news-s-content .content__body-post .post__recommend-list {
          margin-top: 5rem; } }
  .p-news-s-content .c-leaf {
    top: -10rem;
    right: 0; }
    @media screen and (max-width: 799px) {
      .p-news-s-content .c-leaf {
        top: -4rem; } }

/* ==========================================================================
 *
 * recruit scss
 *
========================================================================== */
/* ==========================================================================
   #common
========================================================================== */
.c-contact {
  background: var(--color-bg);
  margin-top: 16rem;
  padding: 14rem 0; }
  @media screen and (max-width: 799px) {
    .c-contact {
      margin-top: 7rem;
      padding: 6rem 0; } }
  .c-contact .c-contact__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .c-contact .c-contact__wrap {
        width: 84%; } }
  .c-contact .c-contact__note {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .c-contact .c-contact__note {
        margin-top: 5rem; } }
    .c-contact .c-contact__note ._txt {
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      text-align: center; }
      @media screen and (max-width: 799px) {
        .c-contact .c-contact__note ._txt {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word; } }
    .c-contact .c-contact__note ._txt + ._txt {
      margin-top: 1.5rem; }
  .c-contact .c-contact__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3rem;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .c-contact .c-contact__list {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: .8rem;
        grid-row-gap: .8rem;
        margin-top: 5rem; } }
    @media screen and (max-width: 579px) {
      .c-contact .c-contact__list {
        grid-template-columns: repeat(1, 1fr); } }
  .c-contact .c-contact__list-item {
    background: var(--color-white);
    border: solid #ccc 1px;
    border-radius: 1rem;
    padding: 6rem 1rem 4rem; }
    @media screen and (max-width: 799px) {
      .c-contact .c-contact__list-item {
        padding: 4rem 1rem 3rem; } }
    .c-contact .c-contact__list-item ._cap {
      font-size: var(--font-size-22);
      text-align: center; }
    .c-contact .c-contact__list-item ._en {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-16);
      color: var(--color-main1);
      margin-top: 2rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .c-contact .c-contact__list-item ._en {
          font-size: var(--font-size-14); } }
    .c-contact .c-contact__list-item ._txt {
      font-size: var(--font-size-14);
      line-height: var(--line-height-m);
      margin-top: .5rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .c-contact .c-contact__list-item ._txt {
          font-size: var(--font-size-12); } }
    .c-contact .c-contact__list-item ._btn {
      width: 22.5rem;
      height: 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1.5rem;
      background: var(--color-main4);
      border-radius: .6rem;
      margin: 4rem auto 0;
      transition: background .3s; }
      @media screen and (max-width: 799px) {
        .c-contact .c-contact__list-item ._btn {
          width: 20rem;
          height: 4.6rem;
          margin: 2rem auto 0; } }
      .c-contact .c-contact__list-item ._btn:hover {
        background: #424141; }
    .c-contact .c-contact__list-item ._btn._c2 {
      background: var(--color-main2); }
      .c-contact .c-contact__list-item ._btn._c2:hover {
        background: #9fa181; }
    .c-contact .c-contact__list-item ._btn._c2 svg {
      fill: var(--color-black); }
    .c-contact .c-contact__list-item ._btn._c2 ._label {
      color: var(--color-black); }
    .c-contact .c-contact__list-item ._btn._c3 {
      background: var(--color-main3); }
      .c-contact .c-contact__list-item ._btn._c3:hover {
        background: #64707d; }
    .c-contact .c-contact__list-item ._btn svg {
      width: 2.6rem;
      height: 2.6rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .c-contact .c-contact__list-item ._btn svg {
          width: 2.4rem;
          height: 2.4rem; } }
    .c-contact .c-contact__list-item ._btn ._label {
      color: var(--color-white);
      font-size: var(--font-size-14);
      font-weight: var(--font-wight-600);
      margin-right: 1rem; }

/* ==========================================================================
   #top
========================================================================== */
.p-recruit-top-philosophy {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  flex-direction: row-reverse;
  column-gap: 8rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-philosophy {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-recruit-top-philosophy {
      display: block;
      margin-top: 7rem; } }
  .p-recruit-top-philosophy .philosophy__photo {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-philosophy .philosophy__photo {
        width: 100%;
        margin-top: 5rem; } }
    .p-recruit-top-philosophy .philosophy__photo ._photo1 {
      width: 90%; }
      .p-recruit-top-philosophy .philosophy__photo ._photo1 img {
        width: 100%; }
    .p-recruit-top-philosophy .philosophy__photo ._photo2 {
      width: 40%;
      margin-top: -3rem;
      margin-left: auto; }
      .p-recruit-top-philosophy .philosophy__photo ._photo2 img {
        width: 100%; }
  .p-recruit-top-philosophy .philosophy__conte {
    flex: 1; }
  .p-recruit-top-philosophy .philosophy__conte-note {
    margin-top: 6rem;
    padding-left: 3rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-philosophy .philosophy__conte-note {
        margin-top: 4rem;
        padding-left: 0; } }
    .p-recruit-top-philosophy .philosophy__conte-note .c-cap {
      margin-bottom: 2.5rem; }
    .p-recruit-top-philosophy .philosophy__conte-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l);
      margin-top: 1.5rem; }

.p-recruit-top-message {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-message {
      margin-top: 7rem; } }
  .p-recruit-top-message .message__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-recruit-top-message .message__head {
        width: 84%; } }
  .p-recruit-top-message .message__head-inner {
    width: 60%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-message .message__head-inner {
        width: 100%; } }
  .p-recruit-top-message .message__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-message .message__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-top-message .message__body {
        display: block;
        margin-top: 4rem; } }
  .p-recruit-top-message .message__photo {
    width: 35%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-message .message__photo {
        width: 45%;
        margin: 0 auto; } }
    @media screen and (max-width: 579px) {
      .p-recruit-top-message .message__photo {
        width: 75%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-top-message .message__photo ._photo {
        position: relative;
        padding-top: 100%; } }
    .p-recruit-top-message .message__photo img {
      width: 100%; }
      @media screen and (max-width: 799px) {
        .p-recruit-top-message .message__photo img {
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          object-fit: cover;
          border-radius: 100%; } }
    .p-recruit-top-message .message__photo ._name {
      font-size: var(--font-size-15);
      margin-top: 2.5rem;
      text-align: center; }
  .p-recruit-top-message .message__conte {
    flex: 1; }
  .p-recruit-top-message .message__conte-note {
    margin-top: 6rem;
    padding-left: 3rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-message .message__conte-note {
        margin-top: 2rem; } }
    @media screen and (max-width: 579px) {
      .p-recruit-top-message .message__conte-note {
        margin-top: 5rem;
        padding-left: 0; } }
    .p-recruit-top-message .message__conte-note .c-cap {
      margin-bottom: 2.5rem; }
    .p-recruit-top-message .message__conte-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l);
      margin-top: 1.5rem; }
  .p-recruit-top-message .c-leaf {
    top: -10rem;
    left: 0; }

.p-recruit-top-job {
  background: #f2f2f2;
  margin-top: 16rem;
  padding: 12rem 0; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-job {
      margin-top: 7rem;
      padding: 5rem 0; } }
  .p-recruit-top-job .job__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    background: var(--color-white);
    border-radius: 1rem;
    padding: 7rem 6%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-job .job__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-top-job .job__wrap {
        width: 90%;
        padding: 4rem 8%; } }
  .p-recruit-top-job .job__list {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-job .job__list {
        margin-top: 2rem; } }
  .p-recruit-top-job .job__list-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr); }
    @media screen and (max-width: 799px) {
      .p-recruit-top-job .job__list-col {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 1rem; } }
    @media screen and (max-width: 579px) {
      .p-recruit-top-job .job__list-col {
        grid-template-columns: repeat(1, 1fr); } }
    .p-recruit-top-job .job__list-col:nth-child(2) {
      border-top: solid #ccc 1px;
      margin-top: 4rem;
      padding-top: 4rem; }
      @media screen and (max-width: 799px) {
        .p-recruit-top-job .job__list-col:nth-child(2) {
          border-top: none;
          margin-top: 0;
          padding-top: 0; } }
    .p-recruit-top-job .job__list-col ._btn {
      position: relative;
      font-size: var(--font-size-13);
      line-height: var(--line-height-s);
      padding: 1rem 0;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-recruit-top-job .job__list-col ._btn {
          border-bottom: solid #ccc 1px;
          padding: 1.5rem 0; } }
      .p-recruit-top-job .job__list-col ._btn:nth-child(1)::before {
        display: none; }
      .p-recruit-top-job .job__list-col ._btn::before {
        position: absolute;
        content: '';
        top: 10%;
        left: 0;
        width: 1px;
        height: 80%;
        background: #ccc; }
        @media screen and (max-width: 799px) {
          .p-recruit-top-job .job__list-col ._btn::before {
            display: none; } }
      .p-recruit-top-job .job__list-col ._btn:hover span {
        color: var(--color-main1); }
      .p-recruit-top-job .job__list-col ._btn span {
        display: block;
        font-size: var(--font-size-18);
        font-weight: var(--font-wight-500);
        transition: color .3s; }
  .p-recruit-top-job .job__link {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-job .job__link {
        margin-top: 4rem; } }

.p-recruit-top-features {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-features {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-recruit-top-features {
      width: 90%;
      margin-top: 7rem; } }
  .p-recruit-top-features .features__wrap {
    background: var(--color-bg);
    border-radius: 1rem;
    padding: 7rem 6%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-features .features__wrap {
        padding: 4rem 8%; } }
  .p-recruit-top-features .features__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2rem;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-features .features__list {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 4rem;
        margin-top: 4rem; } }
    @media screen and (max-width: 579px) {
      .p-recruit-top-features .features__list {
        grid-template-columns: repeat(1, 1fr); } }
  .p-recruit-top-features .features__list-item ._icon {
    width: 18rem;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: solid #ccc 1px;
    border-radius: 100%;
    margin: 0 auto; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-features .features__list-item ._icon {
        width: 15rem;
        height: 15rem; } }
  .p-recruit-top-features .features__list-item img {
    width: 12rem;
    height: 12rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-features .features__list-item img {
        width: 8rem;
        height: 8rem; } }
  .p-recruit-top-features .features__list-item ._txt {
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    margin-top: 2rem;
    text-align: center; }
  .p-recruit-top-features .features__link {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-features .features__link {
        margin-top: 4rem; } }

.p-recruit-top-voice {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  align-items: flex-end;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-voice {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-recruit-top-voice {
      width: 100%;
      display: block;
      margin-top: 7rem; } }
  .p-recruit-top-voice .voice__conte {
    flex: 1; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-voice .voice__conte-head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-recruit-top-voice .voice__conte-head {
      width: 84%; } }

  .p-recruit-top-voice .voice__conte-note {
    margin-top: 6rem;
    padding: 0 8% 2rem 3rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-voice .voice__conte-note {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-m);
        margin-top: 4rem;
        padding: 0; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-recruit-top-voice .voice__conte-note {
      width: 84%; } }

    .p-recruit-top-voice .voice__conte-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
    .p-recruit-top-voice .voice__conte-note .c-btn {
      margin-top: 5rem; }
      @media screen and (max-width: 799px) {
        .p-recruit-top-voice .voice__conte-note .c-btn {
          margin-top: 3rem; } }
  .p-recruit-top-voice .voice__photo {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-voice .voice__photo {
        width: 100%;
        margin-top: 5rem;
        padding-left: 6%; } }

.p-recruit-top-info {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-info {
      margin-top: 7rem; } }
  .p-recruit-top-info .info__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-info .info__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-top-info .info__wrap {
        width: 100%;
        display: block; } }
  .p-recruit-top-info .info__conte {
    flex: 1; }
  @media screen and (max-width: 799px) {
    .p-recruit-top-info .info__conte-head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-recruit-top-info .info__conte-head {
      width: 84%; } }

  .p-recruit-top-info .info__conte-head .c-subhead {
    padding-left: 8%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-info .info__conte-head .c-subhead {
        padding-left: 0; } }
  .p-recruit-top-info .info__conte-note {
    margin-top: 6rem;
    padding-left: calc(8% + 3rem); }
    @media screen and (max-width: 799px) {
      .p-recruit-top-info .info__conte-note {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-m);
        margin-top: 4rem;
        padding-left: 0; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-recruit-top-info .info__conte-note {
      width: 84%; } }

    .p-recruit-top-info .info__conte-note ._txt {
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
    .p-recruit-top-info .info__conte-note .c-btn {
      margin-top: 5rem; }
      @media screen and (max-width: 799px) {
        .p-recruit-top-info .info__conte-note .c-btn {
          margin-top: 3rem; } }
  .p-recruit-top-info .info__photo {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-recruit-top-info .info__photo {
        width: 100%;
        margin-top: 5rem;
        padding-right: 6%; } }
  .p-recruit-top-info .c-leaf {
    top: -6rem;
    right: 0; }

/* ==========================================================================
   #work
========================================================================== */
.p-recruit-work-about {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-work-about {
      margin-top: 7rem; } }
  .p-recruit-work-about .about__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__wrap {
        width: 100%;
        display: block; } }
  .p-recruit-work-about .about__wrap-col1 {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__wrap-col1 {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-l); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-recruit-work-about .about__wrap-col1 {
      width: 84%; } }

  .p-recruit-work-about .about__wrap-col1-note {
    margin-top: 6rem;
    padding-left: 3rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__wrap-col1-note {
        margin-top: 4rem;
        padding-left: 0; } }
    .p-recruit-work-about .about__wrap-col1-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
    .p-recruit-work-about .about__wrap-col1-note ._txt + ._txt {
      margin-top: 1.5rem; }
  .p-recruit-work-about .about__wrap-col2 {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__wrap-col2 {
        width: 100%;
        margin-top: 5rem;
        padding-left: 6%; } }
  .p-recruit-work-about .about__image {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    column-gap: 8rem;
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__image {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__image {
        width: 100%;
        display: block;
        margin-top: 6rem; } }
  .p-recruit-work-about .about__image-col1 {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__image-col1 {
        padding-left: 6%;
        padding-right: 6%; } }
    .p-recruit-work-about .about__image-col1 ._photo1 {
      width: 45%; }
    .p-recruit-work-about .about__image-col1 ._photo2 {
      width: 65%;
      margin-top: -3rem;
      margin-left: auto; }
      @media screen and (max-width: 799px) {
        .p-recruit-work-about .about__image-col1 ._photo2 {
          margin-top: -1rem; } }
    .p-recruit-work-about .about__image-col1 img {
      width: 100%; }
  .p-recruit-work-about .about__image-col2 {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-about .about__image-col2 {
        width: 100%;
        padding-left: 6%;
        padding-right: 6%;
        margin-top: 6rem; } }
    .p-recruit-work-about .about__image-col2 img {
      width: 100%; }
  .p-recruit-work-about .c-leaf {
    right: 0;
    bottom: 25%; }

.p-recruit-work-unique {
  background: var(--color-bg);
  margin-top: 16rem;
  padding: 12rem 0; }
  @media screen and (max-width: 799px) {
    .p-recruit-work-unique {
      margin-top: 7rem;
      padding: 6rem 0; } }
  .p-recruit-work-unique .unique__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap {
        width: 84%; } }
  .p-recruit-work-unique .unique__wrap + .unique__wrap {
    margin-top: 14rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap + .unique__wrap {
        margin-top: 6rem; } }
  .p-recruit-work-unique .unique__wrap-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap-body {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 3rem;
        margin-top: 5rem; } }
  .p-recruit-work-unique .unique__wrap-body-item ._cap {
    border-radius: 1rem;
    font-size: var(--font-size-17);
    font-weight: var(--font-wight-500);
    padding: 1.75rem 0;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap-body-item ._cap {
        border-radius: .8rem; } }
  .p-recruit-work-unique .unique__wrap-body-item ._cap._c1 {
    background: var(--color-black);
    color: var(--color-white); }
  .p-recruit-work-unique .unique__wrap-body-item ._cap._c2 {
    background: var(--color-main2); }
  .p-recruit-work-unique .unique__wrap-body-item ._cap._c3 {
    background: var(--color-main3);
    color: var(--color-white); }
  .p-recruit-work-unique .unique__wrap-body-item ul {
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap-body-item ul {
        margin-top: 1rem; } }
  .p-recruit-work-unique .unique__wrap-body-item li {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background: var(--color-white);
    border-radius: 1rem;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    padding: 3rem 1rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap-body-item li {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 12.5rem;
        padding: 1rem 2rem; } }
  .p-recruit-work-unique .unique__wrap-body-item li + li {
    margin-top: 1rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap-body-item li + li {
        margin-top: .8rem; } }
  .p-recruit-work-unique .unique__wrap-note {
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-unique .unique__wrap-note {
        margin-top: 5rem; } }
    .p-recruit-work-unique .unique__wrap-note ._txt {
      font-size: var(--font-size-18);
      line-height: var(--line-height-m);
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-recruit-work-unique .unique__wrap-note ._txt {
          font-size: var(--font-size-16); } }

.p-recruit-work-environ {
  background: #f2f2f2;
  padding: 14rem 0; }
  @media screen and (max-width: 799px) {
    .p-recruit-work-environ {
      padding: 7rem 0; } }
  .p-recruit-work-environ .environ__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-recruit-work-environ .environ__head {
        width: 84%; } }
  .p-recruit-work-environ .environ__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-environ .environ__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-work-environ .environ__body {
        margin-top: 4rem; } }
  .p-recruit-work-environ .environ__body-block + .environ__body-block {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-environ .environ__body-block + .environ__body-block {
        margin-top: 6rem; } }
  .p-recruit-work-environ .environ__body-cap ._cap {
    width: 45rem;
    background: var(--color-bg1);
    border-radius: 1rem;
    font-size: var(--font-size-18);
    font-weight: var(--font-wight-500);
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-environ .environ__body-cap ._cap {
        width: 100%;
        font-size: var(--font-size-16); } }
  .p-recruit-work-environ .environ__body-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-environ .environ__body-list {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        margin-top: 2.5rem; } }
    @media screen and (max-width: 579px) {
      .p-recruit-work-environ .environ__body-list {
        grid-template-columns: repeat(1, 1fr); } }
  .p-recruit-work-environ .environ__body-list-item {
    position: relative; }
    .p-recruit-work-environ .environ__body-list-item ._label {
      position: absolute;
      top: 4rem;
      left: 0;
      width: 100%;
      font-size: var(--font-size-17);
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-recruit-work-environ .environ__body-list-item ._label {
          top: 3rem; } }
    .p-recruit-work-environ .environ__body-list-item img {
      width: 100%;
      border: solid #ccc 1px;
      border-radius: 1rem; }

.p-recruit-work-slide .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important; }
.p-recruit-work-slide .swiper-slide {
  width: auto; }
  .p-recruit-work-slide .swiper-slide img {
    height: 55vh; }

.p-recruit-work-voice {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-work-voice {
      margin-top: 7rem; } }
  .p-recruit-work-voice .voice__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__head {
        width: 84%; } }
  .p-recruit-work-voice .voice__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__body {
        width: 100%;
        margin-top: 3rem; } }
  .p-recruit-work-voice .voice__body-item {
    position: relative;
    width: 85%;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__body-item {
        width: 100%; } }
  .p-recruit-work-voice .voice__body-item + .voice__body-item {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__body-item + .voice__body-item {
        margin-top: 5rem; } }
  .p-recruit-work-voice .voice__body-item-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 32.5%; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__body-item-photo {
        position: relative;
        width: 45%;
        padding-right: 8%;
        margin-left: auto; } }
    @media screen and (max-width: 579px) {
      .p-recruit-work-voice .voice__body-item-photo {
        width: 55%; } }
    .p-recruit-work-voice .voice__body-item-photo ._num {
      width: fit-content;
      color: var(--color-main1);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-16);
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-recruit-work-voice .voice__body-item-photo ._num {
          font-size: var(--font-size-12);
          margin-left: auto; } }
    .p-recruit-work-voice .voice__body-item-photo ._num span {
      display: block;
      font-size: var(--font-size-36); }
      @media screen and (max-width: 799px) {
        .p-recruit-work-voice .voice__body-item-photo ._num span {
          font-size: var(--font-size-30); } }
    .p-recruit-work-voice .voice__body-item-photo img {
      width: 100%;
      margin-top: .5rem; }
  .p-recruit-work-voice .voice__body-item-note {
    width: 70%;
    margin-left: auto;
    padding-top: 14rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__body-item-note {
        width: 92%;
        margin-right: auto;
        padding-top: 0;
        margin-top: -3rem; } }
  .p-recruit-work-voice .voice__body-item-border {
    border: solid var(--color-main1) 1px;
    border-radius: 1rem;
    padding: 6rem 7% 5rem 10%; }
    @media screen and (max-width: 799px) {
      .p-recruit-work-voice .voice__body-item-border {
        padding: 5rem 8% 4rem; } }
    .p-recruit-work-voice .voice__body-item-border ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
    .p-recruit-work-voice .voice__body-item-border ._txt + ._txt {
      margin-top: 1.5rem; }
    .p-recruit-work-voice .voice__body-item-border ._name {
      margin-top: 2rem;
      text-align: right; }
      @media screen and (max-width: 799px) {
        .p-recruit-work-voice .voice__body-item-border ._name {
          font-size: var(--font-size-14); } }
    .p-recruit-work-voice .voice__body-item-border ._name span {
      font-size: var(--font-size-18);
      margin-left: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-recruit-work-voice .voice__body-item-border ._name span {
          font-size: var(--font-size-16); } }
  .p-recruit-work-voice .c-leaf {
    left: 0;
    bottom: 0; }

/* ==========================================================================
   #job
========================================================================== */
.p-recruit-job-message {
  position: relative;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-job-message {
      margin-top: 7rem; } }
  .p-recruit-job-message .message__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-recruit-job-message .message__wrap {
        width: 84%; } }
  .p-recruit-job-message .message__head {
    width: 90%;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-message .message__head {
        width: 100%; } }
  .p-recruit-job-message .message__body {
    width: 85%;
    display: flex;
    column-gap: 4rem;
    margin-left: auto;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-message .message__body {
        width: 100%;
        display: block;
        margin-top: 4rem; } }
  .p-recruit-job-message .message__body-cap {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-message .message__body-cap {
        width: 100%; } }
    .p-recruit-job-message .message__body-cap ._cap {
      font-size: var(--font-size-26);
      line-height: var(--line-height-l); }
      @media screen and (max-width: 799px) {
        .p-recruit-job-message .message__body-cap ._cap {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          font-size: 1.8rem; } }
  .p-recruit-job-message .message__body-note {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-message .message__body-note {
        margin-top: 2.5rem; } }
    .p-recruit-job-message .message__body-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
    .p-recruit-job-message .message__body-note ._txt + ._txt {
      margin-top: 1.5rem; }
  .p-recruit-job-message .message__image {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-message .message__image {
        margin-top: 6rem; } }
    .p-recruit-job-message .message__image img {
      width: 100%;
      height: 55vh;
      object-fit: cover; }
      @media screen and (max-width: 799px) {
        .p-recruit-job-message .message__image img {
          height: 45vh; } }
  .p-recruit-job-message .c-leaf {
    left: 0;
    bottom: 50%; }

.p-recruit-job-welcome {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-job-welcome {
      margin-top: 7rem; } }
  .p-recruit-job-welcome .welcome__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    background: var(--color-bg);
    padding: 14rem 8%;
    border-radius: 2rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-welcome .welcome__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-job-welcome .welcome__wrap {
        width: 90%;
        padding: 5rem 8%; } }
  .p-recruit-job-welcome .welcome__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-welcome .welcome__body {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 4rem;
        margin-top: 4rem; } }
    @media screen and (max-width: 579px) {
      .p-recruit-job-welcome .welcome__body {
        grid-template-columns: repeat(1, 1fr); } }
  .p-recruit-job-welcome .welcome__body-item ._photo {
    width: 20rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: solid #ccc 1px;
    border-radius: 100%;
    margin: 0 auto; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-welcome .welcome__body-item ._photo {
        width: 15rem;
        height: 15rem; } }
  .p-recruit-job-welcome .welcome__body-item ._photo img {
    width: 16rem;
    height: 16rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-welcome .welcome__body-item ._photo img {
        width: 12rem;
        height: 12rem; } }
  .p-recruit-job-welcome .welcome__body-item ._txt {
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    margin-top: 3rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-welcome .welcome__body-item ._txt {
        margin-top: 2rem; } }

.p-recruit-job-job {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-job-job {
      margin-top: 7rem; } }
  .p-recruit-job-job .job__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__head {
        width: 84%; } }
  .p-recruit-job-job .job__body {
    display: flex;
    column-gap: 20rem;
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body {
        flex-wrap: wrap;
        margin-top: 5rem; } }
  .p-recruit-job-job .job__body-nav {
    width: 40rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-nav {
        width: 100%;
        position: sticky;
        top: 0;
        background: #f2f2f2;
        z-index: 2; } }
  .p-recruit-job-job .job__body-nav-inner {
    position: sticky;
    top: 12rem;
    background: var(--color-bg1);
    border-radius: 0 2rem 2rem 0;
    padding: 8rem 0 8rem 22.5%; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-nav-inner {
        background: none;
        border-radius: 0;
        padding: 0;
        overflow-x: scroll; } }
  @media screen and (max-width: 799px) {
    .p-recruit-job-job .job__body-nav-list {
      width: calc(27rem * 7 + 6rem);
      display: flex;
      column-gap: 1rem;
      padding: 2rem 8%;
      overflow-x: scroll; } }
  .p-recruit-job-job .job__body-nav-list li {
    position: relative;
    font-size: var(--font-size-15); }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-nav-list li {
        width: 27rem;
        height: 4.6rem;
        background: var(--color-white);
        border: solid var(--color-main1) 1px;
        border-radius: .5rem; } }
  .p-recruit-job-job .job__body-nav-list li + li {
    margin-top: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-nav-list li + li {
        margin-top: 0; } }
  .p-recruit-job-job .job__body-nav-list a {
    transition: opacity .3s; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-nav-list a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center; } }
  .p-recruit-job-job .job__body-nav-list a:hover {
    opacity: .5; }
  .p-recruit-job-job .job__body-conte {
    flex: 1;
    padding-right: 8%; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-conte {
        margin-top: 6rem;
        padding-left: 8%; } }
  .p-recruit-job-job .job__body-conte-block + .job__body-conte-block {
    margin-top: 14rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-conte-block + .job__body-conte-block {
        margin-top: 7rem; } }
  .p-recruit-job-job .job__body-conte-title {
    width: 30rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg1);
    border-radius: .8rem;
    font-size: 1.8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-conte-title {
        width: 100%;
        height: auto;
        display: block;
        background: none;
        font-weight: var(--font-wight-600); } }
  .p-recruit-job-job .job__body-conte-table {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-conte-table {
        margin-top: 3rem; } }
    .p-recruit-job-job .job__body-conte-table dl {
      display: flex;
      column-gap: .8rem; }
      @media screen and (max-width: 799px) {
        .p-recruit-job-job .job__body-conte-table dl {
          display: block; } }
      .p-recruit-job-job .job__body-conte-table dl:nth-child(1) dt {
        border-top: solid #efd2c4 1px; }
      .p-recruit-job-job .job__body-conte-table dl:nth-child(1) dd {
        border-top: solid #efd2c4 1px; }
        @media screen and (max-width: 799px) {
          .p-recruit-job-job .job__body-conte-table dl:nth-child(1) dd {
            border-top: dotted #efd2c4 1px; } }
    .p-recruit-job-job .job__body-conte-table dt {
      width: 15rem;
      border-bottom: solid #efd2c4 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-recruit-job-job .job__body-conte-table dt {
          width: 100%;
          border-bottom: none;
          font-weight: var(--font-wight-500);
          padding: 2rem 0; } }
    .p-recruit-job-job .job__body-conte-table dd {
      flex: 1;
      border-bottom: solid #efd2c4 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding: 2.5rem 0; }
      @media screen and (max-width: 799px) {
        .p-recruit-job-job .job__body-conte-table dd {
          border-top: dotted #efd2c4 1px;
          padding: 2rem 0; } }
    .p-recruit-job-job .job__body-conte-table ._dot li {
      position: relative;
      padding-left: 1.75rem; }
    .p-recruit-job-job .job__body-conte-table ._dot li::before {
      position: absolute;
      content: '・';
      top: 0;
      left: 0; }
    .p-recruit-job-job .job__body-conte-table ._num {
      display: flex; }
    .p-recruit-job-job .job__body-conte-table ._num li:nth-child(1) {
      width: 2.25rem; }
    .p-recruit-job-job .job__body-conte-table ._num li:nth-child(2) {
      flex: 1; }
  .p-recruit-job-job .job__body-conte-link {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-job .job__body-conte-link {
        margin-top: 4rem; } }
    .p-recruit-job-job .job__body-conte-link a {
      width: 37.5rem;
      height: 6.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-main4);
      border-radius: .5rem;
      color: var(--color-white);
      font-size: var(--font-size-16);
      font-weight: var(--font-wight-600);
      margin: 0 auto;
      transition: background .5s; }
      @media screen and (max-width: 799px) {
        .p-recruit-job-job .job__body-conte-link a {
          width: 100%;
          max-width: 40rem;
          height: 6rem;
          font-size: 1.4rem; } }
      .p-recruit-job-job .job__body-conte-link a:hover {
        background: #424141; }

.p-recruit-job-contact {
  position: relative; }
  .p-recruit-job-contact .c-contact .c-contact__head .c-subhead ._label,
  .p-recruit-job-contact .c-contact .c-contact__head .c-subhead .c-subcap {
    text-align: right; }
  .p-recruit-job-contact .c-leaf {
    top: 15rem;
    right: 0; }

.p-recruit-job-form {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-recruit-job-form {
      margin-top: 7rem; } }
  .p-recruit-job-form .form__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__head {
        width: 84%; } }
  .p-recruit-job-form .form__note {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 8rem;
    padding-left: 12%; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__note {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__note {
        margin-top: 5rem;
        padding-left: 0; } }
    .p-recruit-job-form .form__note ._txt {
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
  .p-recruit-job-form .form__entry {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 5rem;
    padding-left: 12%; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__entry {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__entry {
        padding-left: 0;
        margin-top: 2.5rem; } }
  .p-recruit-job-form .form__entry-body dl {
    display: flex;
    column-gap: .8rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__entry-body dl {
        display: block; } }
  .p-recruit-job-form .form__entry-body dt {
    width: 25rem;
    display: flex;
    align-items: center;
    border-bottom: solid #ccc 1px;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    padding: 2rem 0; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__entry-body dt {
        width: 100%;
        border-bottom: none;
        padding: 2rem 0 0 0; } }
  .p-recruit-job-form .form__entry-body dt span {
    color: red;
    font-size: var(--font-size-12);
    margin-left: .8rem; }
  .p-recruit-job-form .form__entry-body dd {
    flex: 1;
    border-bottom: solid #ccc 1px;
    padding: 2rem 0; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__entry-body dd {
        padding: 1.5rem 0 2rem 0; } }
  .p-recruit-job-form .form__entry-check {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__entry-check {
        margin-top: 4rem; } }
    .p-recruit-job-form .form__entry-check label {
      display: flex;
      align-items: center;
      column-gap: 1rem;
      font-size: var(--font-size-16);
      font-weight: var(--font-wight-600);
      line-height: var(--line-height-m); }
    .p-recruit-job-form .form__entry-check ._txt {
      margin-top: 2.5rem;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m); }
    .p-recruit-job-form .form__entry-check a {
      color: #62A5DB;
      text-decoration: underline; }
  .p-recruit-job-form .form__entry-submit {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form .form__entry-submit {
        margin-top: 4rem; } }
  .p-recruit-job-form input[type="text"],
  .p-recruit-job-form input[type="email"],
  .p-recruit-job-form select,
  .p-recruit-job-form textarea {
    width: 100%;
    border: solid #ccc 1px;
    border-radius: .5rem;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    padding: 1.5rem 2rem; }
  .p-recruit-job-form input[type="checkbox"] {
    -webkit-appearance: auto;
    appearance: auto; }
  .p-recruit-job-form input[type="submit"] {
    width: 30rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: .5rem;
    color: var(--color-white);
    font-size: var(--font-size-15);
    font-weight: var(--font-wight-600);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-recruit-job-form input[type="submit"] {
        width: 100%;
        max-width: 40rem;
        height: 5.8rem; } }
  .p-recruit-job-form .wpcf7 .wpcf7-submit:disabled {
    opacity: .2; }
  .p-recruit-job-form .wpcf7-not-valid-tip {
    font-size: var(--font-size-12);
    margin-top: .5rem; }
  .p-recruit-job-form .wpcf7 form .wpcf7-response-output {
    border-width: 1px;
    font-size: var(--font-size-14);
    line-height: var(--line-height-m);
    margin: 3rem 0 0;
    padding: 1.5rem 2rem; }

/* ==========================================================================
 *
 * 404 scss
 *
========================================================================== */
/* ==========================================================================
   #content
========================================================================== */
.p-404-content {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-404-content {
      margin-top: 7rem; } }
  .p-404-content .content__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-404-content .content__head {
        width: 84%; } }
  .p-404-content .content__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-404-content .content__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-404-content .content__body {
        margin-top: 4rem; } }
    .p-404-content .content__body ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }

/* ==========================================================================
 *
 * policy scss
 *
========================================================================== */
/* ==========================================================================
   #content
========================================================================== */
.p-policy-content {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-policy-content {
      margin-top: 7rem; } }
  .p-policy-content .content__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-s); }
    @media screen and (max-width: 799px) {
      .p-policy-content .content__head {
        width: 84%; } }
    .p-policy-content .content__head ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
  .p-policy-content .content__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-s);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-policy-content .content__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-policy-content .content__body {
        margin-top: 4rem; } }
    .p-policy-content .content__body .content__body-item + .content__body-item {
      margin-top: 4rem; }
    .p-policy-content .content__body ._cap {
      font-size: var(--font-size-20);
      line-height: var(--line-height-m); }
    .p-policy-content .content__body ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l);
      margin-top: 1.5rem; }
    .p-policy-content .content__body .lebel1 {
      margin-top: 1.5rem;
      list-style-type: decimal;
      padding-left: 2rem; }
    .p-policy-content .content__body .lebel2 {
      list-style-type: decimal;
      padding-left: 2rem; }
    .p-policy-content .content__body .lebel3 {
      list-style-type: decimal;
      padding-left: 2rem; }
    .p-policy-content .content__body li {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
