@charset "UTF-8";
:root {
  --font-family-ja: "Noto Sans JP", "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic",
    "sans-serif";
  --font-family-en: "Oswald", sans-serif;
  --color-cosmos: #171e2a;
  --color-cosmos-light: #2f3643;
  --color-accent: #43c2d2;
  --color-accent-pale: #a5d3d9;
  --color-primary: #444444;
  --color-alert: #bb1285;
  --color-list: #a9afaf;
  --color-basic: #222;
  --color-dark: #e3e1de;
  --color-light: #eee;
  --color-pale: #f5f5f5;
  --color-non: #fff;
  --color-level0: #666;
  --color-level1: #777;
  --color-level2: #888;
  --color-here: #ddd;
  --color-inner-here: #fff;
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
}

body {
  margin: 0;
  font-family: var(--font-family-ja);
}

html, body {
  -webkit-text-size-adjust: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 14px;
  line-height: 2;
  margin: 0 0 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-ja);
}

font {
  font-family: inherit;
}

.MainContainer {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(23, 30, 42, 0.5);
  z-index: 1;
}

.MainContents {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1800px;
  min-height: 600px;
  z-index: 1;
}

.sample {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  font-weight: 600;
  color: #66f;
  visibility: hidden;
}

.scrollAnchor {
  position: absolute;
  left: 0;
  z-index: 1001;
  color: #f66;
  visibility: hidden;
}

/*
a {
  .en,
  .ja {
    display: none;
  }
  // -webkit-tap-highlight-color: #eaf5fb;
}
*/
a,
a:hover,
a:visited {
  color: inherit;
}

.ButtonBase {
  position: relative;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 304px;
}
.ButtonBase .button {
  position: absolute;
  height: 47px;
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.ButtonBase .button .back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: #fff;
}
.ButtonBase .button .shadow {
  position: absolute;
  top: 7px;
  left: 3px;
  width: 100%;
  height: 100%;
  background: rgba(140, 228, 238, 0.5333333333);
  border-radius: 100px;
}
.ButtonBase .button .border {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 3px solid #000000;
}
.ButtonBase .button .label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  gap: 8px;
  color: #000;
  background-color: transparent;
  text-decoration: none;
}
.ButtonBase .button .label .en {
  display: inline-block;
  padding-top: 1px;
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  z-index: 4;
}
.ButtonBase .button .label .ja {
  display: inline-block;
  max-width: 188px;
  overflow: hidden;
  font-family: var(--font-family-ja);
  font-weight: 800;
  font-size: 16px;
  line-height: 100%;
  z-index: 4;
}
.ButtonBase:hover .button .shadow {
  opacity: 0.6;
}
.ButtonBase:active .button {
  margin-top: 2px;
  margin-left: 2px;
}
.ButtonBase:active .button .shadow {
  top: 5px;
  left: 1px;
}

.primary .button .shadow {
  background: rgba(140, 228, 238, 0.5333333333);
}

.secondary .button .shadow {
  background: rgba(255, 184, 178, 0.5333333333);
}

.spbreak {
  display: none;
}

#loadingOverlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
h2 {
  font-family: var(--font-family-ja);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.425rem + 0.94vw, 2.25rem);
  line-height: 1.4;
  text-align: center;
  color: #000;
}
h2 span {
  display: block;
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

h1 {
  font-family: var(--font-family-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
}
h1 span {
  display: block;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: clamp(2.5rem, 2.213rem + 1.18vw, 3.125rem);
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  background: var(--color-basic);
  border-radius: 50%;
  padding: 20px;
  z-index: 1;
}

.icon.prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url(../images/common/icon/icon_arrowL.svg) no-repeat center center/contain;
  z-index: 2;
}

.icon.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url(../images/common/icon/icon_arrow_next.svg) no-repeat center center/contain;
  z-index: 3;
}

/*//////////////////// PAGINATION ////////////////////////*/
.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  font-family: var(--font-family-en);
  text-align: center;
  margin: 0 0 7rem 0;
  gap: 10px;
}
.pagination .icon {
  margin: 0 20px;
}
.pagination .icon.prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url(../images/common/icon/icon_arrowL.svg) no-repeat center center/contain;
  z-index: 2;
}
.pagination .icon.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url(../images/common/icon/icon_arrowR.svg) no-repeat center center/contain;
  z-index: 3;
}

.pagination .current {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem;
  margin: 0px 0.5rem;
  text-align: center;
  background: var(--color-basic);
  color: var(--color-non);
}

.pagination span {
  position: relative;
  color: var(--color-non);
  font-size: 1.8rem;
  line-height: 1.8;
  width: 30px;
  padding: 16px 0;
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 30px;
  line-height: 44px;
  text-align: center;
}

.pagination a {
  position: relative;
  color: #6c7586;
  font-size: 1.8rem;
  line-height: 1.8;
  width: 30px;
  padding: 16px 0;
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 30px;
  line-height: 44px;
  text-align: center;
  text-decoration: none;
}

.pagination .icon::before {
  background: var(--color-non);
}

/*
.pagination .icon.prev::after,
.pagination .icon.next::after {
  filter: invert(1);
}
*/
.clamp1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.iconButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 56px;
  width: 100%;
  height: 48px;
  background: #ffffff;
  border-radius: 100px;
  white-space: nowrap;
  font-family: var(--font-family-ja);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  /* ボックスの高さと同一 */
  color: #222222;
  text-decoration: none;
}
.iconButton::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #171e2a;
  z-index: 1;
}
.iconButton.home::before {
  background-image: url(../images/interview/icon_home.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
}
.iconButton.mail::before {
  background-image: url(../images/interview/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
}

.space {
  position: absolute;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  transform-origin: top center;
}
.space .stars {
  position: absolute;
  width: 100%;
  height: 400px;
  max-width: 1800px;
  min-width: 960px;
}
.space .stars .planet_a {
  position: absolute;
  width: 145px;
  height: auto;
  left: 18.1666666667%;
  top: -21px;
}
.space .stars .planet_c {
  position: absolute;
  width: 282px;
  height: auto;
  left: -2.5555555556%;
  margin-top: clamp(162px, 11.6666666667%, 230px);
}
.space .stars .planet_b {
  position: absolute;
  width: 152px;
  height: auto;
  right: 16.2222222222%;
  margin-top: 1.4444444444%;
}
.space .stars .planet_d {
  position: absolute;
  width: 162px;
  height: auto;
  right: -2.5555555556%;
  margin-top: clamp(147px, 12.9166666667%, 230px);
  opacity: 0.5;
}

.wp-block-details.is-layout-flow.wp-block-details-is-layout-flow summary {
  font-size: 15px;
  font-weight: 400;
  color: #38909b;
}

.wp-block-details.is-layout-flow.wp-block-details-is-layout-flow p {
  font-size: 13px;
  line-height: 1.8;
  padding: 6px;
}

@media (max-width: 768px) {
  /*
  .space {
    .stars {
      width: calc(100% / 0.8);
      max-width: 1800px;
      min-width: 280px;
      transform: scale(0.8);
      transform-origin: top center;
    }
  }
  */
}
@media (max-width: 550px) {
  /*
  .space {
    .stars {
      width: calc(100% / 0.6);
      max-width: 960px;
      min-width: 280px;
      transform: scale(0.6);
      transform-origin: top center;
    }
  }
  */
}
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -26px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa2 {
  animation: fuwafuwa 4s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(7deg);
  }
  50% {
    transform: translate(0, 16px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(-7deg);
  }
}

/*Block Editor youtube */
.youtube-container {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube-container iframe {
    width: 100% !important;
    height: 100% !important;
}

.is-style-section-1 {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.is-style-section-1 iframe {
    width: 100% !important;
    height: 100% !important;
}

/*Block Editor interview */
.wp-block-column.is-style-section-2 {
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #090909;
    text-align: left;
    padding-left: 24px;
}
.wp-block-column.is-style-section-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 6px;
    height: 100%;
    background: var(--color-cosmos);
    border-radius: 100px;
}