@charset "UTF-8";
/* Theme Name: CUBIC
Description: CUBIC Template
Author: kashimura co.ltd..
*/
@font-face {
  font-family: "851MkPOP";
  src: url("../fonts/851MkPOP.woff2") format("woff2"), url("../fonts/851MkPOP.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  /* Colors */
  --black: #000;
  --white: #fff;
  --yellow: #FFFF00;
  --interview-color: #FF856D;
  --interview01-color: #FF856D;
  --interview02-color: #8FD21F;
  --interview03-color: #FF3399;
  --interview04-color: #FFAF00;
  --dandelion-color: #ffd900;
  --border-color: #666464;
  --text-color: #231815;
}

body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body.interview01,
body .interview01-container {
  --interview-color: var(--interview01-color);
}
body.interview01 .page-link__item--interview01,
body .interview01-container .page-link__item--interview01 {
  display: none;
}
body.interview02,
body .interview02-container {
  --interview-color: var(--interview02-color);
}
body.interview02 .page-link__item--interview02,
body .interview02-container .page-link__item--interview02 {
  display: none;
}
body.interview03,
body .interview03-container {
  --interview-color: var(--interview03-color);
}
body.interview03 .page-link__item--interview03,
body .interview03-container .page-link__item--interview03 {
  display: none;
}
body.interview04,
body .interview04-container {
  --interview-color: var(--interview04-color);
}
body.interview04 .page-link__item--interview04,
body .interview04-container .page-link__item--interview04 {
  display: none;
}
body.top .page-link-container {
  display: none;
}

.in {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

ul,
li {
  list-style: none;
}

a {
  display: inline-block;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

img {
  display: inline-block;
  clear: both;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.tsukubrdgothic {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.mkpop {
  font-family: "851MkPOP";
  font-weight: normal;
  font-style: normal;
}

.text-color-dandelion {
  color: var(--dandelion-color);
}

.bg-main-color {
  background: #3FDEE0;
}

h2 {
  font-size: 35px;
  font-weight: 700;
}

h3 {
  font-size: 21px;
  line-height: initial;
  text-align: center;
  font-weight: 700;
}

.bg-triangle {
  position: relative;
}
.bg-triangle::after {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1920/334;
  background: #3FDEE0;
  position: absolute;
  bottom: -1px;
  left: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
}

.bg {
  position: absolute;
  top: 27%;
  left: 23.6%;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 1.7vw;
  z-index: 1;
}
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.bg .bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transform-origin: center top;
  z-index: 1;
  opacity: 0;
  animation: bg 2.6s 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.bg .bg-wrap:last-child {
  margin-top: 2.1vw;
}
.bg .bg-wrap:last-child::before {
  animation-delay: 2.5s;
}
.bg .bg-wrap .inn {
  display: inline-block;
  position: relative;
  z-index: 1;
  opacity: 0;
  width: 2.6vw;
  margin: 1.14vw 0.8vw 3vw;
  animation: textIn 3s 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.bg .bg-wrap:last-child .inn {
  animation-delay: 2.6s;
  width: 2.5vw;
  margin-top: 2.3vw;
  margin-bottom: 2vw;
}

.smooth {
  position: absolute;
  left: 2%;
  bottom: 11%;
  z-index: 1;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  height: auto;
  clip-path: inset(0 100% 0 0);
  animation: smoothReveal 2.3s cubic-bezier(0.37, 0, 0.63, 1) forwards;
  animation-delay: 3s;
}
.smooth img {
  width: 30vw;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  30%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  30%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes smoothReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
header {
  position: relative;
}

.header {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 30px 90px 0 2%;
}
.top .header {
  position: absolute;
  z-index: 2;
  width: 100%;
  padding: 1.56vw 17% 0;
}
.top .header a:has(.site-logo) {
  width: 6.51vw;
  height: 6.51vw;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8%;
}
.top .header .nav-list {
  display: none !important;
}

.site-logo {
  width: 110px;
}

.top .site-logo {
  width: 88%;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-content: center;
  align-items: center;
}
.nav-list > a {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.nav-list .icon-wrapper i {
  line-height: 1;
  font-size: 3em;
}
.nav-list .icon-wrapper i::before {
  background-color: var(--interview03-color);
}
.nav-list .icon-wrapper span {
  font-size: 15px;
  font-weight: 700;
  display: block;
  line-height: 0.5;
  color: var(--interview03-color);
  margin-top: -0.4em;
}

/* ========= ハンバーガーメニュー ========= */
/* ===============
  This hamburger button was generated by Zarigani Design Office Hamburger Button Generator.

  Zarigani Design Office's Hamburger Button
  Copyright: 2019 Zarigani Design Office
  URL: https://zarigani-design-office.com/hamburger/
  This software is released under the MIT License.
  http://opensource.org/licenses/mit-license.php
  ================*/
/*+++ Reset +++*/
.zdo_drawer_button * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
  text-decoration: none;
  list-style: none;
}

.zdo_drawer_button {
  display: block;
  padding: 0;
  width: 42px;
  height: 26px;
  position: relative;
  background: none;
  border: none;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
}

.zdo_drawer_button .zdo_drawer_bar {
  display: block;
  width: 42px;
  height: 2px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
}

.zdo_drawer_button .zdo_drawer_bar1 {
  top: 0;
}

.zdo_drawer_button .zdo_drawer_bar2 {
  top: 50%;
}

.zdo_drawer_button .zdo_drawer_bar3 {
  top: 100%;
}

.zdo_drawer_button.active .zdo_drawer_bar {
  width: 36.77px;
  left: 8px;
}

.zdo_drawer_button.active .zdo_drawer_bar1 {
  transform: rotate(0.7853981634rad) translateY(-50%);
  top: 0px;
}

.zdo_drawer_button.active .zdo_drawer_bar2 {
  opacity: 0;
}

.zdo_drawer_button.active .zdo_drawer_bar3 {
  transform: rotate(-0.7853981634rad) translateY(-50%);
  top: calc(100% - 0px);
}

.zdo_drawer_button.active .zdo_drawer_menu_text {
  display: none;
}

.zdo_drawer_button.active .zdo_drawer_close {
  display: block;
}

.zdo_drawer_text {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  text-align: center;
  font-size: 10px;
}

.zdo_drawer_close {
  letter-spacing: 0.08em;
  display: none;
}

/*+++ Default Button Color +++*/
.zdo_drawer_button {
  color: #fff;
}

.zdo_drawer_button .zdo_drawer_bar {
  background-color: #fff;
}

.hamburger-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 74px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b3b3b3;
  z-index: 999;
}
.top .hamburger-wrapper {
  background: var(--interview03-color);
}

nav {
  position: fixed;
  top: 62px;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 50px 4%;
  background: #b3b3b3;
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
nav.active {
  visibility: visible;
  opacity: 1;
}
.top nav {
  background: var(--interview03-color);
}
nav .nav-list .icon-wrapper i::before {
  background-color: var(--white);
}
nav .nav-list .icon-wrapper span {
  color: #fff;
}
nav .nav-list > a:not(:first-child) {
  border-left: 1px solid var(--white);
}

.topmv .swiper-slide img {
  width: 100%;
  height: auto;
}

.top-content {
  padding-top: 6.25vw;
}
.top-content--kigyo {
  position: relative;
}
.top-content--kigyo .bg-main-color {
  padding: 43px 0 171px;
}
.top-content--interview {
  background: var(--yellow);
}
.top-content--support {
  padding-top: 15.1041666667vw;
}
.top-content--questionnaire {
  padding-top: 3.125vw;
}
.top-content--questionnaire a {
  width: 100%;
  font-size: 1em;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  background: #00B0F0;
  border: 3px solid var(--black);
  padding: 0.8em;
}
.top-content--questionnaire a span {
  font-size: 1.5em;
}

.top-poem__text {
  line-height: 1.8125;
  font-weight: 700;
}
.top-poem__text span {
  color: var(--interview03-color);
}

.top-kigyo__content {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-end;
  width: 100%;
}
.top-kigyo .item1 {
  grid-row: 1;
  grid-column: 1;
  margin: auto;
}
.top-kigyo .item2 {
  grid-row: 2;
  grid-column: 1;
  margin: 10px auto 32px;
}
.top-kigyo .item3 {
  grid-row: 3;
  grid-column: 1;
  font-weight: 700;
  text-align: justify;
  line-height: 1.75;
  width: 296px;
}
.top-kigyo .item4 {
  grid-row: 4;
  grid-column: 1;
  margin-top: 26px;
}
.top-kigyo .item5 {
  grid-row: 1/5;
  grid-column: 2;
}
.top-kigyo--02__content {
  position: relative;
}
.top-kigyo--02__content:first-child::before {
  content: url("../images/fukidasi-top-kigyo.svg");
  display: inline-block;
  width: 420px;
  height: auto;
  position: absolute;
  top: 43px;
  left: -6%;
  vertical-align: middle;
}

.osusume-point__text {
  position: relative;
  padding: 3.75em 7% 2.5em;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.75;
  text-align: justify;
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 40px;
}
.osusume-point__text::before {
  content: url(../images/circle-arrow.svg);
  position: absolute;
  top: -13%;
  left: 50%;
  width: 20%;
  transform: translateX(-50%);
}
.osusume-point__index {
  position: relative;
  width: 70%;
  margin: auto;
}

.top-interview {
  position: relative;
  margin-top: 55px;
}
.top-interview__inner {
  width: 90%;
  max-width: 1402px;
  margin: auto;
  aspect-ratio: 1402/967;
  background: url(../images/bg-book.svg) center/contain no-repeat;
}
.top-interview__btn {
  width: -moz-max-content;
  width: max-content;
  padding: 5px 1em;
  font-size: clamp(0.875rem, 0.374rem + 0.89vw, 1.25rem);
  font-weight: 800;
  color: var(--white);
  background: var(--interview-color);
  border-radius: 5px;
}
.top-interview__img {
  position: relative;
}

#interview2026 {
  padding-bottom: 9.6875vw;
}

.top-support {
  padding-top: 37px;
}
.top-support__item {
  padding: 60px 0;
}
.top-support__item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.top-support h3 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background-color: var(--dandelion-color);
  border-radius: 20px;
}
.top-support h3::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 40px;
  z-index: -1;
  border-top: 30px solid var(--dandelion-color);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  transform: rotate(-25deg);
}
.top-support h3 img {
  height: 1.3em;
}
.top-support .card a:has(> .banner) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-support .part-l a {
  border: 1px solid var(--black);
}
.top-support .border-w-box {
  color: var(--white);
}

.heading--bg {
  color: var(--white);
  text-align: center;
  border-radius: 20px;
}

.speech-bubble {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  padding: 5px 35px;
  border: 6px solid #000000;
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.8;
  color: #000000;
  width: 100%;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}
.speech-bubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 32px 25px 0 25px;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 22.3px 17.4px 0 17.4px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.border-w-box {
  position: relative;
  display: inline-block;
  padding: 2px 0.5em;
  font-size: 0.9375em;
  background: var(--interview03-color);
  border: 2px solid var(--black);
  border-radius: 0;
}
.border-w-box::before, .border-w-box::after {
  content: "";
  position: absolute;
  right: -0.4em;
  background: #231815;
  border-radius: 2px;
}
.border-w-box::before {
  top: 2px;
  width: 2px;
  height: 2.3em;
}
.border-w-box::after {
  bottom: -0.4em;
  width: 8em;
  height: 2px;
}

.banner {
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.banner img {
  height: auto;
  transition: transform 0.6s ease;
}
.banner img:hover {
  transform: scale(1.1);
}

.part-r p,
.card p {
  text-align: justify;
}

.page-hed__title {
  text-align: center;
  padding: 6px 2%;
}
.page-hed__title img {
  width: 64%;
}
.page-hed__info {
  width: 90%;
  max-width: 1402px;
  margin: 88px auto 0;
  aspect-ratio: 1402/967;
  background: url(../images/bg-page-book.svg) center/contain no-repeat;
}
.page-hed__info .in {
  padding-top: 5.46875vw;
}
.page-hed__info__img {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.page-hed__info__text {
  display: grid;
  grid-template-columns: 215fr 335fr 550fr;
  margin-top: 2.34375vw;
}
.page-hed__info__text > div:nth-child(2) {
  position: relative;
}
.page-hed__info__text > div:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 85%;
  background-color: var(--text-color);
}
.page-hed__info__text .label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6875em;
  line-height: 0.6;
  color: var(--white);
  width: 4.0740740741em;
  height: 1.3703703704em;
  background-color: var(--interview-color);
  border-radius: 5.6693px;
}
.page-hed__info__text .interview-name {
  font-size: 2.0625em;
  font-weight: 600;
}
.page-hed__info__text .interview-name span {
  font-size: 0.7em;
}
.page-hed__info__text .interview-career {
  margin-top: -12px;
  padding-left: 11%;
  font-weight: 600;
  line-height: 1.7;
}
.page-hed__info__text .interview-career span {
  color: var(--interview-color);
}
.page-hed__info__text .item4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hed__info__text .item5 {
  padding-left: 2.34375vw;
}

.interview-container {
  margin-top: 97px;
}
.interview-container__detail .detail-item:not(:first-child) {
  margin-top: 130px;
}
.interview-container__detail .detail-item__description {
  max-width: 900px;
  margin: auto;
  padding-top: 78px;
}
.interview-container__detail .detail-item__description h3 {
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  color: var(--interview-color);
}
.interview-container__detail .detail-item__description p {
  margin: 15px 0 48px;
}
.interview-container__detail .detail-item__description figcaption {
  text-align: center;
  margin-top: 20px;
}
.interview-container__calendar {
  margin-top: 163px;
}
.interview-container__message {
  margin-top: 109px;
  background-color: var(--interview-color);
}
.interview-container__message .message-content__text p {
  color: var(--white);
}
.interview-container__boss {
  margin-top: 128px;
  border: 1px solid var(--interview-color);
}

.add-flower {
  position: relative;
}
.add-flower .flower {
  position: absolute;
  bottom: 0;
  left: -8%;
}

.page .header .nav-list > a {
  color: #969697;
}
.page .header .nav-list > a:not(:last-child) {
  border-right: 1px solid #969697;
}
.page .header .nav-list .icon-wrapper i::before {
  background-color: #969697;
}
.page .header .nav-list .icon-wrapper span {
  color: #969697;
}

.box-content {
  width: 100%;
  padding: 40px 5%;
  border-radius: 30px;
}

.fukidashi-02-01 {
  font-size: 1.6875em;
  position: relative;
  width: 100%;
  padding: 0.35em 20px;
  color: var(--white);
  background-color: var(--interview-color);
  border-radius: 20px;
  text-align: left;
}
.fukidashi-02-01::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 9%;
  border-style: solid;
  border-width: 1em 0 0 1em;
  border-color: var(--interview-color) transparent transparent;
  translate: calc(-50% + 0.4px) 100%;
}
.fukidashi-02-01.detail-item__title {
  font-size: 1.875em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 55px;
  padding: 12px 15px 16px 29px;
  border-radius: 24.7px;
}
.fukidashi-02-01.detail-item__title span {
  font-size: 2em;
}
.fukidashi-02-01.detail-item__title::after {
  bottom: 11px;
  left: 6.5%;
  border-width: 1.2em 0 0 1.2em;
}
.fukidashi-02-01.page-link__label {
  position: absolute;
  bottom: 97%;
  left: 0;
  font-size: 35px;
  line-height: 1.2653061224;
  font-weight: 900;
  text-align: center;
  padding: 5px 10px;
  border-radius: 16.6485px;
  width: 170px;
}
.fukidashi-02-01.page-link__label::after {
  bottom: 1%;
  left: 37.5%;
  border-width: 23px 0 0 19px;
}
.fukidashi-02-01.bg-white {
  color: var(--interview-color);
  background-color: var(--white);
}
.fukidashi-02-01.bg-white::after {
  border-color: var(--white) transparent transparent;
}

.page-link {
  text-align: center;
  display: flex;
  align-items: center;
}
.page-link__item {
  display: block;
  position: relative;
}
.page-link__item img {
  width: 100%;
  aspect-ratio: 425/288;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-link__item figcaption {
  color: var(--white);
  background-color: var(--interview-color);
  font-size: 1.625em;
  line-height: 1;
  padding: 0.11em 0.27em 0.41em 0.94em;
  font-weight: 600;
}
.page-link__item figcaption span {
  font-size: 0.6944444444em;
}
.page-link__item--interview01 figcaption,
.page-link__item--interview01 .page-link__label {
  background-color: var(--interview01-color);
}
.page-link__item--interview01 figcaption::after,
.page-link__item--interview01 .page-link__label::after {
  border-color: var(--interview01-color) transparent transparent;
}
.page-link__item--interview02 figcaption,
.page-link__item--interview02 .page-link__label {
  background-color: var(--interview02-color);
}
.page-link__item--interview02 figcaption::after,
.page-link__item--interview02 .page-link__label::after {
  border-color: var(--interview02-color) transparent transparent;
}
.page-link__item--interview03 figcaption,
.page-link__item--interview03 .page-link__label {
  background-color: var(--interview03-color);
}
.page-link__item--interview03 figcaption::after,
.page-link__item--interview03 .page-link__label::after {
  border-color: var(--interview03-color) transparent transparent;
}
.page-link__item--interview04 figcaption,
.page-link__item--interview04 .page-link__label {
  background-color: var(--interview04-color);
}
.page-link__item--interview04 figcaption::after,
.page-link__item--interview04 .page-link__label::after {
  border-color: var(--interview04-color) transparent transparent;
}

.page-link-container {
  margin-top: 220px;
}

.return-to-top {
  font-size: 22px;
  text-align: center;
  display: block;
  margin-top: 105px;
  font-weight: 600;
}

.copyright {
  padding-top: 40px;
  display: block;
  text-align: center;
}

.footer {
  background: #3FDEE0;
  color: var(--white);
  padding: 40px 0;
  margin-top: 9.375vw;
}
.footer .nav-list > a:not(:last-child) {
  border-right: 1px solid var(--white);
}
.footer .nav-list .icon-wrapper i::before {
  background-color: var(--white);
}
.footer .nav-list .icon-wrapper span {
  color: var(--white);
}/*# sourceMappingURL=style.css.map */