@charset "utf-8";
/*! Oreset.css v1.0.0 | MIT License | https://github.com/hirosiva/Oreset.css */ /*

# Global
---------------------------------------------- */

/*
  Default box-sizing
 */
*,
::before,
::after {
  box-sizing: inherit;
}

/**
 * Resetting margins, paddings, and borders
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
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,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  border: 0;
}

/**
 * Resetting HTML5 Elements for older browsers
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/*
  # Document & Sections
---------------------------------------------- */
html {
  box-sizing: border-box;
  min-height: 100%;
  overflow-y: scroll;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  min-height: 100%;
  font-family: $font-set-primary;
  font-weight: 400;
  font-feature-settings: "palt";
  color: $primary-text-color;
  letter-spacing: 0;
  background-color: $base-color;
  text-rendering: optimizelegibility;
  -webkit-overflow-scrolling: touch;
}

/*
  # Grouping content
---------------------------------------------- */
blockquote,
q {
  quotes: none;
}

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

hr {
  overflow: visible;
}

ol,
ul {
  list-style: none;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

/*
  # Text-level semantics
---------------------------------------------- */
a {
  color: inherit;
  text-decoration: none !important;
  background-color: transparent;
  text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgb(0 0 0 / 0%);
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  text-decoration: underline dotted;
  text-decoration: underline;
  border-bottom: none;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  color: #000;
  background-color: #ff0;
}

small {
  font-size: 0.8em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  # Embedded content
---------------------------------------------- */
audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

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

svg:not([fill]) {
  fill: currentcolor;
}

svg:not(:root) {
  overflow: hidden;
}

/*
  # Tabular data
---------------------------------------------- */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
}

button,
select {
  text-transform: none;
}

button,
input {
  overflow: visible;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  padding: 0;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: none;
}

legend {
  display: table;
  max-width: 100%;
  color: inherit;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

[type="search"] {
  appearance: textfield;
  outline-offset: -2px;
}

::-webkit-file-upload-button {
  font: inherit;
  appearance: button;
}

/*
  # Interactive & Misc
---------------------------------------------- */
summary {
  display: list-item;
}

template,
[hidden] {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
[disabled],
[aria-disabled="true"] {
  cursor: not-allowed;
}

[aria-busy="true"] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:focus:not(:focus-visible),
::before:focus:not(:focus-visible),
::after:focus:not(:focus-visible) {
  outline: none;
}

/**
 * Prettier ignore
 */

/*
  Base
----------------------------------------------------- */
:root {
  --main-color: #47b885;
  --sub-color: #ff9d84;
  --bg-color: #fffff0;
  --text-color: #343434;
  --text-subcolor: #ff886a;
  --font-wght-bold: 500;
  --font-wght-light: 400;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: var(--font-wght-bold);
  font-feature-settings: "palt";
  line-height: 1.6;
  color: var(--text-color);
}

p,
li {
  letter-spacing: 0.06em;
}

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

iframe {
  max-width: 100%;
}

/*
ドロワータップ時の背景固定
*/
.is-fixed {
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

/*
  Container
----------------------------------------------------- */
.container {
  position: relative;
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 840px;
}

/*
  Button
----------------------------------------------------- */
.button {
  position: relative;
  display: block;
  max-width: 240px;
  padding: 0.5em 2em 0.5em 1.5em;
  margin: 0 auto;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background: var(--main-color);
  border-radius: 100px;
  transition: 0.2s ease;
}

.button::before {
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  content: "";
  background-color: #fff;
  border-radius: 8px;
}

.button.pink {
  background-color: var(--sub-color);
}

.button.border {
  color: var(--main-color);
  background-color: #fff;
  border: 2px solid var(--main-color);
}

.button.border::before {
  background-color: var(--main-color);
}

a.button:hover {
  opacity: 0.7;
  transition: 0.2s ease;
}

/*
  Header
----------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 16px;
  margin: 0 auto;
  background-color: #fff;
}

.header_logo {
  display: block;
  width: 240px;
}

.header_logo a {
  display: flex;
}

/*
  Navigation
----------------------------------------------------- */
.globvalNav {
  padding: 4rem 2rem;
  font-size: 18px;
  transition: 0.2s ease-in-out;
}

.globvalNav_inner {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  color: #fff;
}

.globvalNav_item a {
  transition: 0.2s ease-in-out;
}

.is-drawerActive .globvalNav {
  visibility: visible;
  opacity: 1;
  transition: 0.2s ease-in-out;
}

/*
  HamburgerButton
----------------------------------------------------- */
.hamburgerButton {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 150;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--main-color);
  border-radius: 100%;
  outline: 0;
  transition: 0.8s ease-in-out;
}

.hamburgerButton .hamburgerButton_line {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  transition: transform 0.2s ease-in-out;
}

.hamburgerButton .hamburgerButton_line::before,
.hamburgerButton .hamburgerButton_line::after {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 100%;
  margin: 0 auto;
  content: "";
  background-color: #fff;
  border-radius: inherit;
  border-radius: 10px;
  transition: inherit;
  transition: transform 0.2s ease-in-out;
  transform-origin: center;
}

.hamburgerButton .hamburgerButton_line::before {
  top: -4px;
}

.hamburgerButton .hamburgerButton_line::after {
  top: 4px;
}

.hamburgerButton .hamburgerButton_line span {
  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
  display: block;
  width: 100%;
  font-size: 10px;
  color: #fff;
}

.is-drawerActive .hamburgerButton {
  transition: 0.2s ease-in-out;
}

:is(.is-drawerActive .hamburgerButton) .hamburgerButton_line {
  transition: transform 0.2s ease-in-out;
}

:is(:is(.is-drawerActive .hamburgerButton) .hamburgerButton_line)::before,
:is(:is(.is-drawerActive .hamburgerButton) .hamburgerButton_line)::after {
  top: 0;
  transition: transform 0.2s ease-in-out;
  transform-origin: center;
}

:is(:is(.is-drawerActive .hamburgerButton) .hamburgerButton_line)::before {
  transform: rotate(-45deg);
}

:is(:is(.is-drawerActive .hamburgerButton) .hamburgerButton_line)::after {
  transform: rotate(45deg);
}

/*
  Main
----------------------------------------------------- */
.main {
  /* padding-top: 64px; */
  padding-top: 90px;
}

.main.under {
  padding-top: 80px;
}

/*
  SectionWrapper
----------------------------------------------------- */
.sectionWrapper {
  padding-top: 5rem;
}

.sectionWrapper.bottom {
  padding-bottom: 6rem;
}

.sectionWrapper.bottomOnly {
  padding-top: 0;
  padding-bottom: 6rem;
}

/*
  SectionTitle
----------------------------------------------------- */
.sectionTitle {
  position: relative;
  padding-bottom: 1.5em;
  margin-bottom: 3rem;
  font-size: 20px;
  color: var(--main-color);
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.sectionTitle::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 12px;
  margin: 0 auto;
  content: "";
  background: url("../img/heading_deco-0lVL4R5x.svg") no-repeat center center/contain;
}

/*
  Footer
----------------------------------------------------- */
#footer {
  padding: 3rem 0;
  margin-top: 4rem;
  background-color: #7bc2a1;
}

#footer .fotter_inner {
  display: grid;
}

#footer .footer_logo {
  display: block;
  grid-area: logo;
}

#footer .footer_info {
  grid-area: info;
  margin-top: 1rem;
  font-size: 12px;
  color: #fff;
}

#footer .footer_nav {
  grid-area: nav;
  color: #fff;
  text-align: center;
}

#footer .footer_copyright {
  margin-top: 2rem;
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/*
  table
----------------------------------------------------- */

.table_info {
  display: flex;
  flex-wrap: wrap;
  max-width: 680px;
  margin: 3rem auto 0;
}

.table_info dt {
  width: 100%;
  background-color: #47b88511;
  color: var(--main-color);
}

.table_info dd {
  width: 100%;
}

.table_info dt,
.table_info dd {
  padding: 0.75em 1em;
}

.table_info_list p {
  margin-top: 1em;
}

.table_info_list.disc {
  text-indent: -1em;
  padding-left: 1em;
}

.table_info_list.number {
  list-style: decimal;
  margin-left: 1em;
}

@media (width >= 1000px) {
  .table_info {
    max-width: none;
  }

  .table_info dt {
    width: 12em;
  }

  .table_info dd {
    width: calc(100% - 12em);
  }

  .table_info dt,
  .table_info dd {
    border-bottom: 1px solid #c6c6c6;
  }

  .table_info dt:first-of-type,
  .table_info dd:first-of-type {
    border-top: 1px solid #c6c6c6;
  }
}

/*
  Utility
----------------------------------------------------- */
.pcOnly {
  display: none;
}

.bg-color {
  background-color: var(--bg-color);
}

.bg-gray {
  background-color: #f9f9f9;
}

.bg-color.round-bottom {
  position: relative;
  padding-bottom: 12rem;
  overflow: hidden;
}

.bg-color.round-bottom::before,
.bg-color.round-bottom::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 15rem;
  content: "";
}

.bg-color.round-bottom::before {
  background: #fff;
}

.bg-color.round-bottom::after {
  padding-right: 200px;
  padding-left: 200px;
  margin-right: -200px;
  margin-left: -200px;
  background: var(--bg-color);
  border-bottom-right-radius: 50% 100%;
  border-bottom-left-radius: 50% 100%;
}

.text-block {
  display: inline-block;
}

.text-right {
  text-align: right;
}

.link {
  color: var(--main-color);
  cursor: pointer;
  border-bottom: 1px solid var(--main-color);
}

.caution {
  font-style: normal;
  color: #ed1c24;
}

.marker {
  display: inline;
  padding: 0 0.25em;
  line-height: 2;
  background: linear-gradient(transparent 50%, #ffee5058 0%);
}

.pt-1 {
  padding-top: 1em;
}

.mt-1 {
  margin-top: 1em;
}

/*
  Accessibility
----------------------------------------------------- */

/*
  Visually Hidden
*/
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/*
  MV
----------------------------------------------------- */
.mv {
  position: relative;
  width: 100%;
}

.mv::before,
.mv::after {
  position: absolute;
  z-index: 1;
  content: "";
}

.mv::before {
  top: 0;
  left: 2vw;
  width: 24vw;
  height: 24vw;
  background: url("../img/mv_deco_2-BvdDoNUf.svg") no-repeat center center/cover;
  z-index: 2;
}

.mv::after {
  top: 80vw;
  right: 0;
  width: 15vw;
  height: 15vw;
  background: url("../img/mv_deco_3-rBSRcx0l.svg") no-repeat center center/cover;
  z-index: 2;
}

.mv_slides {
  position: relative;
  display: block;
  width: 90%;
  margin: 0 auto;
}

.mv_slides img {
  width: 100%;
}

.mv_slides::before {
  position: absolute;
  bottom: -2vw;
  left: -8vw;
  display: block;
  width: 45vw;
  height: 30vw;
  content: "";
  background: url("../img/mv_deco_1-UhXawLaC.svg") no-repeat center center/contain;
  z-index: 2;
}

.mv_copy {
  position: absolute;
  top: 106vw;
  left: 5vw;
  width: 85%;
  z-index: 2;
}

.recruitBanner {
  z-index: 2;
}

.recruitBanner_inner {
  padding: 1rem;
  margin: 2rem 1rem 0;
  background: rgb(255 255 255 / 85%);
  border: 3px solid var(--sub-color);
  border-radius: 24px;
}

.recruitBanner_heading {
  position: relative;
  padding-bottom: 1rem;
  font-size: 18px;
  color: var(--text-subcolor);
  text-align: center;
}

.recruitBanner_heading::after {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: url("../img/dot-pink-BXi5tKgw.svg") repeat center center/contain;
}

.recruitBanner_text {
  font-size: 16px;
  font-weight: var(--font-wght-light);
  text-align: center;
}

.recruitBanner .button {
  margin-top: 1rem;
}

/*
  About
----------------------------------------------------- */
#about .about-text {
  margin: 2rem auto;
  font-size: 14px;
  line-height: 2;
}

#about .about-text:last-child {
  margin-bottom: 0;
}

:is(#about .about-text) > em {
  font-style: normal;
  font-weight: var(--font-wght-bold);
  color: var(--main-color);
}

/*
  NEWS
----------------------------------------------------- */
.newsList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.newsList_header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.newsList_header .button {
  margin-right: 0;
}

:is(.newsList_header .button)::before {
  width: 6px;
  height: 6px;
}

.newsList_sectionTitle {
  position: relative;
  width: calc(100% - 200px);
  padding-left: 14px;
  font-size: 20px;
  color: var(--main-color);
}

.newsList_sectionTitle::before {
  position: absolute;
  top: 0;
  bottom: -0.2em;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto 0;
  content: "";
  background: url("../img/dot-orange-Dok7MMRp.svg") no-repeat center center/contain;
}

.newsList_sectionTitle::after {
  position: absolute;
  inset: 0 0 -0.2em 5.6em;
  width: calc(100% - 140px);
  height: 4px;
  margin: auto 0;
  content: "";
  background: url("../img/dot-green-D4dlh1rl.svg") repeat center center/contain;
}

.newsList_item {
  display: flex;
  flex-direction: column-reverse;
}

.newsList_item time {
  font-size: 14px;
  color: var(--main-color);
}

.newsList_item .title {
  font-size: 16px;
  font-weight: 500;
}

.newsList_item .thumbnail {
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  margin-bottom: 0.5em;
}

:is(.newsList_item .thumbnail) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsList + .button {
  margin-top: 2rem;
}

/*
  Philosophy
----------------------------------------------------- */

#philosophy {
  padding-top: 0;
  overflow: hidden;
}

#philosophy .philosophy_titleWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 15rem;
  padding-right: 200px;
  padding-bottom: 1rem;
  padding-left: 200px;
  margin-top: -4rem;
  margin-right: -200px;
  margin-left: -200px;
  background: #fff;
  border-bottom-right-radius: 50% 100%;
  border-bottom-left-radius: 50% 100%;
}

:is(#philosophy .philosophy_titleWrap) .sectionTitle {
  margin-bottom: 0;
}

:is(#philosophy .philosophy_titleWrap) .sectionTitle::after {
  display: none;
}

#philosophy > .container {
  padding-top: 2rem;
}

#philosophy .philosophy_heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color);
}

:is(#philosophy .philosophy_heading) li {
  display: inline-block;
  margin: 0.5rem auto;
}

#philosophy .philosophy_flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  margin-top: 2rem;
}

#philosophy .philosophy_img {
  width: 90%;
  margin: 0 auto;
}

:is(#philosophy .philosophy_text) > p {
  padding-bottom: 2em;
}

#philosophy .philosophy_box {
  padding: 0 2em 2em;
  margin-top: 2rem;
  background: #fff;
  border: 3px solid var(--sub-color);
  border-radius: 24px;
}

:is(#philosophy .philosophy_box) .philosophy_box_title {
  display: inline-block;
  padding: 0.25em 1em;
  margin-bottom: -1em;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: var(--sub-color);
  border-radius: 3em;
  transform: translateY(-50%);
}

:is(#philosophy .philosophy_box) li {
  line-height: 2;
  color: var(--text-subcolor);
}

/*
  Support
----------------------------------------------------- */
#support {
  margin-bottom: -4rem;
}

#support .support_boxWrap {
  display: flex;
  flex-flow: column wrap;
  gap: 32px;
  justify-content: center;
}

#support .support_box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 320px;
  aspect-ratio: 317/160;
  padding: 1.25em;
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
}

:is(#support .support_box)::before {
  position: absolute;
  top: 0.5em;
  right: -0.75em;
  left: 0.75em;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  border-radius: 24px;
}

:is(#support .support_box)::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../img/border_box-BTA3sEUu.svg") no-repeat center center/contain;
}

#support .support_box_number {
  position: absolute;
  top: -30%;
  left: 11%;
  width: 25%;
}

/*
  Guide
----------------------------------------------------- */
#guide {
  overflow: hidden;
}

#guide .guideBox {
  position: relative;
  margin-top: 7rem;
  border-bottom: 2px solid var(--main-color);
  border-left: 2px solid var(--main-color);
  border-bottom-left-radius: 24px;
}

:is(#guide .guideBox):nth-of-type(2)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  content: "";
  background: url("../img/deco_2-BK3UeJ7g.svg") no-repeat center center/contain;
  transform: translate(-120%, 50%);
}

#guide .guideBox_title {
  position: absolute;
  top: -1.75rem;
  left: -0.5rem;
  display: inline-block;
  width: 10em;
  padding: 0.25em 1em;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  background: var(--main-color);
  border-radius: 100px;
}

#guide .guideBox_inner {
  padding: 1.5em;
  font-size: 14px;
}

:is(#guide .guideBox_inner) > li {
  margin-left: 1em;
  list-style: disc;
}

:is(:is(#guide .guideBox_inner) > li) .caution {
  color: var(--sub-color);
}

:is(#guide .guideBox_inner) small {
  font-size: 12px;
}

#guide .guide_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  transform: translate(0, -100%);
}

:is(#guide .guide_img)::before {
  position: absolute;
  top: 0;
  right: -100px;
  width: 80px;
  height: 80px;
  content: "";
  background: url("../img/deco_1-Xg05_dNE.svg") no-repeat center center/contain;
}

#guide .certificate {
  margin-top: 3rem;
}

:is(#guide .certificate) .certificate_title {
  position: relative;
  top: 0.75em;
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
  letter-spacing: 0.1em;
}

:is(#guide .certificate) .certificate_inner {
  padding: 1.5rem;
  background: var(--bg-color);
  border-radius: 24px;
}

:is(#guide .certificate) .certificate_img {
  width: 160px;
}

:is(:is(#guide .certificate) .certificate_text) em {
  color: var(--main-color);
}

:is(:is(#guide .certificate) .certificate_text) p + p {
  margin-top: 1rem;
}

:is(:is(#guide .certificate) .certificate_text) small {
  font-weight: 500;
}

#guide .guide_message {
  margin-top: 2rem;
  font-size: 14px;
}

/*
  Recruit
----------------------------------------------------- */

#recruit .recruit_wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 3rem;
}

#recruit .recruit_img {
  position: relative;
}

:is(#recruit .recruit_img)::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 30%;
  content: "";
  background: url("../img/deco_leaf-Buh__hQC.svg") no-repeat center center/contain;
  transform: translate(-40%, 30%) scale(-1, 1);
}

#recruit .recruit_heading {
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
}

:is(#recruit .recruit_heading) em {
  font-style: normal;
  color: var(--sub-color);
}

#recruit .recruit_text + .recruit_text {
  margin-top: 1em;
}

#recruit .button {
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
}

#recruit_under .sectionTitle + p {
  margin-top: 1rem;
  margin-bottom: 3rem;
  color: var(--main-color);
}

.recruitDetail dl {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1em 0;
}

:is(.recruitDetail dl)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: url("../img/dot-green-D4dlh1rl.svg") repeat center center/contain;
}

.recruitDetail dt {
  font-size: 16px;
  color: var(--main-color);
}

.recruitDetail dd {
  display: block;
  font-size: 14px;
}

.recruitDetail ul + p {
  margin-top: 1rem;
}

.recruitDetail li {
  line-height: 1.7;
}

.recruitDetail .list-number {
  padding-left: 1em;
  list-style: number;
}

.recruitDetail .list-dics {
  padding-left: 1em;
  list-style: disc;
}

/*
  Contact
----------------------------------------------------- */
#contact .formWrap {
  padding: 2rem 1.5rem;
  margin-top: 3rem;
  background-color: var(--bg-color);
  border-radius: 24px;
}

:is(#contact .input-item) label {
  width: 10em;
  padding: 0.25em;
  line-height: 1.8;
  color: var(--main-color);
}

:is(#contact .input-item) input[type="text"],
:is(#contact .input-item) input[type="tel"],
:is(#contact .input-item) input[type="email"],
:is(#contact .input-item) textarea {
  width: 100%;
  padding: 0.25em;
  border: 2px solid var(--main-color);
  border-radius: 4px;
}

:is(#contact .input-item) textarea {
  height: 6em;
}

#contact .input-item + .input-item {
  margin-top: 1rem;
}

#contact .input-item.checkbox {
  justify-content: center;
  margin-top: 2rem;
}

:is(#contact .input-item.checkbox) label {
  width: auto;
  color: var(--text-color);
}

:is(#contact .input-item.checkbox) a {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

#contact .button {
  width: 100%;
  max-width: 240px;
  margin-top: 3rem;
}

#contact .input-item.checkbox p {
  display: block;
  text-align: center;
}

#contact .input-item.checkbox p > span {
  margin-left: -4rem;
}

#contact .input-item.checkbox p > span input[type="checkbox"] {
  margin-right: 0.25em;
}

#contact .screen-reader-response {
  display: none;
}

#contact .wpcf7-not-valid-tip {
  display: block;
  font-size: 14px;
  color: #e97b7b;
}

#contact .wpcf7-response-output {
  margin-top: 1rem;
  font-size: 14px;
  color: #e97b7b;
}

/*
  Access
----------------------------------------------------- */
#access {
  --left-space: calc(100% - 1000px) / 2;
}

#access .access-map {
  height: 40vw;
}

:is(#access .access-map) iframe {
  width: 100%;
  height: 100%;
}

#access .access-text {
  margin-top: 1rem;
}

/*
  Post
----------------------------------------------------- */
#post {
  .post_title {
    color: var(--main-color);
    padding-bottom: 0.25em;
    border-bottom: 2px solid var(--main-color);
    font-weight: 500;
  }

  .post-date {
    margin-top: 1em;
  }

  .post_content {
    margin-top: 2rem;
  }

  p,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 500px;
    margin-top: 1em;
  }
}

#post + .button {
  margin-top: 4rem;
}

/*
  Privacy Poriicy
----------------------------------------------------- */
#privacy {
  font-weight: 500;

  section {
    margin-top: 3rem;
  }

  h3 {
    margin-bottom: 0.5rem;
    padding-bottom: 0.25em;
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
    font-weight: 500;
  }

  h4 {
    color: var(--main-color);
  }

  table.cookie {
    margin-top: 16px;
    border: 1px solid #3b2926;
    border-bottom: none;
  }

  table.cookie th {
    padding: 4px 12px;
    border-right: 1px solid #3b2926;
    border-bottom: 1px solid #3b2926;
    font-weight: 500;
  }

  table.cookie td {
    padding: 4px 12px;
    border-bottom: 1px solid #3b2926;
  }

  .button {
    margin-top: 1rem;
    margin-left: 0;
  }
}

/*
  Facility
----------------------------------------------------- */
.facility_360show {
  background: rgb(210, 210, 210);
  /* height: 60vw; */
  height: 350px;
}

.facility_360buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.facility_360buttons button {
  width: 11em;
  padding: 0.5em 1em;
  font-size: 12px;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 100px;
}

.facility_360buttons button.active {
  background: var(--main-color);
  color: #fff;
}

.facility_images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.facility_images p {
  width: calc((100% - 0.5rem) / 2);
}

.facility_images p:nth-child(2) {
  order: 2;
  width: 100%;
}

 .facility_360buttons button {
  cursor: pointer;
  padding: 10px 5px;
  margin: 5px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 40px;
}

.facility_360buttons button.active {
  background-color: #4CAF50;
  color: white;
}

.facility_360show div {
  display: none;
}

.facility_360show div.active {
  display: block;
  height: 90px;
  
  
}

@media (width >= 640px) {
  .facility_images {
    flex-wrap: nowrap;
    margin-top: 6rem;
  }

  .facility_images p:nth-child(1) {
    order: 1;
    width: auto;
  }
  .facility_images p:nth-child(2) {
    order: 2;
    width: auto;
  }
  .facility_images p:nth-child(3) {
    order: 3;
    width: auto;
  }
}

@media (width >= 1000px) {
  .facility_360show {
    /* height: 35vw; */
    height: 650px;
  }
  
  .facility_360show div.active {
    display: block;
    height: 163px;
    
    
  }

  .facility_360buttons {
    gap: 1rem;
  }

  .facility_360buttons button {
    font-size: 16px;
  }

  .facility_info {
    max-width: none;
  }

  .facility_info dt {
    width: 12em;
  }

  .facility_info dd {
    width: calc(100% - 12em);
  }

  .facility_info dt,
  .facility_info dd {
    border-bottom: 1px solid #c6c6c6;
  }

  .facility_info dt:first-of-type,
  .facility_info dd:first-of-type {
    border-top: 1px solid #c6c6c6;
  }
}

.guide_box {
  max-width: 680px;
  margin: 3rem auto 0;
  position: relative;
  padding: 2rem 1rem 1rem;
  border: 2px solid var(--main-color);
  border-radius: 24px;
}

.guide_box_title {
  position: absolute;
  width: 10em;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  padding: 0.5em 2em;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  text-align: center;
  font-size: 16px;
}

#fee .sectionTitle {
  color: var(--text-subcolor);
  margin-bottom: 0;
}

#fee .sectionTitle::after {
  display: none;
}

.fee_about {
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
}

.fee_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  flex-direction: column-reverse;
}

.fee_table {
  max-width: 480px;
  text-align: center;
  margin: 0 auto;
}

.fee_image {
  max-width: 480px;
  margin: 0 auto;
}

.fee_table_title {
  padding: 0.25em 0;
  background-color: var(--sub-color);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.fee_table_strong {
  padding: 0.5em 0;
  font-size: 150%;
  color: var(--sub-color);
}

.fee_table_example {
  line-height: 1.3;
  text-align: left;
  margin-top: 1em;
}

@media (width >= 1000px) {
  .fee_flex {
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
  }

  .fee_table {
    width: calc((100% - 4rem) / 2);
    font-size: 18px;
  }

  .fee_image {
    width: calc((100% - 4rem) / 2);
  }

  .fee_table_title {
    font-size: 24px;
  }

  .fee_table_strong {
    font-size: 32px;
  }
}

.flow_wrapper {
  max-width: 600px;
  margin: 3rem auto 0;
  padding-left: 0.5rem;
}

.flow_item {
  position: relative;
  margin-top: 2rem;
  padding: 1rem;
  border: 2px solid var(--main-color);
  border-radius: 24px;
}

.flow_number {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  font-size: 28px;
  transform: translate(-20%, -20%);
}

.flow_number span {
  display: block;
  line-height: 1;
}

.flow_number span:first-child {
  font-size: 40%;
  line-height: 1.25;
}

.flow_title {
  padding-left: 1em;
  font-size: 20px;
  text-align: center;
  margin-bottom: 0.5em;
  color: var(--main-color);
}

@media (width >= 1000px) {
  .flow_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: none;
    margin-top: 3rem;
    padding-left: 0;
  }

  .flow_item {
    width: calc((100% - 4rem) / 3);
    margin-top: 0;
  }

  .flow_number {
    font-size: 32px;
  }

  .flow_title {
    font-size: 24px;
  }
}

.schedule_wrapper {
  display: flex;
  flex-direction: column-reverse;
}

.schedule_timeline {
  margin-top: 2rem;
}

.schedule_timeline dl {
  display: flex;
  flex-wrap: nowrap;
  max-width: 25em;
  margin: 0 auto;
  padding: 1em;
  border-bottom: 2px dotted var(--main-color);
  font-size: 16px;
}

.schedule_timeline dt {
  width: 4em;
}

.schedule_timeline dd {
  width: 100%;
}

.schedule_image {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
}

@media (width >= 1000px) {
  .schedule_wrapper {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .schedule_image {
    width: 100%;
    min-width: none;
  }

  .schedule_timeline {
    width: 40%;
    margin-top: 0;
  }

  .schedule_timeline dl {
    max-width: none;
  }
}

.event_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.event_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 45%;
  text-align: center;
  font-size: 16px;
}

.event_item_image {
  max-width: 180px;
}

@media (width >= 1000px) {
  .event_wrapper {
    flex-direction: row;
    gap: 4rem;
  }

  .event_item {
    width: 180px;
    font-size: 18px;
  }
}

.calendar-item {
  text-align: center;
}

#calendar + #access {
  padding-top: 0;
}

/*
  Program
----------------------------------------------------- */
#program {
  --area-color--pink: #ff8f8f;
  --area-color--pink-light: #ffd8d8;
  --area-color--green: #47b885;
  --area-color--green-light: #def6dd;
  --area-color--yellow: #fed775;
  --area-color--yellow-light: #fff7ce;
  --area-color--orange: #eda024;
  --area-color--purple: #ae92db;
  --area-color--purple-light: #f4edff;
  --area-color--blue: #73cbf8;
  --area-color--blue-light: #dff4ff;
}

#program .bg-color {
  margin-top: 5rem;
}

.program_heading p {
  margin-bottom: 2rem;
}

.area_image {
  width: 100%;
  max-width: 540px;
  margin: 3rem auto;
}

.area_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.area_item {
  width: 100%;
  padding: 20px 16px;
  border-radius: 20px;
  border: 2px solid var(--area-color--pink);
  background-color: #fff;
}

.area_item[data-color="green"] {
  border-color: var(--main-color);
}
.area_item[data-color="yellow"] {
  border-color: var(--area-color--yellow);
}
.area_item[data-color="purple"] {
  border-color: var(--area-color--purple);
}
.area_item[data-color="blue"] {
  border-color: var(--area-color--blue);
}

.area_item .area_item_heading {
  text-align: center;
  font-size: 18px;
}

.area_item .area_item_heading span {
  position: relative;
  display: block;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  color: var(--area-color--pink);
  letter-spacing: 0.1em;
  font-size: 16px;
}

.area_item[data-color="green"] .area_item_heading span {
  color: var(--main-color);
}
.area_item[data-color="yellow"] .area_item_heading span {
  color: var(--area-color--yellow);
}
.area_item[data-color="purple"] .area_item_heading span {
  color: var(--area-color--purple);
}
.area_item[data-color="blue"] .area_item_heading span {
  color: var(--area-color--blue);
}

.area_item .area_item_heading span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 1em;
  height: 2px;
  margin: 0 auto;
  border-radius: 100px;
  background: var(--area-color--pink);
}

.area_item[data-color="green"] .area_item_heading span::before {
  background-color: var(--main-color);
}
.area_item[data-color="yellow"] .area_item_heading span::before {
  background-color: var(--area-color--yellow);
}
.area_item[data-color="purple"] .area_item_heading span::before {
  background-color: var(--area-color--purple);
}
.area_item[data-color="blue"] .area_item_heading span::before {
  background-color: var(--area-color--blue);
}

.area_item_text {
  margin-top: 0.5em;
}

@media (width >= 640px) {
  #program .bg-color {
    margin-top: 8rem;
  }
  .area_items {
    gap: 1.5rem;
    margin-top: 6rem;
  }
  .area_item {
    width: 250px;
    padding: 1rem;
  }
  .area_item .area_item_heading {
    font-size: 20px;
  }
  .area_item .area_item_heading span {
    margin-bottom: 1em;
  }
  .area_item_text {
    margin-top: 1em;
  }
}

@media (width >= 1000px) {
  .area_item:nth-of-type(4) {
    width: 340px;
  }
}

.programSupport_heading {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--main-color);
}

.programSupport_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.programSupport_item {
  position: relative;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border-radius: 30px;
  background-color: var(--area-color--pink-light);
}

.programSupport_item[data-color="green"] {
  background-color: var(--area-color--green-light);
}
.programSupport_item[data-color="yellow"] {
  background-color: var(--area-color--yellow-light);
}
.programSupport_item[data-color="purple"] {
  background-color: var(--area-color--purple-light);
}
.programSupport_item[data-color="blue"] {
  background-color: var(--area-color--blue-light);
}

.programSupport_item_title {
  position: relative;
  width: 8em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.programSupport_item_title span {
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--area-color--pink);
  border-radius: 100%;
}

.programSupport_item[data-color="green"] .programSupport_item_title span {
  color: var(--main-color);
}
.programSupport_item[data-color="yellow"] .programSupport_item_title span {
  color: var(--area-color--orange);
}
.programSupport_item[data-color="purple"] .programSupport_item_title span {
  color: var(--area-color--purple);
}
.programSupport_item[data-color="blue"] .programSupport_item_title span {
  color: var(--area-color--blue);
}

.programSupport_item_list {
  width: calc(100% - 8em);
}

.programSupport_item_list li {
  position: relative;
  padding-left: 0.75em;
}

.programSupport_item_list li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  width: 3px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 100%;
}

.programSupport_item:nth-of-type(4) .programSupport_item_title {
  padding-top: 1em;
}

@media (width >= 640px) {
  .programSupport_item {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (width >= 1000px) {
  .programSupport_heading {
    font-size: 32px;
  }

  .programSupport_item {
    gap: 1rem;
    width: 350px;
    max-width: none;
    margin: 0;
    padding: 1.5rem;
  }

  .programSupport_item.wide {
    width: 500px;
  }
}

.playingProgram_text {
  margin: 1rem;
  font-size: 12px;
  text-align: center;
}

.playingProgram_bottomText {
  margin-top: 3rem;
  color: var(--main-color);
  font-weight: 700;
}

.playingProgram_item {
  position: relative;
  margin-top: 2rem;
  padding: 3rem 1rem 1rem;
  border-radius: 30px;
  border: 2px solid var(--main-color);
}

.playingProgram_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.15rem 1rem;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 27px 27px 0 0;
  letter-spacing: 0.1em;
  text-align: center;
}

.playingProgram_item_heading {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 2;
  font-weight: 700;
  border-bottom: 2px solid var(--main-color);
}

.playingProgram_item dd {
  font-size: 12px;
}

@media (width >= 640px) {
  .playingProgram_text,
  .playingProgram_bottomText {
    text-align: center;
    font-size: 16px;
  }

  .playingProgram_top {
    display: flex;
    gap: 2rem;
  }

  .playingProgram_bottom {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
  }

  .playingProgram_item {
    margin-top: 4rem;
    padding: 5rem 2rem 2rem;
  }

  .playingProgram_title {
    padding: 0.3rem 2rem;
    font-size: 28px;
  }

  .playingProgram_item_image {
    width: calc((100% - 2rem) / 2);
  }

  .playingProgram_item_purpose {
    width: calc((100% - 2rem) / 2);
  }

  .playingProgram_item_notion {
    width: calc((100% - 2rem) * 0.7);
  }

  .playingProgram_item_specific {
    width: calc((100% - 2rem) * 0.3);
  }

  .playingProgram_item dd {
    font-size: 16px;
  }
}

/*
  Program
----------------------------------------------------- */

.greeting_textWrapper p {
  margin-top: 1em;
}

.greeting_portrait {
  width: 80%;
  max-width: 300px;
  margin: 2rem auto;
}

.greeting_reason_heading {
  font-size: 20px;
  text-align: center;
  color: var(--main-color);
  font-weight: 700;
  line-height: 2;
  border-bottom: 2px solid var(--main-color);
}

.greeting_textWrapper + .text-right {
  margin-top: 2rem;
}

@media (width >= 640px) {
  .greeting_reason_heading {
    margin-bottom: 1em;
    font-size: 28px;
  }
}

@media (width >= 1000px) {
  .greeting_wrapper {
    display: flex;
    gap: 3rem;
  }

  .greeting_portrait {
    width: 300px;
    margin: 0;
    flex-shrink: 0;
  }
}

/*
  Media Queries width >= 640px
----------------------------------------------------- */
@media (width >= 640px) {
  .header {
    height: 140px;
    padding: 0 32px;
  }

  .header_logo {
    width: 400px;
  }

  .globvalNav {
    padding-top: 6rem;
    font-size: 20px;
  }

  .hamburgerButton {
    top: 14px;
    right: 14px;
    width: 64px;
    height: 64px;
  }

  .hamburgerButton .hamburgerButton_line {
    height: 3px;
  }

  .hamburgerButton .hamburgerButton_line::before,
  .hamburgerButton .hamburgerButton_line::after {
    width: 34px;
  }

  .hamburgerButton .hamburgerButton_line::before {
    top: -7px;
  }

  .hamburgerButton .hamburgerButton_line::after {
    top: 7px;
  }

  .main {
    min-height: 70svh;
    padding-top: 100px;
  }

  .main.under {
    padding-top: 180px;
  }

  .container {
    width: calc(100% - 128px);
  }

  .sectionTitle {
    font-size: 28px;
  }

  .text-block.tab {
    display: inline-block;
  }

  .mv::before {
    top: 4vw;
    left: 4vw;
    width: 11vw;
    height: 11vw;
  }

  .mv::after {
    top: 15vw;
    right: 1vw;
    width: 7vw;
    height: 7vw;
  }

  .mv_slides {
    width: 90%;
    margin: 0 3% 0 7%;
  }

  .mv_slides::before {
    bottom: -2vw;
    left: -8vw;
    width: 30vw;
    height: 20vw;
  }

  .mv_copy {
    top: 30vw;
    left: 8vw;
    width: 65%;
  }

  .recruitBanner_inner {
    max-width: 500px;
    margin: 2rem auto 0;
  }

  .newsList {
    flex-direction: row;
    gap: 2rem;
  }

  .newsList_sectionTitle {
    padding-left: 20px;
    font-size: 28px;
  }

  .newsList_wrap {
    width: calc((100% - 64px) / 3);
  }

  #philosophy .philosophy_heading {
    font-size: 18px;
    text-align: center;
  }

  #support .support_boxWrap {
    flex-direction: row;
    margin: 0 auto;
  }

  #support .support_box {
    width: calc((100% - 32px) / 2);
    max-width: none;
  }

  :is(#guide .certificate) .certificate_inner {
    display: flex;
    gap: 2rem;
    padding: 3rem;
  }

  #guide .guide_message {
    font-size: 18px;
    text-align: center;
  }

  #recruit .recruit_wrap {
    flex-direction: row;
    gap: 64px;
    justify-content: space-between;
    margin-top: 4rem;
  }

  #recruit_under .sectionTitle + p {
    text-align: center;
  }

  .recruitDetail dl {
    flex-direction: row;
    padding: 2em 0;
  }

  .recruitDetail dt {
    width: 12em;
    font-size: 18px;
  }

  .recruitDetail dd {
    width: calc(100% - 12em);
    font-size: 16px;
  }

  #contact .input-item p {
    display: flex;
    gap: 1rem;
  }

  :is(#contact .input-item) input[type="text"],
  :is(#contact .input-item) input[type="tel"],
  :is(#contact .input-item) input[type="email"],
  :is(#contact .input-item) textarea {
    width: 20em;
  }

  :is(#contact .input-item) textarea {
    width: 30em;
    height: 10em;
  }

  #contact .wpcf7-response-output {
    text-align: center;
  }
}

/*
  Media Queries width >= 1000px
----------------------------------------------------- */
@media (width >= 1000px) {
  body {
    font-size: 16px;
  }

  .button {
    font-size: 16px;
  }

  .sectionWrapper {
    padding-top: 8rem;
  }

  .sectionWrapper.bottom {
    padding-bottom: 8rem;
  }

  .sectionWrapper.bottomOnly {
    padding-top: 0;
    padding-bottom: 8rem;
  }

  .sectionTitle {
    padding-bottom: 1em;
    margin-bottom: 4rem;
    font-size: 32px;
  }

  .sectionTitle::after {
    width: 84px;
  }

  #footer .fotter_inner {
    grid-template-areas:
      "logo nav"
      "info nav";
    column-gap: 3rem;
    align-items: center;
  }

  #footer .footer_logo {
    width: 380px;
  }

  #footer .footer_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5em;
    text-align: left;
  }

  .spOnly {
    display: none;
  }

  .tabOnly {
    display: none;
  }

  .pcOnly {
    display: block;
  }

  .bg-color.round-bottom {
    padding-bottom: 20rem;
  }

  .bg-color.round-bottom::before,
  .bg-color.round-bottom::after {
    height: 20rem;
  }

  .mv_copy {
    top: auto;
    bottom: 5vw;
    left: 8vw;
    width: 50%;
  }

  .recruitBanner {
    position: absolute;
    right: 0;
    bottom: -3vw;
    overflow: hidden;
  }

  .recruitBanner_inner {
    position: relative;
    right: -2vw;
    width: 40vw;
    padding: 1rem 4vw 2rem 2vw;
    margin: 0;
  }

  .recruitBanner_heading {
    font-size: 24px;
  }

  .recruitBanner_text {
    font-size: min(18px, 1.6vw);
  }

  #about .about-text {
    margin: 3rem auto;
    font-size: 20px;
    text-align: center;
  }

  #about .about-text:last-child {
    margin-bottom: 0;
  }

  .newsList_header {
    padding-bottom: 2rem;
  }

  .newsList_sectionTitle::before {
    width: 13px;
    height: 13px;
  }

  .newsList_item .title {
    font-size: 16px;
  }

  #philosophy .philosophy_titleWrap {
    height: 20rem;
  }

  #philosophy > .container {
    padding-top: 4rem;
  }

  #philosophy .philosophy_flex {
    flex-direction: row-reverse;
    gap: 4rem;
    justify-content: space-between;
    margin-top: 4rem;
  }

  #philosophy .philosophy_img {
    width: calc(50% - 4rem);
  }

  #philosophy .philosophy_text {
    width: 50%;
  }

  #support .support_boxWrap {
    width: 100%;
    margin-top: 4rem;
  }

  #support .support_box {
    width: calc((100% - 64px) / 3);
    margin-right: 0;
    margin-left: 0;
  }

  #support .support_box.large {
    width: calc(((100% - 64px) / 3 * 2 + 32px));
    aspect-ratio: 131/32;
  }

  :is(#support .support_box.large)::after {
    background: url("../img/border_box_large-SoDcMDIU.svg") no-repeat center center/contain;
  }

  :is(#support .support_box.large) .support_box_number {
    top: -30%;
    left: 6%;
    width: 12.5%;
  }

  #guide .guideBox {
    margin-left: 1rem;
  }

  :is(#guide .guideBox):nth-of-type(1) {
    width: 65%;
  }

  :is(#guide .guideBox):nth-of-type(2) {
    width: 80%;
    margin-right: 5%;
    margin-left: auto;
  }

  #guide .guideBox_title {
    top: -3rem;
    left: -1rem;
    font-size: 24px;
  }

  #guide .guideBox_inner {
    font-size: 18px;
  }

  :is(#guide .guideBox_inner) small {
    font-size: 16px;
  }

  #guide .guide_img {
    top: -20%;
    width: 35%;
    transform: translate(100%, -30%);
  }

  #guide .certificate {
    margin-top: 4rem;
  }

  :is(#guide .certificate) .certificate_title {
    font-size: 32px;
  }

  #guide .guide_message {
    margin-top: 3rem;
    font-size: 24px;
  }

  #recruit .recruit_heading {
    font-size: 24px;
  }

  #recruit .button {
    margin-left: 0;
  }

  #contact .formWrap {
    padding: 4rem;
    margin-top: 4rem;
  }

  #access .access_flex {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }

  #access .access-info {
    width: 380px;
  }

  #access .access-map {
    width: calc(100% - 412px);
    height: 25rem;
  }

  #access .access-map.sp {
    display: none;
  }

  #access .access-text {
    padding: 0 2rem;
    margin-top: 2rem;
    text-align: center;
  }
}

/*
  Media Queries width >= 1200px
----------------------------------------------------- */
@media (width >= 1200px) {
  .globvalNav {
    padding: 0;
    font-size: 18px;
  }

  .globvalNav_inner {
    flex-direction: row;
    gap: 1.5em;
    color: var(--main-color);
  }

  .globvalNav_item a:hover {
    opacity: 0.7;
    transition: 0.2s ease-in-out;
  }

  .hamburgerButton {
    display: none;
  }
}

/*
  Media Queries width < 1200px
----------------------------------------------------- */
@media (width <= 1199.98px) {
  .globvalNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100svh;
    color: #fff;
    visibility: hidden;
    background-color: var(--main-color);
    opacity: 0;
  }
}

/*
  Media Queries width < 1000px
----------------------------------------------------- */
@media (width <= 999.98px) {
  #footer .fotter_inner {
    grid-template-areas:
      "logo"
      "info"
      "nav";
  }

  #footer .footer_logo {
    width: 280px;
    margin: 0 auto;
  }

  #footer .footer_info {
    font-size: 10px;
    text-align: center;
  }

  #footer .footer_nav {
    margin-top: 1.5rem;
  }

  :is(#footer .footer_nav) li {
    margin-top: 1rem;
  }

  .newsList_header .button {
    display: none;
  }

  .newsList_sectionTitle::after {
    display: none;
  }

  :is(#philosophy .philosophy_titleWrap) .sectionTitle {
    padding-bottom: 0.5rem;
  }

  :is(#guide .guideBox):nth-of-type(2) {
    margin-top: 5rem;
  }

  :is(#guide .guideBox):nth-of-type(2)::after {
    display: none;
  }

  :is(#guide .guide_img)::before {
    display: none;
  }

  :is(#guide .certificate) .certificate_img {
    margin: 0 auto;
  }

  #recruit .recruit_img {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 3vw;
  }

  #recruit .recruit_heading {
    text-align: center;
  }

  #access .access-info {
    width: 90%;
    margin: 0 auto;
  }

  #access .access-map.pc {
    display: none;
  }
}

/*
  Media Queries width < 640px
----------------------------------------------------- */
@media (width <= 639.98px) {
  #about .sectionTitle {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}


/* 5領域プログラム */
.program .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: 1fr;
  
  @media (max-width:896px){
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
}

.program .grid-item {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  
  border: 2px solid var(--main-color);
  border-radius: 8px;
  padding: 8xp;
  
}

.program .grid-item .greeting_reason_heading {
  margin-bottom: 0px;
}

.program .grid-item p {
  margin-top: 0px;
  padding: 16px;
}

.program .grid-item 

.program .grid-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.disclosure a {
  text-decoration: underline !important;
  color: #47b885;
}


.litalico-footer {
 position: absolute;
 bottom: 0;
 right: -220px;
 padding: 10px;
 
 @media (width <= 999.98px) {
   position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
 }
 
 
 @media (width <= 639.98px) {
   position: static;
   margin-top: 40px;
   text-align: center;
 }
 
}

.niji-link a {
  text-decoration: underline !important;
  color: var(--main-color);
}