@charset "UTF-8";
/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

a {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-grid-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px max(4%, 20px);
}

.u-list-item-disc {
  display: flex;
  column-gap: 6px;
  align-items: flex-start;
  padding-left: 5px;
}
.u-list-item-disc::before {
  display: inline-block;
  flex-shrink: 0;
  width: 4px;
  aspect-ratio: 1;
  margin-top: 1px;
  content: "";
  background-color: currentcolor;
  border-radius: 50%;
  transform: translateY(0.7em);
}
@media (max-width: 768px) {
  .u-list-item-disc::before {
    width: 3px;
  }
}

:root {
  --black: #000;
  --white: #fff;
  --orange: #fe8602;
  --pink: #ff6991;
  --emerald: #00bcab;
  --light-blue: #40b8eb;
  --bg-beige: #faf7ef;
  --transition: 0.3s;
  --base-font-size: 15;
  --header-height: 100px;
  --img-border-radius: 10px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }
}
@media (max-width: 1024px) {
  :root {
    --base-font-size: 15;
  }
}
@media (max-width: 768px) {
  :root {
    --base-font-size: 14;
    --header-height: 60px;
    --img-border-radius: 8px;
  }
}
/* ------------------------
  common
------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
  font-size: calc(var(--base-font-size) / 16 * 1rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}
@media (max-width: 768px) {
  body {
    line-height: 1.6;
  }
}

.inner {
  width: 93%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}
.inner--l {
  max-width: 1100px;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 125px;
}
@media (max-width: 768px) {
  .section {
    padding-top: 65px;
    padding-bottom: 100px;
  }
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 5%;
  justify-content: center;
}
@media (max-width: 1024px) {
  .btn-group {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .btn-group {
    gap: 15px 10px;
  }
}

.btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.5em 2em;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.3333333333;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_arrow.svg") no-repeat calc(100% - 0.7em) center/0.95em, var(--pink);
  border-radius: 10px;
  transition: filter var(--transition);
}
@media (max-width: 768px) {
  .btn {
    border-radius: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    filter: brightness(1.05);
  }
}
@media (hover: none) {
  .btn:active {
    filter: brightness(1.05);
  }
}

.heading-wrap {
  margin-bottom: 2em;
  font-size: 2.375rem;
}
@media (max-width: 1024px) {
  .heading-wrap {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .heading-wrap {
    font-size: 1.5625rem;
  }
}

.heading {
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
}
.heading::before {
  display: block;
  margin-inline: auto;
  margin-bottom: 0.3em;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.heading::after {
  display: block;
  height: 10px;
  margin-top: 0.3em;
  content: "";
  background: url("../images/deco_02.svg") no-repeat center/contain;
}

@media (max-width: 768px) {
  .u-grid-col2 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

/* ------------------------
  header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-right: 2.5%;
  padding-left: 1.5714285714%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  transition: background-color var(--transition);
}
.header::before {
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 125%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  position: absolute;
  display: block;
  content: "";
}
@media (min-width: 1025px) {
  .header.js-bg {
    background: rgba(255, 255, 255, 0.8);
  }
  .header.js-bg::before {
    height: 100%;
    backdrop-filter: blur(1px);
  }
}
.header_logo {
  align-content: center;
  width: 240px;
  transition: opacity var(--transition);
}
@media (max-width: 1200px) {
  .header_logo {
    width: 210px;
  }
}
@media (max-width: 1024px) {
  .header_logo {
    width: 210px;
  }
}
@media (max-width: 768px) {
  .header_logo {
    width: 150px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.8;
  }
}

.header-nav {
  transition: transform var(--transition);
}
.header-nav_list {
  display: flex;
  gap: 0 2em;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 1200px) {
  .header-nav_list {
    gap: 0 1.2em;
    font-size: 0.875rem;
  }
}
.header-nav_link {
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    color: var(--pink);
  }
}
@media (hover: none) {
  .header-nav_link:active {
    color: var(--pink);
  }
}
.header-nav .btn {
  min-width: 13.4em;
}
@media (max-width: 1200px) {
  .header-nav .btn {
    min-width: 12em;
    font-size: 13px;
  }
}

.hamburger {
  position: fixed;
  top: 9px;
  right: 9px;
  z-index: 150;
  display: none;
  width: calc(var(--header-height) - 20px);
  height: calc(var(--header-height) - 20px);
  background: var(--pink);
}
.hamburger > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 55%;
  height: 2px;
  background: var(--white);
  transform: translateX(-50%);
  transition: ease 0.4s;
}
.hamburger > span:nth-of-type(1) {
  top: 32%;
}
.hamburger > span:nth-of-type(3) {
  top: 68%;
}
.hamburger.js-close > span {
  top: 50%;
}
.hamburger.js-close > span:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header {
    position: relative;
    padding-left: 5%;
    margin-bottom: calc(var(--header-height) * -1);
  }
  .header::before {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
    width: 100vh;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.4);
  }
  .header.js-active::before {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    align-content: center;
    width: min(90%, 400px);
    height: 100vh;
    padding: calc(var(--header-height) - 1em) 2em 0;
    margin-top: 0;
    background-color: #fff;
    transform: translateX(110%);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    flex-direction: column;
    row-gap: 1.8em;
    margin-top: calc(var(--header-height) * -1 - 3em);
    font-size: 1rem;
  }
  .header-nav_item {
    width: 100%;
  }
  .header-nav_link {
    font-weight: 700;
  }
  .header-nav_btn {
    margin-top: 1em;
  }
  .header-nav_btn .btn {
    width: 16em;
    margin-inline: auto;
  }
  .hamburger {
    display: block;
  }
}
/* ------------------------
  footer
------------------------ */
.footer {
  padding: 50px 5%;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--black);
  position: relative;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 5% 55px;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 3em;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 8px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer-nav {
    justify-content: center;
  }
}
@media (width <= 600px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
}
.footer-nav a {
  position: relative;
}
.footer-nav a:not(:last-child)::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: -1.5em;
  width: 1px;
  height: 0.9em;
  background: var(--white);
  transform: translateY(-50%);
}
@media (width <= 600px) {
  .footer-nav a:not(:last-child)::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover, .footer-nav a:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:active {
    opacity: 0.75;
  }
}

.copyright {
  text-align: center;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.6875rem;
  }
}

/* ------------------------
  mv 
------------------------ */
.mv {
  position: relative;
}
.mv_txt {
  position: absolute;
  bottom: 17%;
  left: 2.5%;
  width: 40.3571428571%;
}
@media (max-width: 768px) {
  .mv_txt {
    bottom: 9.5%;
    width: 95%;
  }
}

.slideshow-fade {
  position: relative;
  aspect-ratio: 400/253;
  overflow: hidden;
}
@media (max-width: 768px) {
  .slideshow-fade {
    aspect-ratio: 751/1351;
  }
}
.slideshow-fade li {
  position: absolute;
  inset: 0;
  width: 100%;
}
.slideshow-fade li:nth-child(2) {
  z-index: -1;
}

/* ------------------------
  message 
------------------------ */
@media (max-width: 768px) {
  .message {
    padding-bottom: 57px;
  }
}
.message .heading::before {
  width: 3.7em;
  aspect-ratio: 113/75;
  background-image: url("../images/deco_01.svg");
}
@media (max-width: 768px) {
  .message .heading::before {
    width: 3em;
  }
}

.message-intro {
  margin-bottom: 48px;
}
.message-intro_heading {
  margin-bottom: 1.7em;
  font-size: 1.875rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-thickness: 0.16em;
  text-decoration-color: #fedc5e;
  text-underline-offset: 0.3em;
  text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .message-intro_heading {
    font-size: 1.3125rem;
    line-height: 1.8;
    text-decoration-thickness: 0.2em;
    text-underline-offset: 0.2em;
  }
}
.message-intro_body {
  display: grid;
  grid-template-columns: 1fr 47.0588235294%;
  gap: 30px 3em;
  width: calc((100vw - min(100%, 1000px)) / 2 + 100%);
  max-width: 1400px;
}
@media (max-width: 1024px) {
  .message-intro_body {
    grid-template-columns: 1fr 40%;
  }
}
@media (max-width: 768px) {
  .message-intro_body {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.message-intro_txt {
  font-size: 1.1333333333em;
  text-align: justify;
}
@media (max-width: 768px) {
  .message-intro_txt {
    font-size: 0.9375rem;
  }
}
.message-intro_txt + .message-intro_txt {
  margin-top: 1.7em;
}
.message-intro_img {
  position: relative;
}
@media (max-width: 768px) {
  .message-intro_img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/0.65;
    margin-right: -6%;
    margin-left: auto;
  }
}
.message-intro_img::before {
  bottom: calc(100% - 1px);
  left: 50%;
  width: 38.2142857143%;
  aspect-ratio: 79/75;
  background: url("../images/deco_03.svg") no-repeat center/contain;
  transform: translateX(-50%);
  position: absolute;
  display: block;
  content: "";
}
@media (max-width: 1024px) {
  .message-intro_img::before {
    left: 100%;
    transform: translateX(-105%);
  }
}
@media (max-width: 768px) {
  .message-intro_img::before {
    width: 35%;
    max-height: 130px;
    transform: translateX(-110%);
  }
}
.message-intro_img img {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
@media (width >= 1800px) {
  .message-intro_img img {
    border-radius: 35px;
  }
}
@media (max-width: 768px) {
  .message-intro_img img {
    height: 100%;
    object-fit: cover;
    object-position: center 82%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}

.message-box {
  --border: 55px;
  box-sizing: content-box;
  width: 100%;
  margin-left: calc(var(--border) * -1);
  background-color: #faf7ef;
  border: #faf7ef var(--border) solid;
  border-radius: 35px;
  position: relative;
}
@media (max-width: 768px) {
  .message-box {
    border-top-width: 25px;
    border-bottom-width: 90px;
  }
}
.message-box::after {
  right: 0;
  bottom: -42px;
  width: 25.5102040816%;
  aspect-ratio: 167/150;
  background: url("../images/deco_05.svg") no-repeat center/contain;
  transform: translateX(39%);
  position: absolute;
  display: block;
  content: "";
}
@media (max-width: 1200px) {
  .message-box::after {
    width: 22%;
    transform: translateX(17%);
  }
}
@media (max-width: 1024px) {
  .message-box::after {
    transform: translateX(11%);
  }
}
@media (max-width: 768px) {
  .message-box::after {
    bottom: -75px;
    width: min(40%, 145px);
  }
}
.message-box_ttl {
  width: fit-content;
  min-width: 11.5em;
  padding: 0.15em 0;
  font-size: 1.0625rem;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.25em;
  transform: translate(1.5em, 50%);
}
.message-box_content {
  padding: 2em;
  background-color: var(--white);
  border-radius: 19px;
}

.philosophy {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .philosophy {
    margin-bottom: 15px;
  }
}
.philosophy .message-box_ttl {
  background-color: var(--pink);
}
.philosophy .message-box_content {
  font-size: 1.2666666667em;
  font-weight: 700;
  line-height: 1.6842105263;
  background: url("../images/deco_04.svg") no-repeat 92% center/42%, var(--white);
}
@media (max-width: 1024px) {
  .philosophy .message-box_content {
    background-size: 33%;
  }
}
@media (max-width: 768px) {
  .philosophy .message-box_content {
    padding-bottom: 2.5em;
    font-size: 1.0625rem;
    background-position: 94% calc(100% - 11px);
    background-size: 37%;
  }
}

.business .message-box_ttl {
  background-color: var(--emerald);
}
.business .message-box_content {
  padding: 3em 2.5em;
}
@media (max-width: 768px) {
  .business .message-box_content {
    padding: 3em 2em;
  }
}
.business_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.business_item {
  width: calc((100% - 4em) / 3);
  text-align: justify;
}
@media (max-width: 1024px) {
  .business_item {
    width: calc((100% - 4em) / 2);
  }
}
@media (max-width: 768px) {
  .business_item {
    width: 100%;
  }
}
.business_item-ttl {
  padding-bottom: 0.2em;
  margin-bottom: 0.5em;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--emerald);
  text-align: center;
  border-bottom: 1px solid currentcolor;
}
@media (max-width: 768px) {
  .business_item-ttl {
    font-size: 1.0625rem;
  }
}

/* ------------------------
  slider 
------------------------ */
.slider {
  display: flex;
  margin-bottom: 160px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .slider {
    margin-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .slider {
    margin-bottom: 80px;
  }
}

.slide-track {
  display: flex;
  flex-shrink: 0;
  height: 100%;
}

.slide {
  flex: 0 0 auto;
  margin-right: 35px;
}
@media (max-width: 768px) {
  .slide {
    margin-right: 10px;
  }
}

.slide img {
  display: block;
  width: auto;
  height: 330px;
  border-radius: var(--img-border-radius);
}
@media (max-width: 1024px) {
  .slide img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .slide img {
    height: 140px;
  }
}

.slide-track:first-child {
  animation: loop 70s -35s linear infinite;
}

.slide-track:last-child {
  animation: loop2 70s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* ------------------------
  environment 
------------------------ */
.environment {
  background-color: var(--bg-beige);
  position: relative;
}
.environment::before {
  bottom: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 300/11;
  background: url("../images/bg_environment_01.svg") no-repeat center top/101%;
  position: absolute;
  display: block;
  content: "";
}
.environment::after {
  top: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 300/11;
  background: url("../images/bg_environment_02.svg") no-repeat center top/101%;
  position: absolute;
  display: block;
  content: "";
}
.environment .inner {
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .environment .inner {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.environment .inner::before, .environment .inner::after {
  z-index: -1;
  width: min(27.6428571429vw, 500px);
  min-width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 50%;
  position: absolute;
  display: block;
  content: "";
}
.environment .inner::before {
  top: 0;
  right: calc((100vw - min(100%, 1000px)) / 2 * -1);
  background-image: url("../images/image_08.jpg");
  transform: translate(8%, -20%);
}
@media (max-width: 768px) {
  .environment .inner::before {
    top: unset;
    bottom: 0;
    transform: translate(4%, 51%);
  }
}
.environment .inner::after {
  bottom: 0;
  left: calc((100vw - min(100%, 1000px)) / 2 * -1);
  background-image: url("../images/image_09.jpg");
  transform: translate(-5%, 22%);
}
@media (max-width: 1200px) {
  .environment .inner::after {
    transform: translate(-16%, 22%);
  }
}
.environment .heading::before {
  width: 5.5em;
  aspect-ratio: 25/12;
  background-image: url("../images/deco_06.svg");
}
@media (max-width: 768px) {
  .environment .heading::before {
    width: 4.2em;
  }
}
.environment_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 25px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .environment_list {
    gap: 45px 25px;
  }
}
@media (max-width: 768px) {
  .environment_list {
    row-gap: 28px;
    width: min(95%, 500px);
    margin-inline: auto;
  }
}
.environment_item {
  display: grid;
  grid-template-rows: auto 1fr;
  width: calc((100% - 50px) / 3);
  overflow: hidden;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .environment_item {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 768px) {
  .environment_item {
    width: 100%;
    border-radius: 15px;
  }
}
.environment_item:nth-child(1), .environment_item:nth-child(5) {
  --type-color: var(--light-blue);
}
.environment_item:nth-child(2), .environment_item:nth-child(6) {
  --type-color: var(--emerald);
}
.environment_item:nth-child(3), .environment_item:nth-child(7) {
  --type-color: var(--pink);
}
.environment_item:nth-child(4) {
  --type-color: var(--orange);
}
.environment_item:nth-child(7) {
  min-width: 50%;
}
.environment_item-body {
  padding: 1em 1.3em 1.5em;
  background-color: var(--white);
}
.environment_item-ttl {
  display: grid;
  align-items: center;
  min-height: 2.7em;
  font-size: 1.3125rem;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.1em;
  background-color: var(--type-color);
}
@media (max-width: 768px) {
  .environment_item-ttl {
    font-size: 1.125rem;
  }
}
.environment_item-sub-ttl {
  margin-bottom: 0.2em;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--type-color);
}
@media (max-width: 768px) {
  .environment_item-sub-ttl {
    font-size: 1.0625rem;
  }
}
.environment_item-txt + .environment_item-sub-ttl {
  margin-top: 0.5em;
}

/* ------------------------
  job 
------------------------ */
.job {
  padding-bottom: 0;
}
.job .heading::before {
  width: 4.6em;
  aspect-ratio: 217/150;
  background-image: url("../images/deco_07.svg");
}
@media (max-width: 768px) {
  .job .heading::before {
    width: 3.8em;
  }
}
.job_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 4%;
  margin-bottom: 85px;
}
@media (max-width: 768px) {
  .job_list {
    grid-template-columns: 1fr;
    row-gap: 50px;
    width: min(100%, 500px);
    margin-inline: auto;
  }
}
.job_item {
  padding: 3em 2em 2em 2.2em;
  background-color: var(--bg-beige);
  border-radius: 35px;
  position: relative;
}
@media (max-width: 768px) {
  .job_item {
    width: 94%;
    margin-left: 3%;
    border-radius: 15px;
  }
}
.job_item-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  min-width: 13.2em;
  padding: 0.3em;
  font-size: 1.3125rem;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.1em;
  background-color: var(--black);
  border-radius: 9999px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .job_item-ttl {
    min-width: 10.2em;
    font-size: 1.0625rem;
    transform: translate(-0.2em, -50%);
  }
}
.job_item-body {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 20px 8%;
  align-items: center;
  height: 100%;
  font-size: 1.1333333333em;
  text-align: justify;
}
@media (max-width: 768px) {
  .job_item-body {
    grid-template-columns: 1fr;
    font-size: 0.9375rem;
  }
}
.job_item-body .attention {
  display: block;
  font-size: 0.75rem;
}
.job_item-txt-wrap {
  display: grid;
  grid-template-rows: 1fr auto;
  row-gap: 1.5em;
  height: 100%;
}
@media (max-width: 768px) {
  .job_item-img {
    width: 57%;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .job .btn {
    justify-self: center;
    min-width: 15.5em;
  }
}

.interview {
  padding-bottom: 80px;
  background: linear-gradient(var(--white) 0%, var(--white) 0%, var(--white) 300px, var(--bg-beige) 300px), var(--bg-beige) 100%;
}
@media (max-width: 768px) {
  .interview {
    background: unset;
  }
}
.interview_heading {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 0.65em;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.4814814815;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .interview_heading {
    column-gap: 0;
    width: 107%;
    margin-left: -3.5%;
    font-size: 1.1875rem;
    letter-spacing: 0.1em;
  }
}
.interview_heading::before, .interview_heading::after {
  height: 89%;
  aspect-ratio: 23/30;
  content: "";
  background-image: url("../images/deco_09.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 768px) {
  .interview_heading::before, .interview_heading::after {
    height: 2.33em;
  }
}
.interview_heading::before {
  background-image: url("../images/deco_09.svg");
}
.interview_heading::after {
  background-image: url("../images/deco_10.svg");
}
.interview_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 5%;
}
@media (max-width: 768px) {
  .interview_list {
    grid-template-columns: min(94%, 500px);
    justify-content: center;
  }
}
.interview_item {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
@media (max-width: 768px) {
  .interview_item {
    grid-template-rows: repeat(4, auto);
    padding: 1.5em 2em;
    padding-top: 29%;
    margin-top: 33%;
    background-color: var(--bg-beige);
    border-radius: 15px;
    position: relative;
  }
}
@media (hover: hover) and (pointer: fine) {
  .interview_item:hover .btn, .interview_item:focus .btn {
    filter: brightness(1.05);
  }
  .interview_item:hover .interview_item-img, .interview_item:focus .interview_item-img {
    filter: brightness(1.025);
  }
}
@media (hover: none) {
  .interview_item:active .btn {
    filter: brightness(1.05);
  }
  .interview_item:active .interview_item-img {
    filter: brightness(1.025);
  }
}
.interview_item-info {
  margin-bottom: 0.7em;
  font-size: 0.8125rem;
}
.interview_item-comment {
  min-height: 3.5em;
  margin-bottom: 1em;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .interview_item-comment {
    min-height: unset;
    font-size: 1.0625rem;
  }
}
.interview_item-img {
  margin-bottom: 5px;
  border-radius: var(--img-border-radius);
  transition: filter var(--transition);
}
@media (max-width: 768px) {
  .interview_item-img {
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 85%;
    transform: translate(-50%, 50%);
  }
}
.interview .btn {
  justify-self: center;
  min-width: 15.5em;
}

[data-remodal-target] {
  cursor: pointer;
}

.remodal-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.remodal {
  margin-top: 150px;
  margin-bottom: 300px;
}
@media (max-width: 768px) {
  .remodal {
    margin-top: 70px;
  }
}

.modal {
  padding: 80px 4.8% 70px 3.5%;
  font-weight: 700;
  text-align: left;
  background-color: var(--white);
  border-radius: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .modal {
    width: 90%;
    padding: 50px 4.5%;
    border-radius: 7px;
  }
}
.modal_top {
  display: grid;
  grid-template-columns: 20.1875rem 1fr;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .modal_top {
    grid-template-columns: 1fr;
    margin-bottom: 35px;
  }
}
.modal_top-body {
  position: relative;
  padding-top: 2.3em;
}
@media (max-width: 768px) {
  .modal_top-body {
    padding-top: 0;
    margin-top: -20px;
  }
}
.modal_top-comment {
  display: inline;
  padding: 0 0.5em 0.1em;
  font-size: 2.25rem;
  font-feature-settings: "palt";
  line-height: 1.8;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
  background-color: var(--black);
  border-radius: 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 768px) {
  .modal_top-comment {
    font-size: 1.25rem;
    white-space: unset;
    border-radius: 3px;
  }
}
.modal_top-info {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 1.3em;
  margin-bottom: 0.3em;
  font-size: 1.2666666667em;
  line-height: 1.4736842105;
}
@media (max-width: 768px) {
  .modal_top-info {
    margin-top: 0.8em;
    margin-bottom: 0.2em;
    margin-left: 15px;
    font-size: 0.875rem;
  }
}
.modal_top-info dt::after {
  display: inline-block;
  content: "：";
}
@media (max-width: 768px) {
  .modal_top-name {
    margin-left: 15px;
  }
}
.modal_top-name .emphasis {
  margin-right: 0.2em;
  font-size: 2.2666666667em;
}
.modal_top-img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  .modal_top-img {
    order: -1;
    width: 90%;
    margin-inline: auto;
    border-radius: 15px;
  }
}
.modal_question {
  padding: 0.7em 2.2em;
  font-size: 1.4375rem;
  line-height: 1.2173913043;
  position: relative;
}
@media (max-width: 768px) {
  .modal_question {
    padding: 0.7em 0 0.7em 1.9em;
    font-size: 1rem;
  }
}
.modal_question::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  display: grid;
  place-content: center;
  width: 1.7em;
  aspect-ratio: 1;
  padding-right: 0.05em;
  padding-bottom: 0.2em;
  font-size: 1.0434782609em;
  line-height: 1;
  color: var(--white);
  content: "Q";
  background-color: var(--black);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .modal_question::before {
    top: 0.6em;
    font-size: 0.9em;
  }
}
.modal_answer {
  padding: 1em 1.3em;
  margin-bottom: 40px;
  font-size: 1.0625rem;
  background-color: var(--bg-beige);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .modal_answer {
    margin-bottom: 20px;
    font-size: 0.875rem;
  }
}
.modal .btn-group {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .modal .btn-group {
    margin-top: 45px;
  }
}
.modal .btn {
  min-width: 15.3em;
  min-height: 60px;
  font-size: 17px;
  background-image: url("../images/icon_close.svg");
  background-position: calc(100% - 1.3em) center;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .modal .btn {
    min-height: 50px;
    font-size: 14px;
  }
}
.modal_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  aspect-ratio: 1;
  background: url("../images/icon_close.svg") no-repeat center/35%, var(--pink);
  border-radius: 50%;
  transform: translate(50%, -35%);
}
@media (max-width: 768px) {
  .modal_close {
    width: 45px;
    transform: translate(30%, -50%);
  }
}

@media (min-width: 769px) {
  [data-remodal-id=modal01] .modal_top-info {
    margin-top: 1.8em;
  }
}

/* ------------------------
  faq 
------------------------ */
@media (max-width: 768px) {
  .faq {
    padding-bottom: 60px;
  }
}
.faq .heading::before {
  width: 4.4em;
  aspect-ratio: 179/150;
  background-image: url("../images/deco_08.svg");
}
@media (max-width: 768px) {
  .faq .heading::before {
    width: 3.1em;
  }
}
.faq_item {
  margin-bottom: 22px;
}
.faq_question {
  padding: 1.2em 3em 1.2em 4em;
  font-size: 1.25rem;
  cursor: pointer;
  background: url("../images/icon_plus.svg") no-repeat calc(100% - 1em) 1.35em/1.2em, url("../images/icon_minus.svg") no-repeat calc(100% - 1em) 1.35em/0;
  background-color: var(--bg-beige);
  border-radius: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .faq_question {
    padding: 1em 2.5em 1em 3.3em;
    font-size: 1rem;
    line-height: 1.5;
    background-size: 1em, 0;
  }
}
.faq_question.js-active {
  background-size: 0, 1.2em;
}
@media (max-width: 768px) {
  .faq_question.js-active {
    background-size: 0, 1em;
  }
}
.faq_question::before {
  position: absolute;
  top: 0.8em;
  left: 0.8em;
  display: grid;
  place-content: center;
  width: 2.4em;
  aspect-ratio: 1;
  content: "Q";
  background-color: var(--white);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .faq_question::before {
    top: 0.9em;
    width: 1.9em;
    padding-bottom: 0.3em;
  }
}
.faq_answer {
  padding: 1.75rem 1rem 1.75rem 5rem;
  font-size: 1.1333333333em;
  position: relative;
}
@media (max-width: 768px) {
  .faq_answer {
    padding: 1rem 0.8rem 1rem 3.3rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.faq_answer::before {
  position: absolute;
  top: 0.9em;
  left: 0.8em;
  display: grid;
  place-content: center;
  width: 2.4em;
  aspect-ratio: 1;
  font-size: 1.25rem;
  color: var(--white);
  content: "A";
  background-color: var(--orange);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .faq_answer::before {
    width: 1.9em;
    padding-bottom: 0.2em;
    font-size: 1rem;
  }
}

/* ------------------------
  cta 
------------------------ */
.cta {
  padding-top: 40px;
}
.cta .inner {
  position: relative;
  z-index: 1;
}
.cta_txt {
  margin-bottom: 1em;
  font-size: 2.4375rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .cta_txt {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
.cta_all-btn {
  width: 16em;
  min-height: 93px;
  font-size: 24px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .cta_all-btn {
    width: 15em;
    min-height: 65px;
    font-size: 17px;
  }
}
.cta .btn-group {
  gap: 15px 20px;
}
.cta .btn-group .btn-group {
  flex-grow: 1;
}
.cta_btn {
  width: calc((100% - 20px) / 2);
  min-width: 11em;
  max-width: 15em;
  min-height: 70px;
  font-size: 17px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .cta_btn {
    min-width: 13em;
    min-height: 55px;
    font-size: 15px;
  }
}
.cta_btn[data-num="02"] {
  background-color: var(--orange);
}
.cta_btn[data-num="03"] {
  background-color: var(--light-blue);
}
.cta_btn[data-num="04"] {
  background-color: var(--emerald);
}
.cta_bg {
  padding-top: 290px;
  padding-bottom: 170px;
  margin-top: -164px;
  background: url("../images/bg_cta.jpg") no-repeat center 31%/cover;
  position: relative;
}
@media (max-width: 768px) {
  .cta_bg {
    padding-top: 230px;
    padding-bottom: 80px;
  }
}
@media (width <= 455px) {
  .cta_bg {
    background-position: 53% 36%;
    background-size: 350%;
  }
}
.cta_bg::before {
  top: 0;
  left: -5%;
  width: 110%;
  height: 120px;
  background-color: #fff;
  border-radius: 0 0 50% 50%/0 0 120px 120px;
  position: absolute;
  display: block;
  content: "";
}
@media (max-width: 768px) {
  .cta_bg::before {
    height: 140px;
    border-radius: 0 0 90% 90%/0 0 60px 60px;
  }
}/*# sourceMappingURL=style.css.map */