/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray: #CCCCCC;
  --color-blue: #1571DA;
  --color-blue-l: #EAF4FF;
  --color-blue-d: #1263c0;
  --color-yellow: #FFF95C;
  --color-green: #08C71E;
  --color-green-d: #08ab1b;
  --color-red: #FF0000; }

/* ==========================================================================
   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: "Oswald", sans-serif; }

/* ==========================================================================
   font-wight
========================================================================== */
:root {
  --font-wight-regular: 400;
  --font-wight-medium: 500;
  --font-wight-semibold: 600;
  --font-wight-bold: 700; }

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

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

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

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

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

.l-toggle.js-active span:nth-child(1) {
  top: .5rem;
  transform: rotate(45deg); }
.l-toggle.js-active span:nth-child(2) {
  opacity: 0; }
.l-toggle.js-active span:nth-child(3) {
  bottom: .5rem;
  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
========================================================================== */
.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._d1 {
  transition-delay: .6s; }

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

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

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

/* ==========================================================================
 *
 * accordion scss
 * -
 *
========================================================================== */
.c-accordion {
  position: relative; }
  .c-accordion .accordion__input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0; }
  .c-accordion .accordion__label {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease; }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '+';
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      color: var(--color-blue);
      font-size: 4rem;
      font-weight: 100; }
      @media screen and (max-width: 799px) {
        .c-accordion .accordion__label::before {
          font-size: 3rem; } }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0; }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    opacity: 1; }
  .c-accordion .accordion__input:checked ~ .accordion__label::before {
    content: '-'; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-head ._cap {
  color: var(--color-blue);
  font-family: var(--font-family-sans);
  font-size: 7.2rem;
  font-weight: 500; }
  @media screen and (max-width: 799px) {
    .c-head ._cap {
      font-size: 4.2rem;
      letter-spacing: 0; } }
.c-head ._label {
  font-size: var(--font-size-18);
  font-weight: 700;
  margin: 1rem 1rem 0 1rem; }
  @media screen and (max-width: 799px) {
    .c-head ._label {
      font-size: 1.4rem;
      margin: 1rem .5rem 0 .5rem; } }

.c-cap-about ._cap {
  color: var(--color-blue);
  font-size: var(--font-size-24);
  font-weight: 700; }
  @media screen and (max-width: 799px) {
    .c-cap-about ._cap {
      font-size: 1.8rem; } }
  .c-cap-about ._cap span {
    font-family: var(--font-family-sans);
    font-size: 4.2rem;
    font-weight: 500;
    margin-right: 1.5rem; }
    @media screen and (max-width: 799px) {
      .c-cap-about ._cap span {
        font-size: 3rem; } }

.c-contact {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  background: var(--color-blue-l);
  border-radius: .5rem;
  padding: 5rem 3rem 5.5rem; }
  @media screen and (max-width: 799px) {
    .c-contact {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .c-contact {
      width: 96%;
      padding: 4rem 6%; } }
  .c-contact .c-contact__cap {
    color: var(--color-blue);
    font-size: var(--font-size-24);
    font-weight: 700;
    line-height: 1.6;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .c-contact .c-contact__cap {
        letter-spacing: 0; } }
    @media screen and (max-width: 579px) {
      .c-contact .c-contact__cap {
        text-align: left; } }
  .c-contact .c-contact__link {
    width: 100%;
    max-width: 82rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
    margin: 3rem auto 0; }
    @media screen and (max-width: 799px) {
      .c-contact .c-contact__link {
        margin: 2.5rem auto 0; } }
    @media screen and (max-width: 579px) {
      .c-contact .c-contact__link {
        grid-template-columns: repeat(1, 1fr); } }
    .c-contact .c-contact__link ._btn {
      height: 8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--color-blue);
      border-radius: 4rem;
      padding: 0 3.5rem 0 5rem;
      transition: background .3s; }
      @media screen and (max-width: 799px) {
        .c-contact .c-contact__link ._btn {
          height: 6.4rem;
          padding: 0 2rem 0 4rem; } }
      .c-contact .c-contact__link ._btn:hover {
        background: var(--color-blue-d); }
      .c-contact .c-contact__link ._btn:nth-child(1) {
        background: var(--color-green); }
        .c-contact .c-contact__link ._btn:nth-child(1):hover {
          background: var(--color-green-d); }
    @media screen and (max-width: 579px) {
      .c-contact .c-contact__link ._btn + ._btn {
        margin-top: .8rem; } }
    .c-contact .c-contact__link ._label {
      color: var(--color-white);
      font-size: var(--font-size-22);
      font-weight: 700;
      line-height: 1.5; }
      .c-contact .c-contact__link ._label span {
        display: block;
        font-size: var(--font-size-15); }
        @media screen and (max-width: 799px) {
          .c-contact .c-contact__link ._label span {
            font-size: 1.3rem; } }
    .c-contact .c-contact__link svg {
      width: 4rem;
      height: 4rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .c-contact .c-contact__link svg {
          width: 3rem;
          height: 3rem; } }
  .c-contact .c-contact__txt {
    font-size: var(--font-size-14);
    line-height: 1.6;
    margin-top: 3rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .c-contact .c-contact__txt {
        margin-top: 2.5rem; } }
    @media screen and (max-width: 579px) {
      .c-contact .c-contact__txt {
        text-align: left; } }

.c-table {
  width: 85%;
  margin-left: auto; }
  @media screen and (max-width: 799px) {
    .c-table {
      width: 100%; } }
  .c-table dl {
    display: flex;
    column-gap: .5rem; }
    @media screen and (max-width: 799px) {
      .c-table dl {
        display: block; } }
    .c-table dl + dl {
      margin-top: .5rem; }
      @media screen and (max-width: 799px) {
        .c-table dl + dl {
          margin-top: 1.5rem; } }
  .c-table dt {
    width: 22rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blue-l);
    color: var(--color-blue);
    font-size: var(--font-size-16);
    font-weight: 700;
    line-height: var(--line-height-s);
    padding: 3rem 1rem; }
    @media screen and (max-width: 799px) {
      .c-table dt {
        width: 100%;
        padding: 0;
        justify-content: flex-start;
        background: none; } }
  .c-table dd {
    flex: 1;
    background: var(--color-blue-l);
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    padding: 3rem 7rem; }
    @media screen and (max-width: 799px) {
      .c-table dd {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 1.5rem 2.5rem;
        margin-top: 1rem; } }
    .c-table dd span {
      color: var(--color-blue-l); }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: var(--z-index-header);
  padding: 3.5rem 52.5rem 0 5rem; }
  @media screen and (max-width: 799px) {
    .l-header {
      padding: 2rem 0 0 1.5rem; } }
  .l-header .header__logo img {
    width: 18rem;
    height: 5.1rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo img {
        width: 15rem;
        height: 4.2rem; } }
  @media screen and (max-width: 799px) {
    .l-header .header__nav {
      display: none; } }
  .l-header .header__nav ul {
    display: flex;
    column-gap: 3rem; }
  .l-header .header__nav li {
    color: var(--color-blue);
    font-size: var(--font-size-15);
    font-weight: 700; }
  .l-header .header__nav a {
    transition: opacity .3s; }
    .l-header .header__nav a:hover {
      opacity: .5; }
  .l-header .header__nav ._submenu {
    position: absolute;
    top: 100%;
    left: 20%;
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 6rem;
    background: rgba(255, 255, 255, 0.6);
    border: solid #cccccc 1px;
    border-radius: .5rem;
    list-style: none;
    margin: .3rem 0 0;
    padding: 3rem 3.5rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: translateY(10px); }
    .l-header .header__nav ._submenu li {
      position: relative; }
    .l-header .header__nav ._submenu li::before {
      position: absolute;
      content: '';
      left: -3rem;
      width: 1px;
      height: 100%;
      background: #cccccc; }
    .l-header .header__nav ._submenu li:first-child::before {
      display: none; }
    .l-header .header__nav ._submenu a {
      display: block;
      white-space: nowrap; }
      .l-header .header__nav ._submenu a:hover {
        opacity: .7; }
    .l-header .header__nav ._submenu ._label {
      display: block;
      font-family: var(--font-family-main);
      font-size: var(--font-size-13);
      font-weight: var(--font-wight-400);
      margin-top: 1rem;
      text-align: center; }
  .l-header .header__nav ._sub:hover ._submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  border-radius: 100%;
  z-index: var(--z-index-toggle); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 1.4rem;
    height: 1.2rem; }
  .l-toggle span {
    background: var(--color-white);
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem; }
  .l-toggle span:nth-child(1) {
    top: 0; }
  .l-toggle span:nth-child(2) {
    top: .5rem; }
  .l-toggle span:nth-child(3) {
    bottom: 0; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: .5rem;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--color-blue);
    padding: 12vh 10% 0; }
  .l-sitemap .sitemap__nav li {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6; }
    .l-sitemap .sitemap__nav li + li {
      margin-top: 1.5rem; }
    .l-sitemap .sitemap__nav li span {
      display: block;
      font-family: var(--font-family-sans);
      font-size: 1rem;
      color: var(--color-yellow); }
  .l-sitemap .sitemap__nav a {
    color: var(--color-white); }
  .l-sitemap .sitemap__nav ._submenu {
    margin-top: 1rem;
    padding-left: 1rem; }
    .l-sitemap .sitemap__nav ._submenu li {
      font-size: 1.5rem; }
      .l-sitemap .sitemap__nav ._submenu li + li {
        margin-top: .5rem; }
  .l-sitemap .sitemap__copy {
    position: absolute;
    right: 8%;
    bottom: 3rem;
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: 1.1rem;
    opacity: .5; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      right: .5rem;
      bottom: .5rem; } }
  .l-contact .contact__btn {
    width: 32.5rem;
    height: 13rem;
    background: var(--color-blue);
    border-radius: 2rem 2rem 0 2rem;
    display: flex;
    align-items: center;
    column-gap: 2rem;
    padding: 0 2rem;
    transition: background .3s; }
    .l-contact .contact__btn:hover {
      background: var(--color-blue-d); }
    @media screen and (max-width: 799px) {
      .l-contact .contact__btn {
        width: 25rem;
        height: 10rem;
        padding: 0 1rem;
        column-gap: 1.5rem; } }
    @media screen and (max-width: 579px) {
      .l-contact .contact__btn {
        width: 22.5rem;
        height: 9rem;
        column-gap: 1rem; } }
  .l-contact .contact__photo {
    width: 10rem;
    height: 10rem; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__photo {
        width: 8rem;
        height: 8rem; } }
    @media screen and (max-width: 579px) {
      .l-contact .contact__photo {
        width: 7.1rem;
        height: 7.1rem; } }
    .l-contact .contact__photo img {
      width: 100%;
      height: 100%;
      border-radius: 100%; }
  .l-contact .contact__note {
    flex: 1; }
    .l-contact .contact__note ._label {
      width: fit-content;
      background: var(--color-white);
      border-radius: 1rem;
      color: var(--color-blue);
      font-size: var(--font-size-13);
      font-weight: 700;
      padding: .3rem 1rem; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__note ._label {
          font-size: 1rem; } }
    .l-contact .contact__note ._cap {
      color: var(--color-white);
      font-size: var(--font-size-16);
      font-weight: 700;
      line-height: 1.4;
      margin-top: .6rem; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__note ._cap {
          font-size: 1.3rem;
          line-height: 1.2; } }
    .l-contact .contact__note ._link {
      color: var(--color-yellow);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-13);
      font-weight: 700;
      margin-top: .6rem;
      text-align: right; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__note ._link {
          font-size: 1rem; } }
      .l-contact .contact__note ._link svg {
        width: 1.4rem;
        height: 1.4rem;
        fill: var(--color-yellow);
        margin-left: .5rem; }
        @media screen and (max-width: 799px) {
          .l-contact .contact__note ._link svg {
            width: 1rem;
            height: 1rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem; } }
  .l-footer .footer__col {
    width: 98%;
    display: flex;
    flex-direction: row-reverse;
    column-gap: 18rem;
    background: var(--color-blue);
    margin-left: 1%;
    padding: 4rem 7.5rem 4rem 4rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col {
        display: block;
        padding: 1rem; } }
  .l-footer .footer__col-conte {
    width: 50%;
    padding-top: 2rem;
    padding-bottom: 6rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-conte {
        width: 100%;
        padding: 0 6%; } }
    .l-footer .footer__col-conte ._logo {
      text-align: right; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-conte ._logo {
          margin-top: 3rem;
          text-align: left; } }
      .l-footer .footer__col-conte ._logo img {
        width: 18rem;
        height: 5.1rem; }
        @media screen and (max-width: 799px) {
          .l-footer .footer__col-conte ._logo img {
            width: 14rem;
            height: 4rem; } }
    .l-footer .footer__col-conte ._cap {
      color: var(--color-white);
      font-size: var(--font-size-30);
      font-weight: 700;
      line-height: 1.7;
      margin-top: 6rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-conte ._cap {
          margin-top: 4rem;
          text-align: right; } }
    .l-footer .footer__col-conte ._nav {
      column-count: 2;
      column-gap: 2rem;
      margin-top: 5rem;
      padding-right: 4rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-conte ._nav {
          column-count: 1;
          padding-right: 0;
          margin-top: 2rem; } }
    .l-footer .footer__col-conte ._nav-item {
      border-bottom: solid rgba(255, 255, 255, 0.5) 1px;
      font-size: var(--font-size-16);
      font-weight: 500;
      margin-bottom: 1rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-conte ._nav-item {
          margin-bottom: 0; } }
      .l-footer .footer__col-conte ._nav-item a {
        display: block;
        color: var(--color-white);
        padding: 1.5rem 0;
        transition: opacity .3s; }
        @media screen and (max-width: 799px) {
          .l-footer .footer__col-conte ._nav-item a {
            padding: 2rem 0; } }
        .l-footer .footer__col-conte ._nav-item a:hover {
          opacity: .7; }
    .l-footer .footer__col-conte ._nav-sub {
      padding-left: 2rem;
      padding-bottom: 2.8rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-conte ._nav-sub {
          padding-bottom: 2rem; } }
    .l-footer .footer__col-conte ._nav-sub-item a {
      padding: .6rem 0; }
  .l-footer .footer__col-photo {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-photo {
        height: 35vh;
        margin-top: 4rem; } }
    @media screen and (max-width: 579px) {
      .l-footer .footer__col-photo {
        height: 100%;
        margin-top: 4rem; } }
    .l-footer .footer__col-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 90%;
      border-radius: 0.5rem; }
  .l-footer .footer__copy {
    color: var(--color-blue);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-14);
    padding: 3rem 0;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        padding: 2.5rem 0; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-hero {
      padding-top: 12rem; } }
  @media screen and (max-width: 579px) {
    .p-index-hero {
      padding-top: 9rem; } }
  .p-index-hero::before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 94%;
    height: .1rem;
    background: var(--color-blue); }
  .p-index-hero .hero__slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .p-index-hero .hero__slide .swiper-slide {
    width: 32.5%;
    text-align: right; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__slide .swiper-slide {
        width: 55%; } }
    @media screen and (max-width: 579px) {
      .p-index-hero .hero__slide .swiper-slide {
        width: 67.5%; } }
    .p-index-hero .hero__slide .swiper-slide img {
      border-radius: .5rem; }
    .p-index-hero .hero__slide .swiper-slide .l1, .p-index-hero .hero__slide .swiper-slide .l2, .p-index-hero .hero__slide .swiper-slide .l3, .p-index-hero .hero__slide .swiper-slide .l4 {
      width: 100%; }
    .p-index-hero .hero__slide .swiper-slide .s1 {
      width: 40%;
      margin-top: 3rem;
      margin-right: 15%; }
    .p-index-hero .hero__slide .swiper-slide .s2 {
      width: 40%;
      margin-bottom: 3rem;
      margin-right: 10%; }
    .p-index-hero .hero__slide .swiper-slide .s3 {
      width: 40%;
      margin-top: 3rem;
      margin-right: 15%; }
    .p-index-hero .hero__slide .swiper-slide .s4 {
      width: 40%;
      margin-bottom: 3rem;
      margin-right: 25%; }
  .p-index-hero .hero__head {
    position: absolute;
    left: 6%;
    bottom: 6rem;
    z-index: 1; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head {
        left: 0;
        bottom: 24rem;
        padding: 0 6%; } }
    @media screen and (max-width: 579px) {
      .p-index-hero .hero__head {
        bottom: 16rem; } }
    .p-index-hero .hero__head ._cap {
      color: var(--color-blue);
      font-size: 6.2rem;
      font-weight: 700;
      line-height: 1.4;
      text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head ._cap {
          font-size: 3rem;
          line-height: 1.5; } }
    .p-index-hero .hero__head ._txt {
      color: var(--color-blue);
      font-size: var(--font-size-16);
      font-weight: 700;
      line-height: var(--line-height-s);
      margin-top: 3rem;
      padding-left: .5rem; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head ._txt {
          margin-top: 1.5rem; } }
  .p-index-hero .hero__contact {
    position: absolute;
    top: 3rem;
    right: 2rem;
    width: 46rem;
    height: 6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: .6rem;
    z-index: 85; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__contact {
        top: auto;
        left: 6%;
        right: auto;
        bottom: 8rem;
        width: 22.5rem;
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: .5rem;
        height: auto; } }
    @media screen and (max-width: 579px) {
      .p-index-hero .hero__contact {
        bottom: 2rem; } }
    .p-index-hero .hero__contact ._btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--color-blue);
      border-radius: .5rem;
      padding: 0 1rem 0 2rem;
      transition: background, .3s; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__contact ._btn {
          height: 5.4rem; } }
      .p-index-hero .hero__contact ._btn:nth-child(1) {
        background: var(--color-green); }
        .p-index-hero .hero__contact ._btn:nth-child(1):hover {
          background: var(--color-green-d); }
      .p-index-hero .hero__contact ._btn:hover {
        background: var(--color-blue-d); }
    .p-index-hero .hero__contact ._label {
      color: var(--color-white);
      font-size: var(--font-size-15);
      font-weight: 700;
      line-height: 1.5; }
      .p-index-hero .hero__contact ._label span {
        display: block;
        font-size: var(--font-size-12); }
    .p-index-hero .hero__contact svg {
      width: 3rem;
      height: 3rem;
      fill: var(--color-white); }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-about {
      margin-top: 7rem; } }
  .p-index-about .about__caption {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__caption {
        width: 84%; } }
  .p-index-about .about__head {
    position: relative;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head {
        margin-top: 4rem;
        padding: 4.5rem 0; } }
    .p-index-about .about__head::before {
      position: absolute;
      content: '';
      top: 0;
      left: 1%;
      width: 98%;
      height: 100%;
      background: var(--color-blue);
      z-index: -1; }
  .p-index-about .about__head-col {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    column-gap: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head-col {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head-col {
        width: 100%;
        display: block; } }
  .p-index-about .about__head-slide {
    width: 30%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head-slide {
        width: 100%;
        padding-left: 7%; } }
    .p-index-about .about__head-slide .swiper {
      height: 115vh; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__head-slide .swiper {
          height: auto; } }
    .p-index-about .about__head-slide .swiper-wrapper {
      -webkit-transition-timing-function: linear !important;
      transition-timing-function: linear !important; }
    .p-index-about .about__head-slide .swiper-slide {
      height: auto; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__head-slide .swiper-slide {
          width: 60%; } }
      @media screen and (max-width: 579px) {
        .p-index-about .about__head-slide .swiper-slide {
          width: 80%; } }
      .p-index-about .about__head-slide .swiper-slide img {
        border-radius: .5rem; }
  .p-index-about .about__head-conte {
    flex: 1;
    padding: 14rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head-conte {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-m);
        margin-top: 4rem;
        padding: 0; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-about .about__head-conte {
      width: 84%; } }

  .p-index-about .about__head-conte-note ._cap {
    color: var(--color-white);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head-conte-note ._cap {
        font-size: 2.6rem;
        margin-bottom: 3rem; } }
  .p-index-about .about__head-conte-note ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: var(--color-white);
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    margin-top: 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head-conte-note ._txt {
        margin-top: 2rem; } }
  .p-index-about .about__head-conte-link {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head-conte-link {
        margin-top: 3.5rem; } }
    .p-index-about .about__head-conte-link ._btn {
      width: 32.5rem;
      height: 6.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      column-gap: 1.5rem;
      background: var(--color-white);
      border-radius: 3.1rem;
      padding: 0 3rem;
      transition: opacity .3s; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__head-conte-link ._btn {
          width: 100%;
          max-width: 30rem;
          height: 5.2rem;
          border-radius: 2.6rem;
          padding: 0 2rem 0 3rem; } }
      .p-index-about .about__head-conte-link ._btn:hover {
        opacity: .8; }
    .p-index-about .about__head-conte-link ._btn + ._btn {
      margin-top: 1rem; }
    .p-index-about .about__head-conte-link ._num {
      color: var(--color-blue);
      font-size: var(--font-size-14);
      font-family: var(--font-family-sans); }
    .p-index-about .about__head-conte-link ._label {
      flex: 1;
      color: var(--color-blue);
      font-size: var(--font-size-16);
      font-weight: 700; }
    .p-index-about .about__head-conte-link svg {
      width: 1.4rem;
      height: 1.4rem;
      fill: var(--color-blue); }
  .p-index-about .about__body {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 8rem;
    padding: 2rem 1% 0 10%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body {
        display: block;
        padding: 0;
        margin-top: 3rem; } }
  .p-index-about .about__body-nav {
    width: 35rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body-nav {
        width: 25rem;
        margin-left: auto;
        margin-right: 1%; } }
  .p-index-about .about__body-nav-inner {
    position: sticky;
    top: 8rem;
    background: var(--color-blue);
    border-radius: 2rem;
    padding: 10rem 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body-nav-inner {
        padding: 4rem 3rem; } }
    .p-index-about .about__body-nav-inner ._label {
      position: absolute;
      top: 2.5rem;
      right: 3.5rem;
      color: var(--color-white);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      opacity: .5; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__body-nav-inner ._label {
          top: 1.5rem;
          right: 1.5rem;
          font-size: 1.2rem; } }
    .p-index-about .about__body-nav-inner li {
      font-size: var(--font-size-16); }
      @media screen and (max-width: 799px) {
        .p-index-about .about__body-nav-inner li {
          font-size: 1.4rem; } }
    .p-index-about .about__body-nav-inner li + li {
      margin-top: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__body-nav-inner li + li {
          margin-top: 1.2rem; } }
    .p-index-about .about__body-nav-inner a {
      color: var(--color-white);
      transition: opacity .3s; }
      .p-index-about .about__body-nav-inner a:hover {
        opacity: .5; }
  .p-index-about .about__body-conte {
    flex: 1;
    margin-top: 4rem; }
  .p-index-about .about__foot {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__foot {
        margin-top: 6rem; } }

#about01 {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #about01 {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      margin-top: 6rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    #about01 {
      width: 84%; } }

  #about01 .about01__head ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    margin-top: 2.5rem; }
    @media screen and (max-width: 799px) {
      #about01 .about01__head ._txt {
        font-size: 1.4rem; } }
  #about01 .about01__body {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      #about01 .about01__body {
        margin-top: 4rem; } }
  #about01 .about01__body-item {
    border-top: solid var(--color-blue) 1px;
    padding: 3rem 0; }
    @media screen and (max-width: 799px) {
      #about01 .about01__body-item {
        padding: 2rem 0; } }
    #about01 .about01__body-item:last-child {
      border-bottom: solid var(--color-blue) 1px; }
    #about01 .about01__body-item .accordion__label {
      display: flex;
      align-items: center;
      column-gap: 10rem;
      padding-right: 6rem; }
      @media screen and (max-width: 799px) {
        #about01 .about01__body-item .accordion__label {
          column-gap: 3rem;
          padding-right: 3rem; } }
      #about01 .about01__body-item .accordion__label ._photo {
        width: 25%; }
        @media screen and (max-width: 579px) {
          #about01 .about01__body-item .accordion__label ._photo {
            width: 30%; } }
        @media screen and (max-width: 799px) {
          #about01 .about01__body-item .accordion__label ._photo ._photo-inner {
            position: relative;
            padding-top: 100%; } }
        #about01 .about01__body-item .accordion__label ._photo img {
          width: 100%; }
          @media screen and (max-width: 799px) {
            #about01 .about01__body-item .accordion__label ._photo img {
              position: absolute;
              top: 0;
              left: 0;
              height: 100%;
              object-fit: cover;
              object-position: 10% 50%; } }
      #about01 .about01__body-item .accordion__label ._cap {
        color: var(--color-blue);
        font-size: var(--font-size-22);
        line-height: var(--line-height-s); }
        @media screen and (max-width: 799px) {
          #about01 .about01__body-item .accordion__label ._cap {
            line-height: 1.4; } }
    #about01 .about01__body-item .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-16);
      line-height: var(--line-height-s); }
      #about01 .about01__body-item .accordion__conte p span {
        color: var(--color-blue);
        font-weight: 700; }
    #about01 .about01__body-item .accordion__conte p + p {
      margin-top: 2rem; }
      @media screen and (max-width: 799px) {
        #about01 .about01__body-item .accordion__conte p + p {
          margin-top: 1.5rem; } }
    #about01 .about01__body-item .accordion__input:checked ~ .accordion__conte {
      border-top: dashed var(--color-blue) 1px;
      margin-top: 3rem;
      padding: 5rem 0; }
      @media screen and (max-width: 799px) {
        #about01 .about01__body-item .accordion__input:checked ~ .accordion__conte {
          margin-top: 2rem;
          padding: 3rem 0 1rem; } }

#about02 {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #about02 {
      margin-top: 6rem; } }
  @media screen and (max-width: 799px) {
    #about02 .about02__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    #about02 .about02__head {
      width: 84%; } }

  #about02 .about02__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      #about02 .about02__body {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: .6rem;
        grid-row-gap: .6rem;
        margin-top: 4rem;
        padding: 0 8%; } }
    @media screen and (max-width: 579px) {
      #about02 .about02__body {
        padding: 0 4%; } }
  #about02 .about02__body-item {
    border: solid var(--color-blue) 1px;
    border-radius: .5rem;
    padding: 4rem 0 3.5rem; }
    @media screen and (max-width: 799px) {
      #about02 .about02__body-item {
        padding: 3.5rem 1rem 3rem; } }
    #about02 .about02__body-item ._icon {
      width: 10rem;
      height: 10rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-blue);
      border-radius: 100%;
      margin: 0 auto; }
      @media screen and (max-width: 799px) {
        #about02 .about02__body-item ._icon {
          width: 7rem;
          height: 7rem; } }
      #about02 .about02__body-item ._icon img {
        width: 5rem;
        height: 5rem; }
        @media screen and (max-width: 799px) {
          #about02 .about02__body-item ._icon img {
            width: 3rem;
            height: 3rem; } }
    #about02 .about02__body-item ._label {
      color: var(--color-blue);
      font-size: var(--font-size-18);
      font-weight: 700;
      line-height: 1.6;
      margin-top: 1.5rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        #about02 .about02__body-item ._label {
          font-size: 1.5rem; } }
  #about02 .about02__foot {
    margin-top: 7rem; }
    @media screen and (max-width: 799px) {
      #about02 .about02__foot {
        margin-top: 4rem; } }
    #about02 .about02__foot ._btn {
      width: 32.5rem;
      height: 6.6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--color-blue);
      border-radius: 3.3rem;
      margin-left: auto;
      padding: 0 3rem 0 5rem;
      transition: background .3s; }
      @media screen and (max-width: 799px) {
        #about02 .about02__foot ._btn {
          width: 100%;
          max-width: 27.5rem;
          height: 5.2rem;
          border-radius: 2.6rem;
          margin-right: auto;
          padding: 0 2rem 0 4rem; } }
      #about02 .about02__foot ._btn:hover {
        background: var(--color-blue-d); }
      #about02 .about02__foot ._btn span {
        color: var(--color-white);
        font-size: var(--font-size-16);
        font-weight: 700; }
      #about02 .about02__foot ._btn svg {
        width: 1.4rem;
        height: 1.4rem;
        fill: var(--color-white); }

#about03 {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #about03 {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      margin-top: 6rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    #about03 {
      width: 84%; } }

  #about03 .about03__head ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    margin-top: 2.5rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__head ._txt {
        font-size: 1.4rem; } }
  #about03 .about03__body {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__body {
        margin-top: 4rem; } }
  #about03 .about03__body-cap {
    font-size: var(--font-size-20);
    font-weight: 700; }
  #about03 .about03__body-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__body-col {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 2rem; } }
    @media screen and (max-width: 579px) {
      #about03 .about03__body-col {
        grid-template-columns: repeat(1, 1fr); } }
  #about03 .about03__body-col-item ._photo {
    position: relative;
    text-align: right; }
    #about03 .about03__body-col-item ._photo::before {
      position: absolute;
      content: '';
      top: 20%;
      left: 0;
      width: 100%;
      height: 60%;
      background: var(--color-blue-l);
      z-index: -1; }
  #about03 .about03__body-col-item img {
    width: 90%; }
    @media screen and (max-width: 799px) {
      #about03 .about03__body-col-item img {
        width: 75%; } }
  #about03 .about03__body-col-item ._note {
    margin-top: -2.5rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__body-col-item ._note {
        margin-top: -1.5rem; } }
  #about03 .about03__body-col-item ._in {
    font-size: var(--font-size-13); }
  #about03 .about03__body-col-item ._name {
    font-size: var(--font-size-15);
    margin-top: .8rem; }
  #about03 .about03__body-col-item ul {
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__body-col-item ul {
        margin-top: 2rem; } }
  #about03 .about03__body-col-item li {
    position: relative;
    width: fit-content;
    color: var(--color-blue);
    border-bottom: dashed var(--color-blue) 1px;
    font-size: var(--font-size-16);
    font-weight: 700;
    line-height: 1.6;
    padding-left: 3rem;
    padding-bottom: .3rem; }
    #about03 .about03__body-col-item li::before {
      position: absolute;
      content: '';
      top: .3em;
      left: 0;
      width: 1.6rem;
      height: .8rem;
      display: block;
      border-left: solid var(--color-red) 0.2rem;
      border-bottom: solid var(--color-red) 0.2rem;
      transform: rotate(-45deg); }
  #about03 .about03__body-col-item li + li {
    margin-top: 1rem; }
  #about03 .about03__foot {
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__foot {
        margin-top: 6rem; } }
  #about03 .about03__foot-cap {
    font-size: var(--font-size-20);
    font-weight: 700; }
  #about03 .about03__foot-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__foot-col {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 1rem;
        margin-top: 4rem; } }
  #about03 .about03__foot-col-item:last-child {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end; }
  #about03 .about03__foot-col-item img {
    width: 100%;
    border-radius: .5rem; }
  #about03 .about03__foot-col-item ._data {
    width: 100%;
    padding-left: 5rem; }
    @media screen and (max-width: 799px) {
      #about03 .about03__foot-col-item ._data {
        margin-top: 4rem;
        padding-left: 0; } }
    #about03 .about03__foot-col-item ._data dl {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      border-bottom: dashed var(--color-blue) 1px;
      padding-bottom: 1rem; }
      @media screen and (max-width: 799px) {
        #about03 .about03__foot-col-item ._data dl {
          display: block; } }
    #about03 .about03__foot-col-item ._data dl + dl {
      margin-top: 1.5rem; }
      @media screen and (max-width: 799px) {
        #about03 .about03__foot-col-item ._data dl + dl {
          margin-top: 2rem; } }
    #about03 .about03__foot-col-item ._data dt {
      font-size: var(--font-size-18);
      font-weight: 700; }
    #about03 .about03__foot-col-item ._data dd {
      font-size: var(--font-size-16);
      font-weight: 700; }
      @media screen and (max-width: 799px) {
        #about03 .about03__foot-col-item ._data dd {
          text-align: right; } }
      #about03 .about03__foot-col-item ._data dd span {
        color: var(--color-blue);
        font-family: var(--font-family-sans);
        font-size: var(--font-size-36);
        font-weight: 500;
        margin: 0 .3rem; }

/* ==========================================================================
   #voice
========================================================================== */
.p-index-voice {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-voice {
      margin-top: 7rem; } }
  .p-index-voice .voice__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__head {
        width: 84%; } }
  .p-index-voice .voice__body {
    margin-top: 6rem;
    padding: 0 1% 0 2%; }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__body {
        padding: 0; } }
  .p-index-voice .voice__body-block {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 1rem; }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__body-block {
        display: block; } }
    .p-index-voice .voice__body-block + .voice__body-block {
      margin-top: 6rem; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block + .voice__body-block {
          margin-top: 4rem; } }
    .p-index-voice .voice__body-block:nth-child(2n) {
      flex-direction: row; }
  .p-index-voice .voice__body-block-info {
    width: 35rem; }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__body-block-info {
        position: relative;
        width: 100%;
        max-width: 40rem;
        margin-left: auto;
        margin-right: 2%;
        z-index: 1; } }
    @media screen and (max-width: 579px) {
      .p-index-voice .voice__body-block-info {
        max-width: 34rem; } }
    .p-index-voice .voice__body-block-info ._inner {
      position: sticky;
      top: 8rem;
      background: var(--color-blue);
      border-radius: 2rem;
      padding: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-info ._inner {
          position: relative;
          top: 0;
          padding: 2rem; } }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__body-block-info ._photo {
        width: 40%;
        margin-left: auto; } }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__body-block-info ._bg {
        position: relative;
        padding-top: 100%; } }
    .p-index-voice .voice__body-block-info img {
      width: 100%; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-info img {
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          object-fit: cover; } }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__body-block-info ._note {
        position: absolute;
        left: 3rem;
        bottom: 3rem; } }
    @media screen and (max-width: 579px) {
      .p-index-voice .voice__body-block-info ._note {
        left: 2rem; } }
    .p-index-voice .voice__body-block-info ._name {
      color: var(--color-white);
      font-size: var(--font-size-20);
      font-weight: 700;
      margin-top: 2.5rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-info ._name {
          text-align: left; } }
    .p-index-voice .voice__body-block-info ._txt {
      color: var(--color-white);
      font-size: var(--font-size-14);
      line-height: 1.6;
      margin-top: 1.5rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-info ._txt {
          font-size: 1.2rem;
          text-align: left; } }
  .p-index-voice .voice__body-block-conte {
    flex: 1;
    position: relative;
    background: var(--color-blue-l);
    padding: 8rem 8% 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-voice .voice__body-block-conte {
        width: 91%;
        margin-top: -8rem;
        margin-left: 2%;
        padding: 13rem 8% 6rem; } }
    .p-index-voice .voice__body-block-conte ._item + ._item {
      border-top: solid var(--color-gray) 1px;
      margin-top: 5rem;
      padding-top: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-conte ._item + ._item {
          margin-top: 4rem;
          padding-top: 3rem; } }
    .p-index-voice .voice__body-block-conte ._item dl {
      display: flex;
      align-items: baseline; }
    .p-index-voice .voice__body-block-conte ._item dt {
      color: var(--color-blue);
      font-family: var(--font-family-sans);
      font-size: 2.2rem;
      font-weight: 500; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-conte ._item dt {
          font-size: 1.8rem; } }
      .p-index-voice .voice__body-block-conte ._item dt span {
        font-size: 4.2rem; }
        @media screen and (max-width: 799px) {
          .p-index-voice .voice__body-block-conte ._item dt span {
            font-size: 3.2rem; } }
    .p-index-voice .voice__body-block-conte ._item dd {
      position: relative;
      flex: 1;
      color: var(--color-blue);
      font-size: var(--font-size-20);
      font-weight: 700;
      margin-left: 3.5rem;
      padding-left: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-conte ._item dd {
          margin-left: 1.5rem;
          padding-left: 1.5rem; } }
      .p-index-voice .voice__body-block-conte ._item dd::before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: .1rem;
        height: 2rem;
        background: var(--color-blue); }
    .p-index-voice .voice__body-block-conte ._item ._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-s);
      margin-top: 2.5rem; }
    .p-index-voice .voice__body-block-conte ._label {
      position: absolute;
      top: 3.5rem;
      right: 5rem;
      color: var(--color-blue);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-16); }
      @media screen and (max-width: 799px) {
        .p-index-voice .voice__body-block-conte ._label {
          top: 11rem;
          right: 8%;
          font-size: 1.2rem; } }
      @media screen and (max-width: 579px) {
        .p-index-voice .voice__body-block-conte ._label {
          top: 10rem; } }

/* ==========================================================================
   #message
========================================================================== */
.p-index-message {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-message {
      margin-top: 7rem; } }
  .p-index-message .message__head {
    position: relative;
    padding: 0 2%; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__head {
        padding: 0 1%; } }
    .p-index-message .message__head ._photo {
      position: relative;
      padding-top: 42.5%; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__head ._photo {
          padding-top: 62.5%; } }
      @media screen and (max-width: 579px) {
        .p-index-message .message__head ._photo {
          padding-top: 90%; } }
      .p-index-message .message__head ._photo img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .p-index-message .message__head .c-head {
      position: absolute;
      right: 8%;
      bottom: 8rem;
      text-align: right; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__head .c-head {
          bottom: 5rem; } }
      .p-index-message .message__head .c-head ._cap,
      .p-index-message .message__head .c-head ._label {
        color: var(--color-white); }
  .p-index-message .message__body {
    position: relative;
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__body {
        margin-top: 6rem; } }
  @media screen and (max-width: 799px) {
    .p-index-message .message__body-note {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-message .message__body-note {
      width: 84%; } }

  .p-index-message .message__body-note ._cap {
    color: var(--color-blue);
    font-size: var(--font-size-24);
    font-weight: 700;
    margin-bottom: 4.5rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__body-note ._cap {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        text-align: left; } }
  .p-index-message .message__body-note ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    margin-top: 3.5rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__body-note ._txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-top: 2rem; } }
    .p-index-message .message__body-note ._txt span {
      color: var(--color-blue);
      font-weight: 700; }
  .p-index-message .message__body-photo1 {
    position: absolute;
    top: 0;
    right: 5%; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__body-photo1 {
        position: relative;
        right: auto;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        column-gap: 8rem;
        margin-bottom: 6rem;
        padding: 0 4%; } }
    @media screen and (max-width: 579px) {
      .p-index-message .message__body-photo1 {
        column-gap: 5rem; } }
    .p-index-message .message__body-photo1 ._photo1 {
      width: 20rem;
      margin-left: 8rem; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__body-photo1 ._photo1 {
          margin-left: 0; } }
      @media screen and (max-width: 579px) {
        .p-index-message .message__body-photo1 ._photo1 {
          width: 15rem; } }
    .p-index-message .message__body-photo1 ._photo2 {
      position: relative;
      width: 13.5rem;
      margin-top: 8.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__body-photo1 ._photo2 {
          margin-top: 0;
          margin-bottom: 2rem; } }
      @media screen and (max-width: 579px) {
        .p-index-message .message__body-photo1 ._photo2 {
          width: 9.5rem; } }
      .p-index-message .message__body-photo1 ._photo2::before {
        position: absolute;
        content: '';
        top: 8rem;
        right: -6rem;
        width: 11rem;
        height: 11rem;
        background: var(--color-blue-l);
        border-radius: .5rem;
        z-index: -1; }
        @media screen and (max-width: 799px) {
          .p-index-message .message__body-photo1 ._photo2::before {
            top: 5rem;
            right: -4rem; } }
        @media screen and (max-width: 579px) {
          .p-index-message .message__body-photo1 ._photo2::before {
            width: 7.5rem;
            height: 7.5rem; } }
    .p-index-message .message__body-photo1 img {
      width: 100%;
      border-radius: .5rem; }
  .p-index-message .message__body-photo2 {
    position: absolute;
    top: 25%;
    left: 5%; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__body-photo2 {
        position: relative;
        top: auto;
        left: auto;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        justify-content: flex-start;
        column-gap: 8rem;
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 0 4%; } }
    @media screen and (max-width: 579px) {
      .p-index-message .message__body-photo2 {
        column-gap: 5rem; } }
    .p-index-message .message__body-photo2 ._photo1 {
      position: relative;
      width: 13.5rem;
      margin-left: 12rem; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__body-photo2 ._photo1 {
          margin-right: auto;
          margin-left: 0; } }
      @media screen and (max-width: 579px) {
        .p-index-message .message__body-photo2 ._photo1 {
          width: 9.5rem; } }
      .p-index-message .message__body-photo2 ._photo1::before {
        position: absolute;
        content: '';
        top: -6rem;
        left: -4rem;
        width: 11rem;
        height: 11rem;
        background: var(--color-blue-l);
        border-radius: .5rem;
        z-index: -1; }
        @media screen and (max-width: 799px) {
          .p-index-message .message__body-photo2 ._photo1::before {
            top: -4rem;
            left: -3rem; } }
        @media screen and (max-width: 579px) {
          .p-index-message .message__body-photo2 ._photo1::before {
            width: 7.5rem;
            height: 7.5rem; } }
    .p-index-message .message__body-photo2 ._photo2 {
      width: 20rem;
      margin-top: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__body-photo2 ._photo2 {
          margin-top: 0;
          margin-bottom: 3rem; } }
      @media screen and (max-width: 579px) {
        .p-index-message .message__body-photo2 ._photo2 {
          width: 15rem; } }
    .p-index-message .message__body-photo2 img {
      width: 100%;
      border-radius: .5rem; }
  .p-index-message .message__body-photo3 {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 90%; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__body-photo3 {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: flex-end;
        column-gap: 8rem;
        margin-top: 4rem;
        padding: 0 4%; } }
    @media screen and (max-width: 579px) {
      .p-index-message .message__body-photo3 {
        column-gap: 5rem; } }
    .p-index-message .message__body-photo3 ._photo1 {
      width: 18rem;
      margin-left: auto; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__body-photo3 ._photo1 {
          margin-top: 3rem;
          margin-left: 0; } }
      @media screen and (max-width: 579px) {
        .p-index-message .message__body-photo3 ._photo1 {
          width: 15rem; } }
    .p-index-message .message__body-photo3 ._photo2 {
      position: relative;
      width: 13.5rem;
      margin-top: 8rem;
      margin-left: 16rem; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__body-photo3 ._photo2 {
          margin-top: 0;
          margin-left: auto; } }
      @media screen and (max-width: 579px) {
        .p-index-message .message__body-photo3 ._photo2 {
          width: 9.5rem; } }
      .p-index-message .message__body-photo3 ._photo2::before {
        position: absolute;
        content: '';
        top: -4rem;
        right: -4rem;
        width: 11rem;
        height: 11rem;
        background: var(--color-blue-l);
        border-radius: .5rem;
        z-index: -1; }
        @media screen and (max-width: 799px) {
          .p-index-message .message__body-photo3 ._photo2::before {
            top: -2rem;
            right: -2rem; } }
        @media screen and (max-width: 579px) {
          .p-index-message .message__body-photo3 ._photo2::before {
            width: 7.5rem;
            height: 7.5rem; } }
    .p-index-message .message__body-photo3 img {
      width: 100%;
      border-radius: .5rem; }
  .p-index-message .message__foot {
    margin-top: 14rem; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__foot {
        margin-top: 6rem; } }

/* ==========================================================================
   #job
========================================================================== */
.p-index-job {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-job {
      margin-top: 7rem; } }
  .p-index-job .job__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-job .job__head {
        width: 84%; } }
  .p-index-job .job__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-job .job__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-job .job__body {
        margin-top: 5rem; } }

/* ==========================================================================
   #company
========================================================================== */
.p-index-company {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-company {
      margin-top: 7rem; } }
  .p-index-company .company__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-company .company__head {
        width: 84%; } }
  .p-index-company .company__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-company .company__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-company .company__body {
        margin-top: 5rem; } }
  .p-index-company .company__foot {
    position: relative;
    margin-top: 16rem;
    padding: 0 1%; }
    @media screen and (max-width: 799px) {
      .p-index-company .company__foot {
        margin-top: 6rem; } }
    .p-index-company .company__foot ._photo {
      position: relative;
      padding-top: 42.5%; }
      @media screen and (max-width: 799px) {
        .p-index-company .company__foot ._photo {
          padding-top: 62.5%; } }
      @media screen and (max-width: 579px) {
        .p-index-company .company__foot ._photo {
          padding-top: 90%; } }
      .p-index-company .company__foot ._photo img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 70% 100%; }
    .p-index-company .company__foot ._loop {
      position: absolute;
      left: 0;
      bottom: 1rem;
      width: 100%; }
      .p-index-company .company__foot ._loop .swiper-wrapper {
        -webkit-transition-timing-function: linear !important;
        transition-timing-function: linear !important; }
      .p-index-company .company__foot ._loop .swiper-slide {
        color: var(--color-white);
        font-family: var(--font-family-sans);
        font-size: 10rem;
        font-weight: 500;
        width: auto; }
        @media screen and (max-width: 799px) {
          .p-index-company .company__foot ._loop .swiper-slide {
            font-size: 8rem; } }

/* ==========================================================================
   #contact
========================================================================== */
.p-index-contact {
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-contact {
      margin-top: 2rem; } }
  .p-index-contact .contact__head {
    width: 98%;
    display: flex;
    column-gap: 15rem;
    background: var(--color-blue);
    margin-left: 1%;
    padding: 4rem 4rem 4rem 7rem; }
    @media screen and (max-width: 799px) {
      .p-index-contact .contact__head {
        display: block;
        padding: 4rem 8%; } }
    .p-index-contact .contact__head .c-head {
      margin-top: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__head .c-head {
          margin-top: 0; } }
      .p-index-contact .contact__head .c-head ._cap,
      .p-index-contact .contact__head .c-head ._label {
        color: var(--color-white); }
  .p-index-contact .contact__head-link {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: .6rem; }
    @media screen and (max-width: 799px) {
      .p-index-contact .contact__head-link {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: .6rem;
        margin-top: 4rem; } }
    @media screen and (max-width: 579px) {
      .p-index-contact .contact__head-link {
        grid-template-columns: repeat(1, 1fr); } }
    .p-index-contact .contact__head-link ._btn {
      position: relative;
      background: var(--color-white);
      border-radius: .5rem;
      padding: 9rem 1rem 5rem;
      text-align: center;
      transition: opacity .3s; }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__head-link ._btn {
          padding: 3.5rem 1rem 3rem; } }
      .p-index-contact .contact__head-link ._btn:hover {
        opacity: .8; }
    .p-index-contact .contact__head-link svg {
      width: 10rem;
      height: 10rem;
      fill: var(--color-blue); }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__head-link svg {
          width: 5.6rem;
          height: 5.6rem; } }
    .p-index-contact .contact__head-link span {
      display: block; }
    .p-index-contact .contact__head-link ._cap {
      color: var(--color-blue);
      font-size: var(--font-size-22);
      font-weight: 700;
      margin-top: 4.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__head-link ._cap {
          margin-top: 2rem; } }
    .p-index-contact .contact__head-link ._txt {
      color: var(--color-blue);
      font-size: var(--font-size-15);
      line-height: 1.6;
      margin-top: 1rem; }
    .p-index-contact .contact__head-link ._label {
      position: absolute;
      top: 2rem;
      right: 2.5rem;
      color: var(--color-blue);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-16); }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__head-link ._label {
          top: 1.5rem;
          right: 2rem;
          font-size: 1.2rem; } }
  .p-index-contact .contact__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-s);
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .p-index-contact .contact__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-contact .contact__body {
        margin-top: 7rem; } }
  .p-index-contact .contact__body-note ._cap {
    color: var(--color-blue);
    font-size: var(--font-size-32);
    font-weight: 700;
    line-height: 1.6; }
  .p-index-contact .contact__body-note ._txt {
    font-size: var(--font-size-18);
    line-height: var(--line-height-s);
    font-weight: 500;
    margin-top: 2rem; }
  .p-index-contact .contact__body-note ._min {
    font-size: var(--font-size-14);
    line-height: var(--line-height-s);
    margin-top: 1rem; }
  .p-index-contact .contact__body-form {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-contact .contact__body-form {
        margin-top: 4rem; } }
    .p-index-contact .contact__body-form .form__conte {
      margin-top: 5rem; }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__body-form .form__conte {
          margin-top: 3rem; } }
      .p-index-contact .contact__body-form .form__conte dl {
        display: flex;
        column-gap: .5rem; }
        @media screen and (max-width: 799px) {
          .p-index-contact .contact__body-form .form__conte dl {
            display: block; } }
        .p-index-contact .contact__body-form .form__conte dl + dl {
          margin-top: .5rem; }
          @media screen and (max-width: 799px) {
            .p-index-contact .contact__body-form .form__conte dl + dl {
              margin-top: 1.5rem; } }
      .p-index-contact .contact__body-form .form__conte dt {
        width: 25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-blue-l);
        color: var(--color-blue);
        font-size: var(--font-size-16);
        font-weight: 700;
        line-height: var(--line-height-s);
        padding: 2rem 1rem; }
        @media screen and (max-width: 799px) {
          .p-index-contact .contact__body-form .form__conte dt {
            width: 100%;
            padding: 0;
            justify-content: flex-start;
            background: none; } }
      .p-index-contact .contact__body-form .form__conte dd {
        flex: 1;
        background: var(--color-blue-l);
        font-size: var(--font-size-16);
        line-height: var(--line-height-s);
        padding: 2rem 3rem; }
        @media screen and (max-width: 799px) {
          .p-index-contact .contact__body-form .form__conte dd {
            padding: .5rem;
            margin-top: 1rem; } }
    .p-index-contact .contact__body-form .form__check {
      margin-top: 8rem;
      padding: 0 6rem; }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__body-form .form__check {
          margin-top: 4rem;
          padding: 0; } }
      .p-index-contact .contact__body-form .form__check ._check {
        font-size: var(--font-size-16);
        font-weight: 700;
        line-height: var(--line-height-s); }
      .p-index-contact .contact__body-form .form__check ._txt {
        font-size: var(--font-size-15);
        line-height: var(--line-height-s);
        margin-top: 2.5rem; }
        .p-index-contact .contact__body-form .form__check ._txt a {
          color: var(--color-blue);
          font-weight: 500;
          text-decoration: underline; }
    .p-index-contact .contact__body-form .form__send {
      margin-top: 6rem;
      padding: 0 6rem; }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__body-form .form__send {
          margin-top: 3rem;
          padding: 0; } }
    .p-index-contact .contact__body-form input[type="text"],
    .p-index-contact .contact__body-form input[type="email"],
    .p-index-contact .contact__body-form select,
    .p-index-contact .contact__body-form textarea {
      width: 100%;
      padding: 1rem 2rem;
      font-size: var(--font-size-16);
      line-height: var(--line-height-s); }
    .p-index-contact .contact__body-form input[type="checkbox"] {
      -webkit-appearance: auto;
      appearance: auto;
      margin-right: .5rem; }
    .p-index-contact .contact__body-form input[type="submit"] {
      width: 32.5rem;
      height: 7rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-black);
      border-radius: .5rem;
      color: var(--color-white);
      font-size: var(--font-size-16);
      font-weight: 500;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-contact .contact__body-form input[type="submit"] {
          width: 100%;
          max-width: 27.5rem;
          height: 6rem; } }
    .p-index-contact .contact__body-form input[type="submit"]:disabled {
      opacity: .1; }
    .p-index-contact .contact__body-form .wpcf7-not-valid-tip {
      font-size: 1.1rem; }
    .p-index-contact .contact__body-form .wpcf7 form .wpcf7-response-output {
      margin: 0;
      padding: 1rem 2rem;
      font-size: var(--font-size-15);
      line-height: 1.6; }

/* ==========================================================================
   #404 / hero
========================================================================== */
.p-404-hero {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-s);
  margin-top: 24rem; }
  @media screen and (max-width: 799px) {
    .p-404-hero {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-404-hero {
      margin-top: 16rem; } }
  .p-404-hero ._cap {
    color: var(--color-blue);
    font-family: var(--font-family-sans);
    font-size: 5rem;
    font-weight: 500; }
    @media screen and (max-width: 799px) {
      .p-404-hero ._cap {
        font-size: 3.6rem; } }

/* ==========================================================================
   #404 / content
========================================================================== */
.p-404-content {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-s);
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    .p-404-content {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-404-content {
      margin-top: 4rem; } }
  .p-404-content ._cap {
    font-size: var(--font-size-24);
    line-height: 1.6;
    font-weight: 500; }
  .p-404-content ._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-s);
    margin-top: 2rem; }
