@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700&display=swap");
/*-----------------------------
A (more) Modern CSS Reset
https://piccalil.li/blog/a-more-modern-css-reset/
-----------------------------*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
/* h1, h2,
h3, h4 {
  text-wrap: balance;
} */
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* @mixin tab2($bp1: $BP-768,$bp2: $BP-1000) {
  @media screen and (min-width:$bp1) and ( max-width:$bp2 - 1) {
    @content;
  }
} */
@keyframes menuAnim {
  0% {
    transform: translate(105%);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes menuHideAnim {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  100% {
    transform: translate(105%);
    opacity: 0;
  }
}
@keyframes slideFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sankaku_1 {
  0% {
    transform: rotate(0deg) scale(1, 1) translate(0%, 0%);
  }
  30% {
    transform: rotate(8deg) scale(1.05, 0.8) translate(0%, 0%);
  }
  50% {
    transform: rotate(5deg) scale(0.9, 1.05) translate(0%, 0%);
  }
  80% {
    transform: rotate(0deg) scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: rotate(0deg) scale(1, 1) translate(0%, 0%);
  }
}
@keyframes sankaku_2 {
  0% {
    transform: rotate(0deg) scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: rotate(-7deg) scale(1.1, 0.6) translate(0%, 0%);
  }
  70% {
    transform: rotate(7deg) scale(1.02, 1.03) translate(0%, 0%);
  }
  80% {
    transform: rotate(4deg) scale(0.8, 1.05) translate(0%, 0%);
  }
  100% {
    transform: rotate(0deg) scale(1, 1) translate(0%, 0%);
  }
}
@keyframes sankaku_3 {
  0% {
    transform: rotate(0deg) scale(1, 1) translate(0%, 0%);
  }
  30% {
    transform: rotate(-7deg) scale(1.1, 0.8) translate(0%, 0%);
  }
  60% {
    transform: rotate(7deg) scale(1.02, 1.03) translate(0%, 0%);
  }
  80% {
    transform: rotate(4deg) scale(0.9, 1.05) translate(0%, 0%);
  }
  100% {
    transform: rotate(0deg) scale(1, 1) translate(0%, 0%);
  }
}
/*------------------------------
BASE
-------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-wrap: auto;
}

ul {
  list-style: none;
}

html, body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

/* */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-feature-settings: "palt";
}

*:focus-visible {
  outline: 2px solid #008fcc;
  outline-offset: 0;
}

a {
  backface-visibility: hidden;
}

/*a:hover {
  color: lighten( g.$rgb_GRY, 25% );
}*/
figure {
  line-height: 0;
}

figcaption {
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* clearfix -------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* display -------------*/
/* pc/sp */
.for-pc {
  display: inherit;
}

.for-sp {
  display: none;
}

img.for-pc {
  display: inline;
}

img.for-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: inherit;
  }
  img.for-pc {
    display: none;
  }
  img.for-sp {
    display: inline;
  }
}
/* margin -------------*/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

/*@include g.sp {
  .mt-0 {
    margin-top: 0vw !important;
  }
  .mb-0 {
    margin-bottom: 0vw !important;
  }
}*/
.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

/*@include g.sp {
  .mt-10 {
    margin-top: 1.3333vw !important;
  }
  .mb-10 {
    margin-bottom: 1.3333vw !important;
  }
}*/
.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

/*@include g.sp {
  .mt-20 {
    margin-top: 2.6666vw !important;
  }
  .mb-20 {
    margin-bottom: 2.6666vw !important;
  }
}*/
.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

/*@include g.sp {
  .mt-30 {
    margin-top: 3.9999vw !important;
  }
  .mb-30 {
    margin-bottom: 3.9999vw !important;
  }
}*/
.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

/*@include g.sp {
  .mt-40 {
    margin-top: 5.3332vw !important;
  }
  .mb-40 {
    margin-bottom: 5.3332vw !important;
  }
}*/
.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

/*@include g.sp {
  .mt-50 {
    margin-top: 6.6665vw !important;
  }
  .mb-50 {
    margin-bottom: 6.6665vw !important;
  }
}*/
.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

/*@include g.sp {
  .mt-60 {
    margin-top: 7.9998vw !important;
  }
  .mb-60 {
    margin-bottom: 7.9998vw !important;
  }
}*/
.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

/*@include g.sp {
  .mt-70 {
    margin-top: 9.3331vw !important;
  }
  .mb-70 {
    margin-bottom: 9.3331vw !important;
  }
}*/
.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

/*@include g.sp {
  .mt-80 {
    margin-top: 10.6664vw !important;
  }
  .mb-80 {
    margin-bottom: 10.6664vw !important;
  }
}*/
.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

/*@include g.sp {
  .mt-90 {
    margin-top: 11.9997vw !important;
  }
  .mb-90 {
    margin-bottom: 11.9997vw !important;
  }
}*/
.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

/*@include g.sp {
  .mt-100 {
    margin-top: 13.333vw !important;
  }
  .mb-100 {
    margin-bottom: 13.333vw !important;
  }
}*/
.mt--7em {
  margin-top: -7em !important;
}

.mb--7em {
  margin-bottom: -7em !important;
}

.mt--6em {
  margin-top: -6em !important;
}

.mb--6em {
  margin-bottom: -6em !important;
}

.mt--5em {
  margin-top: -5em !important;
}

.mb--5em {
  margin-bottom: -5em !important;
}

.mt--4em {
  margin-top: -4em !important;
}

.mb--4em {
  margin-bottom: -4em !important;
}

.mt--3em {
  margin-top: -3em !important;
}

.mb--3em {
  margin-bottom: -3em !important;
}

.mt--2em {
  margin-top: -2em !important;
}

.mb--2em {
  margin-bottom: -2em !important;
}

.mt--1em {
  margin-top: -1em !important;
}

.mb--1em {
  margin-bottom: -1em !important;
}

.mt-0em {
  margin-top: 0em !important;
}

.mb-0em {
  margin-bottom: 0em !important;
}

.mt-1em {
  margin-top: 1em !important;
}

.mb-1em {
  margin-bottom: 1em !important;
}

.mt-2em {
  margin-top: 2em !important;
}

.mb-2em {
  margin-bottom: 2em !important;
}

.mt-3em {
  margin-top: 3em !important;
}

.mb-3em {
  margin-bottom: 3em !important;
}

.mt-4em {
  margin-top: 4em !important;
}

.mb-4em {
  margin-bottom: 4em !important;
}

.mt-5em {
  margin-top: 5em !important;
}

.mb-5em {
  margin-bottom: 5em !important;
}

.mt-6em {
  margin-top: 6em !important;
}

.mb-6em {
  margin-bottom: 6em !important;
}

.mt-7em {
  margin-top: 7em !important;
}

.mb-7em {
  margin-bottom: 7em !important;
}

.mt-8em {
  margin-top: 8em !important;
}

.mb-8em {
  margin-bottom: 8em !important;
}

.mt-9em {
  margin-top: 9em !important;
}

.mb-9em {
  margin-bottom: 9em !important;
}

.mt-10em {
  margin-top: 10em !important;
}

.mb-10em {
  margin-bottom: 10em !important;
}

/* padding -------------*/
.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pt-1em {
  padding-top: 1em !important;
}

.pb-1em {
  padding-bottom: 1em !important;
}

.pt-2em {
  padding-top: 2em !important;
}

.pb-2em {
  padding-bottom: 2em !important;
}

.pt-3em {
  padding-top: 3em !important;
}

.pb-3em {
  padding-bottom: 3em !important;
}

.pt-4em {
  padding-top: 4em !important;
}

.pb-4em {
  padding-bottom: 4em !important;
}

.pt-5em {
  padding-top: 5em !important;
}

.pb-5em {
  padding-bottom: 5em !important;
}

.pt-6em {
  padding-top: 6em !important;
}

.pb-6em {
  padding-bottom: 6em !important;
}

.pt-7em {
  padding-top: 7em !important;
}

.pb-7em {
  padding-bottom: 7em !important;
}

.pt-8em {
  padding-top: 8em !important;
}

.pb-8em {
  padding-bottom: 8em !important;
}

.pt-9em {
  padding-top: 9em !important;
}

.pb-9em {
  padding-bottom: 9em !important;
}

.pt-10em {
  padding-top: 10em !important;
}

.pb-10em {
  padding-bottom: 10em !important;
}

.pl-1em {
  padding-left: 1em;
}

.pl-1_5em {
  padding-left: 1.5em;
}

.pl-2em {
  padding-left: 2em;
}

/* br ------------*/
br.br-mb1 {
  display: block;
  content: "";
  height: 1em;
}

@media screen and (max-width: 767px) {
  br.br-mb1.for-pc {
    display: none;
  }
}

br.br-mb1.for-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.br-mb1.for-sp {
    display: block;
  }
}

/* text -------------*/
/* color  */
.color-wht {
  color: #fff !important;
}

.color-blk {
  color: #000 !important;
}

.color-grn {
  color: #63BBA5 !important;
}

.color-grn2 {
  color: #295641 !important;
}

.color-gry {
  color: #3E3E3E !important;
}

/* ff */
.txt-min {
  font-family: "Shippori Mincho", serif;
}

.txt-en {
  font-family: "Montserrat", sans-serif;
}

/* font size */
.txt-xsmall {
  font-size: 75%;
}

.txt-small {
  font-size: 87.5%;
}

.txt-middle {
  font-size: 93.75%;
}

.txt-large {
  font-size: 112.5%;
}

.txt-xlarge {
  font-size: 137.5%;
}

/* align */
.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.txt-center_forpc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .txt-center_forpc {
    text-align: left;
  }
}

figure.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  figure.center figcaption {
    text-align: left;
  }
}

/* font weight */
.txt-fwL {
  font-weight: 300 !important;
}

.txt-fwR {
  font-weight: 400 !important;
}

.txt-fwM {
  font-weight: 500 !important;
}

.txt-fwB {
  font-weight: 600 !important;
}

/* font style */
.txt-italic {
  font-style: italic;
}

/* line height */
.lh-thin {
  line-height: 1.4;
}

.lh-2 {
  line-height: 2;
}

/* letter space */
.ls-0 {
  letter-spacing: 0 !important;
}

.ls-1 {
  letter-spacing: 1em !important;
}

.ls-_1 {
  letter-spacing: 0.1em !important;
}

.ls-_5 {
  letter-spacing: 0.5em !important;
}

/* indent */
.indent-1 {
  margin-left: 1em;
  text-indent: -1em;
}

.indent-2 {
  margin-left: 2em;
  text-indent: -2em;
}

.indent-23 {
  margin-left: 2.3em;
  text-indent: -2.3em;
}

.indent-25 {
  margin-left: 2.5em;
  text-indent: -2.5em;
}

/**/
.txt-asterisk {
  display: block;
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6 !important;
}

.l-wrapper {
  position: relative;
  width: 100%;
  overflow: clip;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  pointer-events: none;
}
.l-header .header-inner {
  position: relative;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  margin: 70px 75px;
  padding-right: 180px;
}
.l-header .header-logo {
  flex: none;
  position: relative;
  margin: 0;
  line-height: 0;
  pointer-events: auto;
}
.l-header .header-logo a {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  color: #000;
  text-decoration: none;
}
.l-header .header-logo .site-title {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-header .header-inner {
    margin: 20px 20px;
    padding-right: 70px;
  }
  .l-header .header-logo a {
    flex-direction: column;
    gap: 5px;
  }
  .l-header .header-logo img {
    width: 109px;
  }
  .l-header .header-logo .site-title {
    font-size: 11px;
  }
}

.skiplink {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0;
}

.header-toggle {
  position: absolute;
  top: 15px;
  right: 0;
  display: inline-flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
}
.header-toggle .label {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: right;
}
.header-toggle .header-toggle-btn {
  width: 72px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .header-toggle {
    top: 8px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3px;
  }
  .header-toggle .label {
    font-size: 1.4rem;
  }
  .header-toggle .header-toggle-btn {
    width: 50px;
    height: 18px;
  }
  .header-toggle .header-toggle-btn img {
    width: 100%;
    height: 100;
  }
}

/* .header-toggle:hover {

} */
/* .header-toggle-close {
  display: none;
} */
.header-toggle[aria-expanded=false] .header-toggle-open {
  display: block;
}
.header-toggle[aria-expanded=false] .header-toggle-close {
  display: none;
}

.header-toggle[aria-expanded=true] .label {
  visibility: hidden;
}
.header-toggle[aria-expanded=true] .header-toggle-open {
  display: none;
}
.header-toggle[aria-expanded=true] .header-toggle-close {
  display: block;
}

.header-menu {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  pointer-events: auto;
  width: 41%;
  height: 100vh;
  padding: 130px 0 0;
  background: linear-gradient(218deg, #63BBA5 5.63%, #84DAA9 142.18%);
}
.header-menu .header-menu-inner {
  position: relative;
  width: 100%;
  max-height: 100%;
  padding: 10px 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}
.header-menu .gNav ul {
  display: flex;
  flex-direction: column;
  gap: 2.2vh 0;
  justify-content: space-between;
}
.header-menu .gNav li {
  color: #000;
}
.header-menu .gNav a {
  color: #000;
  text-decoration: none;
}
.header-menu .gNav a:hover, .header-menu .gNav a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.header-menu .gNav .label-en {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-size: 3vh;
  font-weight: 400;
  line-height: 1.3;
}
.header-menu .gNav .child-nav {
  position: relative;
  gap: 1em;
  margin-top: 1rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-size: 2.2vh;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.header-menu .gNav .child-nav a {
  position: relative;
  padding-left: 18px;
  text-decoration: none;
  display: flex;
}
.header-menu .gNav .child-nav a:hover, .header-menu .gNav .child-nav a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.header-menu .gNav .child-nav a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 11px;
  height: 10px;
  background: url("../images/arrow_GRN.svg") no-repeat left center;
  background-size: 100% auto;
  transform: translateY(-40%);
}
.header-menu .gNav .child-nav .num {
  width: 2em;
  margin-right: 0.4em;
  font-family: "Montserrat", sans-serif;
  font-size: 107%;
}
@media screen and (max-width: 767px) {
  .header-menu {
    width: 75%;
    padding: 70px 0 0;
  }
}

.header-menu[aria-hidden=true] {
  display: none;
  /* transform: translate(105%);
  transition: transform .5s ease-out; */
  /* .header-menu-inner {
    transform: translate(105%);
    transition: transform 1s ease-out;
  } */
  transform: translate(105%);
  opacity: 0;
  animation: menuHideAnim 0.3s linear 0s 1;
}

.header-menu[aria-hidden=false] {
  display: block;
  display: flex;
  /* transform: translate(0);
  transition: transform .5s ease-out; */
  animation: menuAnim 0.5s ease-out 0s 1;
}

.l-footer {
  position: relative;
  margin-top: 70px;
  padding: 80px;
  background: #8B9994;
  border-radius: 64px 64px 0 0;
  z-index: 0;
}
.l-footer .footer-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 50px;
  margin: auto;
  color: #FFF;
}
.l-footer .footer-inner .footer-block-1 {
  flex: 1;
}
.l-footer .footer-inner .footer-block-2 {
  flex: none;
}
.l-footer .footer-inner .footer-block-3 {
  width: 100%;
  margin-top: 30px;
}
.l-footer .footer-inner .footer-logo a {
  display: flex;
  gap: 24px;
  align-items: center;
  text-decoration: none;
}
.l-footer .footer-inner .footer-logo img {
  width: 160px;
}
.l-footer .footer-inner .footer-logo .site-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-footer .footer-inner .footer-nav-1 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 3em;
  align-items: center;
}
.l-footer .footer-inner .footer-nav-1 li {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.l-footer .footer-inner .footer-nav-1 a {
  text-decoration: none;
}
.l-footer .footer-inner .footer-nav-1 a:hover, .l-footer .footer-inner .footer-nav-1 a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.l-footer .footer-inner .footer-nav-2 {
  font-size: 75%;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.l-footer .footer-inner .footer-nav-2 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  align-items: center;
}
.l-footer .footer-inner .footer-nav-2 li {
  flex: none;
}
.l-footer .footer-inner .footer-nav-2 a {
  text-decoration: none;
}
.l-footer .footer-inner .footer-nav-2 a:hover, .l-footer .footer-inner .footer-nav-2 a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.l-footer .footer-inner .copyright {
  margin: 0;
  font-size: 62.5%;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .l-footer .footer-inner .footer-nav-1 ul {
    gap: 1.5em 2em;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: min(60px, 9vw);
    border-radius: 10vw 10vw 0 0;
  }
  .l-footer .footer-inner {
    gap: 20px 40px;
  }
  .l-footer .footer-inner .footer-block-1 {
    flex: none;
  }
  .l-footer .footer-inner .footer-logo img {
    width: 120px;
  }
  .l-footer .footer-inner .footer-logo .site-title {
    font-size: 11px;
  }
  .l-footer .footer-inner .footer-nav-1 ul {
    flex-direction: column;
    gap: 1.1em 2em;
    align-items: flex-start;
  }
}

.btn-more {
  position: relative;
  display: inline-flex;
  /* gap: 20px; */
  align-items: center;
  color: #000;
  text-decoration: none;
  min-height: 80px;
  padding-right: 100px;
}
.btn-more:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: linear-gradient(218deg, #63BBA5 5.63%, #84DAA9 142.18%);
  border-radius: 100px;
}
.btn-more:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: url("../images/arrow_BLK.svg") no-repeat center center;
  flex: none;
}
.btn-more .label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .btn-more {
    min-height: 40px;
    padding-right: 60px;
  }
  .btn-more:before {
    width: 40px;
    height: 40px;
  }
  .btn-more:after {
    width: 50px;
    height: 50px;
    transform: translateX(5px);
  }
}

.btn-more:hover:before {
  transform: scale(1.05);
  transition: all 0.2s ease-out;
}

.entry {
  pointer-events: auto;
}
.entry a.btn-entry {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10em;
  height: 3em;
  border-radius: 5px;
  box-shadow: 0 0 18.361px 0 rgba(0, 0, 0, 0.08);
  background: #000;
  color: #FFF;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .entry a.btn-entry {
    width: 89px;
    height: 37px;
  }
}

.btn-basic {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.btn-basic a {
  display: block;
  text-decoration: none;
}
.btn-basic a:hover {
  opacity: 0.7;
}
.btn-basic .box {
  position: relative;
  padding: 28px 40px;
  background: linear-gradient(218deg, #63BBA5 5.63%, #84DAA9 142.18%);
  color: #FFF;
  line-height: 1.5;
}
.btn-basic .label {
  margin: 0;
  flex-shrink: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 3.2vw, 32px);
  text-align: center;
}
.btn-basic .label.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}

/* common -------------*/
.l-main {
  position: relative;
  z-index: 0;
}

.page-body {
  position: relative;
  padding: min(120px, 8vw) 0;
  background: #fff;
  color: #000;
}
.page-body .page-inner {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}
.page-body h1, .page-body h2, .page-body h3, .page-body h4, .page-body h5 {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-body .page-inner {
    width: 90%;
  }
}

.sec-inner {
  position: relative;
  width: 80%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.w-1200 {
  max-width: 1200px;
}

.mt {
  margin-top: min(140px, 14vw);
}

.mb {
  margin-bottom: min(140px, 14vw);
}

.pt {
  padding-top: min(140px, 14vw);
}

.pb {
  padding-bottom: min(140px, 14vw);
}

.more {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin: 1em 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
}
.more:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #61BC9D;
  border-radius: 100px;
}

/* h -------------*/
.h-lv1 {
  position: relative;
  font-size: clamp(40px, 8vw, 80px);
  font-size: min(5vw, 80px);
}
.h-lv1 h1 {
  margin: 0;
}
.h-lv1 .ja {
  display: block;
  margin-bottom: 1em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(10px, 25%, 20px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.h-lv1 .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 103%;
}
.h-lv2 {
  position: relative;
  font-size: clamp(30px, 5vw, 80px);
}
.h-lv2 h2, .h-lv2 h3 {
  margin: 0;
}
.h-lv2 .ja {
  display: block;
  margin-bottom: 1em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(12px, 17%, 14px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.h-lv2 .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 103%;
}
.h-lv2.line:before {
  content: "";
  display: block;
  width: 4.4em;
  height: 1px;
  margin-bottom: 0.6em;
  background: #000;
}

.h3-dash {
  position: relative;
  padding-left: 15px;
  font-family: "Shippori Mincho", serif;
  font-size: 87.5%;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.h3-dash:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 1px;
  background: #000;
}

/* scroll in -------------*/
.scrollIn.fade {
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.5s ease-out;
}

.scrollIn.fade.is_show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* pagetop -------------*/
.pagetop {
  position: fixed;
  position: sticky;
  bottom: 0px;
  margin-top: 140px;
  line-height: 1;
  font-size: 10px;
  pointer-events: none;
  z-index: 30;
}
.pagetop a {
  position: absolute;
  bottom: 30px;
  right: 35px;
  display: block;
  width: 46px;
  height: 46px;
  background: url("../images/btn_pagetop.svg") no-repeat;
  background-size: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  text-decoration: none;
  text-indent: 200%;
  white-space: nowrap;
  pointer-events: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 40px;
    height: 40px;
    bottom: 2vw;
    right: 7vw;
  }
}

.pagetop.is_hide {
  display: none;
}

/* top -------------*/
.home-grp-1 {
  position: relative;
}
.home-grp-1:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  background: url("../images/top_message_bg.png") no-repeat;
  background-size: 100% 100%;
  background: linear-gradient(180deg, #FFF 0%, #7FCDB0 40%, #70C7A7 50%, #7FCDB0 60%, #FFF 100%);
}

.home-hero .hero-container {
  position: relative;
  width: 80%;
  max-width: 1100px;
  margin: 130px auto 40px;
}
.home-hero .hero-view {
  position: relative;
  aspect-ratio: 1100/725;
}
.home-hero .hero-view .kv {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: auto;
  /* width: 100%;
  height: auto; */
}
.home-hero .hero-view .kv_img {
  opacity: 0;
}
.home-hero .hero-view #kv_img_1_1 {
  transform-origin: 35% 50%;
}
.home-hero .hero-view #kv_img_2_1 {
  transform-origin: 25% 45%;
}
.home-hero .hero-view #kv_img_3_1 {
  transform-origin: 30% 40%;
}
.home-hero .hero-view #kv_img_4_1 {
  transform-origin: 10% 45%;
}
.home-hero .hero-view #kv_img_1_2 {
  transform-origin: 35% 50%;
}
.home-hero .hero-view #kv_img_2_2 {
  transform-origin: 20% 35%;
}
.home-hero .hero-view #kv_img_3_2 {
  transform-origin: 30% 15%;
}
.home-hero .hero-view #kv_img_4_2 {
  transform-origin: 30% 15%;
}
.home-hero .hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* position: relative;
  margin: -50px auto 0; */
  display: flex;
  gap: 0 60px;
  align-items: center;
}
.home-hero .hero-text .text-1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 126.316px;
  font-size: clamp(20px, 8vw, 126px);
  font-weight: 200;
  line-height: 1.3;
}
.home-hero .hero-text .text-2 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-size: clamp(11px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .home-hero .hero-container {
    width: 100%;
    margin: 90px auto 40px;
  }
  .home-hero .hero-text {
    position: relative;
    width: 90%;
    margin: -13vw auto 0;
    /* flex-wrap: wrap; */
    gap: 0 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .home-hero .hero-text .text-1 {
    font-size: clamp(20px, 18vw, 72px);
    font-size: 18vw;
  }
  .home-hero .hero-text .text-2 {
    font-size: clamp(20px, 18vw, 72px);
    font-size: 4vw;
  }
}

.home-news {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1300px;
}
.home-news .news-container {
  position: relative;
  max-width: 42em;
  margin: 0 0 0 auto;
  padding: 40px 50px;
  background: linear-gradient(218deg, #63BBA5 5.63%, #84DAA9 142.18%);
  border-radius: 100px;
}
.home-news .news-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em 0;
  color: #224434;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.home-news .news-list li {
  display: flex;
  gap: 3px 16px;
}
.home-news .news-list li .news-date {
  width: 6em;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.home-news .news-list li .news-text {
  flex: 1;
  margin: 0;
}
.home-news .news-list a {
  color: #224434;
}
@media screen and (max-width: 767px) {
  .home-news .news-container {
    padding: 30px 40px;
  }
  .home-news .news-list {
    font-size: 1.3rem;
  }
  .home-news .news-list li {
    flex-direction: column;
  }
}

.home-message {
  position: relative;
}
.home-message .message-container {
  display: flex;
  gap: 2em 50px;
  justify-content: space-between;
}
.home-message .message-body h3 {
  margin-bottom: 1.2em;
  font-family: "Shippori Mincho", serif;
  font-size: 200%;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.15em;
}
.home-message .message-body p {
  font-family: "Shippori Mincho", serif;
  font-size: 112.5%;
  line-height: 2.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .home-message .message-container {
    flex-direction: column;
  }
  .home-message .message-body h3 {
    margin: 0 0 1em;
    font-size: 200%;
    font-size: clamp(20px, 5vw, 200%);
  }
  .home-message .message-body p {
    font-size: clamp(14px, 3vw, 112.5%);
  }
}

.home-ourbusiness {
  position: relative;
}
.home-ourbusiness .youtube-container {
  position: relative;
  padding-bottom: 56.25%;
}
.home-ourbusiness .h-lv2 {
  margin-bottom: 1em;
}
.home-ourbusiness iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-interview {
  position: relative;
}
.home-interview .sankaku {
  position: absolute;
}
.home-interview .sankaku.sankaku_1 {
  top: -15px;
  right: 70%;
  width: 66%;
  animation: sankaku_1 8s linear 0s infinite;
}
.home-interview .sankaku.sankaku_2 {
  top: 0;
  left: 90%;
  width: 45%;
  animation: sankaku_2 8s linear 0s infinite;
}
.home-interview .sankaku.sankaku_3 {
  top: 80%;
  left: 25%;
  width: 20%;
  animation: sankaku_3 8s linear 0s infinite;
}
.home-interview .interview-container {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 50px;
}
.home-interview .h-lv2 {
  grid-area: 1/1/2/2;
}
.home-interview .interview-body {
  grid-area: 2/1/3/2;
}
.home-interview .interview-body .num {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 400%;
  font-weight: 200;
  letter-spacing: 0.15em;
}
.home-interview .interview-body .profile .text-1 {
  margin: 0;
  font-size: 93.75%;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.home-interview .interview-body .profile .text-2 {
  margin: 0;
  font-size: 75%;
  letter-spacing: 0.15em;
}
.home-interview .interview-body .profile .text-3 {
  margin: 0.5em 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 112.5%;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.home-interview .interview-body .caption {
  font-family: "Shippori Mincho", serif;
  font-size: 150%;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.home-interview .interview-body .btn {
  margin-top: 50px;
  margin-bottom: 10px;
}
.home-interview .interview-body .splide__track--fade > .splide__list > .splide__slide.is-active {
  transition: opacity 800ms cubic-bezier(1, -0.08, 0.58, 1) 0.5s !important;
}
.home-interview .interview-slidearea {
  grid-area: 1/2/3/3;
}
.home-interview .home_interview_imgs {
  margin-top: 15%;
}
.home-interview .home_interview_imgs ul {
  position: relative;
  aspect-ratio: 640/590;
}
.home-interview .home_interview_imgs ul li {
  position: absolute;
  top: 0;
  width: 60%;
  aspect-ratio: 640/960;
  line-height: 0;
  z-index: 0;
  cursor: pointer;
}
.home-interview .home_interview_imgs ul li img {
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.home-interview .home_interview_imgs ul li:nth-child(1) {
  right: 0;
  transform: rotate(10deg);
  transform-origin: right top;
}
.home-interview .home_interview_imgs ul li:nth-child(2) {
  left: 0;
  transform: rotate(-5deg);
  transform-origin: left top;
}
.home-interview .home_interview_imgs ul li.is_current {
  animation: slideFade 1s ease-out 0s 1;
  z-index: 1;
}
.home-interview .interview_pager {
  position: absolute;
  right: 0;
  top: 80%;
}
.home-interview .interview_pager ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  aspect-ratio: 640/590;
}
.home-interview .interview_pager li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  font-family: "Montserrat", sans-serif;
  color: #ABAAAA;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.home-interview .interview_pager li.is_current {
  color: #63BBA5;
  background: #fff;
  border: 2px solid #63BBA5;
  animation: slideFade 1.2s ease-out 0s 1;
}
@media screen and (max-width: 767px) {
  .home-interview .sankaku.sankaku_1 {
    top: -15px;
    right: 70%;
    width: 66%;
  }
  .home-interview .sankaku.sankaku_2 {
    top: 13%;
    left: 80%;
    width: 45%;
  }
  .home-interview .sankaku.sankaku_3 {
    top: 76%;
    left: -18%;
    width: 55%;
  }
  .home-interview .interview-container {
    display: block;
  }
  .home-interview .h-lv2 {
    margin-bottom: 1em;
  }
  .home-interview .interview-body .profile .text-3 {
    margin: 0;
  }
  .home-interview .interview-body .caption {
    font-size: clamp(18px, 5.4vw, 24px);
    letter-spacing: 0;
  }
  .home-interview .interview-body .btn {
    margin-top: 20px;
  }
  .home-interview .home_interview_imgs {
    width: 80%;
    margin: 15% auto 0;
  }
  .home-interview .interview_pager {
    top: auto;
    bottom: 0;
  }
  .home-interview .interview_pager li {
    width: 40px;
    height: 40px;
  }
}

.home-keynumbers {
  position: relative;
}
.home-keynumbers .keynumbers-header {
  position: relative;
  display: flex;
  gap: 10px 50px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .home-keynumbers .keynumbers-header {
    flex-direction: column;
    align-items: self-start;
    margin-bottom: 30px;
  }
}

.home-workstyle {
  position: relative;
}
.home-workstyle .sankaku {
  position: absolute;
}
.home-workstyle .sankaku.sankaku_4 {
  top: -15%;
  left: 80%;
  width: 24%;
  animation: sankaku_2 8.4s linear 0s infinite;
}
.home-workstyle .sankaku.sankaku_5 {
  top: 70%;
  right: 65%;
  width: 46%;
  animation: sankaku_1 8s linear 0s infinite;
}
.home-workstyle .sankaku.sankaku_6 {
  top: 25%;
  left: 55%;
  width: 74%;
  animation: sankaku_3 8.5s linear 0s infinite;
}
.home-workstyle .workstyle-header {
  position: relative;
  display: flex;
  gap: 10px 50px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
}
.home-workstyle .workstyle-header p {
  margin: 1em 0;
  letter-spacing: 0.1em;
}
.home-workstyle .workstyle-img {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  line-height: 0;
}
.home-workstyle .workstyle-img .img {
  width: calc((100% - 40px) / 3);
}
.home-workstyle .workstyle-img .img_1 {
  padding-top: 8%;
}
.home-workstyle .workstyle-img .img_2 {
  padding-top: 4%;
}
.home-workstyle .workstyle-img.scrollIn .img {
  opacity: 0;
  transform: translateY(50px);
}
.home-workstyle .workstyle-img.scrollIn.is_show .img {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 1s ease-out;
}
.home-workstyle .workstyle-img.scrollIn.is_show .img_2 {
  transition-delay: 0.2s;
}
.home-workstyle .workstyle-img.scrollIn.is_show .img_1 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .home-workstyle .workstyle-header {
    flex-direction: column;
    align-items: self-start;
    margin-bottom: 30px;
  }
  .home-workstyle .workstyle-img {
    gap: 10px;
  }
  .home-workstyle .workstyle-img .img {
    width: calc((100% - 20px) / 3);
  }
}

.home-information {
  position: relative;
}

.information-nav-container {
  position: relative;
  display: flex;
  gap: 2em 50px;
  justify-content: space-between;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.information-nav-container .information-header {
  position: relative;
  font-size: clamp(25px, 3.6vw, 52px);
}
.information-nav-container .information-header h2 {
  margin: 0;
}
.information-nav-container .information-header .ja {
  display: block;
  margin-bottom: 1em;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-size: clamp(11px, 26%, 14px);
  font-weight: 500;
}
.information-nav-container .information-header .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 103%;
}
@media screen and (max-width: 767px) {
  .information-nav-container .information-header {
    font-size: clamp(18px, 3.7vw, 24px);
  }
}
.information-nav-container .information-nav {
  flex: 1;
  /* min-width: 700px; */
  display: flex;
  gap: 20px;
}
.information-nav-container .information-nav li {
  width: calc((100% - 40px) / 3);
}
.information-nav-container .information-nav li a {
  display: block;
  text-decoration: none;
}
.information-nav-container .information-nav li a:hover {
  opacity: 0.7;
}
.information-nav-container .information-nav li .box {
  position: relative;
  min-height: 8em;
  padding: 24px 20px;
  background: #249663;
  color: #FFF;
  text-align: center;
  line-height: 1.5;
}
.information-nav-container .information-nav li .box.career {
  background: #295641;
}
.information-nav-container .information-nav li .en {
  position: relative;
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.information-nav-container .information-nav li .type {
  position: relative;
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.information-nav-container .information-nav li .label {
  position: relative;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 125%;
  font-size: min(1.8vw, 20px);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.information-nav-container .information-nav li .more {
  margin: 1em 0 0;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .information-nav-container {
    flex-direction: column;
    gap: 2em;
  }
  .information-nav-container .information-nav {
    width: 100%;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .information-nav-container {
    flex-direction: column;
    gap: 2em;
  }
  .information-nav-container .information-header {
    font-size: clamp(28px, 4vw, 52px);
  }
  .information-nav-container .information-header .ja {
    font-size: clamp(11px, 26%, 14px);
  }
  .information-nav-container .information-nav {
    flex-direction: column;
    gap: 2em;
    width: 100%;
    min-width: 0;
  }
  .information-nav-container .information-nav li {
    width: auto;
  }
  .information-nav-container .information-nav li .box {
    min-height: 0;
  }
  .information-nav-container .information-nav li .en {
    font-size: 11px;
  }
  .information-nav-container .information-nav li .type {
    font-size: 11px;
  }
  .information-nav-container .information-nav li .label {
    font-size: min(5vw, 20px);
  }
}

/* 下層 -------------*/
.main-header {
  position: relative;
  margin: 40px 40px 0;
  transition: all 0.5s ease-out;
}
.main-header .main-title {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 6%;
  z-index: 1;
  display: flex;
  align-items: center;
  font-size: clamp(40px, 8vw, 80px);
  font-size: min(5vw, 80px);
}
.main-header .main-title h1 {
  margin: 0;
}
.main-header .main-title .ja {
  display: block;
  margin-bottom: 1em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(10px, 25%, 20px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.main-header .main-title .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 103%;
}
.main-header .interview-main-text {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 6%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.main-header .interview-main-text h1 {
  margin: 0;
  font-size: min(4.2vw, 60px);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0.2em;
  grid-row-gap: 0px;
  align-items: end;
}
.main-header .interview-main-text .ja {
  /* display: flex;
  align-items: flex-end; */
  margin-bottom: 0.4em;
  font-family: "Shippori Mincho", serif;
  font-size: min(33%, 20px);
  font-weight: 500;
  letter-spacing: 0.2em;
  grid-area: 1/1/2/2;
}
.main-header .interview-main-text .en {
  /* display: flex;
  align-items: flex-end; */
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 100%;
  grid-area: 2/1/3/2;
}
.main-header .interview-main-text .num {
  /* display: flex;
  align-items: flex-end; */
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 186%;
  font-weight: 200;
  line-height: 100%;
  grid-area: 1/2/3/3;
}
.main-header .interview-main-text .caption {
  margin: 1em 0 2em;
  font-family: "Shippori Mincho", serif;
  font-size: min(2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.main-header .interview-main-text .profile .text-1 {
  margin: 0;
  font-size: 75%;
  font-size: min(1.2vw, 12px);
  font-weight: 600;
  letter-spacing: 0.15em;
}
.main-header .interview-main-text .profile .text-2 {
  margin: 0;
  font-size: 75%;
  font-size: min(1.2vw, 12px);
  letter-spacing: 0.15em;
}
.main-header .interview-main-text .profile .text-3 {
  margin: 0.5em 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 112.5%;
  font-size: min(1.4vw, 18px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.main-header .main-img {
  position: relative;
  line-height: 0;
  z-index: 0;
}
.main-header .main-img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main-header {
    margin: 80px 20px 0;
  }
  .main-header .main-title {
    left: 4%;
    align-items: flex-start;
    font-size: min(9.8vw, 60px);
  }
  .main-header .main-title .ja {
    margin-bottom: 0.7em;
    font-size: clamp(10px, 30%, 16px);
  }
  .main-header .interview-main-text {
    justify-content: center;
  }
  .main-header .interview-main-text h1 {
    font-size: min(8.1vw, 50px);
  }
  .main-header .interview-main-text .num {
    font-size: 109%;
  }
  .main-header .interview-main-text .caption {
    margin: 1em 0;
    font-size: min(3.4vw, 18px);
    letter-spacing: 0.05em;
  }
  .main-header .interview-main-text .profile .text-1 {
    font-size: min(2.1vw, 15px);
  }
  .main-header .interview-main-text .profile .text-2 {
    font-size: min(2.1vw, 15px);
  }
  .main-header .interview-main-text .profile .text-3 {
    font-size: min(3vw, 18px);
  }
}

.main-header.is_full {
  margin: 0 0 0;
  transition: all 1.2s ease-out;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
}
.breadcrumb li {
  position: relative;
  color: #717171;
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
}
.breadcrumb li:after {
  content: "";
  display: inline-block;
  width: 10px;
  margin: 0 4px;
  border-top: 1px solid #B1B1B1;
}
.breadcrumb li a {
  color: #000;
  text-decoration: none;
}
.breadcrumb li a:hover, .breadcrumb li a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.breadcrumb li:last-child:after {
  display: none;
}

/** 事業紹介 ourbusiness --------------*/
.page-body .ourbusiness-container {
  position: relative;
  display: flex;
  gap: 60px;
  width: 80%;
  max-width: 1200px;
  margin: auto;
}
.page-body .ourbusiness-container .ourbusiness-nav {
  flex: 1;
}
.page-body .ourbusiness-container .ourbusiness-nav .ourbusiness-nav-inner {
  position: sticky;
  top: 160px;
}
.page-body .ourbusiness-container .ourbusiness-nav .category {
  position: relative;
  margin: 0 0 2rem;
  padding-left: 15px;
  color: #63BBA5;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.page-body .ourbusiness-container .ourbusiness-nav .category:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 10px;
  height: 1px;
  background: #63BBA5;
}
.page-body .ourbusiness-container .ourbusiness-nav ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1em;
  margin: 0 0 3rem;
  font-family: "Shippori Mincho", serif;
  color: #95AAA0;
  font-size: 87.5%;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.page-body .ourbusiness-container .ourbusiness-nav ul a {
  position: relative;
  display: block;
  padding-left: 18px;
  color: #95AAA0;
  text-decoration: none;
}
.page-body .ourbusiness-container .ourbusiness-nav ul a:hover, .page-body .ourbusiness-container .ourbusiness-nav ul a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.page-body .ourbusiness-container .ourbusiness-nav ul a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 11px;
  height: 10px;
  background: url("../images/arrow_GRN.svg") no-repeat left center;
  background-size: 100% auto;
  transform: translateY(-40%);
  opacity: 0;
}
.page-body .ourbusiness-container .ourbusiness-nav ul a:hover, .page-body .ourbusiness-container .ourbusiness-nav ul a.is_current {
  color: #295641;
}
.page-body .ourbusiness-container .ourbusiness-nav ul a:hover:before, .page-body .ourbusiness-container .ourbusiness-nav ul a.is_current:before {
  opacity: 1;
}
.page-body .ourbusiness-container .ourbusiness-nav ul .num {
  margin-right: 0.4em;
  font-family: Montserrat;
  font-size: 1rem;
}
.page-body .ourbusiness-container .ourbusiness-nav nav:last-child ul {
  margin-bottom: 0;
}
.page-body .ourbusiness-container .ourbusiness-body {
  width: 72%;
  max-width: 860px;
}
.page-body .ourbusiness-container .ourbusiness-lineup {
  display: flex;
  gap: 158px;
  gap: min(158px, 12vw);
  flex-direction: column;
}
.page-body .ourbusiness-container .ourbusiness-item {
  display: flex;
  gap: 60px;
  gap: min(60px, 7vw);
  flex-direction: column;
}
.page-body .ourbusiness-container .ourbusiness-item:before {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #000;
}
.page-body .ourbusiness-container .item-header .h2 {
  position: relative;
  margin: 0 0 1em;
  font-size: clamp(23px, 4.6vw, 46px);
}
.page-body .ourbusiness-container .item-header .h2 .en {
  display: block;
  margin-bottom: 1em;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 50%, 18px);
  line-height: 1.4;
  font-weight: 200;
  line-height: 103%;
}
.page-body .ourbusiness-container .item-header .h2 .ja {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.page-body .ourbusiness-container .item-header p {
  margin-left: 15em;
  font-family: "Noto Sans JP";
  line-height: 2;
  letter-spacing: 0.1em;
}
.page-body .ourbusiness-container .item-header picture {
  margin-top: 50px;
}
.page-body .ourbusiness-container .item-body {
  position: relative;
}
.page-body .ourbusiness-container .item-body .h3-dash {
  margin-bottom: 1em;
}
.page-body .ourbusiness-container .item-body .item-panel {
  position: relative;
  display: flex;
  gap: 50px;
}
.page-body .ourbusiness-container .item-body .panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page-body .ourbusiness-container .item-body .panel .img {
  line-height: 0;
}
.page-body .ourbusiness-container .item-body .panel .img img {
  width: 100%;
}
.page-body .ourbusiness-container .item-body .panel h4 {
  margin: 0;
  align-self: stretch;
  color: #63BBA5;
  font-size: 125%;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.page-body .ourbusiness-container .item-body .panel p {
  margin: 0;
  font-size: 87.5%;
  line-height: 2;
}
.page-body .ourbusiness-container .item-body .item-panel.div2 .panel {
  width: calc((100% - 50px) / 2);
}
.page-body .ourbusiness-container .item-body .bn a {
  text-decoration: none;
}
.page-body .ourbusiness-container .item-body .bn a:hover, .page-body .ourbusiness-container .item-body .bn a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.page-body .ourbusiness-container .item-body .bn a:hover .bn-img {
  opacity: 0.7;
}
.page-body .ourbusiness-container .item-body .bn .bn-img {
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .page-body .ourbusiness-container {
    flex-direction: column;
  }
  .page-body .ourbusiness-container .ourbusiness-nav {
    width: auto;
  }
  .page-body .ourbusiness-container .ourbusiness-nav ul {
    flex-direction: row;
  }
  .page-body .ourbusiness-container .ourbusiness-body {
    width: auto;
  }
  .page-body .ourbusiness-container .item-header p {
    margin-left: auto;
  }
  .page-body .ourbusiness-container .item-header picture {
    margin-top: 30px;
  }
  .page-body .ourbusiness-container .item-body .item-panel {
    flex-direction: column;
  }
  .page-body .ourbusiness-container .item-body .item-panel .panel {
    gap: 15px;
  }
  .page-body .ourbusiness-container .item-body .item-panel.div2 .panel {
    width: auto;
  }
}

.page-body .keynumbers-container {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.page-body .keynumbers-container .h-lv2 {
  margin-bottom: 80px;
  margin-bottom: min(80px, 8vw);
}
.page-body .keynumbers-container .keynumbers-block {
  position: relative;
  margin-bottom: 80px;
  margin-bottom: min(80px, 8vw);
}
.page-body .keynumbers-container .keynumbers-block .h3-dash {
  margin-bottom: 40px;
  margin-bottom: min(40px, 4vw);
}
.page-body .keynumbers-container .keynumbers-block:last-child {
  margin-bottom: 0;
}
.page-body .keynumbers-container .diagram-list {
  position: relative;
  /* display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 17px;
  grid-row-gap: 17px; */
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  /* .diagram-item svg .scrollIn {
      opacity: 0;
  }
  .diagram-item svg .scrollIn.is_show {
      opacity: 1;
  } */
}
.page-body .keynumbers-container .diagram-list .diagram-item {
  position: relative;
  padding: 24px 20px 20px 20px;
  background: #6EC6A6;
}
.page-body .keynumbers-container .diagram-list .diagram-item .label {
  position: relative;
  margin: 0 0 0 10px;
  padding-left: 15px;
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.page-body .keynumbers-container .diagram-list .diagram-item .label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 100px;
  transform: translateY(-50%);
}
.page-body .keynumbers-container .diagram-list .diagram-item svg {
  width: 100%;
  height: auto;
}
.page-body .keynumbers-container .diagram-list .div-middle {
  width: calc((100% - 17px) / 2);
}
.page-body .keynumbers-container .diagram-list .div-short {
  width: calc((100% - 34px) / 3);
}
.page-body .keynumbers-container .diagram-list #diagram_syainkosei.scrollIn #chart_circle {
  stroke-dasharray: 0 1000;
  stroke-width: 110px;
  stroke: #fff;
  fill: transparent;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.page-body .keynumbers-container .diagram-list #diagram_syainkosei.scrollIn .num {
  opacity: 0;
  transform: translateY(10px);
  transform-origin: 50% 50%;
}
.page-body .keynumbers-container .diagram-list #diagram_syainkosei.scrollIn.is_show #chart_circle {
  stroke-dasharray: 1000 1000;
  transition: all 1.1s ease-out;
}
.page-body .keynumbers-container .diagram-list #diagram_syainkosei.scrollIn.is_show .num {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease-out, transform 0.4s cubic-bezier(0.26, 0.03, 0.56, 1.23);
  transition-delay: 0.5s;
}
.page-body .keynumbers-container .diagram-list #diagram_nenreikosei.scrollIn #nenreikosei_bar {
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: 50% 100%;
}
.page-body .keynumbers-container .diagram-list #diagram_nenreikosei.scrollIn .num {
  opacity: 0;
  transform: translateY(10px);
  transform-origin: 50% 50%;
}
.page-body .keynumbers-container .diagram-list #diagram_nenreikosei.scrollIn.is_show #nenreikosei_bar {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 0.25s ease-out, transform 0.9s cubic-bezier(0.26, 0.03, 0.38, 1.5);
}
.page-body .keynumbers-container .diagram-list #diagram_nenreikosei.scrollIn.is_show .num {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease-out, transform 0.4s cubic-bezier(0.26, 0.03, 0.56, 1.23);
  transition-delay: 0.5s;
}
.page-body .keynumbers-container .diagram-list #diagram_nenrei.scrollIn #Icons {
  opacity: 0;
  transform: scaleY(0.7);
  transform-origin: 50% 60%;
}
.page-body .keynumbers-container .diagram-list #diagram_nenrei.scrollIn .num {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
}
.page-body .keynumbers-container .diagram-list #diagram_nenrei.scrollIn.is_show #Icons {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 0.25s ease-out, transform 0.9s cubic-bezier(0.26, 0.03, 0.38, 1.5);
}
.page-body .keynumbers-container .diagram-list #diagram_nenrei.scrollIn.is_show .num {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 0.25s ease-out, transform 0.4s cubic-bezier(0.26, 0.03, 0.38, 1.5);
  transition-delay: 0.5s;
}
.page-body .keynumbers-container .diagram-list #diagram_gender.scrollIn #hito {
  opacity: 0;
  transform: scale(0.7);
  transform-origin: 50% 60%;
}
.page-body .keynumbers-container .diagram-list #diagram_gender.scrollIn .num {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
}
.page-body .keynumbers-container .diagram-list #diagram_gender.scrollIn.is_show #hito {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease-out, transform 0.9s cubic-bezier(0.26, 0.03, 0.38, 1.5);
}
.page-body .keynumbers-container .diagram-list #diagram_gender.scrollIn.is_show .num {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 0.25s ease-out, transform 0.4s cubic-bezier(0.26, 0.03, 0.38, 1.5);
  transition-delay: 0.5s;
}
.page-body .keynumbers-container .diagram-list #diagram_worktime.scrollIn #clock {
  opacity: 0;
  transform: scale(0.5);
  transform-origin: 20% 50%;
}
.page-body .keynumbers-container .diagram-list #diagram_worktime.scrollIn .num {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
}
.page-body .keynumbers-container .diagram-list #diagram_worktime.scrollIn.is_show #clock {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease-out, transform 0.9s cubic-bezier(0.26, 0.03, 0.38, 1.5);
}
.page-body .keynumbers-container .diagram-list #diagram_worktime.scrollIn.is_show .num {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 0.25s ease-out, transform 0.4s cubic-bezier(0.26, 0.03, 0.48, 1.21);
  transition-delay: 0.5s;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare.scrollIn #vacation g:nth-child(1) {
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: 50% 70%;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare.scrollIn #vacation g:nth-child(2) {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 70%;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare.scrollIn #vacation g:nth-child(3) {
  opacity: 0;
  transform: rotate(-5deg) scale(0.8);
  transform-origin: 50% 50%;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare.scrollIn.is_show #vacation g:nth-child(1) {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease-out, transform 0.9s cubic-bezier(0.26, 0.03, 0.38, 1.5);
  transition-delay: 0;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare.scrollIn.is_show #vacation g:nth-child(2) {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease-out, transform 0.9s cubic-bezier(0.26, 0.03, 0.38, 1.5);
  transition-delay: 0.3s;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare.scrollIn.is_show #vacation g:nth-child(3) {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition: opacity 0.25s ease-out, transform 0.5s cubic-bezier(0.26, 0.03, 0.38, 1.5);
  transition-delay: 0.6s;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare_2.scrollIn #Frame g:nth-child(1) {
  opacity: 1;
  transform: scale(0.8);
  transform-origin: 70% 70%;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare_2.scrollIn #Frame g:nth-child(2) {
  opacity: 1;
  transform: rotate(-5deg) scale(0.7);
  transform-origin: 80% 50%;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare_2.scrollIn.is_show #Frame g:nth-child(1) {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease-out, transform 0.7s cubic-bezier(0.26, 0.03, 0.38, 1.5);
  transition-delay: 0;
}
.page-body .keynumbers-container .diagram-list #diagram_childcare_2.scrollIn.is_show #Frame g:nth-child(2) {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition: opacity 0.25s ease-out, transform 0.5s cubic-bezier(0.26, 0.03, 0.38, 1.5);
  transition-delay: 0.5s;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .page-body .keynumbers-container .diagram-list .div-middle {
    width: calc((100% - 17px) / 2);
  }
  .page-body .keynumbers-container .diagram-list .div-short {
    width: calc((100% - 17px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .page-body .keynumbers-container .diagram-list .diagram-item .label {
    font-size: 1.8rem;
  }
  .page-body .keynumbers-container .diagram-list .div-middle {
    width: 100%;
  }
  .page-body .keynumbers-container .diagram-list .div-short {
    width: 100%;
  }
}

/** 目指す働き方 workstyle --------------*/
.page-body .workstyle-container {
  position: relative;
  width: 80%;
  max-width: 960px;
  margin: auto;
}
.page-body .workstyle-container .workstyle-box-1 {
  position: relative;
  display: flex;
}
.page-body .workstyle-container .workstyle-box-1 .box-header {
  width: 32%;
}
.page-body .workstyle-container .workstyle-box-1 .box-header .h2 {
  margin: 0 0 1em;
  font-size: clamp(30px, 6vw, 60px);
}
.page-body .workstyle-container .workstyle-box-1 .box-header .ja {
  display: block;
  margin-bottom: 1em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(12px, 26%, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.page-body .workstyle-container .workstyle-box-1 .box-header .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 103%;
}
.page-body .workstyle-container .workstyle-box-1 .box-body {
  width: 68%;
  padding-left: 80px;
}
.page-body .workstyle-container .workstyle-box-1 .box-body h3 {
  margin: 0 0 1em;
  color: #295641;
  font-family: "Shippori Mincho", serif;
  font-size: 200%;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.9;
  letter-spacing: 0.1em;
}
.page-body .workstyle-container .workstyle-box-1 .box-body p {
  margin: 1.5em 0;
  line-height: 2;
  letter-spacing: 0.1em;
}
.page-body .workstyle-container .workstyle-box-1 .box-body p:last-child {
  margin-bottom: 0;
}
.page-body .workstyle-container .workstyle-box-2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.page-body .workstyle-container .workstyle-box-2 .box-text {
  width: 50%;
}
.page-body .workstyle-container .workstyle-box-2 .box-text .h3 {
  margin: 0 0 1em;
  padding-top: 0.6em;
  border-top: 1px solid #000;
  font-size: clamp(30px, 6vw, 60px);
}
.page-body .workstyle-container .workstyle-box-2 .box-text .ja {
  display: block;
  margin-bottom: 1em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(12px, 26%, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.page-body .workstyle-container .workstyle-box-2 .box-text .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 103%;
}
.page-body .workstyle-container .workstyle-box-2 .box-text p {
  margin: 1.5em 0;
  line-height: 2;
  letter-spacing: 0.1em;
}
.page-body .workstyle-container .workstyle-box-2 .box-text p:last-child {
  margin-bottom: 0;
}
.page-body .workstyle-container .workstyle-box-2 .box-img {
  width: 50%;
  padding-left: 80px;
}
.page-body .workstyle-container .workstyle-box-2.reverse {
  flex-direction: row-reverse;
}
.page-body .workstyle-container .workstyle-box-2.reverse .box-img {
  padding: 0 80px 0 0;
}
.page-body .workstyle-container .note-contents {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin: 50px 0 0;
}
.page-body .workstyle-container .note-contents .note-item {
  position: relative;
  width: calc((100% - 60px) / 3);
  padding: 4%;
  background: #F2F2F2;
}
.page-body .workstyle-container .note-contents .note-item .img {
  line-height: 0;
  margin-bottom: 20px;
}
.page-body .workstyle-container .note-contents .note-item h3 {
  margin: 0 0 0.3em;
  color: #63BBA5;
  font-size: 125%;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.page-body .workstyle-container .note-contents .note-item h3:last-child {
  margin-bottom: 0;
}
.page-body .workstyle-container .note-contents .note-item p, .page-body .workstyle-container .note-contents .note-item ul {
  margin: 0 0 1em;
  font-size: 82%;
  line-height: 1.5;
}
.page-body .workstyle-container .note-contents .note-item p:last-child, .page-body .workstyle-container .note-contents .note-item ul:last-child {
  margin-bottom: 0;
}
.page-body .workstyle-container .note-contents .note-item ul {
  list-style: disc;
  padding-left: 25px;
}
.page-body .workstyle-container .note-contents .note-item.wide {
  width: 100%;
  display: grid;
  grid-template-columns: 25.3333333333% auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 45px;
  grid-row-gap: 0px;
}
.page-body .workstyle-container .note-contents .note-item.wide .img {
  grid-area: 1/1/3/2;
  margin-bottom: 0;
}
.page-body .workstyle-container .note-contents .note-item.wide h3 {
  grid-area: 1/2/2/3;
  display: flex;
  align-items: flex-end;
}
.page-body .workstyle-container .note-contents .note-item.wide p, .page-body .workstyle-container .note-contents .note-item.wide ul {
  grid-area: 2/2/3/3;
}
.page-body .workstyle-container .workstyle-box-3 {
  position: relative;
}
.page-body .workstyle-container .workstyle-box-3 .box-header .h2 {
  margin: 0 0 1em;
  font-size: clamp(18px, 5vw, 50px);
}
.page-body .workstyle-container .workstyle-box-3 .box-header .ja {
  display: block;
  margin-bottom: 1em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(12px, 32%, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.page-body .workstyle-container .workstyle-box-3 .box-header .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 100%;
  font-weight: 200;
  line-height: 103%;
}
.page-body .workstyle-container .workstyle-box-3 .box-body {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 10% 8%;
  background: linear-gradient(218deg, #63BBA5 5.63%, #84DAA9 142.18%);
}
.page-body .workstyle-container .workstyle-box-3 .box-body .col-1 {
  width: 46%;
}
.page-body .workstyle-container .workstyle-box-3 .box-body .col-2 {
  width: 47%;
}
.page-body .workstyle-container .workstyle-box-3 .box-body h3 {
  margin: 0 0 1em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2.5vw, 30px);
  line-height: 1.7;
  letter-spacing: 0.1em;
  word-break: auto-phrase;
}
.page-body .workstyle-container .workstyle-box-3 .box-body p {
  margin: 0 0 1em;
  font-size: 87.5%;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
.page-body .workstyle-container .workstyle-box-3 .box-body p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .page-body .workstyle-container .note-contents .note-item:not(.wide) {
    width: 100%;
    display: grid;
    grid-template-columns: 150px auto;
    grid-template-rows: auto;
    grid-column-gap: 45px;
    grid-row-gap: 0px;
  }
  .page-body .workstyle-container .note-contents .note-item:not(.wide) .img {
    grid-area: 1/1/2/2;
    margin-bottom: 0;
  }
  .page-body .workstyle-container .note-contents .note-item:not(.wide) h3 {
    grid-area: 1/2/2/3;
    display: flex;
    align-items: center;
  }
  .page-body .workstyle-container .note-contents .note-item:not(.wide) p, .page-body .workstyle-container .note-contents .note-item:not(.wide) ul {
    grid-area: 2/2/3/3;
  }
  .page-body .workstyle-container .note-contents .note-item.wide {
    grid-template-columns: 150px auto;
  }
}
@media screen and (max-width: 767px) {
  .page-body .workstyle-container .workstyle-box-1 {
    flex-direction: column;
  }
  .page-body .workstyle-container .workstyle-box-1 .box-header {
    width: auto;
  }
  .page-body .workstyle-container .workstyle-box-1 .box-body {
    width: auto;
    padding: 0;
  }
  .page-body .workstyle-container .workstyle-box-2 {
    flex-direction: column;
  }
  .page-body .workstyle-container .workstyle-box-2 .box-text {
    width: auto;
  }
  .page-body .workstyle-container .workstyle-box-2 .box-img {
    width: auto;
    margin-top: 2em;
    padding: 0;
  }
  .page-body .workstyle-container .workstyle-box-2.reverse .box-img {
    padding: 0;
  }
  .page-body .workstyle-container .workstyle-box-3 .box-body {
    flex-direction: column;
    gap: 2em;
  }
  .page-body .workstyle-container .workstyle-box-3 .box-body .col-1 {
    width: auto;
  }
  .page-body .workstyle-container .workstyle-box-3 .box-body .col-2 {
    width: auto;
  }
  .page-body .workstyle-container .note-contents .note-item {
    padding: 25px;
  }
  .page-body .workstyle-container .note-contents .note-item p, .page-body .workstyle-container .note-contents .note-item ul {
    font-size: 90%;
  }
  .page-body .workstyle-container .note-contents .note-item, .page-body .workstyle-container .note-contents .note-item.wide {
    width: 100%;
    display: grid;
    grid-template-columns: 28% auto;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 20px;
    grid-row-gap: 10px;
  }
  .page-body .workstyle-container .note-contents .note-item .img, .page-body .workstyle-container .note-contents .note-item.wide .img {
    grid-area: 1/1/2/2;
    margin-bottom: 0;
  }
  .page-body .workstyle-container .note-contents .note-item h3, .page-body .workstyle-container .note-contents .note-item.wide h3 {
    grid-area: 1/2/2/3;
    display: flex;
    align-items: center;
  }
  .page-body .workstyle-container .note-contents .note-item p, .page-body .workstyle-container .note-contents .note-item ul, .page-body .workstyle-container .note-contents .note-item.wide p, .page-body .workstyle-container .note-contents .note-item.wide ul {
    grid-area: 2/1/3/3;
  }
  .page-body .workstyle-container .note-contents .note-item:not(.wide) {
    grid-row-gap: 0;
  }
}

/** 募集要項 information --------------*/
.page-body .information-container {
  position: relative;
  display: flex;
  gap: 60px;
  width: 80%;
  max-width: 1200px;
  margin: auto;
}
.page-body .information-container .information-nav {
  flex: 1;
}
.page-body .information-container .information-nav .information-nav-inner {
  position: sticky;
  top: 160px;
}
.page-body .information-container .information-nav .category {
  position: relative;
  margin: 0 0 2rem;
  padding-left: 15px;
  color: #63BBA5;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.page-body .information-container .information-nav .category:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 10px;
  height: 1px;
  background: #63BBA5;
}
.page-body .information-container .information-nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1em;
  margin: 0 0 3rem;
  font-family: "Shippori Mincho", serif;
  color: #95AAA0;
  font-size: 87.5%;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.page-body .information-container .information-nav ul a {
  position: relative;
  display: block;
  padding-left: 18px;
  color: #95AAA0;
  text-decoration: none;
}
.page-body .information-container .information-nav ul a:hover, .page-body .information-container .information-nav ul a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.page-body .information-container .information-nav ul a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 11px;
  height: 10px;
  background: url("../images/arrow_GRN.svg") no-repeat left center;
  background-size: 100% auto;
  transform: translateY(-40%);
  opacity: 0;
}
.page-body .information-container .information-nav ul a:hover, .page-body .information-container .information-nav ul a.is_current {
  color: #295641;
}
.page-body .information-container .information-nav ul a:hover:before, .page-body .information-container .information-nav ul a.is_current:before {
  opacity: 1;
}
.page-body .information-container .information-nav ul .num {
  margin-right: 0.4em;
  font-family: Montserrat;
  font-size: 1rem;
}
.page-body .information-container .information-nav nav:last-child ul {
  margin-bottom: 0;
}
.page-body .information-container .information-body {
  width: 72%;
  max-width: 860px;
}
.page-body .information-container .information-lineup {
  display: flex;
  gap: 158px;
  gap: min(158px, 12vw);
  flex-direction: column;
}
.page-body .information-container .information-item {
  position: relative;
  padding: 9%;
  background: #FAFAFA;
}
.page-body .information-container .item-header .h2 {
  position: relative;
  margin: 0 0 0.5em;
  color: #249663;
  font-size: clamp(23px, 4.6vw, 46px);
}
.page-body .information-container .item-header .h2 .en {
  display: block;
  margin-bottom: 1em;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 50%, 18px);
  line-height: 1.4;
  font-weight: 500;
  line-height: 103%;
}
.page-body .information-container .item-header .h2 .label-1 {
  display: inline-block;
  margin-right: 0.2em;
  font-family: "Shippori Mincho", serif;
  font-size: 65%;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.page-body .information-container .item-header .h2 .label-2 {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.page-body .information-container .item-header p {
  margin-left: 15em;
  font-family: "Noto Sans JP";
  line-height: 2;
  letter-spacing: 0.1em;
}
.page-body .information-container .item-header picture {
  margin-top: 50px;
}
.page-body .information-container .item-body {
  position: relative;
}
.page-body .information-container table {
  width: 100%;
  border-bottom: 1px solid #E4E4E4;
}
.page-body .information-container table th {
  vertical-align: middle;
  width: 9em;
  padding: 2em 1em;
  border-top: 1px solid #E4E4E4;
  font-family: "Shippori Mincho", serif;
  color: #727272;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
}
.page-body .information-container table td {
  vertical-align: middle;
  padding: 2em 1em;
  border-top: 1px solid #E4E4E4;
  font-size: 87.5%;
  line-height: 2;
  letter-spacing: 0.07em;
}
.page-body .information-container .entry-container {
  max-width: 540px;
  margin: 60px 0 0 auto;
}
.page-body .information-container .entry-container a {
  display: block;
  text-decoration: none;
}
.page-body .information-container .entry-container a:hover {
  opacity: 0.7;
}
.page-body .information-container .entry-container .box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 0px;
  padding: 28px;
  background: #249663;
  color: #FFF;
  line-height: 1.5;
}
.page-body .information-container .entry-container .box.career {
  background: #295641;
}
.page-body .information-container .entry-container .en {
  grid-area: 1/1/3/2;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 4.7rem;
  font-size: clamp(20px, 4.7vw, 47px);
  font-weight: 200;
  line-height: 1;
}
.page-body .information-container .entry-container .type {
  grid-area: 1/2/2/3;
  position: relative;
  margin: 0 0 0.5em;
  font-size: 87.5%;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: right;
}
.page-body .information-container .entry-container .label {
  grid-area: 2/2/3/3;
  position: relative;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 125%;
  font-size: clamp(13px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: right;
}
.page-body .information-container .entry-container .more {
  margin: 1em 0 0;
}
.page-body .information-container .entry-note {
  max-width: 540px;
  margin: 60px 0 0 auto;
  padding: 28px;
  background: #249663;
  color: #FFF;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.page-body .information-container .entry-note .entry-note-inner {
  display: table;
  margin: auto;
}
.page-body .information-container .entry-note p {
  margin: 0 0 1em;
  font-size: 87.5%;
}
.page-body .information-container .entry-note p:last-child {
  margin-bottom: 0;
}
.page-body .information-container .entry-note .text-1 {
  font-size: 1.6rem;
}
.page-body .information-container .entry-note .text-2 {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
.page-body .information-container .entry-note.career {
  background: #295641;
}
.page-body .information-container .information-item.career .item-header .h2 {
  color: #295641;
}
@media screen and (max-width: 767px) {
  .page-body .information-container {
    flex-direction: column;
  }
  .page-body .information-container .information-nav {
    width: auto;
  }
  .page-body .information-container .information-body {
    width: auto;
  }
  .page-body .information-container table tr {
    display: block;
    border-top: 1px solid #E4E4E4;
    padding: 15px 0 0;
  }
  .page-body .information-container table th {
    display: block;
    width: 100%;
    padding: 0 0 3px;
    border: 0;
  }
  .page-body .information-container table td {
    display: block;
    width: 100%;
    padding: 0 0 15px;
    border: 0;
  }
  .page-body .information-container .entry-container .box {
    display: block;
    padding: 20px;
    grid-column-gap: 30px;
  }
  .page-body .information-container .entry-container .type {
    margin: 1em 0 0.2em;
    text-align: left;
  }
  .page-body .information-container .entry-container .label {
    text-align: left;
  }
}

.page-body .information-empty .h2 {
  color: #295641;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 0.1em;
}

/** 働く人たち interview --------------*/
.page-body .interview-container {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: auto;
}
.page-body .interview-container .interview-box-1 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-body .interview-container .interview-box-1 .box-text {
  width: 50%;
}
.page-body .interview-container .interview-box-1 .box-text .qa-block {
  margin: 0 0 56px;
}
.page-body .interview-container .interview-box-1 .box-text .qa-block:last-child {
  margin-bottom: 0;
}
.page-body .interview-container .interview-box-1 .box-text .q-h {
  margin: 0 0 30px;
  color: #295641;
}
.page-body .interview-container .interview-box-1 .box-text .q-h .en {
  position: relative;
  display: block;
  margin: 0 0 1em;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 75%;
  font-weight: 300;
  line-height: 103%;
  display: flex;
  gap: 3px;
  align-items: center;
}
.page-body .interview-container .interview-box-1 .box-text .q-h .en:before {
  content: "";
  display: block;
  position: relative;
  width: 10.971px;
  height: 9px;
  background: url("../images/arrow_GRN.svg") no-repeat left center;
  background-size: 100% auto;
  flex: none;
}
.page-body .interview-container .interview-box-1 .box-text .q-h .ja {
  position: relative;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 150%;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.page-body .interview-container .interview-box-1 .box-text .answer {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 20px;
  color: #63BBA5;
  font-size: 125%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.page-body .interview-container .interview-box-1 .box-text .answer .icon {
  flex: none;
  width: 3em;
}
.page-body .interview-container .interview-box-1 .box-text p {
  margin: 1.5em 0;
  font-size: 87.5%;
  line-height: 2;
  letter-spacing: 0.1em;
}
.page-body .interview-container .interview-box-1 .box-text p:last-child {
  margin-bottom: 0;
}
.page-body .interview-container .interview-box-1 .box-img {
  width: 50%;
  margin-top: 4em;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .page-body .interview-container .interview-box-1 {
    display: block;
  }
  .page-body .interview-container .interview-box-1 .box-text {
    width: auto;
  }
  .page-body .interview-container .interview-box-1 .box-text p {
    font-size: 100%;
  }
  .page-body .interview-container .interview-box-1 .box-img {
    width: auto;
    padding: 0;
  }
}
.page-body .interview-container .interview-box-1.reverse {
  flex-direction: row-reverse;
}
.page-body .interview-container .interview-box-1.reverse .box-img {
  padding: 0 80px 0 0;
}
@media screen and (max-width: 767px) {
  .page-body .interview-container .interview-box-1.reverse .box-img {
    padding: 0;
  }
}
.page-body .interview-container .interview-message {
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  aspect-ratio: 960/703;
  background: url("../images/interview/message_bg.png") no-repeat center center;
  background-size: 85% auto;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.page-body .interview-container .interview-message .h2 {
  margin: 0;
  font-size: clamp(30px, 7vw, 70px);
}
.page-body .interview-container .interview-message .h2 .ja {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(11px, 20%, 14px);
  letter-spacing: 0.18em;
}
.page-body .interview-container .interview-message .h2 .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}
.page-body .interview-container .interview-message .message-text {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-body .interview-container .interview-message .message-text p {
  margin: 0 0 1.5em;
  font-family: "Shippori Mincho", serif;
  font-size: 87.5%;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: center;
}
.page-body .interview-container .interview-message .message-text p:last-child {
  margin-bottom: 0;
}
.page-body .interview-container .interview-message .avator {
  width: 20%;
  max-width: 200px;
  aspect-ratio: 1;
  line-height: 0;
  margin: 0 0 0 auto;
}
.page-body .interview-container .interview-message .avator img {
  width: 100%;
  border-radius: 200px;
}
@media screen and (max-width: 767px) {
  .page-body .interview-container .interview-message {
    gap: 20px;
  }
  .page-body .interview-container .interview-message .h2 {
    font-size: clamp(36px, 8vw, 70px);
  }
  .page-body .interview-container .interview-message .message-text p {
    font-size: 100%;
    text-align: left;
  }
  .page-body .interview-container .interview-message .avator {
    width: 30%;
  }
}
.page-body .interview-container .interview-others {
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.page-body .interview-container .interview-others .h2 {
  margin: 0 0 0.5em;
  font-size: clamp(30px, 7vw, 70px);
}
.page-body .interview-container .interview-others .h2 .ja {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(11px, 20%, 14px);
  letter-spacing: 0.18em;
}
.page-body .interview-container .interview-others .h2 .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}
.page-body .interview-container .interview-others .bn {
  display: table;
  margin: auto;
}
.page-body .interview-container .interview-others .bn a {
  text-decoration: none;
}
.page-body .interview-container .interview-others .bn a:hover, .page-body .interview-container .interview-others .bn a:focus {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.page-body .interview-container .interview-others .bn a:hover .bn-img {
  opacity: 0.7;
}
.page-body .interview-container .interview-others .bn .bn-img {
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .page-body .interview-container .interview-others .h2 {
    font-size: clamp(36px, 8vw, 70px);
  }
}

.page-body .interview-schedule {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 80px;
  background: linear-gradient(218deg, #63BBA5 5.63%, #84DAA9 142.18%);
}
.page-body .interview-schedule .schedule-header {
  position: relative;
  margin: 0;
}
.page-body .interview-schedule .schedule-header h2 {
  margin: 0 0 0.5em;
  font-size: clamp(40px, 8vw, 80px);
}
.page-body .interview-schedule .schedule-header h2 .ja {
  display: block;
  color: #224434;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(11px, 20%, 15px);
  letter-spacing: 0.18em;
}
.page-body .interview-schedule .schedule-header h2 .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}
.page-body .interview-schedule .schedule-list {
  position: relative;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.page-body .interview-schedule .schedule-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 25px 30px;
  border: 1px solid #000;
  color: #224434;
}
.page-body .interview-schedule .schedule-list li .time {
  position: relative;
  width: 4em;
  font-family: "Montserrat", sans-serif;
  font-size: 138%;
  font-weight: 300;
  display: flex;
  align-items: center;
}
.page-body .interview-schedule .schedule-list li .time:before {
  font: none;
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 3px;
  background: url("../images/icon_time.svg") no-repeat;
  background-size: 0.7em 0.7em;
}
.page-body .interview-schedule .schedule-list li .detail {
  flex: 1;
  display: flex;
  gap: 3em;
  align-items: center;
}
.page-body .interview-schedule .schedule-list li .detail p {
  flex: 50%;
  margin: 0;
  font-weight: 500;
}
.page-body .interview-schedule .schedule-list li .detail .sub {
  flex: 50%;
  margin: 0;
  font-size: 81.25%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-body .interview-schedule {
    width: auto;
    padding: 8%;
  }
  .page-body .interview-schedule .schedule-list {
    gap: 15px;
  }
  .page-body .interview-schedule .schedule-list li .detail {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .page-body .interview-schedule .schedule-list li .detail p {
    flex: auto;
  }
  .page-body .interview-schedule .schedule-list li .detail .sub {
    flex: auto;
  }
}

.page-body .interview-wideimg img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-body .interview-wideimg img {
    aspect-ratio: 2070/800;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*# sourceMappingURL=maps/style.css.map */
