@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-bg-base: #f5f8f9;
  --color-bg-gray: #e0ebee;
  --color-bg-black: #000000;
  --color-bg-feature: linear-gradient(#e0ebee, #f5f8f9);
  --color-bg-cta: linear-gradient(#9ab8ff, #43cfcf, #72e2ff);
  --color-bg-light-blue: linear-gradient(#e4eff9, #e3f3f3, #c2e2f1);
  --color-bg-green: linear-gradient(#e4f9f8, #e3f3e9, #c8f1c2);
  --color-bg-blue-green: linear-gradient(#c6ddff, #d2eed9, #d8e5e7);
  --color-font-base: #414f5d;
  --color-font-white: #ffffff;
  --color-font-light-base: #919ca7;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 960px;
  --width-content: 1080px;
  --width-content-l: 1300px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-fv: "cherry-Blossoms-regular", sans-serif;
  --font-family-english: "Josefin Sans", sans-serif;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.8;
  font-size: 16px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  background-color: var(--color-bg-base);
}

/*!
sp.pc表示
------------------------------
*/
html:has(dialog[open]) {
  overflow: hidden;
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
component > button
------------------------------
*/
.c-button--header {
  color: var(--color-font-white);
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 20px;
  background: var(--color-bg-cta);
  width: 64px;
  height: 64px;
  position: relative;
}
@media screen and (min-width: 1110px) {
  .c-button--header {
    width: 181px;
    height: 111px;
    padding: 38px 24px 32px 24px;
  }
}
.c-button--menu {
  color: var(--color-font-white);
  text-transform: uppercase;
  line-height: 20px;
  border: 1px solid var(--color-bg-base);
  border-radius: 50px;
  width: 100%;
  max-width: 340px;
  padding: 1rem;
  margin: 40px auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-button--menu {
    display: none;
  }
}
.c-button--news {
  border: 1px solid var(--color-font-base);
  border-radius: 16px;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: var(--font-family-english);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
  height: 42px;
  position: relative;
  padding: 14px 24px;
}
@media screen and (min-width: 1110px) {
  .c-button--news {
    border: 1.5px solid var(--color-font-base);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 38.5px 18.5px;
  }
}
.c-button--greeting {
  font-size: 0.875rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-font-base);
  border-radius: 32px;
  width: 100%;
  max-width: 230px;
  position: relative;
  padding: 14px 24px;
  z-index: 998;
}
@media screen and (min-width: 768px) {
  .c-button--greeting {
    font-size: 1rem;
    max-width: 270px;
    padding: 18px 32px;
  }
}
.c-button--interview {
  font-size: 0.875rem;
  font-weight: bold;
  background: var(--color-bg-light-blue);
  border-radius: 32px;
  width: 100%;
  max-width: 272px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 18px 32px;
}
@media screen and (min-width: 768px) {
  .c-button--interview {
    font-size: 1rem;
    width: 304px;
    height: 63px;
  }
}
.c-button--interview2 {
  background: var(--color-bg-green);
}
.c-button--cta a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-font-white);
  border-right: 2px solid var(--color-font-white);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
}

.c-arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-font-base);
  border-right: 2px solid var(--color-font-base);
  transform: rotate(45deg);
  border-radius: 1px;
}

.c-button-center {
  margin: 0 auto;
}

.c-button-right {
  margin: 0 0 0 auto;
}

/*!
component > title
------------------------------
*/
.c-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-title--english {
  font-size: 2rem;
  font-family: var(--font-family-english);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-title--english {
    font-size: 2.625rem;
  }
}
.c-title--nomal {
  font-size: 0.875rem;
  color: var(--color-font-light-base);
  white-space: nowrap;
}

.c-title-border::before {
  content: "";
  border: 1px solid var(--color-font-light-base);
  width: 100%;
  max-width: 122px;
}

.c-title-border--level2::before,
.c-title-border--level2::after {
  content: "";
  border: 1px solid var(--color-font-light-base);
  width: 100%;
  max-width: 76px;
}

.c-title-border--level2::before {
  margin-right: 8px;
}

.c-title-border--level2::after {
  margin-left: 8px;
}

.c-title-border--entry::before {
  content: "";
  border: 1px solid var(--color-font-light-base);
  width: 100%;
  max-width: 70px;
}

/*!
component > cta
------------------------------
*/
.c-cta-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1110px) {
  .c-cta-inner {
    flex-direction: row;
  }
}

.c-cta-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-cta-body {
  background-color: var(--color-bg-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 20px;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-cta-body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }
}
@media screen and (min-width: 1110px) {
  .c-cta-body {
    flex-direction: column;
    justify-content: center;
    padding: 0px 72px;
    gap: 30px;
  }
}

.c-cta-text span {
  display: block;
}

.cta-button {
  font-size: 1.2rem;
  color: var(--color-font-white);
  background: var(--color-bg-cta);
  border-radius: 56px;
  width: 100%;
  max-width: 336px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding: 18px 32px 14px 32px;
}
@media screen and (min-width: 768px) {
  .cta-button {
    font-size: 1.4rem;
    width: 336px;
  }
}

.cta-button span {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .cta-button span {
    font-size: 12px;
  }
}

/*!
layout > container
------------------------------
*/
.l-container-l, .l-container, .l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

/*!
layout > header
------------------------------
*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}
@media screen and (min-width: 1200px) {
  .header-wrapper {
    padding-left: 70px;
  }
}

.header-logo-sp {
  width: 156px;
  display: flex;
  flex-shrink: 0;
}
@media screen and (min-width: 1110px) {
  .header-logo-sp {
    display: none !important;
  }
}

.header-logo-pc {
  display: none !important;
}
@media screen and (min-width: 1110px) {
  .header-logo-pc {
    width: 290px;
    display: flex !important;
    flex-shrink: 0;
  }
}

.header-logo-hamburger {
  width: 156px;
  padding-left: 20px;
}
@media screen and (min-width: 930px) {
  .header-logo-hamburger {
    display: none;
  }
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 930px) {
  .header-info {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}

.header-menu {
  border: none;
  background: var(--color-bg-cta);
  margin: 0 0 0 auto;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  max-width: none;
  max-height: none;
}
@media screen and (min-width: 930px) {
  .header-menu {
    width: 100%;
    display: block;
    background: none;
    margin: 0;
    position: static;
  }
}

.header-menu::-webkit-backdrop {
  display: none;
}

.header-menu::backdrop {
  display: none;
}

.header-menu-top {
  display: flex;
  align-items: center;
  height: 64px;
}
@media screen and (min-width: 930px) {
  .header-menu-top {
    display: none;
  }
}

.header-nav {
  width: auto;
  padding-left: 1rem;
  margin-top: 20px;
  margin: 30px auto 0;
}
@media screen and (min-width: 930px) {
  .header-nav {
    width: 100%;
    margin-top: 0;
  }
}

.open .header-nav {
  right: 0;
}

.header-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (min-width: 930px) {
  .header-list {
    font-weight: bold;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
  }
}

.header-item {
  color: var(--color-font-white);
  position: relative;
}
.header-item--japanese {
  display: none;
}
@media screen and (min-width: 930px) {
  .header-item--japanese {
    display: block;
    font-size: 1.2rem;
  }
}
.header-item--english {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-family-english);
  text-transform: uppercase;
}
@media screen and (min-width: 930px) {
  .header-item--english {
    display: none;
  }
}
.header-item--greeting::after {
  content: "ご挨拶";
  font-size: 0.75rem;
  font-family: var(--font-family-base);
  position: absolute;
  top: 10px;
  right: -50px;
}
@media screen and (min-width: 930px) {
  .header-item--greeting::after {
    display: none;
  }
}
.header-item--feature::after {
  content: "3つの特徴";
  font-size: 0.75rem;
  font-family: var(--font-family-base);
  position: absolute;
  top: 10px;
  right: -70px;
}
@media screen and (min-width: 930px) {
  .header-item--feature::after {
    display: none;
  }
}
.header-item--interview::after {
  content: "インタビュー";
  font-size: 0.75rem;
  font-family: var(--font-family-base);
  position: absolute;
  top: 10px;
  right: -80px;
}
@media screen and (min-width: 930px) {
  .header-item--interview::after {
    display: none;
  }
}
.header-item--news::after {
  content: "新着情報";
  font-size: 0.75rem;
  font-family: var(--font-family-base);
  position: absolute;
  top: 10px;
  right: -60px;
}
@media screen and (min-width: 930px) {
  .header-item--news::after {
    display: none;
  }
}
.header-item--topic::after {
  content: "トピックス";
  font-size: 0.75rem;
  font-family: var(--font-family-base);
  position: absolute;
  top: 10px;
  right: -70px;
}
@media screen and (min-width: 930px) {
  .header-item--topic::after {
    display: none;
  }
}

.header-button {
  display: inline-block;
  position: absolute;
  top: 20%;
  right: 10%;
}
@media screen and (min-width: 1110px) {
  .header-button {
    top: 33%;
    right: 40%;
  }
}

.header-button span {
  font-size: 10px;
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 1110px) {
  .header-button span {
    font-size: 12px;
  }
}

.header-menu-button {
  font-family: var(--font-family-english);
}

.header-menu-button span {
  font-size: 0.75rem;
}

.dialog-menu-button {
  display: block;
  background-color: #70d7dd;
  color: var(--color-font-white);
  text-transform: uppercase;
  line-height: 20px;
  border: 1px solid var(--color-bg-base);
  border-radius: 50px;
  width: 100%;
  max-width: 280px;
  margin: 20px 0 0 1rem;
  padding: 1rem;
  position: relative;
}
@media screen and (min-width: 930px) {
  .dialog-menu-button {
    display: none;
  }
}

@media screen and (min-width: 1110px) {
  .header-arrow::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-font-white);
    border-right: 2px solid var(--color-font-white);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
  }
  .header-arrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 24px;
    border: solid 2px var(--color-bg-base);
    position: absolute;
    top: 40%;
    right: 8px;
  }
}
.menu-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-font-white);
  border-right: 2px solid var(--color-font-white);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
}

/*!
ハンバーガーメニュー
-----------------------------------------
*/
.hamburger {
  background: var(--color-bg-base);
  position: absolute;
  right: 64px;
  top: 0px;
  width: 64px;
  height: 64px;
}
@media screen and (min-width: 930px) {
  .hamburger {
    display: none;
  }
}

.hamburger-menu::after {
  content: "MENU";
  font-size: 0.75rem;
  font-family: var(--font-family-english);
  display: block;
  color: var(--color-font-base);
  position: absolute;
  bottom: 5px;
  left: 20%;
  margin-top: 40px;
}

.close-hamburger {
  background: var(--color-bg-base);
  position: absolute;
  right: 0px;
  top: 0px;
  width: 64px;
  height: 64px;
  cursor: pointer;
  z-index: 300;
}
@media screen and (min-width: 930px) {
  .close-hamburger {
    display: none;
  }
}

.hamburger-close::after {
  content: "CLOSE";
  font-size: 0.75rem;
  font-family: var(--font-family-english);
  display: block;
  color: var(--color-font-base);
  bottom: 5px;
  position: absolute;
  left: 17%;
  margin-top: 40px;
}

.hamburger-line {
  background-color: var(--color-font-base);
  width: 20px;
  height: 1px;
  position: absolute;
  left: 35%;
  transition: all 0.5s;
}

.hamburger-line1 {
  top: 14px;
}

.hamburger-line2 {
  top: 20px;
}

.hamburger-line3 {
  top: 26px;
}

.open .hamburger-line1 {
  transform: rotate(-45deg);
  top: 20px;
}

.open .hamburger-line2 {
  opacity: 0;
}

.open .hamburger-line3 {
  transform: rotate(45deg);
  top: 20px;
}

.no-scroll {
  overflow: hidden;
}

/*!
layout > footer
------------------------------
*/
.footer {
  padding: 56px 0;
  width: 100%;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer-site-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1110px) {
  .footer-site-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

.footer-logo-sp {
  display: block !important;
  width: 150px;
  margin: 0 auto;
}
@media screen and (min-width: 1110px) {
  .footer-logo-sp {
    display: none !important;
  }
}

.footer-logo-pc {
  display: none !important;
}
@media screen and (min-width: 1110px) {
  .footer-logo-pc {
    display: block !important;
    width: 280px;
  }
}

.footer-wrapper {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1110px) {
  .footer-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.footer-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer-list {
    white-space: nowrap;
    gap: 31px;
  }
}

.footer-button {
  font-size: 0.875rem;
  background: var(--color-bg-light-blue);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 203px;
  height: 52px;
  position: relative;
  padding: 14px 24px;
  margin: 0 auto;
}

.footer-secondary-info {
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1110px) {
  .footer-secondary-info {
    margin: 0 0 0 auto;
  }
}

.footer-secondary-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-copyright {
  text-align: center;
}
@media screen and (min-width: 1110px) {
  .footer-copyright {
    text-align: right;
  }
}

/*!
page > top > top-fv
------------------------------
*/
.top-fv {
  background-image: url(../../../img/top-fv-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: grid;
  place-items: center;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-fv {
    background-image: url(../../../img/top-fv-pc.png);
    height: 100vh;
  }
}

.top-fv-catch {
  color: var(--color-font-white);
  font-family: var(--font-family-fv);
  white-space: nowrap;
  font-size: 4rem;
  line-height: 64px;
  text-align: center;
  rotate: -4deg;
  z-index: 150;
}
@media screen and (min-width: 768px) {
  .top-fv-catch {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1110px) {
  .top-fv-catch {
    font-size: 7.5rem;
    line-height: 120px;
  }
}

.top-fv-catch span {
  display: block;
}

.top-fv-img img {
  height: 100%;
}

/*!
page > top > top-news
------------------------------
*/
.top-news-container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1110px) {
  .top-news-container {
    width: 95%;
    margin: 0;
  }
}

.top-news {
  position: relative;
  padding: 56px 0;
}
@media screen and (min-width: 1110px) {
  .top-news {
    background: var(--color-bg-base);
    padding: 64px 0 64px 120px;
    margin-top: -80px;
  }
}

.top-news-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-news-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1110px) {
  .top-news-body {
    flex-direction: row;
    align-items: center;
  }
}

.top-news-list {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
}
@media screen and (min-width: 1110px) {
  .top-news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.top-news-list::-webkit-scrollbar {
  display: none;
}

.top-news-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.top-news-single {
  display: flex;
  flex-direction: column;
  width: 250px;
  gap: 8px;
}
@media screen and (min-width: 1110px) {
  .top-news-single {
    width: auto;
  }
}

.top-news-information {
  font-size: 0.875rem;
  color: var(--color-font-light-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-news-detail {
  font-weight: 700;
}

.top-news-button {
  margin-left: auto;
}

/*!
page > top > top-news
------------------------------
*/
.top-greeting {
  position: relative;
  overflow-x: clip;
  margin: 48px 0 0 0;
}
@media screen and (min-width: 768px) {
  .top-greeting {
    margin: 96px auto 0;
  }
}

.top-greeting-container {
  width: 90%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .top-greeting-container {
    width: 95%;
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .top-greeting-container {
    margin: 0 auto;
  }
}

.top-greeting-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-greeting-wrapper {
    width: 45%;
  }
}

.top-greeting-inner {
  display: flex;
  flex-direction: column;
  width: 90%;
  gap: 32px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .top-greeting-inner {
    width: 45%;
    gap: 56px;
    padding: 0;
  }
}

.top-greeting-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 999;
}

.top-greeting-head {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-greeting-head {
    font-size: 2.5rem;
  }
}

.top-greeting-head span {
  display: block;
}

@media screen and (min-width: 768px) {
  .top-greeting-head span:first-child {
    display: inline;
  }
}

.top-greeting-text span:first-child {
  display: inline;
}
@media screen and (min-width: 768px) {
  .top-greeting-text span:first-child {
    display: block;
  }
}

.top-greeting-text span:nth-child(2) {
  display: block;
}

.top-greeting-text span:last-child {
  display: block;
  padding-top: 24px;
}

.top-greeting-img {
  width: 265px;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .top-greeting-img {
    width: 100%;
    max-width: 500px;
  }
}

.top-greeting-bg-box {
  background: var(--color-bg-light-blue);
  width: 100%;
  max-width: 265px;
  height: 100%;
  max-height: 111px;
  position: absolute;
  bottom: -4%;
  left: 5%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .top-greeting-bg-box {
    max-width: 500px;
    max-height: 211px;
    bottom: -5%;
    left: 7%;
  }
}

.top-greeting-bg-img {
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -5%;
  right: -100px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .top-greeting-bg-img {
    width: 300px;
    height: 300px;
    bottom: -15%;
    right: -120px;
  }
}
@media screen and (min-width: 1110px) {
  .top-greeting-bg-img {
    right: 0;
  }
}

.top-greeting-bg-text {
  display: block;
  font-size: 10rem;
  font-family: var(--font-family-fv);
  background: var(--color-bg-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 55%;
  left: -30%;
  rotate: -4deg;
  white-space: nowrap;
  letter-spacing: -1px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-greeting-bg-text {
    font-size: 14.5rem;
    top: 23%;
    left: 35%;
  }
}

/*!
page > top > top-feature
------------------------------
*/
.top-feature {
  background: var(--color-bg-feature);
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-feature {
    margin-top: 172px;
  }
}

.top-feature-bg-img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(720%) hue-rotate(142deg) brightness(109%) contrast(95%);
  width: 100%;
  position: absolute;
  right: -65%;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 1110px) {
  .top-feature-bg-img {
    width: 70%;
    right: 0;
    left: -10%;
    top: 20%;
  }
}

.top-feature-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 120px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-feature-inner {
    gap: 70px;
  }
}

.top-feature-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  gap: 32px;
  margin: 0 auto;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .top-feature-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .top-feature-text {
    width: 730px;
  }
}

.top-feature-body {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-feature-body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1110px) {
  .top-feature-body {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-feature-item {
  position: relative;
  z-index: 998;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .top-feature-item:last-child {
    grid-column: 1/-1;
    justify-self: center;
  }
}
@media screen and (min-width: 1110px) {
  .top-feature-item:last-child {
    grid-area: 1/3/2/4;
    justify-self: end;
  }
}

.top-feature-item img {
  max-width: 350px;
}

.top-feature-copy {
  color: var(--color-font-white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 20px;
}
@media screen and (min-width: 1110px) {
  .top-feature-copy {
    font-size: 1.2rem;
    padding: 32px;
  }
}

.top-feature-english {
  font-family: var(--font-family-english);
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0.8;
}

.top-feature-img-text {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .top-feature-img-text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1110px) {
  .top-feature-img-text {
    font-size: 1.375rem;
  }
}

.top-feature-number {
  font-size: 1.125rem;
  font-weight: 600;
}

/*!
page > top > top-interview
------------------------------
*/
.top-interview-kv {
  background-image: url("../../../img/top-interview-kv-sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 320px;
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .top-interview-kv {
    background-image: url("../../../img/top-interview-kv.jpg");
    height: 470px;
    margin-top: 160px;
  }
}

.top-interview {
  position: relative;
  overflow-x: clip;
}

.top-interview-bg-text {
  display: block;
  font-size: 10rem;
  font-family: var(--font-family-fv);
  background: var(--color-bg-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  rotate: -2deg;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-interview-bg-text {
    font-size: 20rem;
    rotate: -8.7deg;
  }
}

.top-interview-container {
  background: var(--color-bg-base);
  margin: -50px 0 0;
}

.top-interview-inner {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .top-interview-inner {
    padding: 120px 0;
  }
}

.top-interview-title {
  width: 100%;
  max-width: 195px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-interview-title {
    max-width: 280px;
  }
}

.top-interview-body {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 40px;
}
@media screen and (min-width: 1110px) {
  .top-interview-body {
    flex-direction: row;
  }
}

.top-interview-body p {
  background: var(--color-bg-base);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 3px 8px;
}

.top-interview-nurse,
.top-interview-clerk {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 10;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-interview-nurse,
.top-interview-clerk {
    max-width: 524px;
  }
}

@media screen and (min-width: 768px) {
  .top-interview-clerk {
    padding-top: 56px;
  }
}

.top-interview-nurse-wrapper,
.top-interview-clerk-wrapper {
  position: relative;
}

.top-interview-nurse--text,
.top-interview-clerk--text {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  bottom: 16px;
  left: 16px;
}
@media screen and (min-width: 768px) {
  .top-interview-nurse--text,
.top-interview-clerk--text {
    bottom: 24px;
    left: 24px;
  }
}

.top-interview-text p {
  background: var(--color-bg-base);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 3px 8px;
}
/*# sourceMappingURL=style.css.map */