@charset "UTF-8";
/* ===================================
Foundation
=================================== */
/*
 * _setting.scss
 */
/* -----------------------------------
Color
------------------------------------ */
/* -----------------------------------
Color (CSS Custom Properties)
------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Oswald&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
:root {
  --color-base-font: #000;
  --color-link: #000;
  --color-base-bg: #FFF;
  --color-white: #FFF;
  --color-black: #000;
  /* =============== Brand =============== */
  --color-primary: #004098;
  --color-accent: #0000FF;
  --color-accent-pale: #F2F2FF;
  --color-sub: #00A032;
  /* =============== Background =============== */
  --color-border-subtle: #EFEFEF;
  --color-bg-section-cool: #F2F2FF;
  --color-bg-section-fresh: #CCECD6;
  --color-bg-section-warm: #FFF0E6;
  /* =============== Marker / Decoration =============== */
  --color-marker: #CCCCFF;
  --color-marker-bg: #E5E5FF;
  --color-marker-warm: #FFFF00;
  --color-highlight: #B2E2C1;
  --color-parent: #7F7FFF;
  /* =============== Text / Shadow =============== */
  --color-text-subtle: #666;
  --color-shadow-strong: #999;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-white-translucent: rgba(255, 255, 255, 0.9);
  /* =============== UI =============== */
  --color-selection: #800080;
  --color-placeholder: #BBB;
}

/*
 * _mixin.scss
 */
/* -----------------------------------
media query print
------------------------------------ */
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
transition
------------------------------------ */
/* -----------------------------------
clearfix
------------------------------------ */
/* -----------------------------------
formFocus
------------------------------------ */
/* -----------------------------------
shadow
------------------------------------ */
/* -----------------------------------
vw
------------------------------------ */
/*
 * _reset.scss
 */
/* -----------------------------------
reset
------------------------------------ */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

form {
  display: inline;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: middle;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.15em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

ol,
ul {
  list-style: none;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 15px 0;
  padding: 0;
}

/*
 * _base.scss
 */
/* -----------------------------------
base Setting
------------------------------------ */
:root {
  /* root font-size の基準幅（デザインカンプ幅）。数値の唯一の定義場所。
     JS はこの値を読むだけ。PC/SP の切替はメディアクエリに任せる。 */
  --root-base: 1440; /* PC基準 */
}
@media screen and (max-width: 768px) {
  :root {
    --root-base: 390; /* SP基準 */
  }
}

html {
  /* スクロールバー領域を常時確保し、width:100% の fixed 要素（ヘッダー等）が
     モーダル open（body固定 / overflow切替）でも動かないようにする＝横ずれ防止。
     scrollbar-gutter:stable は幅は揃うが root font-size の計算値キャッシュを
     直せない（初回openで約1%縮んで定着）ため、実バー常時表示の overflow-y:scroll を使う。 */
  overflow-y: scroll;
  /* JS無効時のフォールバック。基準値は --root-base に一元化（calc(1vw/base*100) と等価） */
  font-size: calc(100vw / var(--root-base));
}

body {
  color: var(--color-base-font);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  background-color: var(--color-base-bg);
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  max-height: 999999px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}
body.gscrollbar-fixer {
  margin-right: 0 !important;
}
body.custom_cursor * {
  cursor: none !important;
}

@media print {
  html,
  body {
    height: auto;
  }
}
a {
  color: var(--color-link);
}
a.disabled {
  pointer-events: none;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  a {
    -webkit-tap-highlight-color: transparent;
  }
}

/* ===================================
Layout
=================================== */
/*
 * _layout.scss
 */
/* -----------------------------------
wrapper
------------------------------------ */
.l-wrapper {
  position: relative;
}

/* -----------------------------------
header
------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 46rem;
  padding-right: 69rem;
  padding-top: 23rem;
  padding-bottom: 23rem;
  z-index: 1000;
  transition: opacity 0.5s;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-left: 12rem;
    padding-right: 18rem;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.l-header_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header_logo {
  width: 250rem;
}
@media screen and (max-width: 768px) {
  .l-header_logo {
    width: 130rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header_link {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    padding: 10rem 30rem 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
  }
  .l-header_link.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-header_link ._page {
    width: 100%;
  }
}
.l-header_link ._page > ul {
  display: flex;
  gap: 38rem;
}
@media screen and (max-width: 768px) {
  .l-header_link ._page > ul {
    display: block;
    gap: 10.2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header_link ._page > ul > li:nth-of-type(n+2) a::before {
    content: "";
    display: block;
    width: 100%;
    border-top: 1px solid var(--color-border-subtle);
    position: absolute;
    top: 0;
    left: 0;
  }
}
.l-header_link ._page > ul > li a {
  color: var(--color-black);
  font-size: 13rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header_link ._page > ul > li a {
    font-size: 16rem;
    display: block;
    padding: 10.8rem 0;
    position: relative;
  }
}
.l-header_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header_btn {
    display: block;
  }
}

/* -----------------------------------
hamburger button
------------------------------------ */
.hambBtn {
  position: relative;
  width: 40rem;
  height: 24rem;
  cursor: pointer;
}
.hambBtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: top 0.3s, bottom 0.3s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hambBtn span:nth-of-type(1) {
  top: 5rem;
}
.hambBtn span:nth-of-type(2) {
  bottom: 5rem;
}
.hambBtn.is-active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hambBtn.is-active span:nth-of-type(2) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

/* -----------------------------------
content
------------------------------------ */
.l-content {
  position: relative;
  overflow-x: clip;
  width: 100%;
  position: relative;
  padding-top: 82rem;
}
@media screen and (max-width: 768px) {
  .l-content {
    padding-top: 15rem;
  }
}
/* -----------------------------------
section
------------------------------------ */
.l-sec {
  position: relative;
  padding-left: 64rem;
  padding-right: 64rem;
}
@media screen and (max-width: 768px) {
  .l-sec {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.l-sec_in {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* -----------------------------------
footer
------------------------------------ */
.l-footer {
  padding-top: 45rem;
  padding-bottom: 45rem;
  padding-left: 220rem;
  padding-right: 82rem;
  background: url(../img/top/bg_photo.webp);
  background-position: center;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 45rem;
    padding-bottom: 45rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
.l-footer_in {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer_in {
    flex-flow: column;
    align-items: center;
  }
}
.l-footer_left {
  width: 370rem;
}
@media screen and (max-width: 768px) {
  .l-footer_left {
    width: auto;
  }
}
.l-footer_right {
  width: 586rem;
}
@media screen and (max-width: 768px) {
  .l-footer_right {
    width: auto;
  }
}
.l-footer_logo {
  width: 250rem;
}
@media screen and (max-width: 768px) {
  .l-footer_logo {
    width: 250rem;
    margin: 0 auto;
  }
}
.l-footer_address {
  font-size: 15rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.4;
  margin-top: 24rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-footer_address {
    font-size: vwpc(14);
    margin-top: 24rem;
    white-space: normal;
  }
}
.l-footer_address a {
  color: var(--color-primary);
  text-decoration: none;
}
.l-footer_address a.-map {
  display: inline-block;
  font-size: 13rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  border-radius: 1000px;
  border: 1px solid var(--color-primary);
  padding: 0.2em 1.3em;
  margin-left: 1.5em;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .l-footer_address a.-map {
    font-size: 12rem;
    margin-left: 0.8em;
  }
}
.l-footer_address a.-map:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.l-footer_link {
  display: flex;
  gap: 27rem;
  margin-top: 27rem;
}
@media screen and (max-width: 768px) {
  .l-footer_link {
    gap: 15rem;
    margin-top: 27rem;
    flex-flow: column;
    align-items: center;
  }
}
.l-footer_link li a {
  text-decoration: none;
  font-size: 13rem;
  border: 1px solid var(--color-primary);
  border-radius: 1000px;
  padding: 5rem 15rem;
  color: var(--color-primary);
  width: 170rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .l-footer_link li a {
    font-size: 13rem;
    padding: 5rem 15rem;
    width: 170rem;
  }
}
.l-footer_link li a::after {
  content: "";
  display: block;
  width: 12rem;
  aspect-ratio: 120/125;
  background: url(../img/top/ico_arrow2.svg) no-repeat;
  background-size: contain;
  transition: background-image 0.3s;
}
@media screen and (max-width: 768px) {
  .l-footer_link li a::after {
    width: 12rem;
  }
}
.l-footer_link li a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.l-footer_link li a:hover::after {
  background-image: url(../img/top/ico_arrow_white_2.svg);
}
.l-footer_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3rem;
}
@media screen and (max-width: 768px) {
  .l-footer_nav {
    margin-top: 20rem;
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }
}
.l-footer_nav li a {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 15rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .l-footer_nav li a {
    font-size: 15rem;
  }
}
.l-footer_nav li a::before {
  content: "ー";
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .l-footer_nav li a::before {
    margin-right: 5rem;
  }
}

/* ===================================
Object
=================================== */
/* -----------------------------------
Component
------------------------------------ */
/*
 * _component.scss
 */
/* -----------------------------------
hover
------------------------------------ */
.c-hover {
  transition: 0.2s ease-in-out;
}
.c-hover:hover {
  opacity: 0.7;
}

.c-title {
  font-size: 40rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  display: inline-block;
  letter-spacing: 0em;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 33rem;
  }
}
.c-title.-txt1 {
  width: 357rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt1 {
    width: 280rem;
  }
}
.c-title.-txt2 {
  width: 237rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt2 {
    width: 237rem;
  }
}
.c-title.-txt3 {
  width: 193rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt3 {
    width: 193rem;
  }
}
.c-title.-txt4 {
  width: 192rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt4 {
    width: 192rem;
  }
}
.c-title.-txt5 {
  width: 230rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt5 {
    width: 230rem;
  }
}
.c-title.-txt6 {
  width: 102rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt6 {
    width: 102rem;
  }
}
.c-title.-txt7 {
  width: 359rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt7 {
    width: 280rem;
  }
}
.c-title.-txt8 {
  width: 157rem;
}
@media screen and (max-width: 768px) {
  .c-title.-txt8 {
    width: 157rem;
  }
}
.c-title::before {
  content: "";
  display: block;
  width: 18rem;
  aspect-ratio: 181/168;
  position: absolute;
  top: -5rem;
  left: -14rem;
  transform: translate(-50%, -50%);
  background: url(../img/top/ico_dot.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-title::before {
    width: 18rem;
    top: -5rem;
    left: -14rem;
  }
}
.c-title img {
  display: block;
}

.c-title2 {
  display: inline-block;
  border: 1px solid var(--color-accent);
  border-radius: 1000px;
  padding: 1rem 60rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 28rem;
  color: var(--color-accent);
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-title2 {
    padding: 1rem 30rem;
    font-size: 28rem;
  }
}
.c-title2.-small {
  padding-left: 15rem;
  padding-right: 15rem;
}
.c-title2::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 21rem;
  height: 2rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .c-title2::before {
    width: 21rem;
    height: 2rem;
  }
}
.c-title2::after {
  content: "";
  display: block;
  width: 15rem;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .c-title2::after {
    width: 15rem;
  }
}

.c-marker {
  background-image: linear-gradient(transparent 0%, transparent 60%, var(--color-marker) 60%, var(--color-marker) 90%, transparent 90%, transparent 100%);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0rem;
  background-size: 100% 100%;
  transition: background-size 0.6s;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* -----------------------------------
Project
------------------------------------ */
/*
 * _project.scss
 */
@keyframes animJump2 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0%);
  }
}
.p-pageTop {
  position: absolute;
  top: 0;
  right: 40rem;
  bottom: 0rem;
  width: 80rem;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-pageTop {
    bottom: 200rem;
    right: 10rem;
    width: 60rem;
  }
}
.p-pageTop > a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  text-decoration: none;
  color: var(--color-primary);
  border-radius: 1000px;
  position: sticky;
  left: 0;
  bottom: 40rem;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .p-pageTop > a {
    bottom: 20rem;
  }
}

/* -----------------------------------
floatBlock
------------------------------------ */
.p-floatBlock {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-floatBlock {
    display: none;
  }
  body[data-page=future] .p-floatBlock {
    display: block;
  }
}
.p-floatBlock_left, .p-floatBlock_right {
  position: absolute;
  top: 0;
  width: 120rem;
}
.p-floatBlock_left > div, .p-floatBlock_right > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3000rem;
}
.p-floatBlock_left > div:nth-of-type(2), .p-floatBlock_right > div:nth-of-type(2) {
  top: 3000rem;
}
.p-floatBlock_left > div:nth-of-type(3), .p-floatBlock_right > div:nth-of-type(3) {
  top: 6000rem;
}
.p-floatBlock_left > div:nth-of-type(4), .p-floatBlock_right > div:nth-of-type(4) {
  top: 9000rem;
}
.p-floatBlock_left > div:nth-of-type(5), .p-floatBlock_right > div:nth-of-type(5) {
  top: 12000rem;
}
.p-floatBlock_left > div:nth-of-type(6), .p-floatBlock_right > div:nth-of-type(6) {
  top: 15000rem;
}
.p-floatBlock_left > div:nth-of-type(7), .p-floatBlock_right > div:nth-of-type(7) {
  top: 18000rem;
}
.p-floatBlock_left > div:nth-of-type(8), .p-floatBlock_right > div:nth-of-type(8) {
  top: 21000rem;
}
.p-floatBlock_left > div:nth-of-type(9), .p-floatBlock_right > div:nth-of-type(9) {
  top: 24000rem;
}
.p-floatBlock_left > div:nth-of-type(10), .p-floatBlock_right > div:nth-of-type(10) {
  top: 27000rem;
}
.p-floatBlock_left > div span, .p-floatBlock_right > div span {
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  background: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  opacity: 0;
  transition: opacity 0.5s;
}
.p-floatBlock_left > div span.is-animation, .p-floatBlock_right > div span.is-animation {
  opacity: 1;
}
.p-floatBlock_left {
  left: 0;
}
.p-floatBlock_left > div span:nth-of-type(1) {
  top: 2.8%;
  left: 45.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 40rem;
}
.p-floatBlock_left > div span:nth-of-type(2) {
  top: 8.2%;
  left: 41%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(3) {
  top: 12.2%;
  left: 88%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(4) {
  top: 17.4%;
  left: 37.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 40rem;
}
.p-floatBlock_left > div span:nth-of-type(5) {
  top: 23.3%;
  left: 12%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(6) {
  top: 27.2%;
  left: 52.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(7) {
  top: 33.1%;
  left: 24.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 40rem;
}
.p-floatBlock_left > div span:nth-of-type(8) {
  top: 38.3%;
  left: 21%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(9) {
  top: 42.4%;
  left: 29%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(10) {
  top: 48.1%;
  left: 16.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 40rem;
}
.p-floatBlock_left > div span:nth-of-type(11) {
  top: 52.2%;
  left: 76.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(12) {
  top: 57.3%;
  left: 60.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(13) {
  top: 63.1%;
  left: 56%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 40rem;
}
.p-floatBlock_left > div span:nth-of-type(14) {
  top: 67.1%;
  left: 93.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(15) {
  top: 73%;
  left: 8.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(16) {
  top: 78.2%;
  left: 69.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 40rem;
}
.p-floatBlock_left > div span:nth-of-type(17) {
  top: 82.5%;
  left: 74%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(18) {
  top: 87.9%;
  left: 34%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_left > div span:nth-of-type(19) {
  top: 93.1%;
  left: 82%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 40rem;
}
.p-floatBlock_left > div span:nth-of-type(20) {
  top: 97.8%;
  left: 96.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right {
  right: 0;
}
.p-floatBlock_right > div span:nth-of-type(1) {
  top: 3.7%;
  left: 59.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(2) {
  top: 6.6%;
  left: 43.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(3) {
  top: 13.7%;
  left: 85.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(4) {
  top: 16.2%;
  left: 88%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(5) {
  top: 23.7%;
  left: 76%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(6) {
  top: 28.5%;
  left: 7.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(7) {
  top: 31.5%;
  left: 49%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(8) {
  top: 38.9%;
  left: 21%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(9) {
  top: 41.1%;
  left: 17.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(10) {
  top: 48.9%;
  left: 29%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(11) {
  top: 51.4%;
  left: 62.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(12) {
  top: 56.3%;
  left: 94.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(13) {
  top: 61.5%;
  left: 36%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(14) {
  top: 68.5%;
  left: 54%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(15) {
  top: 72.2%;
  left: 32%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(16) {
  top: 76.6%;
  left: 93.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(17) {
  top: 83.7%;
  left: 66%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(18) {
  top: 86.2%;
  left: 82%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(19) {
  top: 91.1%;
  left: 11.5%;
  background-image: url("../img/top/ico_float_block_2.webp");
  width: 21rem;
}
.p-floatBlock_right > div span:nth-of-type(20) {
  top: 98.5%;
  left: 71.5%;
  background-image: url("../img/top/ico_float_block_1.webp");
  width: 21rem;
}

/* -----------------------------------
floatBlock レイヤー調整
各セクションのコンテンツを floatBlock(z-index:0) より前面へ。
ルートの色帯背景・p-block1 の背景画像は in-flow のまま floatBlock の後ろに残る。
背景を _in 自身に持つカード型(Message/Photo/Parent/Recruit 等)は背景ごと前面に出る。
------------------------------------ */
.p-secTopMv_in,
.p-secTopMessage_in,
.p-secTopMessage_img,
.p-secTopBusiness,
.p-block2_title,
.p-secTopWork_in,
.p-secTopInterview_in,
.p-secTopCareer,
.p-secTopNumber_in,
.p-secTopSystem_in,
.p-secTopPhoto_in,
.p-secTopFaq_in,
.p-secTopParent_in,
.p-secTopRecruit_in,
.p-secTopAccess_in {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------
animation common
--------------------------------------- */
.js-animation.-jump.is-animation {
  position: relative;
  animation-name: fuwafuwaTop, fuwafuwa;
  animation-iteration-count: 1, infinite;
  animation-duration: 1s, 4s;
  animation-delay: 0s, 1s;
}
.js-animation.-jump.-type2.is-animation {
  animation: animJump2 0.5s forwards;
}
.js-animation.-jump.-type2.is-animation > * {
  animation: animSwing 0.5s forwards;
}
.js-animation.-fadein {
  transition: opacity 0.4s ease-out;
  opacity: 0;
}
.js-animation.-fadein.is-animation {
  opacity: 1;
}
.js-animation.-slidein {
  transition: 0.4s ease-out;
  opacity: 0;
  transform: translateX(-100px);
}
.js-animation.-slidein.is-animation {
  opacity: 1;
  transform: translateX(0px);
}
.js-animation.-slideup {
  transition: 0.6s ease-out;
  opacity: 0;
  transform: translateY(20px);
}
.js-animation.-slideup.is-animation {
  opacity: 1;
  transform: translateY(0px);
}
.js-animation.-zoomup {
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.1, 0.84, 0.8, 1.35);
  opacity: 0;
  transform: scale(0.7, 0.7) translateY(40px);
}
.js-animation.-zoomup.is-animation {
  opacity: 1;
  transform: scale(1, 1) translateY(0px);
}
.js-animation.-slow {
  transition-duration: 0.8s;
}
@media screen and (min-width: 769px) {
  .js-animation.-delay1 {
    transition-delay: 0.1s;
  }
  .js-animation.-delay2 {
    transition-delay: 0.2s;
  }
  .js-animation.-delay3 {
    transition-delay: 0.3s;
  }
  .js-animation.-delay4 {
    transition-delay: 0.4s;
  }
  .js-animation.-delay5 {
    transition-delay: 0.5s;
  }
  .js-animation.-delay6 {
    transition-delay: 0.6s;
  }
  .js-animation.-delay7 {
    transition-delay: 0.7s;
  }
  .js-animation.-delay8 {
    transition-delay: 0.8s;
  }
  .js-animation.-delay9 {
    transition-delay: 0.9s;
  }
  .js-animation.-delay10 {
    transition-delay: 1s;
  }
}

/*
 * _project_top.scss
 */
/* -----------------------------------
block1
------------------------------------ */
.p-block1 {
  background: url(../img/top/bg_photo.webp);
  background-position: center;
  padding-bottom: 40rem;
}
@media screen and (max-width: 768px) {
  .p-block1 {
    padding-bottom: 10.8rem;
  }
}

@keyframes anim_mv_img {
  0% {
    transform: translateX(80rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes anim_slideup {
  0% {
    transform: translate3d(0, 40rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* -----------------------------------
Mv
------------------------------------ */
.p-secTopMv {
  height: calc(100svh - 82rem + 50rem);
}
@media screen and (max-width: 768px) {
  .p-secTopMv {
    height: calc(100svh - 15rem + 50rem);
  }
}
.p-secTopMv_in {
  height: 100%;
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
}
.p-secTopMv_txt {
  padding-top: 40rem;
  padding-left: 40rem;
  position: relative;
  z-index: 10;
  animation: anim_slideup 1s forwards;
  animation-delay: 0.8s;
  opacity: 0;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .p-secTopMv_txt {
    padding-top: 40rem;
    padding-left: 40rem;
  }
}
.p-secTopMv_txt > span {
  color: var(--color-white);
  background-color: var(--color-accent);
  display: inline-block;
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  padding: 8rem 25rem;
  position: relative;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .p-secTopMv_txt > span {
    font-size: 12rem;
    padding: 5rem 15rem;
  }
}
.p-secTopMv_txt h1 {
  margin-top: -3rem;
}
@media screen and (max-width: 768px) {
  .p-secTopMv_txt h1 {
    margin-top: -3rem;
  }
}
.p-secTopMv_txt h1 span {
  color: var(--color-white);
  background-color: var(--color-accent);
  display: inline-block;
  font-size: 46rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  padding: 0 25rem;
  margin-top: -15rem;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 768px) {
  .p-secTopMv_txt h1 span {
    font-size: 24rem;
    padding: 0 15rem;
    margin-top: -10rem;
  }
}
.p-secTopMv_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1719rem;
}
@media screen and (max-width: 768px) {
  .p-secTopMv_img {
    width: 700rem;
  }
}
.p-secTopMv_imgList {
  overflow-x: clip;
  overflow-y: visible;
  position: absolute;
  top: calc(80rem + (100svh - 82rem - 80rem - 40rem) * 0.3308);
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-secTopMv_imgList {
    top: calc(108rem + (100svh - 43rem - 80rem - 40rem) * 0.3308);
  }
}
.p-secTopMv_imgList.is-introEnd ._img1 > div, .p-secTopMv_imgList.is-introEnd ._img2 > div, .p-secTopMv_imgList.is-introEnd ._img3 > div, .p-secTopMv_imgList.is-introEnd ._img4 > div, .p-secTopMv_imgList.is-introEnd ._img5 > div,
.p-secTopMv_imgList.is-introEnd ._circle1 > div, .p-secTopMv_imgList.is-introEnd ._circle2 > div {
  animation: none;
  opacity: 1;
}
.p-secTopMv_imgList ._img1 {
  position: absolute;
  left: 0%;
  top: 25.2366%;
  width: 24.7742%;
  transform: translate(-50%, -50%);
}
.p-secTopMv_imgList ._img1 > div {
  opacity: 0;
  animation: anim_mv_img 1s forwards;
  animation-delay: 0.3s;
}
.p-secTopMv_imgList ._img2 {
  position: absolute;
  left: 25.8065%;
  top: 18.9274%;
  width: 19.9355%;
  transform: translate(-50%, -50%);
}
.p-secTopMv_imgList ._img2 > div {
  opacity: 0;
  animation: anim_mv_img 1s forwards;
  animation-delay: 0.5s;
}
.p-secTopMv_imgList ._img3 {
  position: absolute;
  left: 46.7742%;
  top: 45.1104%;
  width: 17.8065%;
  transform: translate(-50%, -50%);
}
.p-secTopMv_imgList ._img3 > div {
  opacity: 0;
  animation: anim_mv_img 1s forwards;
  animation-delay: 0.7s;
}
.p-secTopMv_imgList ._img4 {
  position: absolute;
  left: 54.5806%;
  top: -5.6782%;
  width: 22.4516%;
  transform: translate(-50%, -50%);
}
.p-secTopMv_imgList ._img4 > div {
  opacity: 0;
  animation: anim_mv_img 1s forwards;
  animation-delay: 0.9s;
}
.p-secTopMv_imgList ._img5 {
  position: absolute;
  left: 74.129%;
  top: 42.5868%;
  width: 20.1935%;
  transform: translate(-50%, -50%);
}
.p-secTopMv_imgList ._img5 > div {
  opacity: 0;
  animation: anim_mv_img 1s forwards;
  animation-delay: 1.1s;
}
.p-secTopMv_imgList ._circle1 {
  position: absolute;
  left: 18.5161%;
  top: 54.4164%;
  width: 8.3871%;
  transform: translate(-50%, -50%);
}
.p-secTopMv_imgList ._circle1 > div {
  aspect-ratio: 1/1;
  background: url(../img/top/mv_circle.webp) no-repeat;
  background-size: contain;
  opacity: 0;
  animation: anim_mv_img 1s forwards;
  animation-delay: 0.5s;
}
.p-secTopMv_imgList ._circle2 {
  position: absolute;
  left: 76.3226%;
  top: 4.7319%;
  width: 8.3871%;
  transform: translate(-50%, -50%);
}
.p-secTopMv_imgList ._circle2 > div {
  aspect-ratio: 1/1;
  background: url(../img/top/mv_circle.webp) no-repeat;
  background-size: contain;
  opacity: 0;
  animation: anim_mv_img 1s forwards;
  animation-delay: 1.1s;
}
.p-secTopMv_imgList ._in {
  width: auto;
  height: calc(100svh - 82rem - 80rem - 40rem);
  aspect-ratio: 1550/634;
  position: relative;
  transform: translateX(-30%);
}
@media screen and (max-width: 768px) {
  .p-secTopMv_imgList ._in {
    height: calc(100svh - 43rem - 80rem - 40rem);
  }
}
.p-secTopMv_imgList ._in:nth-of-type(2) ._img1 > div {
  animation-delay: 1.3s;
}
.p-secTopMv_imgList ._in:nth-of-type(2) ._img2 > div {
  animation-delay: 1.5s;
}
.p-secTopMv_imgList ._in:nth-of-type(2) ._img3 > div {
  animation-delay: 1.7s;
}
.p-secTopMv_imgList ._in:nth-of-type(2) ._img4 > div {
  animation-delay: 1.9s;
}
.p-secTopMv_imgList ._in:nth-of-type(2) ._img5 > div {
  animation-delay: 2.1s;
}
.p-secTopMv_imgList ._in:nth-of-type(2) ._circle1 > div {
  animation-delay: 1.5s;
}
.p-secTopMv_imgList ._in:nth-of-type(2) ._circle2 > div {
  animation-delay: 2.1s;
}

/* -----------------------------------
Message
------------------------------------ */
.p-secTopMessage_in {
  background-color: var(--color-white);
  border-radius: 10rem;
  width: 1000rem;
  padding: 44rem 80rem 70rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_in {
    border-radius: 10rem;
    width: 350rem;
    padding: 30rem 20rem 40rem;
  }
}
.p-secTopMessage_title {
  text-align: center;
}
.p-secTopMessage_txt {
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-top: 40rem;
  line-height: 2.15;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_txt {
    font-size: 16rem;
    margin-top: 30rem;
  }
}
.p-secTopMessage_txt ._marker {
  background: linear-gradient(transparent 40%, var(--color-marker) 40%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-secTopMessage_img {
  height: 209rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_img {
    height: 209rem;
  }
}
.p-secTopMessage_img ._line {
  width: 791rem;
  position: absolute;
  left: 0;
  top: 42rem;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_img ._line {
    width: 350rem;
    top: 140rem;
  }
}
.p-secTopMessage_img ._map {
  position: absolute;
  right: 200rem;
  bottom: 0;
  width: 328rem;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_img ._map {
    right: 50rem;
    width: 200rem;
    bottom: 70rem;
  }
}
.p-secTopMessage_img ._map ._balloon {
  position: absolute;
  top: -39rem;
  right: -48rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  width: 210rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_img ._map ._balloon {
    top: -28rem;
    right: -40rem;
    width: 130rem;
  }
}
.p-secTopMessage_img ._map ._balloon::before {
  content: "";
  display: block;
  width: 40rem;
  aspect-ratio: 300/108;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  background: url(../img/top/ico_arrow.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_img ._map ._balloon::before {
    width: 40rem;
  }
}
.p-secTopMessage_img ._map ._balloon > p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14rem;
  width: 130rem;
}
@media screen and (max-width: 768px) {
  .p-secTopMessage_img ._map ._balloon > p {
    font-size: 10rem;
    width: 100rem;
  }
}

/* -----------------------------------
Block2
------------------------------------ */
.p-block2 {
  padding-top: 70rem;
  padding-bottom: 65rem;
}
@media screen and (max-width: 768px) {
  .p-block2 {
    padding-top: 40rem;
    padding-bottom: 65rem;
  }
}
.p-block2_title {
  text-align: center;
}
.p-block2_cnt {
  margin-top: 38rem;
}
@media screen and (max-width: 768px) {
  .p-block2_cnt {
    margin-top: 38rem;
  }
}

/* -----------------------------------
Business
------------------------------------ */
.p-secTopBusiness {
  background-color: var(--color-bg-section-fresh);
  width: 1100rem;
  margin: 0 auto;
  padding: 17rem 50rem 43rem;
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness {
    width: 350rem;
    padding: 17rem 20rem 43rem;
    border-radius: 10rem;
  }
}
.p-secTopBusiness_label {
  text-align: center;
}
.p-secTopBusiness_title {
  text-align: center;
  font-size: 28rem;
  color: var(--color-accent);
  margin-top: 24rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_title {
    font-size: 24rem;
    margin-top: 24rem;
  }
}
.p-secTopBusiness_list {
  display: flex;
  gap: 53rem;
  margin-top: 18rem;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list {
    gap: 20rem;
    margin-top: 18rem;
    flex-flow: column;
  }
}
.p-secTopBusiness_list li {
  background-color: var(--color-white);
  box-shadow: 5rem 5rem var(--color-sub);
  border-radius: 10rem;
  display: flex;
  justify-content: space-between;
  padding: 23rem 24rem 31rem;
  padding-left: 34rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li {
    box-shadow: 5rem 5rem var(--color-sub);
    border-radius: 10rem;
    padding: 23rem 24rem 31rem;
    padding-left: 24rem;
  }
}
.p-secTopBusiness_list li ._txt span {
  color: var(--color-sub);
  font-size: 15rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li ._txt span {
    font-size: 15rem;
  }
}
.p-secTopBusiness_list li ._txt h5 {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li ._txt h5 {
    margin-top: 8rem;
  }
}
.p-secTopBusiness_list li ._txt h5 span {
  display: inline-block;
  background-color: var(--color-sub);
  color: var(--color-white);
  font-size: 30rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.35;
  padding: 0 11rem;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li ._txt h5 span {
    font-size: 20rem;
    padding: 0 11rem;
  }
}
.p-secTopBusiness_list li ._txt > div {
  display: flex;
  justify-content: space-between;
  gap: 15rem;
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li ._txt > div {
    gap: 4rem;
    margin-top: 12rem;
  }
}
.p-secTopBusiness_list li ._txt > div p {
  font-size: 15rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li ._txt > div p {
    font-size: 15rem;
    flex: 1;
  }
}
.p-secTopBusiness_list li ._txt > div ._spImg {
  display: none;
  width: 100rem;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li ._txt > div ._spImg {
    display: block;
    flex-shrink: 0;
  }
}
.p-secTopBusiness_list li ._img {
  width: 115rem;
}
@media screen and (max-width: 768px) {
  .p-secTopBusiness_list li ._img {
    display: none;
  }
}

/* -----------------------------------
Work
------------------------------------ */
.p-secTopWork {
  margin-top: 70rem;
}
@media screen and (max-width: 768px) {
  .p-secTopWork {
    margin-top: 70rem;
  }
}
.p-secTopWork_title {
  text-align: center;
}
.p-secTopWork_list {
  position: relative;
  margin-top: 63rem;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list {
    margin-top: 63rem;
  }
}
.p-secTopWork_list ._img1 {
  position: absolute;
  top: 140rem;
  left: 124rem;
  transform: translate(-50%, -50%);
  width: 150rem;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._img1 {
    top: 20%;
    left: 30rem;
    width: 150rem;
  }
}
.p-secTopWork_list ._img2 {
  position: absolute;
  top: 314rem;
  left: 200rem;
  transform: translate(-50%, -50%);
  width: 183rem;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._img2 {
    top: 60%;
    left: 50rem;
    width: 183rem;
  }
}
.p-secTopWork_list ._img3 {
  position: absolute;
  top: 360rem;
  right: 180rem;
  transform: translate(50%, -50%);
  width: 150rem;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._img3 {
    top: 30%;
    right: 30rem;
    width: 150rem;
  }
}
.p-secTopWork_list ._img4 {
  position: absolute;
  top: 550rem;
  right: 280rem;
  transform: translate(50%, -50%);
  width: 183rem;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._img4 {
    top: 70%;
    right: 50rem;
    width: 183rem;
  }
}
.p-secTopWork_list ._list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40rem 25rem;
  width: 1100rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list {
    gap: 20rem 0rem;
    width: 350rem;
  }
}
.p-secTopWork_list ._list li {
  width: 230rem;
  height: 260rem;
  position: relative;
  border: 1px solid var(--color-accent);
  border-radius: 10rem;
  padding: 10rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list li {
    width: 100%;
    height: 190rem;
    border-radius: 10rem;
    padding: 10rem;
  }
}
.p-secTopWork_list ._list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  height: 21rem;
  width: 2rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list li::before {
    height: 2rem;
    width: 21rem;
    bottom: -1px;
    right: auto;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-secTopWork_list ._list li::after {
  content: "";
  display: block;
  width: 15rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(50%, -50%) rotate(45deg);
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list li::after {
    width: 15rem;
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%, 50%) rotate(135deg);
  }
}
.p-secTopWork_list ._list li:nth-last-of-type(1)::before {
  display: none;
}
.p-secTopWork_list ._list li:nth-last-of-type(1)::after {
  display: none;
}
.p-secTopWork_list ._list li span {
  font-size: 80rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  position: absolute;
  bottom: 14rem;
  right: 12rem;
  color: var(--color-marker-bg);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list li span {
    font-size: 80rem;
    bottom: 14rem;
    right: 12rem;
  }
}
.p-secTopWork_list ._list li h3 {
  font-size: 30rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list li h3 {
    font-size: 30rem;
  }
}
.p-secTopWork_list ._list li p {
  font-size: 15rem;
  position: relative;
  margin-top: 5rem;
}
.p-secTopWork_list ._list li p.-tight {
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list li p {
    font-size: 15rem;
    margin-top: 5rem;
  }
}
.p-secTopWork_list ._list li ._icon {
  display: block;
  width: 59rem;
  aspect-ratio: 59/61;
  position: absolute;
  top: -26rem;
  right: -14rem;
  background: url(../img/top/ico_tag.webp) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_list ._list li ._icon {
    width: 59rem;
    top: -26rem;
    right: -14rem;
  }
}
.p-secTopWork_list ._list li.-tag {
  background-color: var(--color-bg-section-warm);
}
.p-secTopWork_list ._list li.-tag::before {
  background-color: var(--color-bg-section-warm);
}
.p-secTopWork_list ._list li.-tag::after {
  background-color: var(--color-bg-section-warm);
}
.p-secTopWork_list ._list li.-tag span {
  color: var(--color-white);
}
.p-secTopWork_img {
  margin-top: -188rem;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-secTopWork_img {
    margin-top: -30rem;
  }
}
.p-secTopWork_img img {
  width: 100%;
}

/* -----------------------------------
Interview
------------------------------------ */
.p-secTopInterview {
  margin-top: -16rem;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview {
    margin-top: 50rem;
  }
}
.p-secTopInterview_title {
  text-align: center;
}
.p-secTopInterview_groups {
  display: flex;
  width: 1000rem;
  margin: 44rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups {
    width: 350rem;
    margin: 80rem auto 0;
    flex-flow: column;
  }
}
.p-secTopInterview_groups > div {
  flex: 1;
  padding: 52rem 39rem 20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div {
    padding: 52rem 15rem 20rem;
  }
}
.p-secTopInterview_groups > div:nth-of-type(1) {
  background: url(../img/top/bg_interview_1.webp);
  background-position: center right;
}
.p-secTopInterview_groups > div:nth-of-type(2) {
  background: url(../img/top/bg_interview_2.webp);
  background-position: center left;
}
.p-secTopInterview_groups > div ul {
  display: flex;
  gap: 34rem;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div ul {
    gap: 25rem;
  }
}
.p-secTopInterview_groups > div ul li a {
  text-decoration: none;
  position: relative;
  display: block;
}
.p-secTopInterview_groups > div ul li a::before {
  content: "";
  display: block;
  width: 18rem;
  aspect-ratio: 181/168;
  background: url(../img/top/ico_dot.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 8rem;
  left: 8rem;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div ul li a::before {
    top: 2.1rem;
    left: 2.1rem;
  }
}
.p-secTopInterview_groups > div ul li a ._balloon {
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  position: absolute;
  top: -30rem;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: 15rem;
  color: var(--color-accent);
  white-space: nowrap;
  border-radius: 10rem;
  padding: 10rem 15rem;
  letter-spacing: -0.1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div ul li a ._balloon {
    top: -30rem;
    font-size: 15rem;
    border-radius: 10rem;
    padding: 10rem 15rem;
  }
}
.p-secTopInterview_groups > div ul li a ._balloon::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 14rem;
  height: 2px;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div ul li a ._balloon::before {
    width: 14rem;
  }
}
.p-secTopInterview_groups > div ul li a ._balloon::after {
  content: "";
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  border: 1px solid var(--color-accent);
  width: 13rem;
  background-color: var(--color-white);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div ul li a ._balloon::after {
    width: 13rem;
  }
}
.p-secTopInterview_groups > div ul li a ._img {
  position: relative;
}
.p-secTopInterview_groups > div ul li a ._img::after {
  content: "";
  display: block;
  width: 59rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: -10rem;
  bottom: -10rem;
  background: url(../img/top/ico_mic.webp) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div ul li a ._img::after {
    width: 59rem;
    right: -10rem;
    bottom: -10rem;
  }
}
.p-secTopInterview_groups > div ul li a ._img ._filter {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  overflow: hidden;
  pointer-events: none;
}
.p-secTopInterview_groups > div ul li a ._img ._filter::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -150%;
  width: 100%;
  height: 150%;
  opacity: 0.2;
  background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-accent) 66.66%, transparent 100%);
  transition: top 0.7s;
}
.p-secTopInterview_groups > div ul li a ._year {
  font-size: 15rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div ul li a ._year {
    font-size: 15rem;
    margin-top: 5rem;
  }
}
.p-secTopInterview_groups > div ul li a:hover ._img ._filter::after {
  top: 0%;
}
.p-secTopInterview_groups > div h4 {
  text-align: center;
  font-size: 36rem;
  color: var(--color-accent);
  margin-top: 18rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-secTopInterview_groups > div h4 {
    font-size: 36rem;
    margin-top: 18rem;
  }
}
.p-secTopInterview_groups > div h4 span {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.p-secTopInterview_groups > div h4 span::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  position: absolute;
  left: 0;
  bottom: -0.2em;
  background-color: var(--color-marker);
  z-index: -1;
}
.p-secTopInterview_groups > div h4 span.-white::before {
  background-color: var(--color-bg-section-fresh);
}

/* -----------------------------------
TopCareer
------------------------------------ */
.p-secTopCareer {
  background-color: var(--color-bg-section-cool);
  width: 1300rem;
  padding: 70rem 100rem;
  margin: 73rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer {
    width: 350rem;
    padding: 40rem 20rem;
    margin: 73rem auto 0;
  }
}
.p-secTopCareer_wrapper {
  background-color: var(--color-white);
  padding: 30rem 50rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_wrapper {
    padding: 30rem 20rem;
  }
}
.p-secTopCareer_wrapper:nth-of-type(n+2) {
  margin-top: 30rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_wrapper:nth-of-type(n+2) {
    margin-top: 30rem;
  }
}
.p-secTopCareer_title {
  text-align: center;
}
.p-secTopCareer_lead {
  font-size: 15rem;
  text-align: center;
  margin-top: 36rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_lead {
    font-size: 15rem;
    margin-top: 36rem;
  }
}
.p-secTopCareer_chart {
  margin-top: -80rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_chart {
    margin-top: 13rem;
  }
}
.p-secTopCareer_list {
  display: flex;
  justify-content: space-between;
  margin-top: 23rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_list {
    margin-top: 40rem;
    flex-flow: column;
    gap: 25rem;
  }
}
.p-secTopCareer_list li {
  width: 180rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_list li {
    width: auto;
  }
}
.p-secTopCareer_list li h4 {
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_list li h4 {
    font-size: 20rem;
  }
}
.p-secTopCareer_list li p {
  font-size: 15rem;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_list li p {
    font-size: 15rem;
    margin-top: 4rem;
    letter-spacing: -0.02em;
    line-height: 1.4;
  }
}
.p-secTopCareer_list2 {
  display: flex;
  gap: 60rem;
  margin-top: 40rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_list2 {
    gap: 60rem;
    margin-top: 40rem;
    flex-flow: column;
  }
}
.p-secTopCareer_list2 li {
  display: flex;
  position: relative;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_list2 li {
    gap: 10rem;
  }
}
.p-secTopCareer_list2 li:nth-of-type(n+2)::before {
  content: "";
  display: block;
  width: 33rem;
  aspect-ratio: 33/160;
  position: absolute;
  top: 0;
  left: -30rem;
  transform: translateX(-50%);
  background: url(../img/top/ico_arrow_career.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-secTopCareer_list2 li:nth-of-type(n+2)::before {
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    top: -110rem;
  }
}
.p-secTopCareer_list2 li ._img {
  width: 117rem;
}
.p-secTopCareer_list2 li ._img.-ojt {
  padding-left: 10rem;
  padding-right: 10rem;
}
.p-secTopCareer_list2 li ._txt {
  flex: 1;
}
.p-secTopCareer_list2 li ._txt span {
  font-size: 13rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: var(--color-accent);
}
.p-secTopCareer_list2 li ._txt h4 {
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-top: -0.3em;
}
.p-secTopCareer_list2 li ._txt p {
  font-size: 15rem;
  margin-top: 15rem;
  line-height: 1.4;
}

/* -----------------------------------
block3
------------------------------------ */
.p-block3 {
  background: url(../img/top/bg_look.webp);
  background-position: center;
  padding-top: 54rem;
  padding-bottom: 74rem;
}
@media screen and (max-width: 768px) {
  .p-block3 {
    padding-top: 54rem;
    padding-bottom: 74rem;
  }
}

/* -----------------------------------
Number
------------------------------------ */
.p-secTopNumber_title {
  text-align: center;
}
.p-secTopNumber_list {
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  gap: 10rem;
  width: 1000rem;
  margin: 40rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list {
    gap: 10rem;
    width: 350rem;
    margin: 30rem auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-secTopNumber_list > li {
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: 10rem;
  height: 170rem;
  padding-top: 13rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li {
    border-radius: 10rem;
    height: 184rem;
    padding-top: 9rem;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col1 {
    grid-column: span 1;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col2 {
    grid-column: span 2;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col3 {
    grid-column: span 3;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col5 {
    grid-column: span 5;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col6 {
    grid-column: span 6;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col7 {
    grid-column: span 7;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col8 {
    grid-column: span 8;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col9 {
    grid-column: span 9;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col10 {
    grid-column: span 10;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col11 {
    grid-column: span 11;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col12 {
    grid-column: span 12;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col13 {
    grid-column: span 13;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col14 {
    grid-column: span 14;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col15 {
    grid-column: span 15;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col16 {
    grid-column: span 16;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col17 {
    grid-column: span 17;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col18 {
    grid-column: span 18;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col19 {
    grid-column: span 19;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col20 {
    grid-column: span 20;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col21 {
    grid-column: span 21;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col22 {
    grid-column: span 22;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col23 {
    grid-column: span 23;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col24 {
    grid-column: span 24;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col25 {
    grid-column: span 25;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col26 {
    grid-column: span 26;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col27 {
    grid-column: span 27;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col28 {
    grid-column: span 28;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col29 {
    grid-column: span 29;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col30 {
    grid-column: span 30;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col31 {
    grid-column: span 31;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li._col32 {
    grid-column: span 32;
  }
}
.p-secTopNumber_list > li h3 {
  font-size: 25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
  padding-left: 24rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li h3 {
    text-align: center;
    font-size: 18rem;
    padding-left: 0;
  }
}
.p-secTopNumber_list > li ._col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 21rem;
  margin-top: 38rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li ._col {
    padding: 0 18rem;
    margin-top: 0;
    align-items: center;
    gap: 0;
    position: relative;
    flex-flow: column-reverse;
  }
}
.p-secTopNumber_list > li ._col ._sp {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li ._col ._sp {
    justify-content: space-between;
  }
}
.p-secTopNumber_list > li ._col p {
  font-size: 25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
  position: relative;
  z-index: 0;
  margin-top: -10rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li ._col p {
    font-size: 20rem;
    margin-top: 0rem;
  }
}
.p-secTopNumber_list > li ._col p::before {
  content: "";
  display: block;
  background-color: var(--color-marker-warm);
  position: absolute;
  bottom: -6rem;
  left: 0;
  width: 100%;
  height: 20rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li ._col p::before {
    bottom: -6rem;
    height: 20rem;
  }
}
.p-secTopNumber_list > li ._col p span {
  font-size: 70rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li ._col p span {
    font-size: 38rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li ._col ._img {
    height: 98rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopNumber_list > li:nth-of-type(1) ._col {
    margin-top: 38rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(1) ._col ._img {
  width: 60rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(1) ._col ._img {
    width: 60rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(2) ._col {
  padding-right: 15rem;
  padding-left: 15rem;
}
.p-secTopNumber_list > li:nth-of-type(2) ._col ._img {
  width: 71rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(2) ._col ._img {
    width: 71rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(3) ._col ._img {
  width: 62rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(3) ._col ._img {
    width: 62rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(4) ._col ._img {
  width: 59rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(4) ._col ._img {
    width: 60rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(5) ._col ._img {
  width: 77rem;
  margin-top: -20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(5) ._col ._img {
    margin-top: 0;
    width: 64rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(6) ._col ._img {
  width: 69rem;
  margin-top: -20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(6) ._col ._img {
    margin-top: 0;
    width: 63rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(7) ._col ._txt {
  margin-top: -20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(7) ._col ._txt {
    margin-top: -5.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(7) ._col ._txt p:nth-of-type(1) {
    margin: 0 -10rem;
  }
  .p-secTopNumber_list > li:nth-of-type(7) ._col ._txt p:nth-of-type(1) span {
    letter-spacing: -0.05em;
  }
}
.p-secTopNumber_list > li:nth-of-type(7) ._col ._txt p:nth-of-type(2) {
  font-size: 13rem;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(7) ._col ._txt p:nth-of-type(2) {
    margin-top: 24rem;
    font-size: 11rem;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, 100%);
    text-align: center;
    white-space: nowrap;
  }
}
.p-secTopNumber_list > li:nth-of-type(7) ._col ._txt p:nth-of-type(2)::before {
  display: none;
}
.p-secTopNumber_list > li:nth-of-type(7) ._col ._img {
  width: 68rem;
  margin-right: 30rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(7) ._col ._img {
    margin-right: 0;
    width: 56rem;
    height: 82rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(8) ._col {
    gap: 10rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(8) ._col ._txt p:nth-of-type(1) {
  margin-top: -20rem;
  width: 100rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(8) ._col ._txt p:nth-of-type(1) {
    margin-top: -5.4rem;
    width: 55rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(8) ._col ._txt p:nth-of-type(1) span {
  font-size: 60rem;
  line-height: 0.1;
  padding: 0 14%;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(8) ._col ._txt p:nth-of-type(1) span {
    font-size: 40rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(8) ._col ._txt p:nth-of-type(2) {
  font-size: 13rem;
  margin-top: 25rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(8) ._col ._txt p:nth-of-type(2) {
    margin-top: -10rem;
    font-size: 11rem;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, 100%);
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
  }
}
.p-secTopNumber_list > li:nth-of-type(8) ._col ._txt p:nth-of-type(2)::before {
  display: none;
}
.p-secTopNumber_list > li:nth-of-type(8) ._col ._img {
  width: 74rem;
  margin-top: -20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(8) ._col ._img {
    margin-top: 0;
    width: 50rem;
    height: 80rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(9) ._col ._sp {
  gap: 30rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(9) ._col ._sp {
    gap: 0;
  }
}
.p-secTopNumber_list > li:nth-of-type(9) ._col p:nth-of-type(2) {
  font-size: 15rem;
  line-height: 1.4;
  margin-top: -15rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(9) ._col p:nth-of-type(2) {
    font-size: 12rem;
    margin-top: -4rem;
    line-height: 1.1;
  }
}
.p-secTopNumber_list > li:nth-of-type(9) ._col p:nth-of-type(2)::before {
  display: none;
}
.p-secTopNumber_list > li:nth-of-type(9) ._col ._img {
  width: 76rem;
  margin-top: -20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(9) ._col ._img {
    margin-top: 0;
    width: 55rem;
    height: 90rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(10) ._col ._sp {
  gap: 45rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(10) ._col ._sp {
    gap: 0;
    padding-right: 10rem;
  }
}
.p-secTopNumber_list > li:nth-of-type(10) ._col p:nth-of-type(2) {
  font-size: 15rem;
  line-height: 2;
  margin-top: -15rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(10) ._col p:nth-of-type(2) {
    font-size: 12rem;
    line-height: 1.6;
    margin-top: 0rem;
    line-height: 1.1;
  }
}
.p-secTopNumber_list > li:nth-of-type(10) ._col p:nth-of-type(2)::before {
  display: none;
}
.p-secTopNumber_list > li:nth-of-type(10) ._col ._img {
  width: 79rem;
  margin-top: -20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopNumber_list > li:nth-of-type(10) ._col ._img {
    margin-top: 0;
    width: 57rem;
    height: 90rem;
  }
}

/* -----------------------------------
System
------------------------------------ */
.p-secTopSystem {
  padding-top: 72rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem {
    padding-top: 88rem;
  }
}
.p-secTopSystem_title {
  text-align: center;
}
.p-secTopSystem_list {
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  gap: 10rem;
  width: 1000rem;
  margin: 42rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list {
    gap: 8rem;
    width: 350rem;
    margin: 30rem auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-secTopSystem_list > li {
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: 10rem;
  padding: 17rem 0 0;
  height: 274rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li {
    border-radius: 10rem;
    padding: 10rem 10rem 30rem;
    height: 240rem;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col1 {
    grid-column: span 1;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col2 {
    grid-column: span 2;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col3 {
    grid-column: span 3;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col5 {
    grid-column: span 5;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col6 {
    grid-column: span 6;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col7 {
    grid-column: span 7;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col8 {
    grid-column: span 8;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col9 {
    grid-column: span 9;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col10 {
    grid-column: span 10;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col11 {
    grid-column: span 11;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col12 {
    grid-column: span 12;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col13 {
    grid-column: span 13;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col14 {
    grid-column: span 14;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col15 {
    grid-column: span 15;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col16 {
    grid-column: span 16;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col17 {
    grid-column: span 17;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col18 {
    grid-column: span 18;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col19 {
    grid-column: span 19;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col20 {
    grid-column: span 20;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col21 {
    grid-column: span 21;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col22 {
    grid-column: span 22;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col23 {
    grid-column: span 23;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col24 {
    grid-column: span 24;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col25 {
    grid-column: span 25;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col26 {
    grid-column: span 26;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col27 {
    grid-column: span 27;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col28 {
    grid-column: span 28;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col29 {
    grid-column: span 29;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col30 {
    grid-column: span 30;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col31 {
    grid-column: span 31;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li._col32 {
    grid-column: span 32;
  }
}
.p-secTopSystem_list > li h3 {
  font-size: 22rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li h3 {
    font-size: 18rem;
  }
}
.p-secTopSystem_list > li h3 span {
  background-color: var(--color-highlight);
  display: inline-block;
  border-radius: 1000px;
  padding: 0 20rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li h3 span {
    padding: 0 20rem;
  }
  .p-secTopSystem_list > li h3 span.-tight {
    padding: 0 10rem;
  }
}
.p-secTopSystem_list > li ._col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20rem;
  margin-top: 22rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li ._col {
    gap: 0rem;
    margin-top: 5rem;
    justify-content: space-between;
    flex-flow: column;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopSystem_list > li ._col.-row {
    flex-flow: column;
    gap: 0;
    margin-top: 0;
  }
  .p-secTopSystem_list > li ._col.-row ._img {
    height: 125rem;
    display: flex;
    align-items: center;
  }
  .p-secTopSystem_list > li ._col.-row ul {
    width: 100%;
    padding: 0 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li ._col ._left {
    width: 120rem;
    height: 100rem;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li ._col ._left ._img {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-secTopSystem_list > li ._col ul {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li ._col ul {
    width: 90%;
    margin: 0 auto;
  }
}
.p-secTopSystem_list > li ._col ul li {
  font-size: 16rem;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li ._col ul li {
    font-size: 12rem;
    line-height: 1.35;
  }
}
.p-secTopSystem_list > li ._col ul li::before {
  content: "・";
}
.p-secTopSystem_list > li:nth-of-type(1) ._col ._img {
  width: 105rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(1) ._col ._img {
    width: 78rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(2) ._col ._img {
  width: 93rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(2) ._col ._img {
    width: 67rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(3) ._col ._img {
  width: 105rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(3) ._col ._img {
    width: 63rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(4) ._col ._img {
  width: 112rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(4) ._col ._img {
    width: 80rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(5) ._col ._img {
  width: 132rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(5) ._col ._img {
    width: 100rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(6) ._col ._img {
  width: 90rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(6) ._col ._img {
    width: 64rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(7) ._col ._img {
  width: 119rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(7) ._col ._img {
    width: 87rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(8) ._col ._img {
  width: 70rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(8) ._col ._img {
    width: 52rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(9) ._col ._img {
  width: 114rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(9) ._col ._img {
    width: 79rem;
  }
}
.p-secTopSystem_list > li:nth-of-type(10) ._col ._img {
  width: 134rem;
}
@media screen and (max-width: 768px) {
  .p-secTopSystem_list > li:nth-of-type(10) ._col ._img {
    width: 88rem;
  }
}

/* -----------------------------------
Photo
------------------------------------ */
.p-secTopPhoto {
  background: url(../img/top/bg_photo.webp);
  background-position: center;
  padding: 52rem 0 67rem;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto {
    padding: 40rem 0 40rem;
  }
}
.p-secTopPhoto_title {
  text-align: center;
}
.p-secTopPhoto_box {
  padding: 50rem 75rem 44rem;
  background-color: var(--color-white);
  width: 1250rem;
  margin: 0 auto;
  margin-top: 40rem;
  box-shadow: 5rem 5rem var(--color-accent);
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_box {
    padding: 40rem 20rem 40rem;
    width: 350rem;
    margin-top: 40rem;
    box-shadow: 5rem 5rem var(--color-accent);
    border-radius: 2.7rem;
  }
}
.p-secTopPhoto_subTitle {
  background-color: var(--color-highlight);
  border-radius: 1000px;
  font-size: 20rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  padding: 5rem 0;
  margin-top: 30rem;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_subTitle {
    font-size: 20rem;
    padding: 5rem 0;
    margin-top: 30rem;
  }
}
.p-secTopPhoto_subTitle.-office, .p-secTopPhoto_subTitle.-dorm {
  margin-top: 60rem;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_subTitle.-office, .p-secTopPhoto_subTitle.-dorm {
    margin-top: 60rem;
  }
}
.p-secTopPhoto_collapse {
  display: none;
}
.p-secTopPhoto_list {
  display: grid;
  grid-template-columns: repeat(48, 1fr);
  gap: 10rem;
  margin-top: 20rem;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list {
    grid-auto-rows: 25rem;
    grid-auto-flow: dense;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    margin-top: 20rem;
  }
}
.p-secTopPhoto_list.-work2 {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_list.-work2 {
    margin-top: 5rem;
  }
}
.p-secTopPhoto_list > li {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_list > li.-sp {
    grid-column-start: 2;
  }
}
.p-secTopPhoto_list > li a {
  display: block;
  height: 100%;
  position: relative;
}
.p-secTopPhoto_list > li a ._img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4rem;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_list > li a ._img {
    border-radius: 4rem;
  }
}
.p-secTopPhoto_list > li a ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.5s;
}
.p-secTopPhoto_list > li a {
  /* ラベル付き: 写真左下にオーバーレイ */
}
.p-secTopPhoto_list > li a ._label {
  position: absolute;
  left: 0;
  bottom: 10rem;
  margin: 0;
  padding: 4rem 12rem;
  background-color: var(--color-white);
  font-size: 14rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_list > li a ._label {
    bottom: auto;
    top: 10rem;
    padding: 4rem 12rem;
    font-size: 14rem;
  }
}
.p-secTopPhoto_list > li a:hover ._img img {
  transform: scale(1.05);
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col1 {
    grid-column: span 1;
  }
  .p-secTopPhoto_list > li.-row1 {
    grid-row: span 1;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col2 {
    grid-column: span 2;
  }
  .p-secTopPhoto_list > li.-row2 {
    grid-row: span 2;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col3 {
    grid-column: span 3;
  }
  .p-secTopPhoto_list > li.-row3 {
    grid-row: span 3;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col4 {
    grid-column: span 4;
  }
  .p-secTopPhoto_list > li.-row4 {
    grid-row: span 4;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col5 {
    grid-column: span 5;
  }
  .p-secTopPhoto_list > li.-row5 {
    grid-row: span 5;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col6 {
    grid-column: span 6;
  }
  .p-secTopPhoto_list > li.-row6 {
    grid-row: span 6;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col7 {
    grid-column: span 7;
  }
  .p-secTopPhoto_list > li.-row7 {
    grid-row: span 7;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col8 {
    grid-column: span 8;
  }
  .p-secTopPhoto_list > li.-row8 {
    grid-row: span 8;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col9 {
    grid-column: span 9;
  }
  .p-secTopPhoto_list > li.-row9 {
    grid-row: span 9;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col10 {
    grid-column: span 10;
  }
  .p-secTopPhoto_list > li.-row10 {
    grid-row: span 10;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col11 {
    grid-column: span 11;
  }
  .p-secTopPhoto_list > li.-row11 {
    grid-row: span 11;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col12 {
    grid-column: span 12;
  }
  .p-secTopPhoto_list > li.-row12 {
    grid-row: span 12;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col13 {
    grid-column: span 13;
  }
  .p-secTopPhoto_list > li.-row13 {
    grid-row: span 13;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col14 {
    grid-column: span 14;
  }
  .p-secTopPhoto_list > li.-row14 {
    grid-row: span 14;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col15 {
    grid-column: span 15;
  }
  .p-secTopPhoto_list > li.-row15 {
    grid-row: span 15;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col16 {
    grid-column: span 16;
  }
  .p-secTopPhoto_list > li.-row16 {
    grid-row: span 16;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col17 {
    grid-column: span 17;
  }
  .p-secTopPhoto_list > li.-row17 {
    grid-row: span 17;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col18 {
    grid-column: span 18;
  }
  .p-secTopPhoto_list > li.-row18 {
    grid-row: span 18;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col19 {
    grid-column: span 19;
  }
  .p-secTopPhoto_list > li.-row19 {
    grid-row: span 19;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col20 {
    grid-column: span 20;
  }
  .p-secTopPhoto_list > li.-row20 {
    grid-row: span 20;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col21 {
    grid-column: span 21;
  }
  .p-secTopPhoto_list > li.-row21 {
    grid-row: span 21;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col22 {
    grid-column: span 22;
  }
  .p-secTopPhoto_list > li.-row22 {
    grid-row: span 22;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col23 {
    grid-column: span 23;
  }
  .p-secTopPhoto_list > li.-row23 {
    grid-row: span 23;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col24 {
    grid-column: span 24;
  }
  .p-secTopPhoto_list > li.-row24 {
    grid-row: span 24;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col25 {
    grid-column: span 25;
  }
  .p-secTopPhoto_list > li.-row25 {
    grid-row: span 25;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col26 {
    grid-column: span 26;
  }
  .p-secTopPhoto_list > li.-row26 {
    grid-row: span 26;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col27 {
    grid-column: span 27;
  }
  .p-secTopPhoto_list > li.-row27 {
    grid-row: span 27;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col28 {
    grid-column: span 28;
  }
  .p-secTopPhoto_list > li.-row28 {
    grid-row: span 28;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col29 {
    grid-column: span 29;
  }
  .p-secTopPhoto_list > li.-row29 {
    grid-row: span 29;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col30 {
    grid-column: span 30;
  }
  .p-secTopPhoto_list > li.-row30 {
    grid-row: span 30;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col31 {
    grid-column: span 31;
  }
  .p-secTopPhoto_list > li.-row31 {
    grid-row: span 31;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col32 {
    grid-column: span 32;
  }
  .p-secTopPhoto_list > li.-row32 {
    grid-row: span 32;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col33 {
    grid-column: span 33;
  }
  .p-secTopPhoto_list > li.-row33 {
    grid-row: span 33;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col34 {
    grid-column: span 34;
  }
  .p-secTopPhoto_list > li.-row34 {
    grid-row: span 34;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col35 {
    grid-column: span 35;
  }
  .p-secTopPhoto_list > li.-row35 {
    grid-row: span 35;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col36 {
    grid-column: span 36;
  }
  .p-secTopPhoto_list > li.-row36 {
    grid-row: span 36;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col37 {
    grid-column: span 37;
  }
  .p-secTopPhoto_list > li.-row37 {
    grid-row: span 37;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col38 {
    grid-column: span 38;
  }
  .p-secTopPhoto_list > li.-row38 {
    grid-row: span 38;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col39 {
    grid-column: span 39;
  }
  .p-secTopPhoto_list > li.-row39 {
    grid-row: span 39;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col40 {
    grid-column: span 40;
  }
  .p-secTopPhoto_list > li.-row40 {
    grid-row: span 40;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col41 {
    grid-column: span 41;
  }
  .p-secTopPhoto_list > li.-row41 {
    grid-row: span 41;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col42 {
    grid-column: span 42;
  }
  .p-secTopPhoto_list > li.-row42 {
    grid-row: span 42;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col43 {
    grid-column: span 43;
  }
  .p-secTopPhoto_list > li.-row43 {
    grid-row: span 43;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col44 {
    grid-column: span 44;
  }
  .p-secTopPhoto_list > li.-row44 {
    grid-row: span 44;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col45 {
    grid-column: span 45;
  }
  .p-secTopPhoto_list > li.-row45 {
    grid-row: span 45;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col46 {
    grid-column: span 46;
  }
  .p-secTopPhoto_list > li.-row46 {
    grid-row: span 46;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col47 {
    grid-column: span 47;
  }
  .p-secTopPhoto_list > li.-row47 {
    grid-row: span 47;
  }
}
@media screen and (min-width: 769px) {
  .p-secTopPhoto_list > li.-col48 {
    grid-column: span 48;
  }
  .p-secTopPhoto_list > li.-row48 {
    grid-row: span 48;
  }
}
.p-secTopPhoto_btn {
  text-align: center;
  margin-top: 30rem;
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_btn {
    margin-top: 30rem;
  }
}
.p-secTopPhoto_btn > button {
  display: inline-block;
  background-color: var(--color-marker-bg);
  border: 1px solid var(--color-accent);
  border-radius: 1000px;
  font-size: 25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  position: relative;
  width: 284rem;
  text-align: center;
  padding: 10rem 0;
  cursor: pointer;
  color: var(--color-accent);
  box-shadow: 5rem 5rem 10rem var(--color-shadow);
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_btn > button {
    font-size: 20rem;
    width: 284rem;
    padding: 10rem 0;
    box-shadow: 5rem 5rem 10rem var(--color-shadow);
  }
}
.p-secTopPhoto_btn > button::before {
  content: "";
  display: block;
  width: 25rem;
  aspect-ratio: 1/1;
  background: url(../img/top/ico_search.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 25rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-secTopPhoto_btn > button::before {
    width: 25rem;
    left: 25rem;
  }
}
.p-secTopPhoto_btn > button > ._close {
  display: none;
}
.p-secTopPhoto_box.is-active .p-secTopPhoto_btn > button > ._open {
  display: none;
}
.p-secTopPhoto_box.is-active .p-secTopPhoto_btn > button > ._close {
  display: inline;
}
.p-secTopPhoto_box.is-active .p-secTopPhoto_btn > button::before {
  background-image: url(../img/top/ico_accordion_close.webp);
}

/* -----------------------------------
Faq
------------------------------------ */
.p-secTopFaq {
  padding: 48rem 0 96rem;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq {
    padding: 48rem 20rem 60rem;
  }
}
.p-secTopFaq_title {
  text-align: center;
}
.p-secTopFaq_list {
  margin: 39rem auto 0;
  width: 1000rem;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list {
    margin: 39rem auto 0;
    width: auto;
  }
}
.p-secTopFaq_list > li {
  border: 1px solid var(--color-accent);
  border-radius: 10rem;
  padding: 0 60rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li {
    border-radius: 10rem;
    padding: 0 15rem;
    padding-right: 35rem;
  }
}
.p-secTopFaq_list > li:nth-of-type(n+2) {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li:nth-of-type(n+2) {
    margin-top: 10rem;
  }
}
.p-secTopFaq_list > li > div {
  padding: 13rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li > div {
    padding: 13rem 0;
  }
}
.p-secTopFaq_list > li > div ._icon {
  display: block;
  position: absolute;
  top: 50%;
  right: -22rem;
  width: 24rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-accent);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li > div ._icon {
    right: -25rem;
    width: 24rem;
  }
}
.p-secTopFaq_list > li > div ._icon::before {
  content: "";
  display: block;
  width: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  border-top: 1px solid var(--color-white);
  transition: transform 0.3s ease;
}
.p-secTopFaq_list > li > div ._icon::after {
  content: "";
  display: block;
  width: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 1px solid var(--color-white);
}
.p-secTopFaq_list > li > div > div {
  display: flex;
  align-items: center;
  gap: 32rem;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li > div > div {
    gap: 20rem;
  }
}
.p-secTopFaq_list > li > div > div > span {
  font-size: 25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: var(--color-accent);
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li > div > div > span {
    font-size: 16rem;
  }
}
.p-secTopFaq_list > li > div._q p {
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li > div._q p {
    font-size: 16rem;
  }
}
.p-secTopFaq_list > li > div._a {
  padding-top: 22rem;
  padding-bottom: 24rem;
  border-top: 1px solid var(--color-border-subtle);
  display: none;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li > div._a {
    padding-top: 22rem;
    padding-bottom: 24rem;
  }
}
.p-secTopFaq_list > li > div._a p {
  font-size: 15rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-secTopFaq_list > li > div._a p {
    font-size: 14rem;
  }
}
.p-secTopFaq_list > li.is-active ._icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
/* -----------------------------------
Parent
------------------------------------ */
.p-secTopParent {
  background: url(../img/top/bg_parent.webp);
  background-position: center;
  padding: 66rem 218rem 76rem;
}
@media screen and (max-width: 768px) {
  .p-secTopParent {
    padding: 40rem 20rem 40rem;
  }
}
.p-secTopParent_in {
  background: url(../img/top/bg_parent2.webp);
  background-position: center;
  border-radius: 10rem;
  padding: 45rem 88rem 66rem;
  box-shadow: 10rem 10rem var(--color-accent);
}
@media screen and (max-width: 768px) {
  .p-secTopParent_in {
    border-radius: 10rem;
    padding: 40rem 20rem 40rem;
    box-shadow: 10rem 10rem var(--color-accent);
  }
}
.p-secTopParent_title {
  text-align: center;
}
.p-secTopParent_txt {
  font-size: 15rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-top: 19rem;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .p-secTopParent_txt {
    font-size: 15rem;
    margin-top: 19rem;
  }
}
.p-secTopParent_contact {
  border: 1px solid var(--color-parent);
  background-color: var(--color-white);
  margin-top: 35rem;
}
@media screen and (max-width: 768px) {
  .p-secTopParent_contact {
    margin-top: 35rem;
  }
}
.p-secTopParent_contact ._label {
  background-color: var(--color-parent);
  color: var(--color-white);
  text-align: center;
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-secTopParent_contact ._label {
    font-size: 20rem;
  }
}
.p-secTopParent_contact ._info {
  text-align: center;
  padding: 17rem 0;
}
@media screen and (max-width: 768px) {
  .p-secTopParent_contact ._info {
    padding: 17rem 0;
  }
}
.p-secTopParent_contact ._info a {
  text-decoration: none;
  color: var(--color-base-font);
}
.p-secTopParent_contact ._info > ul {
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-secTopParent_contact ._info > ul {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopParent_contact ._info > ul > li span {
    display: none;
  }
}
.p-secTopParent_contact ._info > p {
  font-size: 15rem;
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .p-secTopParent_contact ._info > p {
    font-size: 13rem;
    margin-top: 14rem;
  }
}

/* -----------------------------------
Recruit
------------------------------------ */
.p-secTopRecruit {
  background: url(../img/top/bg_recruit_2.webp);
  background-position: center;
  position: relative;
  padding: 63rem 120rem 93rem;
}
@media screen and (max-width: 768px) {
  .p-secTopRecruit {
    padding: 40rem 20rem 40rem;
  }
}
.p-secTopRecruit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/top/bg_recruit_1.webp) no-repeat;
  background-size: cover;
}
.p-secTopRecruit_in {
  position: relative;
}
.p-secTopRecruit_title {
  text-align: center;
}
.p-secTopRecruit_box {
  background-color: var(--color-white-translucent);
  border: 1px solid var(--color-accent);
  border-radius: 15rem;
  margin-top: 27rem;
  padding: 38rem 70rem;
}
@media screen and (max-width: 768px) {
  .p-secTopRecruit_box {
    border-radius: 15rem;
    margin-top: 27rem;
    padding: 25rem 20rem;
  }
}
.p-secTopRecruit_box > dl {
  display: flex;
  align-items: center;
  padding: 23rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secTopRecruit_box > dl {
    padding: 23rem 0;
    flex-flow: column;
    align-items: flex-start;
    gap: 10rem;
  }
}
.p-secTopRecruit_box > dl:nth-of-type(n+2)::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid var(--color-text-subtle);
}
.p-secTopRecruit_box > dl > dt {
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  width: 210rem;
}
@media screen and (max-width: 768px) {
  .p-secTopRecruit_box > dl > dt {
    font-size: 20rem;
    width: auto;
  }
}
.p-secTopRecruit_box > dl > dd {
  font-size: 20rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-secTopRecruit_box > dl > dd {
    font-size: 15rem;
  }
}
.p-secTopRecruit_box > dl > dd._small {
  font-size: 15rem;
}
@media screen and (max-width: 768px) {
  .p-secTopRecruit_box > dl > dd._small {
    font-size: 15rem;
  }
}

/* -----------------------------------
Access
------------------------------------ */
.p-secTopAccess {
  background: url(../img/top/bg_parent.webp);
  background-position: center;
  padding: 57rem 0 47rem;
  padding-left: 219rem;
  padding-right: 119rem;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess {
    padding: 57rem 0 47rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.p-secTopAccess_in {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_in {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_info h3 {
    text-align: center;
  }
}
.p-secTopAccess_info > p {
  font-size: 20rem;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_info > p {
    font-size: 16rem;
    margin-top: 15rem;
  }
}
.p-secTopAccess_info ._access {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_info ._access {
    margin-top: 15rem;
  }
}
.p-secTopAccess_info ._access > dl:nth-of-type(n+2) {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_info ._access > dl:nth-of-type(n+2) {
    margin-top: 12rem;
  }
}
.p-secTopAccess_info ._access > dl > dt {
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_info ._access > dl > dt {
    font-size: 16rem;
  }
}
.p-secTopAccess_info ._access > dl > dd {
  font-size: 20rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_info ._access > dl > dd {
    font-size: 16rem;
  }
}
.p-secTopAccess_map ._map {
  box-shadow: 10rem 10rem var(--color-accent);
  border-radius: 10rem;
  width: 550rem;
  aspect-ratio: 550/400;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-secTopAccess_map ._map {
    box-shadow: 10rem 10rem var(--color-accent);
    border-radius: 10rem;
    width: 100%;
    margin-top: 30rem;
  }
}
.p-secTopAccess_map ._map ._map {
  width: 100%;
  height: 100%;
}
.p-secTopAccess_map ._map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
 * _popup.scss
 */
/* -----------------------------------
glightbox
------------------------------------ */
/* GLightbox open 時の html height: auto による scrollTop リセットを防ぐ。
   あわせて GLightbox が当てる overflow:hidden を打ち消し scroll を維持する
   （overflow を切り替えると vw 基準が揺れ root font-size 再計算の引き金になる。
   背景ロックは body.is-fixed が担うため html の overflow:hidden は不要）。 */
html.glightbox-open {
  height: 100% !important;
  overflow-y: scroll;
}

/* body は is-fixed で position:fixed になるが、reset の height:100% を引き継がせず content 高さを保持 */
body.is-fixed {
  height: auto !important;
}

.goverlay {
  background: var(--color-overlay) !important;
}

/* アドレスバー対策:
   glightbox.css の .ginner-container{ height: 100vh } は大ビューポート基準（アドレスバー無視）のため、
   アドレスバー表示中はモーダルの縦中央が可視領域からずれる。
   動的ビューポート(dvh)基準に上書きし、モーダル・白帯・ドット・矢印の基準を統一する
   （以下の 80dvh / 10dvh も同じ理由。各宣言の直前の vh は非対応ブラウザ用フォールバック） */
.ginner-container {
  height: 100vh !important;
  height: 100dvh !important;
}

.gslide-inline {
  background: transparent !important;
  box-shadow: none !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
}
.gslide-inline .ginlined-content {
  padding: 0 !important;
  max-height: none !important;
  /* デフォルトの overflow: auto だと、モーダル枠から上にはみ出す
     閉じるボタン（フォトツアー）がクリップされるため解除 */
  overflow: visible !important;
}

/* GLightbox 内のスクロールバーを完全非表示 */
.gcontainer,
.gslider,
.gslide,
.gslide-inline,
.ginlined-content {
  scrollbar-width: none !important;
}
.gcontainer::-webkit-scrollbar,
.gslider::-webkit-scrollbar,
.gslide::-webkit-scrollbar,
.gslide-inline::-webkit-scrollbar,
.ginlined-content::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* アニメーション時間をFancybox相当 (0.3s) に */
.gfadeIn,
.gfadeOut,
.gslideOutLeft,
.gslideInRight,
.gslideOutRight,
.gslideInLeft {
  animation-duration: 0.3s !important;
}

/* インラインモーダルでは loader 不要 */
.gloader {
  display: none !important;
}

/* 端のスライドではナビボタン非表示 (loop:falseの時の挙動) */
.gnext.disabled,
.gprev.disabled {
  opacity: 0 !important;
  pointer-events: none;
}

/* ボタン共通リセット */
.gnext,
.gprev,
.gclose {
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
  box-shadow: none !important;
}
.gnext svg,
.gprev svg,
.gclose svg {
  display: none !important;
}
.gnext:hover, .gnext:focus,
.gprev:hover,
.gprev:focus,
.gclose:hover,
.gclose:focus {
  opacity: 1 !important;
}

.gnext, .gprev {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 50rem !important;
  height: 50rem !important;
  background: none !important;
  border: none !important;
}
@media screen and (max-width: 768px) {
  .gnext, .gprev {
    width: 50rem !important;
    height: 50rem !important;
  }
}
.gnext::before, .gprev::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/top/ico_modal_arrow_sp.webp) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .gnext::before, .gprev::before {
    background-image: url(../img/top/ico_modal_arrow_sp.webp);
  }
}
.gnext, .gprev {
  /* インタビュー：SPで矢印をドットと同じ高さ（白帯の縦中央）に下げる */
}
@media screen and (max-width: 768px) {
  .gcontainer:has(.gslide .p-modalInterview) .gnext, .gcontainer:has(.gslide .p-modalInterview) .gprev {
    top: auto !important;
    /* 白帯は bottom: 10dvh・高さ vw(60)。矢印（高さ vw(50)）との差分の半分を足して縦中央に */
    bottom: calc(10vh + 5rem) !important;
    bottom: calc(10dvh + 5rem) !important;
    transform: none !important;
  }
}

.gnext {
  right: 295rem !important;
}
@media screen and (max-width: 768px) {
  .gnext {
    right: 40rem !important;
  }
}
.gnext {
  /* フォトツアー：PCは写真カード幅に合わせて中央寄り、SPは画面端へ寄せて半透明に */
}
.gcontainer:has(.gslide .p-modalPhoto) .gnext {
  right: 345rem !important;
}
@media screen and (max-width: 768px) {
  .gcontainer:has(.gslide .p-modalPhoto) .gnext {
    right: 20rem !important;
    opacity: 0.6 !important;
  }
}

.gprev {
  left: 295rem !important;
}
@media screen and (max-width: 768px) {
  .gprev {
    left: 40rem !important;
  }
}
.gprev::before {
  transform: rotate(180deg);
}
.gprev {
  /* フォトツアー：PCは写真カード幅に合わせて中央寄り、SPは画面端へ寄せて半透明に */
}
.gcontainer:has(.gslide .p-modalPhoto) .gprev {
  left: 345rem !important;
}
@media screen and (max-width: 768px) {
  .gcontainer:has(.gslide .p-modalPhoto) .gprev {
    left: 20rem !important;
    opacity: 0.6 !important;
  }
}

/* 閉じる時、矢印（.gnext/.gprev）はスライドの外（.glightbox-container 直下）にあり
   GLightbox のフェード対象に入らないため、中身とオーバーレイが 0.3s で消えても
   矢印だけ opacity:1 のまま残り、最後にモーダルごと一気に消える＝遅れて見える。
   GLightbox が閉じる時に付ける .glightbox-closing に合わせ、矢印も同時にフェードして揃える
   （.gclose はJSでスライド内に移動済みのため中身と一緒に消える＝対象外）。 */
.glightbox-closing .gnext,
.glightbox-closing .gprev {
  opacity: 0 !important;
  transition: opacity 0.3s;
}
.glightbox-closing {
  /* SPフォトツアーの矢印は下の .gcontainer:has(.p-modalPhoto)（:has で詳細度が高い）で
     opacity:0.6 を当てており、上の opacity:0 を上書きして閉じ時にフェードしない＝矢印だけ
     最後まで残り遅れて消える。同じ :has を閉じセレクタにも噛ませ詳細度を上回らせて打ち消す
     （transition は上の規則が同要素に効くので 0.3s でフェードする） */
}
@media screen and (max-width: 768px) {
  .glightbox-closing .gcontainer:has(.gslide .p-modalPhoto) .gnext,
  .glightbox-closing .gcontainer:has(.gslide .p-modalPhoto) .gprev {
    opacity: 0 !important;
  }
}

/* インタビューモーダルでは矢印を非表示 */
.gclose {
  position: absolute !important;
  background: url(../img/top/ico_popup_close.webp) no-repeat !important;
  background-size: contain !important;
  top: 18rem !important;
  right: 18rem !important;
  width: 40rem !important;
  height: 40rem !important;
  opacity: 1 !important;
}
@media screen and (max-width: 768px) {
  .gclose {
    top: 18rem !important;
    right: 18rem !important;
    width: 40rem !important;
    height: 40rem !important;
  }
}

/* 実ボタン .gclose は表示中のスライド内に1つしか無く、切替中はフェードアウトして不在になる。
   各モーダルに見た目だけのXを常設し、コンテンツと一緒にクロスフェードさせて消える瞬間を無くす
   （.gclose と同位置・同画像で重なるため見た目は変わらない） */
.p-modalInterview_in::after,
.p-modalPhoto_in::after {
  content: "";
  position: absolute;
  top: 18rem;
  right: 18rem;
  width: 40rem;
  height: 40rem;
  background: url(../img/top/ico_popup_close.webp) no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_in::after,
  .p-modalPhoto_in::after {
    top: 18rem;
    right: 18rem;
    width: 40rem;
    height: 40rem;
  }
}

/* フォトツアーは写真に被らないよう、閉じるボタンをカード上辺に半分かかる位置まで上げる
   （実体 .gclose はJSで _in 内に移動済みのためセレクタで個別指定できる） */
.p-modalPhoto_in > .gclose {
  top: -50rem !important;
  right: -30rem !important;
}
@media screen and (max-width: 768px) {
  .p-modalPhoto_in > .gclose {
    right: 0rem !important;
  }
}

.p-modalPhoto_in::after {
  top: -50rem;
  right: -30rem;
}
@media screen and (max-width: 768px) {
  .p-modalPhoto_in::after {
    right: 0rem;
  }
}

/* カルーセルドット（GLightboxにはネイティブな機能が無いのでJSで動的生成・SPのみ表示） */
.p-popupDots {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-popupDots {
    display: flex;
    /* viewport基準で配置（祖先のpositioningに左右されないように fixed） */
    position: fixed;
    bottom: 10vh;
    bottom: 10dvh;
    left: 100rem;
    right: 100rem;
    height: 60rem;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    /* コンテナの空き領域はクリック透過させてポップアップ閉じを防ぐ */
    pointer-events: none;
    z-index: 1000000;
    /* ドットはbody直下生成のため close イベント（クローズアニメ完了後に発火）まで
       DOMに残り、矢印・中身が消えた後に遅れて消える。閉じ開始時に is-closing を付けて
       矢印（0.3s）と同じ尺でフェードさせ、消えるタイミングを揃える */
    transition: opacity 0.3s;
  }
  .p-popupDots.is-closing {
    opacity: 0;
  }
}
.p-popupDots_dot {
  /* タップ領域はドット見た目より大きく確保 */
  width: 14rem;
  height: 14rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.p-popupDots_dot::before {
  content: "";
  display: block;
  width: 8rem;
  height: 8rem;
  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 0.6;
  transition: background-color 0.2s, opacity 0.2s;
}
.p-popupDots_dot.is-current::before {
  background-color: var(--color-accent);
  opacity: 1;
}

/* インタビューモーダル表示中はドットが白帯(.p-popup_nav)の上に乗るため、
   非アクティブ色を白から見える色に切り替える
   （ドットは data-popup-dots 属性が付いたギャラリーのみ表示。写真モーダルは属性なし＝非表示） */
body:has(.gslide .p-modalInterview) .p-popupDots_dot:not(.is-current)::before {
  background-color: var(--color-marker);
  opacity: 1;
}

/* -----------------------------------
ポップアップ共通
   ※ GLightbox は href="#id" の対象ノード自体を cloneNode し、そのルートに
     ginlined-content クラスを付与する。つまりクローン側では .p-popup 自身が
     最外殻（= .ginlined-content）として残る。
     幅・背景などの見た目は従来どおり .p-modalInterview_in / .p-modalPhoto_in が担当
------------------------------------ */
/* ページ上ではモーダルソースを非表示。クローン側は glightbox.css の
   .ginlined-content{ display: block !important } が inline の display:none ごと
   打ち消すため表示される */
body > .p-popup {
  display: none;
}

.p-popup {
  /* クローンのルートとして .gclose / _in::after の位置基準になる
     （旧構造でルートだった .p-modalInterview が持っていた position: relative を引き継ぐ） */
  position: relative;
}
.p-popup_nav {
  display: none;
}
.p-popup {
  /* SPでモーダル下部に白帯（カルーセルドットの土台）を表示。
     ドットと同じく data-popup-dots 付きギャラリーのみ（写真モーダルは表示しない）。PCは非表示 */
}
@media screen and (max-width: 768px) {
  .p-popup[data-popup-dots] .p-popup_nav {
    display: block;
    width: 370rem; /* 各モーダル(_in)のSP幅に合わせる */
    height: 60rem;
    margin: 0 auto;
    background-color: var(--color-white);
  }
}
.p-popup img {
  pointer-events: none;
}

/* インタビューモーダルでは _in の枠線・角丸を白帯まで延長する */
@media screen and (max-width: 768px) {
  .p-modalInterview + .p-popup_nav {
    border: 1px solid var(--color-accent);
    border-top: none;
    border-radius: 0 0 20rem 20rem;
  }
}
/* -----------------------------------
modalInterview
------------------------------------ */
.p-modalInterview {
  /* .p-popup_in 内に置かれクローンにも残るため、position 等を与えると
     .gclose / _in::after の基準が変わってしまう。スタイルは _in 側に置く */
}
.p-modalInterview_in {
  padding: 65rem 70rem 0;
  border: 1px solid var(--color-accent);
  border-radius: 20rem;
  width: 800rem;
  background: url(../img/top/bg_modal.webp);
  background-position: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_in {
    /* 下の白帯(.p-popup_nav)と合わせて全体が80dvhになるよう帯の高さ分を引く */
    height: calc(80vh - 60rem);
    height: calc(80dvh - 60rem);
    overflow-y: auto;
    /* overflow-y: auto 指定で横軸も auto 計算になり、はみ出し要素
       （translateX で張り出す人物画像など）で横スクロールバーが出るため遮断 */
    overflow-x: hidden;
    padding: 20rem 20rem 0;
    border-radius: 20rem 20rem 0 0;
    width: 370rem;
  }
}
.p-modalInterview_col {
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_col {
    gap: 10rem;
    flex-flow: column;
  }
}
.p-modalInterview_left {
  flex: 1;
}
.p-modalInterview_left ._info {
  color: var(--color-accent);
  margin-top: -12rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_left ._info {
    margin-top: -12rem;
  }
}
.p-modalInterview_left ._info h2 {
  font-size: 36rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_left ._info h2 {
    font-size: 36rem;
  }
}
.p-modalInterview_left ._info h2 span {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.p-modalInterview_left ._info h2 span::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-color: var(--color-marker-bg);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-modalInterview_left ._qa {
  margin-top: 32rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_left ._qa {
    margin-top: 32rem;
  }
}
.p-modalInterview_left ._qa dl:nth-of-type(n+2) {
  margin-top: 17rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_left ._qa dl:nth-of-type(n+2) {
    margin-top: 17rem;
  }
}
.p-modalInterview_left ._qa dl dt {
  color: var(--color-accent);
  font-size: 17rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_left ._qa dl dt {
    font-size: 17rem;
  }
}
.p-modalInterview_left ._qa dl dt span {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.p-modalInterview_left ._qa dl dt span::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-color: var(--color-marker-bg);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-modalInterview_left ._qa dl dd {
  font-size: 15rem;
  margin-top: 10rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_left ._qa dl dd {
    font-size: 15rem;
    margin-top: 10rem;
  }
}
.p-modalInterview_right {
  width: 280rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right {
    width: auto;
    margin-top: 15rem;
  }
}
.p-modalInterview_right ._img {
  display: flex;
  flex-flow: column;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._img {
    gap: 12rem;
  }
}
.p-modalInterview_right ._img > div {
  border: 1px solid var(--color-accent);
}
.p-modalInterview_right ._schadule {
  margin-top: -13rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule {
    margin-top: 0rem;
  }
}
.p-modalInterview_right ._schadule h3 {
  font-size: 17rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: var(--color-accent);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule h3 {
    font-size: 17rem;
  }
}
.p-modalInterview_right ._schadule ul {
  margin-top: 4rem;
  border: 1px solid var(--color-accent);
  border-radius: 10rem;
  padding: 10rem;
  position: relative;
  z-index: 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule ul {
    margin-top: 10rem;
    border-radius: 10rem;
    padding: 10rem;
  }
}
.p-modalInterview_right ._schadule ul li {
  display: flex;
  align-items: center;
  gap: 18rem;
  height: 33rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule ul li {
    gap: 18rem;
    height: 33rem;
  }
}
.p-modalInterview_right ._schadule ul li > div {
  line-height: 1.25;
  position: relative;
}
.p-modalInterview_right ._schadule ul li > div:nth-of-type(1) {
  font-size: 15rem;
  width: 45rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule ul li > div:nth-of-type(1) {
    font-size: 15rem;
    width: 45rem;
  }
}
.p-modalInterview_right ._schadule ul li > div:nth-of-type(2) {
  width: 10rem;
  aspect-ratio: 1/1;
  background-color: var(--color-accent);
  border: 2rem solid var(--color-accent);
  border-radius: 1000px;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule ul li > div:nth-of-type(2) {
    width: 10rem;
  }
}
.p-modalInterview_right ._schadule ul li > div:nth-of-type(2).-type1 {
  border-color: rgba(0, 0, 0, 0);
  background-color: var(--color-marker-bg);
}
.p-modalInterview_right ._schadule ul li > div:nth-of-type(2).-type2 {
  background-color: var(--color-accent);
}
.p-modalInterview_right ._schadule ul li > div:nth-of-type(2).-type3 {
  background-color: var(--color-marker-bg);
}
.p-modalInterview_right ._schadule ul li > div:nth-of-type(2).-type4 {
  background-color: var(--color-white);
}
.p-modalInterview_right ._schadule ul li > div:nth-of-type(3) {
  font-size: 15rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule ul li > div:nth-of-type(3) {
    font-size: 15rem;
  }
}
.p-modalInterview_right ._schadule ul li:not(:last-of-type) > div:nth-of-type(2)::before {
  content: "";
  display: block;
  border-left: 1rem solid var(--color-marker-bg);
  height: 33rem;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-modalInterview_right ._schadule ul li:not(:last-of-type) > div:nth-of-type(2)::before {
    height: 33rem;
  }
}
.p-modalInterview_message {
  margin-top: 45rem;
  position: relative;
  padding-bottom: 50rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_message {
    margin-top: 45rem;
    padding-bottom: 50rem;
  }
}
.p-modalInterview_message ._txt {
  background-color: var(--color-marker-bg);
  border: 1px solid var(--color-accent);
  width: 479rem;
  padding: 16rem 35rem;
  border-radius: 14rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_message ._txt {
    width: 220rem;
    padding: 16rem 20rem;
    border-radius: 14rem;
  }
}
.p-modalInterview_message ._txt::before, .p-modalInterview_message ._txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(20rem + 2px);
  aspect-ratio: 40/38;
  clip-path: polygon(0 0, 1px 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .p-modalInterview_message ._txt::before, .p-modalInterview_message ._txt::after {
    width: calc(15rem + 2px);
  }
}
.p-modalInterview_message ._txt::before {
  background-color: var(--color-accent);
  transform: translate(100%, -50%);
}
.p-modalInterview_message ._txt::after {
  background-color: var(--color-marker-bg);
  transform: translate(calc(100% - 2.5px), calc(-50% - 1px));
}
.p-modalInterview_message ._txt h3 {
  font-size: 17rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_message ._txt h3 {
    font-size: 17rem;
  }
}
.p-modalInterview_message ._txt h3 span {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.p-modalInterview_message ._txt h3 span::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-modalInterview_message ._txt p {
  font-size: 15rem;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_message ._txt p {
    margin-top: 10rem;
    font-size: 17rem;
  }
}
.p-modalInterview_message ._img {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 170rem;
  transform: translateX(50%);
}
.p-modalInterview_message ._img.-woman {
  width: 130rem;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_message ._img {
    width: 120rem;
    right: 12%;
  }
  .p-modalInterview_message ._img.-woman {
    width: 90rem;
  }
}
.p-modalInterview_message ._img span {
  position: absolute;
  left: 50%;
  bottom: 10rem;
  transform: translateX(-50%);
  font-size: 14rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  display: inline-block;
  background-color: var(--color-white);
  line-height: 1.2;
  padding: 0 0.3em;
  color: var(--color-accent);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-modalInterview_message ._img span {
    bottom: 10rem;
    font-size: 14rem;
  }
}

/* -----------------------------------
modalPhoto
------------------------------------ */
.p-modalPhoto {
  height: auto;
  max-width: none;
  /* .p-popup_in 内に置かれクローンにも残るが、見た目に影響するスタイルは
     従来どおり _in 側に置く */
}
.p-modalPhoto_in {
  width: 700rem;
  margin: 0 auto;
  background: var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-modalPhoto_in {
    width: 370rem;
  }
}
.p-modalPhoto_img {
  position: relative;
}
.p-modalPhoto_img img {
  width: 100%;
  height: auto;
}
.p-modalPhoto_img {
  /* ラベル付き: 写真左下にオーバーレイ（ギャラリーと同スタイル） */
}
.p-modalPhoto_img ._label {
  position: absolute;
  left: 0;
  bottom: 10rem;
  margin: 0;
  padding: 4rem 12rem;
  background-color: var(--color-white);
  font-size: 18rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-modalPhoto_img ._label {
    bottom: auto;
    top: 10rem;
    padding: 4rem 12rem;
    font-size: 14rem;
  }
}
.p-modalPhoto_text {
  font-size: 16rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 15rem 0;
}
@media screen and (max-width: 768px) {
  .p-modalPhoto_text {
    font-size: 16rem;
    padding: 15rem 0;
  }
}

/* -----------------------------------
Utility
------------------------------------ */
/*
 * _utility.scss
 */
/* -----------------------------------
print
------------------------------------ */
@media print {
  .u-printHidden {
    display: none;
  }
}

.u-printVisible {
  display: none;
}
@media print {
  .u-printVisible {
    display: block;
  }
}

/* -----------------------------------
font
------------------------------------ */
.u-fwb {
  font-weight: bold !important;
}

.u-fwn {
  font-weight: normal !important;
}

/* -----------------------------------
align
------------------------------------ */
.u-tc {
  text-align: center !important;
}

.u-tl {
  text-align: left !important;
}

.u-tr {
  text-align: right !important;
}

/* -----------------------------------
padding
------------------------------------ */
.u-mt0 {
  margin-top: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

/* -----------------------------------
font-size rem
------------------------------------ */
.u-fz10px {
  font-size: 1rem;
}

.u-fz11px {
  font-size: 1.1rem;
}

.u-fz12px {
  font-size: 1.2rem;
}

.u-fz13px {
  font-size: 1.3rem;
}

.u-fz14px {
  font-size: 1.4rem;
}

/* -----------------------------------
font-size em
------------------------------------ */
.u-fz09em {
  font-size: 0.9em;
}

.u-fz10em {
  font-size: 1em;
}

.u-fz11em {
  font-size: 1.1em;
}

.u-fz12em {
  font-size: 1.2em;
}

.u-fz13em {
  font-size: 1.3em;
}

.u-fz14em {
  font-size: 1.4em;
}

/* -----------------------------------
clerfix
------------------------------------ */
.sec::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* -----------------------------------
display
------------------------------------ */
.u-d_b {
  display: block !important;
}

.u-d_n {
  display: none !important;
}

.u-d_ib {
  display: inline-block !important;
}

.u-tight-r {
  margin-right: -0.5em;
}

@media screen and (min-width: 769px) {
  .u-tight-r-pc {
    margin-right: -0.5em;
  }
}

@media screen and (max-width: 768px) {
  .u-tight-r-sp {
    margin-right: -0.5em;
  }
}

.u-tight-l {
  margin-left: -0.5em;
}

@media screen and (min-width: 769px) {
  .u-tight-l-pc {
    margin-left: -0.5em;
  }
}

@media screen and (max-width: 768px) {
  .u-tight-l-sp {
    margin-left: -0.5em;
  }
}

/* -----------------------------------
display adjust
------------------------------------ */
.u-smhide,
.u-sphide,
.u-middlehide,
.u-tablethide,
.u-basehide {
  display: block;
}
.u-smhide.-inline,
.u-sphide.-inline,
.u-middlehide.-inline,
.u-tablethide.-inline,
.u-basehide.-inline {
  display: inline;
}

.u-smblock,
.u-spblock,
.u-middleblock,
.u-tabletblock,
.u-baseblock {
  display: none;
}

@media screen and (max-width: 1499px) {
  .u-baseblock {
    display: block;
  }
  .u-basehide {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .u-tabletblock {
    display: block;
  }
  .u-tablethide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-middleblock {
    display: block;
  }
  .u-middleblock.-inline {
    display: inline;
  }
  .u-middlehide {
    display: none !important;
  }
}
@media screen and (max-width: 950px) {
  .u-spblock {
    display: block;
  }
  .u-sphide {
    display: none !important;
  }
}
@media screen and (max-width: 374px) {
  .u-smblock {
    display: block;
  }
  .u-smhide {
    display: none !important;
  }
}
/* ===================================
Page
=================================== */
/*
 * _page.scss
 */
/* -----------------------------------
#top
------------------------------------ *//*# sourceMappingURL=style.css.map */