/* ==========================================================================
 *
 * root scss
 * media query / color / font-size/ font-family / line-height
 * width / z-index
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray1: #F5F2F2;
  --color-gray2: #CCCCCC;
  --color-gray3: #A8A8A8;
  --color-main1: #EF9056;
  --color-main2: #547EF0;
  --color-main3: #5BD8A2;
  --color-main4: #FE5D7B;
  --color-main5: #FF7777; }

/* ==========================================================================
   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: "Poppins", sans-serif;
  --font-family-serif: "Times New Roman", serif; }

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

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

/* ==========================================================================
   z-index
========================================================================== */
:root {
  --z-index-toggle: 100;
  --z-index-sitemap: 90;
  --z-index-contact: 80;
  --z-index-header: 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 {
  cursor: pointer; }
  .l-toggle span {
    transition-property: transform, opacity, top, bottom, background;
    transition-duration: .3s;
    transition-timing-function: ease; }

.l-toggle.js-active {
  border-color: var(--color-white); }
  .l-toggle.js-active span {
    background: var(--color-white); }
  .l-toggle.js-active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg); }
  .l-toggle.js-active span:nth-child(2) {
    opacity: 0; }
  .l-toggle.js-active span:nth-child(3) {
    bottom: 6px;
    transform: rotate(-45deg); }

/* ==========================================================================
   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; }

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

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

.c-fade.l2 {
  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;
    background: var(--color-gray1);
    color: var(--color-gray3);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-14);
    padding: 2rem 3rem;
    border-radius: .5rem; }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '+';
      top: 50%;
      right: 3rem;
      transform: translateY(-50%); }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0;
    background: var(--color-gray1);
    padding: 0 3rem; }
  .c-accordion .accordion__conte 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-s); }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    opacity: 1;
    padding: 2rem 3rem;
    margin-top: .3rem;
    border-radius: .5rem; }
  .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
========================================================================== */
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-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: .05em;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

h1, h2, h3, h4, h5, p, li, dt, dd, a {
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: .075em; }

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

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

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

/* ==========================================================================
   #c-head
========================================================================== */
.c-head ._label {
  font-size: var(--font-size-12);
  font-weight: 600; }
.c-head ._label span {
  color: var(--color-main4);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
  margin-right: 1rem; }
.c-head ._cap {
  font-family: var(--font-family-sans);
  font-size: 4rem;
  letter-spacing: .05em;
  margin-top: 1.5rem; }
  @media screen and (max-width: 799px) {
    .c-head ._cap {
      font-size: 3.5rem;
      margin-top: 1.2rem; } }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  height: 100svh;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      width: 100%; } }
  .l-header .header__wrap {
    position: absolute;
    left: 10%;
    bottom: 10rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__wrap {
        left: 6%;
        bottom: 16rem; } }
  .l-header .header__wrap svg {
    width: 35rem;
    height: 20rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__wrap svg {
        width: 25rem;
        height: 14rem; } }
  .l-header .header__wrap ._txt {
    color: var(--color-gray3);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    letter-spacing: .05em;
    margin: 6rem 0 0 1rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__wrap ._txt {
        font-size: var(--font-size-14);
        margin: 4rem 0 0 .5rem; } }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 3rem;
  right: 3rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid var(--color-black) 1px;
  border-radius: 100%;
  z-index: var(--z-index-toggle); }
  @media screen and (max-width: 799px) {
    .l-toggle {
      top: 2rem;
      right: 2rem;
      width: 5.4rem;
      height: 5.4rem; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 12px;
    height: 13px; }
  .l-toggle span {
    background: var(--color-black);
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px; }
  .l-toggle span:nth-child(1) {
    top: 0; }
  .l-toggle span:nth-child(2) {
    top: 6px; }
  .l-toggle span:nth-child(3) {
    bottom: 0; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  height: 100vh;
  display: flex;
  background: #585A60;
  padding: 0 10%;
  align-items: center;
  z-index: var(--z-index-sitemap); }
  @media screen and (max-width: 799px) {
    .l-sitemap {
      width: 95%;
      align-items: flex-start;
      padding: 13vh 12% 0; } }
  .l-sitemap .sitemap__wrap {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 2rem; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__wrap {
        display: block; } }
  .l-sitemap .sitemap__nav {
    flex: 1; }
  .l-sitemap .sitemap__nav li {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-28); }
  .l-sitemap .sitemap__nav li + li {
    margin-top: 3rem; }
  .l-sitemap .sitemap__nav a {
    color: var(--color-white);
    transition: opacity .3s; }
  .l-sitemap .sitemap__nav a:hover {
    opacity: .4; }
  @media screen and (max-width: 799px) {
    .l-sitemap .sitemap__logo {
      position: absolute;
      right: 6%;
      bottom: 4rem; } }
  .l-sitemap .sitemap__logo p {
    color: var(--color-white);
    font-family: var(--font-family-sans);
    text-align: right; }
  .l-sitemap .sitemap__logo ._name {
    font-size: var(--font-size-36);
    letter-spacing: .025em; }
    @media screen and (max-width: 799px) {
      .l-sitemap .sitemap__logo ._name {
        font-size: 2.4rem; } }
  .l-sitemap .sitemap__logo ._copy {
    font-size: var(--font-size-12);
    margin-top: 2rem; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  top: 3rem;
  left: 3rem;
  width: 58rem;
  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 {
      top: auto;
      left: .5rem;
      bottom: .5rem;
      width: 50rem; } }
  @media screen and (max-width: 579px) {
    .l-contact {
      width: calc(100% - 1rem); } }
  .l-contact .contact__item {
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-main1);
    border-radius: .5rem;
    padding: 0 1.5rem; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__item {
        height: 5rem;
        padding: 0 .6rem 0 1rem; } }
  .l-contact .contact__item:nth-child(2) {
    background: var(--color-main2); }
  .l-contact .contact__item:nth-child(3) {
    background: var(--color-main3); }
  .l-contact .contact__item:nth-child(4) {
    background: #ef5683; }
  .l-contact .contact__item ._label {
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-15);
    letter-spacing: .05em; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__item ._label {
        font-size: 1.2rem; } }
  .l-contact .contact__item ._link {
    position: relative;
    display: flex;
    column-gap: 1rem;
    padding-left: 1.5rem; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__item ._link {
        padding-left: 0;
        justify-content: center;
        column-gap: .6rem; } }
  .l-contact .contact__item ._link::before {
    position: absolute;
    content: '';
    top: 25%;
    left: 0;
    width: 1px;
    height: 50%;
    background: var(--color-white); }
    @media screen and (max-width: 799px) {
      .l-contact .contact__item ._link::before {
        display: none; } }
  .l-contact .contact__item ._btn {
    width: 3.8rem;
    height: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 100%;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__item ._btn {
        width: 3.4rem;
        height: 3.4rem; } }
  .l-contact .contact__item ._btn:hover {
    background: #e86b1f; }
  .l-contact .contact__item:nth-child(2) ._btn:hover {
    background: #2a5ade; }
  .l-contact .contact__item:nth-child(3) ._btn:hover {
    background: #11b66f; }
  .l-contact .contact__item:nth-child(4) ._btn:hover {
    background: #e92b63; }
  .l-contact .contact__item svg {
    width: 2.2rem;
    height: 2.2rem;
    fill: var(--color-white);
    transition: background .3s; }

/* ==========================================================================
   #menubtn
========================================================================== */
.l-menubtn {
  position: fixed;
  top: 14.9rem;
  left: 3rem;
  width: 58rem;
  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-menubtn {
      top: auto;
      bottom: 11.3rem;
      left: .5rem;
      width: 50rem; } }
  @media screen and (max-width: 579px) {
    .l-menubtn {
      width: calc(100% - 1rem); } }
  .l-menubtn ._btn {
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #aaa;
    border-radius: .5em;
    padding: 0 1.5rem; }
    @media screen and (max-width: 799px) {
      .l-menubtn ._btn {
        height: 5rem;
        padding: 0 .8rem 0 1rem; } }
  .l-menubtn ._btn:nth-child(1) {
    background: #ff7777; }
  .l-menubtn ._btn:nth-child(2) {
    background: #525252; }
  .l-menubtn ._label {
    color: var(--color-white);
    font-size: var(--font-size-13);
    line-height: 1.3; }
  .l-menubtn svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .l-menubtn svg {
        width: 1.6rem;
        height: 1.6rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  background: #585A60;
  margin-top: 18rem;
  padding: 8rem 0 6rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 8rem;
      padding: 7rem 0 5rem; } }
  .l-footer .footer__logo {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: 2.6rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo {
        width: 84%; } }
  .l-footer .footer__nav {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3.5rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__nav {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__nav {
        display: block;
        margin-top: 6rem; } }
    .l-footer .footer__nav li {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      margin-top: 6rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__nav li {
          margin-top: 2rem;
          text-align: center; } }
    .l-footer .footer__nav a {
      color: var(--color-white);
      transition: opacity .3s; }
    .l-footer .footer__nav a:hover {
      opacity: .4; }
  .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-12);
    margin-top: 10rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        margin-top: 6rem; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding-bottom: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-hero {
      height: auto;
      padding-bottom: 0; } }
  .p-index-hero .hero__photo {
    width: 80%;
    height: 100%;
    margin-left: auto;
    border-radius: 0 0 0 40rem; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__photo {
        height: calc(100svh - 8rem);
        border-radius: 0 0 0 25rem; } }
  .p-index-hero .hero__photo img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 40rem;
    object-fit: cover; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__photo img {
        border-radius: 0 0 0 25rem;
        object-position: 55% 50%; } }
  .p-index-hero .hero__head {
    position: absolute;
    right: 6%;
    bottom: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-m);
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 8rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-hero .hero__head {
      width: 84%; } }

  .p-index-hero .hero__head p {
    color: var(--color-white);
    font-weight: 600;
    text-shadow: 0 0 3rem var(--color-black); }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head p {
        color: var(--color-black);
        text-shadow: none; } }
  .p-index-hero .hero__head ._cap {
    font-size: var(--font-size-32);
    line-height: var(--line-height-s);
    letter-spacing: .35em; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head ._cap {
        font-size: 2.4rem;
        letter-spacing: .15em; } }
  .p-index-hero .hero__head ._txt {
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    margin-top: 2rem; }

/* ==========================================================================
   #concept
========================================================================== */
.p-index-concept .concept__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__wrap {
      margin-top: 8rem; } }
.p-index-concept .concept__photo {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__photo {
      width: 100%;
      padding-right: 8%; } }
.p-index-concept .concept__photo img {
  width: 100%; }
.p-index-concept .concept__conte {
  background: var(--color-gray1);
  margin-top: -30rem;
  padding: 10rem 0; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__conte {
      margin-top: -10rem;
      padding: 16rem 0 6rem; } }
.p-index-concept .concept__conte-bg {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__conte-bg {
      width: 84%; } }
.p-index-concept .concept__conte-inner {
  width: calc(50% - 12rem);
  margin-left: auto; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__conte-inner {
      width: 100%; } }
.p-index-concept .concept__conte-note {
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__conte-note {
      margin-top: 3rem; } }
.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;
  font-size: var(--font-size-16);
  line-height: var(--line-height-m); }
.p-index-concept .concept__conte-note ._txt + ._txt {
  margin-top: 1.5rem; }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon .salon__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__wrap {
      margin-top: 8rem; } }
.p-index-salon .salon__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__head {
      width: 84%; } }
.p-index-salon .salon__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__list {
      width: 100%;
      margin-top: 5rem; } }
.p-index-salon .salon__list-inner {
  width: 85%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  margin-left: auto; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__list-inner {
      width: 100%;
      grid-template-columns: repeat(1, 1fr); } }
.p-index-salon .salon__list-item img {
  width: 100%; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__list-item img {
      padding-left: 8%; } }
.p-index-salon .salon__list-item ._name {
  font-family: var(--font-family-sans);
  font-size: 2rem;
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__list-item ._name {
      padding: 0 8%;
      text-align: right; } }
.p-index-salon .salon__list-item ._txt {
  color: var(--color-gray3);
  font-size: var(--font-size-14);
  line-height: var(--line-height-s);
  margin-top: 1.5rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__list-item ._txt {
      padding: 0 10%;
      margin-top: 1rem; } }

/* ==========================================================================
   #set
========================================================================== */
.p-index-set {
  background: var(--color-gray1);
  padding: 16rem 0;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-set {
      padding: 6rem 0;
      margin-top: 8rem; } }
  .p-index-set .set__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    column-gap: 16rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head {
        display: block; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head .c-head {
        margin-top: 5rem; } }
    .p-index-set .set__head ._photo {
      width: 32.5%; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__head ._photo {
          width: 100%; } }
    .p-index-set .set__head img {
      width: 100%; }
  .p-index-set .set__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list {
        width: 90%;
        margin-top: 4rem; } }
  .p-index-set .set__list-item {
    background: var(--color-white);
    border-radius: 1.5rem;
    padding: 6rem 7rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item {
        padding: 8% 6.5%; } }
  .p-index-set .set__list-item + .set__list-item {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item + .set__list-item {
        margin-top: 5rem; } }
  .p-index-set .set__list-head {
    display: flex;
    align-items: center;
    column-gap: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-head {
        column-gap: 3rem; } }
  .p-index-set .set__list-head ._num {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-12);
    letter-spacing: .025em;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-head ._num {
        font-size: 1rem; } }
  .p-index-set .set__list-head span {
    display: block;
    color: var(--color-main4);
    font-size: 5.2rem;
    letter-spacing: .075em; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-head span {
        font-size: 4.2rem; } }
  .p-index-set .set__list-head ._cap {
    flex: 1;
    font-size: var(--font-size-24);
    line-height: 1.6;
    margin-top: .3rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-head ._cap {
        font-size: 1.8rem; } }
  .p-index-set .set__list-col {
    display: flex;
    column-gap: 10rem;
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col {
        display: block;
        margin-top: 3.5rem; } }
  .p-index-set .set__list-photo {
    width: 47.5%; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-photo {
        width: 100%; } }
  .p-index-set .set__list-photo ._fixed {
    position: sticky;
    top: 16rem;
    display: flex;
    flex-wrap: wrap; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-photo ._fixed {
        position: relative;
        top: auto; } }
  .p-index-set .set__list-photo ._img {
    width: 50%; }
  .p-index-set .set__list-photo img {
    width: 100%; }
  .p-index-set .set__list-conte {
    flex: 1; }
  .p-index-set .set__list-conte-inner + .set__list-conte-inner {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte-inner + .set__list-conte-inner {
        margin-top: 3rem; } }
  .p-index-set .set__list-conte ._box {
    background: #f2f2f2;
    border-radius: .5rem;
    margin-top: 3rem;
    padding: 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._box {
        margin-top: 2.5rem; } }
  .p-index-set .set__list-conte ._box._mt {
    margin-top: 1rem; }
  .p-index-set .set__list-conte ._bold {
    font-size: var(--font-size-17);
    line-height: var(--line-height-s); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._bold {
        font-weight: 600; } }
  .p-index-set .set__list-conte ._check {
    margin-top: 1rem; }
  .p-index-set .set__list-conte ._check li {
    position: relative;
    font-size: var(--font-size-14);
    line-height: var(--line-height-s);
    padding-left: 2.5rem; }
  .p-index-set .set__list-conte ._check li::before {
    position: absolute;
    content: '';
    top: .5rem;
    left: 0;
    width: 1.4rem;
    height: 1.4rem;
    border: solid var(--color-black) 1px; }
  .p-index-set .set__list-conte ._check li::after {
    position: absolute;
    content: '';
    top: -.3rem;
    left: .4rem;
    transform: rotate(45deg);
    transform-origin: center;
    width: 1rem;
    height: 2rem;
    border-right: solid var(--color-main4) 3px;
    border-bottom: solid var(--color-main4) 3px; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._check li::after {
        top: 0;
        width: .8rem;
        height: 1.6rem; } }
  .p-index-set .set__list-conte ._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-14);
    line-height: var(--line-height-s);
    margin-top: 1rem; }
  .p-index-set .set__list-conte ._menu {
    font-size: var(--font-size-24);
    line-height: var(--line-height-s);
    margin-top: 1rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._menu {
        margin-top: 3rem; } }
  .p-index-set .set__list-conte ._detail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._detail {
        grid-template-columns: repeat(3, 1fr); } }
  .p-index-set .set__list-conte ._detail li {
    border: solid var(--color-gray3) 1px;
    color: var(--color-gray3);
    font-size: var(--font-size-13);
    letter-spacing: .025em;
    padding: .3rem 0;
    text-align: center; }
  .p-index-set .set__list-conte ._notice {
    font-size: var(--font-size-13);
    margin-top: 3rem; }
  .p-index-set .set__list-conte ._price {
    font-size: var(--font-size-18);
    margin-top: 3rem;
    text-align: right; }
  .p-index-set .set__list-conte ._price span {
    color: var(--color-main4);
    font-size: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._price span {
        font-size: 3.4rem; } }
  .p-index-set .set__list-conte ._contact {
    margin-top: 3rem; }
  .p-index-set .set__list-conte ._item {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-main1);
    border-radius: .5rem;
    padding: 0 2rem 0 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._item {
        padding: 0 1rem 0 1.5rem; } }
  .p-index-set .set__list-conte ._item + ._item {
    margin-top: .8rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._item + ._item {
        margin-top: .5rem; } }
  .p-index-set .set__list-conte ._item._powder {
    background: var(--color-main2); }
  .p-index-set .set__list-conte ._item._powder ._btn:hover {
    background: #2a5ade; }
  .p-index-set .set__list-conte ._item._casica {
    background: #ef5683; }
  .p-index-set .set__list-conte ._item._casica ._btn:hover {
    background: #e92b63; }
  .p-index-set .set__list-conte ._item._luminity {
    background: var(--color-main3); }
  .p-index-set .set__list-conte ._item._luminity ._btn:hover {
    background: #11b66f; }
  .p-index-set .set__list-conte ._label {
    flex: 1;
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-15);
    letter-spacing: .05em; }
  .p-index-set .set__list-conte ._link {
    width: 70%;
    position: relative;
    display: flex;
    column-gap: .5rem;
    padding-left: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._link {
        width: 75%;
        padding-left: 1.5rem; } }
  .p-index-set .set__list-conte ._link::before {
    position: absolute;
    content: '';
    top: 25%;
    left: 0;
    width: 1px;
    height: 50%;
    background: var(--color-white); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._link::before {
        display: none; } }
  .p-index-set .set__list-conte ._btn {
    width: 50%;
    height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2.1rem;
    padding: 0 1.2rem;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._btn {
        padding: 0;
        justify-content: center;
        column-gap: .5rem; } }
  .p-index-set .set__list-conte ._btn:hover {
    background: #e86b1f; }
  .p-index-set .set__list-conte ._txt2 {
    color: var(--color-white);
    font-size: var(--font-size-13);
    font-weight: 600;
    letter-spacing: 0; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._txt2 {
        font-size: 1.1rem;
        line-height: 1.2; } }
  .p-index-set .set__list-conte svg {
    width: 2.2rem;
    height: 2.2rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte svg {
        width: 2rem;
        height: 2rem; } }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about .about__wrap {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__wrap {
      margin-top: 6rem; } }
.p-index-about .about__photo {
  position: relative;
  padding-top: 37.5%; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__photo {
      padding-top: 85%; } }
  .p-index-about .about__photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
.p-index-about .about__col {
  position: relative;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__col {
      margin-top: 8rem; } }
  .p-index-about .about__col .about__col-inner {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    align-items: center;
    column-gap: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__col .about__col-inner {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__col .about__col-inner {
        display: block; } }
  .p-index-about .about__col .about__col-head {
    flex: 1;
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__col .about__col-head {
        margin-top: 0; } }
  .p-index-about .about__col ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-m);
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__col ._txt {
        margin-top: 3.5rem; } }
  .p-index-about .about__col .about__col-img {
    width: 52.5%;
    display: flex;
    align-items: flex-end;
    column-gap: 1rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__col .about__col-img {
        width: 100%;
        margin-top: 5rem; } }
  .p-index-about .about__col ._img:nth-child(1) {
    width: 60%;
    padding-bottom: 8rem; }
  .p-index-about .about__col ._img:nth-child(2) {
    flex: 1; }
  .p-index-about .about__col .about__col-loop {
    position: absolute;
    top: -5rem;
    left: 0;
    width: 100%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__col .about__col-loop {
        top: auto;
        bottom: 3rem; } }
  .p-index-about .about__col .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .p-index-about .about__col .swiper-slide {
    width: fit-content;
    color: var(--color-gray1);
    font-family: var(--font-family-sans);
    font-size: 11rem;
    letter-spacing: .1em;
    white-space: nowrap; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__col .swiper-slide {
        font-size: 8rem; } }
.p-index-about .about__idea {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__idea {
      margin-top: 8rem; } }
  .p-index-about .about__idea .about__idea-head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__idea .about__idea-head {
        width: 84%; } }
  .p-index-about .about__idea ._cap {
    font-size: var(--font-size-24);
    font-weight: 600;
    line-height: var(--line-height-s);
    text-align: center; }
  .p-index-about .about__idea ._label {
    color: var(--color-main4);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    margin-top: 2rem;
    text-align: center; }
  .p-index-about .about__idea .about__idea-list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-s);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 8rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__idea .about__idea-list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__idea .about__idea-list {
        max-width: 25rem;
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 3rem;
        margin-top: 5rem; } }
  .p-index-about .about__idea ._item {
    position: relative;
    border: solid var(--color-black) 2px;
    border-radius: 100%;
    padding-top: 100%; }
  .p-index-about .about__idea ._item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 25%;
    height: 25%;
    background: var(--color-white); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__idea ._item::before {
        width: 20%;
        height: 20%; } }
  .p-index-about .about__idea ._txt {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    font-size: var(--font-size-15);
    font-weight: 600;
    line-height: var(--line-height-m);
    text-align: center; }
.p-index-about .about__attempt {
  background: var(--color-gray1);
  margin-top: 16rem;
  padding: 12rem 0; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__attempt {
      margin-top: 8rem;
      padding: 7rem 0; } }
  .p-index-about .about__attempt .about__attempt-head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt .about__attempt-head {
        width: 84%; } }
  .p-index-about .about__attempt ._cap {
    font-size: var(--font-size-24);
    font-weight: 600;
    line-height: var(--line-height-s);
    text-align: center; }
  .p-index-about .about__attempt ._label {
    color: var(--color-main4);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    margin-top: 2rem;
    text-align: center; }
  .p-index-about .about__attempt .about__attempt-list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt .about__attempt-list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt .about__attempt-list {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 5rem;
        margin-top: 6rem; } }
  .p-index-about .about__attempt .about__attempt-item:nth-child(2n) {
    margin-top: 24rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt .about__attempt-item:nth-child(2n) {
        margin-top: 0; } }
  .p-index-about .about__attempt ._img {
    width: 70%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt ._img {
        width: 80%; } }
  .p-index-about .about__attempt ._conte {
    position: relative;
    width: calc(100% - 3rem);
    background: var(--color-white);
    border-radius: .5rem;
    margin-top: -16rem;
    margin-left: auto;
    padding: 5rem 6rem 5rem 7rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt ._conte {
        width: calc(100% - 2rem);
        margin-top: -8rem;
        padding: 3rem 2.5rem 3rem 5rem; } }
  .p-index-about .about__attempt ._num {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    color: var(--color-main4);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-13); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt ._num {
        top: 2.5rem;
        left: 2rem; } }
  .p-index-about .about__attempt ._cap2 {
    font-size: var(--font-size-24);
    font-weight: 600;
    line-height: var(--line-height-s); }
  .p-index-about .about__attempt ._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: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__attempt ._txt {
        margin-top: 1.2rem;
        padding-right: 1rem; } }

/* ==========================================================================
   #staff
========================================================================== */
.p-index-staff .staff__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  column-gap: 10rem;
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__wrap {
      display: block;
      margin-top: 8rem; } }
.p-index-staff .staff__aside {
  flex: 1;
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__aside {
      margin-top: 0; } }
  .p-index-staff .staff__aside ._fixed {
    position: sticky;
    top: 18rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__aside ._fixed {
        position: relative;
        top: auto; } }
  .p-index-staff .staff__aside ._nav {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__aside ._nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        column-gap: 1rem;
        margin-top: 4rem; } }
  .p-index-staff .staff__aside a {
    display: block;
    width: fit-content;
    color: var(--color-gray3);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16); }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__aside a {
        font-size: 1.2rem; } }
  .p-index-staff .staff__aside a + a {
    margin-top: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__aside a + a {
        margin-top: 0; } }
.p-index-staff .staff__conte {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__conte {
      width: 100%; } }
  .p-index-staff .staff__conte .staff__conte-block {
    padding-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte .staff__conte-block {
        padding-top: 6rem; } }
  .p-index-staff .staff__conte .staff__conte-cap {
    background: var(--color-main1);
    border-radius: 1rem;
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-22);
    padding: 1.5rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte .staff__conte-cap {
        border-radius: .5rem;
        font-size: 1.7rem;
        padding: 1.8rem; } }
  .p-index-staff .staff__conte .staff__conte-block:nth-child(2) .staff__conte-cap {
    background: var(--color-main2); }
  .p-index-staff .staff__conte .staff__conte-block:nth-child(3) .staff__conte-cap {
    background: var(--color-main3); }
  .p-index-staff .staff__conte .staff__conte-block:nth-child(4) .staff__conte-cap {
    background: #ef5683; }
  .p-index-staff .staff__conte .staff__conte-list {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte .staff__conte-list {
        margin-top: 5rem; } }
  .p-index-staff .staff__conte .staff__conte-item {
    display: flex;
    align-items: flex-start;
    grid-gap: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte .staff__conte-item {
        display: block; } }
  .p-index-staff .staff__conte .staff__conte-item + .staff__conte-item {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte .staff__conte-item + .staff__conte-item {
        margin-top: 4rem; } }
  .p-index-staff .staff__conte ._img {
    position: relative;
    width: 35%; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte ._img {
        width: 60%;
        margin-left: auto; } }
  .p-index-staff .staff__conte ._img > img {
    position: relative;
    z-index: -1; }
  .p-index-staff .staff__conte ._btn {
    position: absolute;
    right: .5rem;
    bottom: .5rem;
    width: 7.6rem;
    height: 7.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main4);
    border-radius: 100%;
    z-index: 3;
    transition: background .3s; }
  .p-index-staff .staff__conte ._btn:hover {
    background: #fd375c; }
  .p-index-staff .staff__conte ._btn img {
    width: 85%; }
  .p-index-staff .staff__conte ._info {
    flex: 1;
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte ._info {
        margin-top: -17rem; } }
  .p-index-staff .staff__conte ._kana {
    color: var(--color-gray2);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-30);
    line-height: 1.4; }
  .p-index-staff .staff__conte ._name {
    font-size: var(--font-size-20);
    font-weight: 500;
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte ._name {
        margin-top: 3rem; } }
  .p-index-staff .staff__conte ._lank {
    font-size: var(--font-size-13);
    font-weight: 500;
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte ._lank {
        font-size: 1.1rem;
        letter-spacing: 0; } }
  .p-index-staff .staff__conte ._comment {
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte ._comment {
        margin-top: 5rem; } }

/* ==========================================================================
   #reason
========================================================================== */
.p-index-reason {
  background: var(--color-gray1);
  padding: 16rem 0;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-reason {
      padding: 7rem 0;
      margin-top: 8rem; } }
  .p-index-reason .reason__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-reason .reason__head {
        width: 84%; } }
  .p-index-reason .reason__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-reason .reason__list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-reason .reason__list {
        width: 90%;
        display: block;
        margin-top: 5rem; } }
  .p-index-reason .reason__list-item {
    width: calc((100% - 4rem) / 3);
    background: var(--color-white);
    border-radius: .5rem;
    padding: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-reason .reason__list-item {
        width: 100%;
        padding: 8% 6.5%; } }
    .p-index-reason .reason__list-item ._cap {
      font-size: 2rem;
      font-weight: 600;
      line-height: var(--line-height-s);
      text-align: center; }
    .p-index-reason .reason__list-item ._label {
      color: var(--color-main4);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-12);
      margin-top: 1rem;
      text-align: center; }
    .p-index-reason .reason__list-item ._txt {
      font-size: var(--font-size-14);
      line-height: var(--line-height-s);
      margin-top: 2rem;
      text-align: center; }
    .p-index-reason .reason__list-item ._img {
      position: relative;
      margin-top: 3rem;
      padding-top: 100%; }
      @media screen and (max-width: 799px) {
        .p-index-reason .reason__list-item ._img {
          padding-top: 70%; } }
    .p-index-reason .reason__list-item img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  @media screen and (max-width: 799px) {
    .p-index-reason .reason__list-item + .reason__list-item {
      margin-top: 3rem; } }

/* ==========================================================================
   #info
========================================================================== */
.p-index-info .info__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-info .info__wrap {
      margin-top: 7rem; } }
.p-index-info .info__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-index-info .info__head {
      width: 84%; } }
.p-index-info .info__list {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-info .info__list {
      margin-top: 5rem; } }
.p-index-info .info__list-item + .info__list-item {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-info .info__list-item + .info__list-item {
      margin-top: 8rem; } }
.p-index-info .info__list-item:nth-child(2n-1) .info__list-img {
  margin-left: auto; }
.p-index-info .info__list-item:nth-child(2n) .info__list-note ._inner {
  margin-left: auto; }
.p-index-info .info__list-col {
  position: relative; }
.p-index-info .info__list-img {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-index-info .info__list-img {
      width: 100%;
      padding-left: 8%; } }
.p-index-info .info__list-note {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); }
  @media screen and (max-width: 799px) {
    .p-index-info .info__list-note {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-info .info__list-note {
      position: relative;
      left: auto;
      transform: translateX(0);
      margin-top: 5rem; } }
  .p-index-info .info__list-note ._inner {
    width: calc(50% - 12rem); }
    @media screen and (max-width: 799px) {
      .p-index-info .info__list-note ._inner {
        width: 100%; } }
  .p-index-info .info__list-note ._label {
    color: var(--color-main4);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-14); }
  .p-index-info .info__list-note ._cap {
    font-size: var(--font-size-24);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-info .info__list-note ._cap {
        margin-bottom: 4rem; } }
  .p-index-info .info__list-note dl {
    display: flex;
    background: var(--color-gray1);
    border-radius: .5rem;
    padding: 1.5rem 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-info .info__list-note dl {
        padding: 1.5rem 2rem; } }
  .p-index-info .info__list-note dl + dl {
    margin-top: .5rem; }
  .p-index-info .info__list-note dt {
    width: 13rem;
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
    @media screen and (max-width: 799px) {
      .p-index-info .info__list-note dt {
        width: 9rem; } }
  .p-index-info .info__list-note dd {
    flex: 1;
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
.p-index-info .info__list-map {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-info .info__list-map {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-info .info__list-map {
      margin-top: 6rem; } }
  .p-index-info .info__list-map iframe {
    width: 100%;
    height: 50rem; }
    @media screen and (max-width: 799px) {
      .p-index-info .info__list-map iframe {
        height: 40rem; } }

/* ==========================================================================
   #link
========================================================================== */
.p-index-link .link__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-link .link__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-link .link__wrap {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 1rem;
      margin-top: 8rem; } }
  .p-index-link .link__wrap ._btn {
    position: relative; }
  .p-index-link .link__wrap ._img {
    position: relative;
    padding-top: 65%; }
  .p-index-link .link__wrap ._img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    border-radius: .5rem;
    opacity: .5;
    z-index: 1; }
  .p-index-link .link__wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    object-fit: cover; }
  .p-index-link .link__wrap ._note {
    position: absolute;
    top: 6rem;
    left: 4rem;
    z-index: 2; }
    @media screen and (max-width: 799px) {
      .p-index-link .link__wrap ._note {
        top: 5rem;
        left: 3rem; } }
  .p-index-link .link__wrap p {
    color: var(--color-white); }
  .p-index-link .link__wrap ._cap {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-26); }
  .p-index-link .link__wrap ._label {
    font-size: var(--font-size-15);
    font-weight: 600;
    margin-top: 1rem; }
  .p-index-link .link__wrap ._txt {
    font-size: var(--font-size-13);
    font-weight: 600;
    line-height: 1.8;
    margin-top: 2rem; }
