/* ==========================================================================
 *
 * root scss
 * media query / color / font-size/ font-family / line-height
 * width / z-index
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #52514B;
  --color-white: #FFFFFF;
  --color-gray1: #F2F2F2;
  --color-gray2: #CCCCCC;
  --color-gray3: #A8A8A8;
  --color-main1: #e8b2b6;
  --color-main2: #8B8686;
  --color-main3: #FBF9FA; }

/* ==========================================================================
   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.1rem;
    --font-size-14: 1.2rem;
    --font-size-15: 1.3rem;
    --font-size-16: 1.4rem;
    --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: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  --font-family-sans: "Jost", sans-serif;
  --font-family-serif: "Noto Serif JP", serif; }

/* ==========================================================================
   line-height
========================================================================== */
:root {
  --line-height-s: 1.8;
  --line-height-m: 2;
  --line-height-l: 2.4; }

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

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

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

.l-toggle.js-active span {
  background: var(--color-gray3); }
.l-toggle.js-active span:nth-child(1) {
  top: 6px;
  opacity: 0; }
.l-toggle.js-active span:nth-child(2) {
  width: 20px; }
  @media screen and (max-width: 799px) {
    .l-toggle.js-active span:nth-child(2) {
      width: 16px; } }
.l-toggle.js-active span:nth-child(3) {
  bottom: 6px;
  opacity: 0; }

.l-toggle.js-change span {
  background: var(--color-black); }

/* ==========================================================================
   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 / footer-hide / link-target
 *
========================================================================== */
/* ==========================================================================
   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; }

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

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

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

/* ==========================================================================
 *
 * 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 / btn2 / btn3 / btn4
 *
========================================================================== */
/* ==========================================================================
   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 / #other
 *
========================================================================== */
/* ==========================================================================
   #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: 579px) {
    html {
      font-size: 2.6737967914vw; } }

body {
  color: var(--color-black);
  font-family: var(--font-family-main);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: .15em;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

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

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

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

/* ==========================================================================
   #common caption
========================================================================== */
.c-cap .c-cap__label {
  color: var(--color-main1);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-18);
  font-weight: 500; }
  @media screen and (max-width: 799px) {
    .c-cap .c-cap__label {
      font-size: 1.3rem; } }
.c-cap .c-cap__heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-32);
  line-height: var(--line-height-s);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .c-cap .c-cap__heading {
      font-size: 2.3rem;
      margin-top: 2rem; } }

.c-cap2 .c-cap2__label {
  color: var(--color-main1);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
  font-weight: 500; }
.c-cap2 .c-cap2__heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-24);
  line-height: var(--line-height-s);
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .c-cap2 .c-cap2__heading {
      margin-top: 1.5rem; } }

/* ==========================================================================
   #common graph
========================================================================== */
.c-graph .c-graph__cap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l); }
  @media screen and (max-width: 799px) {
    .c-graph .c-graph__cap {
      width: 84%; } }
.c-graph .c-graph__cap p,
.c-graph .c-graph__cap h3 {
  text-align: center; }
.c-graph .c-graph__conte {
  background: var(--color-main3);
  padding: 8rem 0 10rem; }
  @media screen and (max-width: 799px) {
    .c-graph .c-graph__conte {
      margin-top: 4rem;
      padding: 2rem 0 4rem; } }
.c-graph .c-graph__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    .c-graph .c-graph__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .c-graph .c-graph__list {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 1rem;
      margin-top: 3rem; } }
.c-graph .c-graph__list-item {
  position: relative; }
.c-graph .c-graph__list-cap {
  position: absolute;
  top: 4.5rem;
  width: 100%;
  z-index: 1; }
  @media screen and (max-width: 799px) {
    .c-graph .c-graph__list-cap {
      top: 4rem; } }
  @media screen and (max-width: 579px) {
    .c-graph .c-graph__list-cap {
      top: 2rem; } }
.c-graph .c-graph__list-heading {
  font-size: var(--font-size-20);
  text-align: center; }
  @media screen and (max-width: 799px) {
    .c-graph .c-graph__list-heading {
      font-size: 1.5rem; } }
.c-graph .c-graph__list-label {
  font-size: var(--font-size-13);
  margin-top: 1.2rem;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .c-graph .c-graph__list-label {
      margin-top: .8rem; } }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header .header__wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  padding: 7rem 0 0 7rem;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header .header__wrap {
      column-gap: 1.5rem;
      align-items: flex-end;
      padding: 3rem 0 0 2rem; } }
.l-header .header__logo svg {
  width: 14rem;
  height: 4.8rem;
  fill: var(--color-black); }
  @media screen and (max-width: 799px) {
    .l-header .header__logo svg {
      width: 8.6rem;
      height: 3.2rem; } }
.l-header .header__label {
  border: solid var(--color-black) 2px;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  font-weight: 500;
  padding: .8rem 2.5rem .6rem; }
  @media screen and (max-width: 799px) {
    .l-header .header__label {
      border: solid var(--color-black) 1px;
      font-size: 1rem;
      padding: .5rem 1.5rem .4rem; } }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 4rem;
  right: 4rem;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-toggle);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  cursor: pointer; }
  @media screen and (max-width: 799px) {
    .l-toggle {
      top: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 20px;
    height: 13px; }
    @media screen and (max-width: 799px) {
      .l-toggle .toggle__wrap {
        width: 16px;
        height: 9px; } }
  .l-toggle .toggle__line {
    background: var(--color-black);
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px; }
  .l-toggle .toggle__line:nth-child(1) {
    top: 0;
    width: 20px; }
    @media screen and (max-width: 799px) {
      .l-toggle .toggle__line:nth-child(1) {
        width: 16px; } }
  .l-toggle .toggle__line:nth-child(2) {
    top: 6px;
    width: 15px; }
    @media screen and (max-width: 799px) {
      .l-toggle .toggle__line:nth-child(2) {
        top: 4px;
        width: 12px; } }
  .l-toggle .toggle__line:nth-child(3) {
    bottom: 0;
    width: 10px; }
    @media screen and (max-width: 799px) {
      .l-toggle .toggle__line:nth-child(3) {
        width: 8px; } }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  background: var(--color-white);
  z-index: var(--z-index-sitemap); }
  .l-sitemap .sitemap__wrap {
    width: 100%;
    height: 100%;
    display: flex;
    column-gap: 12rem;
    padding: 2rem; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__wrap {
        column-gap: 5rem;
        padding: 1rem; } }
  .l-sitemap .sitemap__img {
    width: 50%;
    height: 100%;
    position: relative; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__img {
        width: 25%; } }
  .l-sitemap .sitemap__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% 50%; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__img img {
        object-position: 100% 50%; } }
  .l-sitemap .sitemap__img svg {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 14rem;
    height: 4.8rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__img svg {
        top: 2rem;
        left: 1rem;
        width: 8rem;
        height: 2.8rem;
        display: none; } }
  .l-sitemap .sitemap__nav {
    flex: 1;
    position: relative;
    padding: 20rem 8rem 16rem 0; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav {
        padding: 6rem 2rem 6rem 0;
        overflow-y: scroll; } }
  .l-sitemap .sitemap__nav-list {
    column-count: 2; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav-list {
        column-count: 1; } }
  .l-sitemap .sitemap__nav-item {
    break-inside: avoid;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-22);
    line-height: var(--line-height-s); }
  .l-sitemap .sitemap__nav-item + .sitemap__nav-item {
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav-item + .sitemap__nav-item {
        margin-top: 1.5rem; } }
  .l-sitemap .sitemap__nav-item span {
    display: block;
    font-size: var(--font-size-13); }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav-item span {
        font-size: 1rem; } }
  .l-sitemap .sitemap__nav-link {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50rem;
    display: flex;
    column-gap: 1rem; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav-link {
        position: relative;
        width: 100%;
        display: block;
        margin-top: 5rem; } }
  .l-sitemap .sitemap__nav-btn {
    width: 50%;
    border: solid var(--color-black) 1px;
    border-radius: 1rem;
    display: block;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav-btn {
        width: 100%;
        margin-top: .8rem;
        padding: 1.5rem 1rem 1.2rem; } }
  .l-sitemap .sitemap__nav-btn:hover {
    background: var(--color-black); }
  .l-sitemap .sitemap__nav-btn:hover svg {
    fill: var(--color-white); }
  .l-sitemap .sitemap__nav-btn:hover span {
    color: var(--color-white); }
  .l-sitemap .sitemap__nav-btn svg {
    width: 3.4rem;
    height: 3.4rem;
    fill: var(--color-black);
    transition: fill .3s; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav-btn svg {
        width: 2.6rem;
        height: 2.6rem; } }
  .l-sitemap .sitemap__nav-btn span {
    font-size: var(--font-size-15);
    font-weight: 500;
    line-height: var(--line-height-s);
    display: block;
    margin-top: .8rem;
    transition: color .3s; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__nav-btn span {
        letter-spacing: .05em;
        margin-top: .5rem; } }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      left: .8rem;
      bottom: .8rem;
      width: calc(100% - 1.6rem); } }
  .l-contact .contact__wrap {
    width: 47.5rem;
    background: var(--color-main1);
    border-radius: 1rem;
    padding: 1.8rem; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__wrap {
        width: 100%;
        padding: 1.2rem; } }
  .l-contact .contact__cap {
    background: var(--color-white);
    border-radius: 1.7rem;
    color: var(--color-main1);
    font-size: var(--font-size-14);
    font-weight: 500;
    line-height: 3.4rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__cap {
        border-radius: 1.5rem;
        line-height: 3rem; } }
  .l-contact .contact__link {
    display: flex;
    margin-top: 1.5rem; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__link {
        margin-top: 1rem; } }
  .l-contact .contact__btn {
    width: 50%;
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__btn {
        font-size: 1.4rem;
        letter-spacing: .05em; } }
  .l-contact .contact__btn:hover {
    opacity: .6; }
  .l-contact .contact__btn:nth-child(2) {
    border-left: solid var(--color-white) 1px; }
  .l-contact .contact__btn svg {
    width: 3rem;
    height: 3rem;
    fill: var(--color-white);
    margin-right: .8rem; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__btn svg {
        width: 2.6rem;
        height: 2.6rem; } }

/* ==========================================================================
 *
 * footer scss
 * #footer
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  background: var(--color-main2);
  margin-top: 18rem;
  padding: 10rem 0 6rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 8rem;
      padding: 6rem 0 4rem; } }
  .l-footer .footer__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__wrap {
        flex-direction: column-reverse; } }
  .l-footer .footer__logo {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo {
        flex: none;
        width: 100%;
        margin-top: 5rem;
        text-align: center; } }
  .l-footer .footer__logo svg {
    width: 16rem;
    height: 5.6rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo svg {
        width: 12rem;
        height: 4.2rem; } }
  .l-footer .footer__nav {
    width: 40rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__nav {
        width: 100%;
        margin-top: 5rem; } }
  .l-footer .footer__nav-list {
    column-count: 2; }
  .l-footer .footer__nav-item {
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-15);
    transition: opacity .3s; }
  .l-footer .footer__nav-item:hover {
    opacity: .6; }
  .l-footer .footer__nav-item + .footer__nav-item {
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__nav-item + .footer__nav-item {
        margin-top: 2rem; } }
  .l-footer .footer__link {
    width: 37.5rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__link {
        width: 100%; } }
  .l-footer .footer__link-btn {
    border: solid var(--color-white) 1px;
    border-radius: 1rem;
    display: block;
    padding: 2.5rem 1rem 2rem;
    transition: background .3s; }
  .l-footer .footer__link-btn:hover {
    background: #736e6e; }
  .l-footer .footer__link-btn + .footer__link-btn {
    margin-top: 1rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__link-btn + .footer__link-btn {
        margin-top: .8rem; } }
  .l-footer .footer__link-txt {
    color: var(--color-white);
    font-size: var(--font-size-14);
    text-align: center; }
  .l-footer .footer__link-label {
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-20);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding-right: 1rem; }
  .l-footer .footer__link-label svg {
    width: 2.6rem;
    height: 2.6rem;
    fill: var(--color-white);
    margin-right: 1rem; }
  .l-footer .footer__copy {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-13);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        margin-top: 5rem;
        text-align: center; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-home-hero .hero__wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding: 2rem; }
  @media screen and (max-width: 799px) {
    .p-home-hero .hero__wrap {
      padding: 1rem; } }
.p-home-hero .hero__image {
  width: 100%;
  height: 100%; }
.p-home-hero .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; }
  @media screen and (max-width: 799px) {
    .p-home-hero .hero__image img {
      object-position: 50% 50%; } }
.p-home-hero .hero__cap {
  position: absolute;
  left: 20rem;
  bottom: 30rem; }
  @media screen and (max-width: 799px) {
    .p-home-hero .hero__cap {
      left: 8%;
      right: auto;
      bottom: 14rem; } }
.p-home-hero .hero__cap-heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-32);
  line-height: 1.8; }
  @media screen and (max-width: 799px) {
    .p-home-hero .hero__cap-heading {
      font-size: 2.4rem;
      text-shadow: 0 0 0.3rem var(--color-white); } }
.p-home-hero .hero__cap-txt {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 4rem;
  margin-left: .5rem; }
  @media screen and (max-width: 799px) {
    .p-home-hero .hero__cap-txt {
      margin-top: 1rem;
      margin-left: .3rem;
      text-shadow: 0 0 0.3rem var(--color-white); } }

/* ==========================================================================
   #message
========================================================================== */
.p-home-message .message__wrap {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  column-gap: 8rem;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-home-message .message__wrap {
      display: block;
      margin-top: 8rem; } }
.p-home-message .message__img {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-home-message .message__img {
      width: 92%;
      margin-left: auto; } }
.p-home-message .message__conte {
  flex: 1;
  margin-top: 3rem;
  padding-left: 8%; }
  @media screen and (max-width: 799px) {
    .p-home-message .message__conte {
      width: 100%;
      margin-top: 5rem;
      padding-right: 8%; } }
.p-home-message .message__conte-note {
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .p-home-message .message__conte-note {
      margin-top: 3rem; } }
.p-home-message .message__conte-txt {
  font-size: var(--font-size-15);
  line-height: var(--line-height-m); }
  @media screen and (max-width: 799px) {
    .p-home-message .message__conte-txt {
      font-feature-settings: "palt";
      text-align: justify;
      text-justify: inter-ideograph; } }
.p-home-message .message__conte-txt + .message__conte-txt {
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-home-message .message__conte-txt + .message__conte-txt {
      margin-top: 1.5rem; } }
.p-home-message .message__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-s);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 10rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-home-message .message__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-home-message .message__list {
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 4rem;
      grid-row-gap: 4rem;
      width: 80%;
      margin-top: 8rem; } }
  @media screen and (max-width: 579px) {
    .p-home-message .message__list {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 2rem;
      width: 65%;
      margin-top: 6rem; } }
.p-home-message .message__list-item {
  position: relative;
  border: solid var(--color-main1) 2px;
  border-radius: 100%;
  padding-top: 100%; }
.p-home-message .message__list-inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 1rem; }
.p-home-message .message__list-label {
  color: var(--color-main1);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
  line-height: 1.4;
  text-align: center; }
.p-home-message .message__list-label span {
  display: block;
  font-size: var(--font-size-36); }
.p-home-message .message__list-txt {
  font-size: var(--font-size-15);
  font-weight: 500;
  line-height: var(--line-height-m);
  margin-top: 1rem;
  text-align: center; }

/* ==========================================================================
   #point
========================================================================== */
.p-home-point .point__cap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__cap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-home-point .point__cap {
      margin-top: 7rem; } }
.p-home-point .point__cap p,
.p-home-point .point__cap h2 {
  text-align: center; }
.p-home-point .point__list {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__list {
      margin-top: 4rem; } }
.p-home-point .point__list-item {
  display: flex;
  align-items: center;
  column-gap: 6rem; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__list-item {
      display: block; } }
@media screen and (max-width: 799px) {
  .p-home-point .point__list-item + .point__list-item {
    margin-top: 5rem; } }
.p-home-point .point__list-item:nth-child(2n) {
  flex-direction: row-reverse; }
.p-home-point .point__list-item:nth-child(2n-1) .point__list-conte {
  padding-right: 6%; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__list-item:nth-child(2n-1) .point__list-conte {
      padding-left: 8%; } }
.p-home-point .point__list-item:nth-child(2n) .point__list-conte {
  padding-left: 6%; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__list-item:nth-child(2n) .point__list-conte {
      padding-right: 8%; } }
.p-home-point .point__list-img {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__list-img {
      width: 100%;
      padding-right: 8%; } }
.p-home-point .point__list-conte {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__list-conte {
      margin-top: 5rem; } }
.p-home-point .point__list-txt {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__list-txt {
      margin-top: 1.5rem; } }
.p-home-point .point__data,
.p-home-point .staff__data {
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-home-point .point__data,
    .p-home-point .staff__data {
      margin-top: 5rem; } }

/* ==========================================================================
   #concept
========================================================================== */
.p-home-concept .concept__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  column-gap: 12rem;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-home-concept .concept__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-home-concept .concept__wrap {
      width: 100%;
      display: block;
      margin-top: 7rem;
      padding-left: 8%; } }
.p-home-concept .concept__conte {
  flex: 1;
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-home-concept .concept__conte {
      margin-top: 5rem;
      padding-right: 8%; } }
.p-home-concept .concept__txt {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .p-home-concept .concept__txt {
      margin-top: 2rem; } }
.p-home-concept .concept__img {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-home-concept .concept__img {
      width: 100%; } }

/* ==========================================================================
   #staff
========================================================================== */
.p-home-staff .staff__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  column-gap: 18rem;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__wrap {
      display: block;
      margin-top: 7rem; } }
.p-home-staff .staff__cap {
  flex: 1; }
.p-home-staff .staff__cap-sticky {
  position: sticky;
  top: 14rem; }
.p-home-staff .staff__cap-txt {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__cap-txt {
      margin-top: 2rem; } }
.p-home-staff .staff__list {
  width: 52.5%; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list {
      width: 100%;
      margin-top: 6rem; } }
.p-home-staff .staff__list-item {
  display: flex;
  column-gap: 6rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-item {
      display: block; } }
.p-home-staff .staff__list-item + .staff__list-item {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-item + .staff__list-item {
      margin-top: 5rem; } }
.p-home-staff .staff__list-img {
  width: 37.5%; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-img {
      width: 52.5%; } }
.p-home-staff .staff__list-conte {
  flex: 1;
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-conte {
      margin-top: -10rem; } }
.p-home-staff .staff__list-name {
  display: flex;
  align-items: baseline;
  column-gap: 1.5rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-name {
      display: block;
      width: 40%;
      margin-left: auto; } }
.p-home-staff .staff__list-jp {
  font-size: var(--font-size-20); }
.p-home-staff .staff__list-en {
  color: var(--color-main1);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14); }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-en {
      margin-top: 1rem;
      line-height: 1.2; } }
.p-home-staff .staff__list-lank {
  font-size: var(--font-size-12);
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-lank {
      width: 40%;
      letter-spacing: .05em;
      margin-top: 1.5rem;
      margin-left: auto; } }
.p-home-staff .staff__list-txt {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__list-txt {
      margin-top: 4rem; } }
.p-home-staff .staff__data {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-home-staff .staff__data {
      margin-top: 7rem; } }

/* ==========================================================================
   #recruit
========================================================================== */
.p-home-recruit .recruit__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__head {
      width: 84%; } }
  .p-home-recruit .recruit__head .c-cap__label,
  .p-home-recruit .recruit__head .c-cap__heading {
    text-align: center; }
.p-home-recruit .recruit__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__wrap {
      margin-top: 7rem; } }
.p-home-recruit .recruit__col {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 12rem;
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__col {
      display: block;
      margin-top: 4rem; } }
.p-home-recruit .recruit__img {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__img {
      width: 100%;
      padding-left: 8%; } }
.p-home-recruit .recruit__conte {
  flex: 1;
  padding-left: 8%; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__conte {
      margin-top: 6rem;
      padding-right: 8%; } }
.p-home-recruit .recruit__note {
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__note {
      margin-top: 3rem; } }
.p-home-recruit .recruit__txt {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m); }
.p-home-recruit .recruit__txt + .recruit__txt {
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__txt + .recruit__txt {
      margin-top: 1.5rem; } }
.p-home-recruit .recruit__table {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-s);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__table {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__table {
      margin-top: 7rem; } }
.p-home-recruit .recruit__table-list {
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__table-list {
      margin-top: 2rem; } }
.p-home-recruit .recruit__table-item {
  display: flex;
  border-bottom: dotted var(--color-gray3) 1px;
  padding: 3.5rem 0 3rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__table-item {
      padding: 3rem 0 2.5rem; } }
.p-home-recruit .recruit__table-item dt {
  width: 30rem;
  font-size: var(--font-size-15);
  font-weight: 500;
  line-height: var(--line-height-s); }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__table-item dt {
      width: 9rem; } }
.p-home-recruit .recruit__table-item dd {
  flex: 1;
  font-size: var(--font-size-15);
  line-height: var(--line-height-s); }
.p-home-recruit .recruit__table-item span {
  font-size: var(--font-size-13);
  margin-left: 1rem; }
  @media screen and (max-width: 799px) {
    .p-home-recruit .recruit__table-item span {
      display: block;
      margin-left: 0; } }

/* ==========================================================================
   #overview
========================================================================== */
.p-home-overview .overview__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  flex-direction: row-reverse;
  column-gap: 12rem;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-home-overview .overview__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-home-overview .overview__wrap {
      display: block;
      margin-top: 8rem; } }
.p-home-overview .overview__conte {
  flex: 1; }
.p-home-overview .overview__list {
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-home-overview .overview__list {
      margin-top: 2rem; } }
.p-home-overview .overview__item {
  display: flex;
  border-bottom: dotted var(--color-gray3) 1px;
  padding: 3.5rem 0 3rem; }
  @media screen and (max-width: 799px) {
    .p-home-overview .overview__item {
      padding: 3rem 0 2.5rem; } }
.p-home-overview .overview__item dt {
  width: 15rem;
  font-size: var(--font-size-15);
  font-weight: 500;
  line-height: var(--line-height-s); }
  @media screen and (max-width: 799px) {
    .p-home-overview .overview__item dt {
      width: 9rem; } }
.p-home-overview .overview__item dd {
  flex: 1;
  font-size: var(--font-size-15);
  line-height: var(--line-height-s); }
.p-home-overview .overview__map {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-home-overview .overview__map {
      width: 100%;
      margin-top: 6rem; } }
.p-home-overview .overview__map iframe {
  width: 100%;
  height: 100%; }
  @media screen and (max-width: 799px) {
    .p-home-overview .overview__map iframe {
      height: 37.5rem; } }

/* ==========================================================================
   #history
========================================================================== */
.p-home-history .history__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-home-history .history__wrap {
      margin-top: 7rem; } }
.p-home-history .history__list {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list {
      margin-top: 3rem; } }
.p-home-history .history__list-item {
  display: flex;
  align-items: center;
  position: relative; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-item {
      flex-wrap: wrap;
      padding-top: 2rem;
      padding-bottom: 2rem; } }
.p-home-history .history__list-item::before {
  position: absolute;
  content: '';
  top: 0;
  right: 50%;
  width: 1px;
  height: 100%;
  background: var(--color-gray2);
  z-index: -1; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-item::before {
      right: 4.75%; } }
  @media screen and (max-width: 579px) {
    .p-home-history .history__list-item::before {
      right: 10%; } }
.p-home-history .history__list-item:nth-child(2n) {
  flex-direction: row-reverse; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-item:nth-child(2n) {
      flex-direction: row; } }
.p-home-history .history__list-item:first-child::before {
  height: 50%;
  top: auto;
  bottom: 0; }
.p-home-history .history__list-item:last-child::before {
  height: 50%; }
.p-home-history .history__list-img {
  width: 37.5%; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-img {
      width: 70%; } }
.p-home-history .history__list-year {
  width: 25%;
  background: var(--color-white);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-36);
  font-weight: 500;
  padding: 1.5rem 0;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-year {
      width: 30%;
      font-size: 2.4rem;
      text-align: right; } }
.p-home-history .history__list-note {
  width: 37.5%; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-note {
      width: 100%;
      margin-top: 2rem; } }
.p-home-history .history__list-label {
  font-size: var(--font-size-18);
  font-weight: 600; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-label {
      font-size: 1.5rem; } }
.p-home-history .history__list-txt {
  font-size: var(--font-size-14);
  margin-top: 1rem; }
.p-home-history .history__list-item:nth-child(2n) .history__list-label,
.p-home-history .history__list-item:nth-child(2n) .history__list-txt {
  text-align: right; }
  @media screen and (max-width: 799px) {
    .p-home-history .history__list-item:nth-child(2n) .history__list-label,
    .p-home-history .history__list-item:nth-child(2n) .history__list-txt {
      text-align: left; } }
