@charset "UTF-8";
/* =================================================================
		base setting
================================================================= */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background-color: #fff;
  color: #222;
  font-family: "游ゴシック体", Yu Gothic, YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior-y: none;
}

* {
  box-sizing: border-box;
}

img {
  height: auto;
}

ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul {
  text-align: left;
}
ul li {
  list-style: none;
}

ol {
  counter-reset: item;
  list-style-type: none;
  text-align: left;
}
ol li {
  padding-left: 1.3em;
  position: relative;
}
ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-1em);
}

figure {
  margin: 0;
}

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

th,
td {
  vertical-align: top;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

em {
  font-weight: bold;
  font-style: normal;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

a {
  outline: none;
}
a:link {
  color: #222;
  text-decoration: none;
}
a:visited {
  color: #222;
}
a:hover, a:focus, a:active {
  color: #222;
  text-decoration: none;
}

/* =================================================================
		#whole
================================================================= */
.content {
  position: relative;
  z-index: 3;
}

/* =================================================================
		#common
================================================================= */
.pct img {
  width: 100%;
}

.term {
  display: inline-block;
}

.slideup {
  opacity: 0;
  transform: translateY(100px);
}

.slideup-is-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s 0.1s, transform 0.9s 0.2s, filter 0.9s 0.3s;
}

/* =================================================================
		#display control
================================================================= */
@media print, screen and (min-width: 769px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline;
  }
}
/* ==================================================================
    #hero
================================================================== */
.company-logo {
  position: absolute;
  left: 40px;
  top: 32px;
  z-index: 10;
}
.company-logo img {
  width: 220px;
  filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(310deg) brightness(109%) contrast(101%);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 140px;
  min-height: 500px;
}

.hero-pct {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s;
  opacity: 0;
  visibility: hidden;
}
.hero-pct:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}
.hero-pct .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(155%);
  transform: scale(1.08);
}

.slide-switching {
  animation: slide-switching 7s linear forwards;
}

@keyframes slide-switching {
  0% {
    filter: brightness(155%);
    transform: scale(1.08);
  }
  22% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(100%);
    transform: scale(1);
  }
}
.hero-box {
  width: 74%;
  min-width: 800px;
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.6s, filter 0.3s;
  filter: url(#glitch-noise);
}

.catch-cont {
  width: 69%;
}

.catch-large {
  width: 100%;
}

.catch-welcome {
  width: 28%;
  position: absolute;
  left: 73%;
  top: -9%;
  z-index: 1;
  transform: translateY(9%);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}
.catch-welcome img {
  width: 100%;
}
.catch-welcome.animate {
  transform: translateY(0);
  opacity: 1;
}

.clause {
  display: block;
  overflow: hidden;
  padding-bottom: 8px;
  margin-bottom: 16px;
  position: relative;
}
.clause:before {
  content: "";
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.clause:nth-child(1)::before {
  width: 100%;
}
.clause:nth-child(2)::before {
  width: 73%;
}
.clause:nth-child(3)::before {
  width: 63%;
}
.clause img {
  width: 100%;
  filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(310deg) brightness(109%) contrast(101%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.clause.animate img {
  transform: translateY(0);
  opacity: 1;
}
.clause:nth-child(1).animate img {
  transition-delay: 0.1s;
}
.clause:nth-child(2).animate img {
  transition-delay: 0.2s;
}
.clause:nth-child(3).animate img {
  transition-delay: 0.3s;
}

.catch-en {
  font-size: 1.7rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  letter-spacing: 0.3em;
  margin-top: 32px;
}

.catch-small {
  width: -moz-max-content;
  width: max-content;
  font-size: 3.4rem;
  line-height: 1.2;
  letter-spacing: 0.25em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: absolute;
  left: 55%;
  top: 37%;
  z-index: 2;
  transition: font-size;
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out, font-size 0.3s ease-out;
}
.catch-small.animate {
  transform: translateX(0);
  opacity: 1;
}
.catch-small span {
  display: inline-block;
  background-color: #121212;
  padding: 0.2em 0.3em 0.2em;
  margin-bottom: 0.4em;
}
.catch-small span em {
  color: #82ffd7;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .catch-small {
    font-size: 3rem;
  }
}

.scroll-queue {
  bottom: 40px;
  height: 120px;
  position: absolute;
  left: 16px;
  width: 10px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .scroll-queue {
    display: none;
  }
}
.scroll-queue:after,
.scroll-queue:before {
  background-color: #ffffff;
  content: "";
  left: 50%;
  position: absolute;
}

.scroll-queue:before {
  border-radius: 2px;
  height: 120px;
  width: 1px;
}

.scroll-queue:after {
  animation: scroll-ball 1.5s ease-in-out infinite;
  background-color: #ffffff;
  border-radius: 50%;
  height: 9px;
  top: 10px;
  transform: translate(-40%);
  width: 9px;
}

@keyframes scroll-ball {
  0% {
    top: 10px;
  }
  to {
    top: 100px;
  }
}
/* ==================================================================
    #summary
================================================================== */
.summary {
  position: relative;
  font-size: 2.3rem;
  z-index: 3;
  margin: 0 auto 120px;
  padding-bottom: 120px;
  transition: transform 0.6s, opacity 0.6s;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  transition: opacity 0.4s;
}

.summary-lead {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  font-weight: bold;
  line-height: 2.2;
}
.summary-lead p {
  margin-bottom: 1.4em;
}
.summary-lead p:last-child {
  margin-bottom: 0;
}

.summary-pct {
  width: 13em;
}

/* ==================================================================
    #研究員数
================================================================== */
.researcher-count-wrap {
  background: url(../img/count_woman.png) no-repeat center center/100% auto;
  aspect-ratio: 750/646;
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 3;
}

.researcher-count {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, 0);
}
.researcher-count .label {
  font-size: 2.3rem;
  position: relative;
  padding-right: 26px;
}
.researcher-count .label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 2em;
  background: #686868;
  margin: 0 18px;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%) rotate(18deg);
  opacity: 0.7;
}
.researcher-count .count {
  font-size: 4rem;
  color: #74bca5;
}
.researcher-count .count .number {
  font-size: 1.45em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.researcher-count .count .note {
  font-size: 1.8rem;
  color: #333;
  font-weight: normal;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 5px);
}

@media screen and (max-width: 768px) {
  .researcher-count-wrap {
    max-width: 100%;
    width: 86%;
    margin-bottom: 48px;
  }
  .researcher-count {
    gap: 10px;
    top: 56%;
  }
  .researcher-count .label {
    font-size: 1.5rem;
    padding-right: 16px;
  }
  .researcher-count .label::after {
    height: 1.4em;
    margin: 0 8px;
    right: -8px;
  }
  .researcher-count .count {
    font-size: 2.6rem;
  }
  .researcher-count .count .note {
    font-size: 1.3rem;
    top: calc(100% + 6px);
  }
}
.sec {
  padding: 0 40px;
  margin-bottom: 110px;
}

.sec-color {
  background-color: #e9e9e9;
  padding-top: 100px;
  padding-bottom: 100px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.heading {
  max-width: 1300px;
  margin: 0 auto 48px;
  position: relative;
}

.heading-en {
  color: #84cdb6;
  font-size: 9rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0.2em;
}

.heading-txt {
  font-size: 2.3rem;
  line-height: 1.3333;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .sec {
    margin-bottom: 48px;
  }
  .heading {
    margin-bottom: 32px;
  }
  .heading-en {
    font-size: calc(11vw + 1rem);
  }
  .heading-txt {
    font-size: 2rem;
  }
}
.lead {
  font-size: 1.8rem;
  max-width: 1300px;
  margin: 0 auto 48px;
}

@media screen and (max-width: 768px) {
  .lead {
    font-size: 1.6rem;
  }
}
/* ==================================================================
    #about
================================================================== */
.about-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-pcts {
  width: 46%;
  position: relative;
}
.about-pcts .summary-swiper {
  overflow: hidden;
  border-radius: 40px;
  line-height: 0;
}
.about-pcts .summary-swiper img {
  width: 100%;
}

.about-illust {
  display: block;
  position: absolute;
  left: -21%;
  top: 81%;
  width: 284px;
  z-index: 2;
}

.about-cont {
  width: 48%;
}
.about-cont .exp p {
  font-size: 1.7rem;
  line-height: 2.2;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 1250px) {
  .about-cont .exp p .term {
    display: inline;
  }
  .about-cont .exp p br {
    display: none;
  }
}

.about-diagram {
  width: 100%;
  position: relative;
  border-radius: 52px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  margin-top: 48px;
  margin-bottom: 24px;
}
.about-diagram .ttl {
  font-size: 2.8rem;
  line-height: 1;
  color: #5f5f5f;
  font-weight: bold;
  padding: 40px 40px 16px 48px;
}
.about-diagram .ttl .smaller {
  font-size: 0.5em;
  font-weight: 500;
  margin-left: 0.5em;
  color: #333333;
}
.about-diagram .pct {
  width: calc(100% - 24px);
}
.about-diagram .pct img {
  image-rendering: -webkit-optimize-contrast;
}

.about-diagram-exp {
  font-size: 1.6rem;
  padding: 32px 40px 40px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.about-diagram-exp dl {
  display: flex;
  margin: 0 1.4em 0.8em 0;
}
.about-diagram-exp dl dt {
  background-color: #d0ebe0;
  padding: 0.3em 0.8em;
  border-radius: 99px;
  line-height: 1.33333;
  margin-right: 0.3em;
}
.about-diagram-exp dl dd:before {
  content: "…";
  margin-right: 0.3em;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.researcher {
  position: relative;
}

.researcher-cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.researcher-exp {
  width: 45%;
  order: 1;
}
.researcher-exp p {
  font-size: 1.7rem;
  line-height: 2.2;
  margin-bottom: 1.4em;
}
@media screen and (max-width: 1250px) {
  .researcher-exp br {
    display: none;
  }
}

.researcher-pcts {
  width: 45%;
  order: 2;
}

.researcher-pct-01 {
  margin-bottom: 32px;
}

.researcher-pct-02 {
  width: 95%;
}

.checklist {
  font-size: 1.7rem;
  margin: 1.2em 0;
}
.checklist li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.6em;
}
.checklist li:last-child {
  margin-bottom: 0;
}
.checklist li::before {
  content: "";
  display: inline-block;
  width: 1.4em;
  aspect-ratio: 1/0.95;
  background: url("../img/ico_check.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0.3em;
}

.scrollpcts {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .scrollpcts {
    margin: 40px 0;
  }
}

.scrollpcts-wrap {
  display: flex;
  animation: scroll-horizontal 60s linear infinite;
  width: -moz-max-content;
  width: max-content;
}

.scrollpcts-wrap img {
  flex-shrink: 0;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==================================================================
    #can-do
================================================================== */
.can-do-item {
  margin-bottom: 56px;
  background-color: #fff;
  border-radius: 44px;
  padding: 56px;
}
.can-do-item p {
  font-size: 1.7rem;
  margin-bottom: 1em;
}
.can-do-item p:last-child {
  margin-bottom: 0;
}

.can-do-ttl {
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  letter-spacing: 0.06em;
  margin-bottom: 0.6em;
}

.can-do-cont {
  display: flex;
  justify-content: space-between;
}

.can-do-txt {
  width: 60%;
  order: 1;
}

.can-do-pct {
  width: 40%;
  order: 2;
  position: relative;
}
.can-do-pct img {
  width: 80%;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  filter: invert(30%) sepia(26%) saturate(500%) hue-rotate(110deg) brightness(93%) contrast(95%);
}

.can-do-item03 .can-do-pct img {
  width: 88%;
}

.can-do-message {
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  margin-top: 88px;
}

.activity {
  max-width: 1300px;
  margin: 0 auto;
}

.activity-item {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 40px;
  margin-bottom: 46px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.14);
  position: relative;
}
.activity-item .inner {
  display: flex;
  align-items: flex-start;
}
.activity-item .pct {
  display: block;
  width: 38%;
  margin-right: 48px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}
.activity-item .ttl {
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0.4em;
}
.activity-item .en {
  font-size: 1.9rem;
  line-height: 1;
  color: #84cdb6;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.activity-item .en span {
  font-size: 1.15em;
  text-indent: 0.6em;
  display: inline-block;
}
.activity-item .exp {
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .activity-item {
    padding: 24px 32px 32px 32px;
    border-radius: 32px;
    margin-bottom: 24px;
  }
  .activity-item:last-child {
    margin-bottom: 0;
  }
  .activity-item .ico {
    width: 75px;
    margin: 0 auto;
  }
  .activity-item .ttl {
    text-align: center;
  }
  .activity-item .en {
    font-size: 2.9rem;
  }
}
.plan-sec {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0) 100%);
  margin-top: -10vh;
}

.btn-tofaq {
  position: absolute;
  right: 0;
  top: -100px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 1em 2.9em 1em 1.9em;
  border-radius: 999px;
  border: 2px solid #333;
}
.btn-tofaq:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 8px;
  background: url(../img/ico_arrow_s.svg) left top/100% auto no-repeat;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
@media (hover: hover) {
  .btn-tofaq {
    transition: 0.2s;
  }
  .btn-tofaq:hover {
    background-color: #333;
    color: #fff;
  }
  .btn-tofaq:hover:before {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(109deg) brightness(102%) contrast(102%);
  }
}

@media screen and (max-width: 768px) {
  .plan-sec {
    margin-top: -88px;
  }
  .plan-item {
    width: 100%;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 32px;
  }
  .plan-item:before {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 28px;
    left: 7px;
    top: 7px;
  }
  .plan-item .ttl {
    font-size: 1.8rem;
  }
  .plan-item .free {
    font-size: 1.5rem;
    right: 0;
    top: -32px;
  }
  .plan-item .free:after {
    left: 54%;
    border-width: 10px 10px 0 0;
  }
  .plan-item .price {
    font-size: 1.8rem;
  }
  .btn-tofaq {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    right: auto;
    top: auto;
    font-size: 1.6rem;
    margin: 0 auto 40px;
  }
  .btn-tofaq:before {
    width: 12px;
    height: 8px;
    right: 14px;
  }
}
.payment {
  margin-top: 32px;
}
.payment p {
  font-size: 1.7rem;
  text-align: center;
}
.payment p.ttl {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .payment p {
    font-size: 1.6rem;
  }
  .payment p.ttl {
    font-size: 1.8rem;
  }
}
.visual {
  width: 100%;
  height: 40vw;
  position: sticky;
  left: 0;
  top: 0;
  overflow: hidden;
}
.visual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
  pointer-events: none;
}
.visual.hide {
  opacity: 0;
}
.visual p {
  width: 90%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  color: #fff;
  font-size: 6.8rem;
  line-height: 1.3;
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  z-index: 2;
}

.visual-pct {
  background: url(../img/visual.jpg) center center/cover no-repeat;
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  opacity: 0.1;
}
.is-show .visual-pct {
  transform: scale(1);
  opacity: 1;
  transition: 3s;
}

/* ==================================================================
    #声
================================================================== */
.voice-sec {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.voice-sec .heading {
  max-width: 1380px;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .voice-sec {
    padding: 48px 30px;
  }
  .voice-sec .heading {
    padding: 0;
  }
  .voice {
    margin: 0 -16px !important;
  }
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-buttons {
  width: 100%;
  max-width: 84%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media print, screen and (min-width: 1601px) {
  .swiper-buttons {
    max-width: 61.5%;
  }
}
.swiper-buttons .swiper-button-prev,
.swiper-buttons .swiper-button-next {
  color: #868686;
}
.swiper-buttons .swiper-button-prev:after,
.swiper-buttons .swiper-button-next:after {
  font-size: 4rem;
}

.voice-item .inner {
  padding: 56px;
  background-color: #fff;
  border-radius: 48px;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.voice-item .cont {
  width: 68%;
  margin-right: auto;
}
.voice-item .cont .profile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.voice-item .cont .author {
  font-size: 2rem;
  font-weight: bold;
}
.voice-item .cont .position {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
.voice-item .cont .position:before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  background-color: #acacac;
  margin: 0 0.5em;
}
.voice-item .cont .location {
  font-size: 1.5rem;
  width: 100%;
  margin-top: 0.3em;
}
.voice-item .cont .catch {
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #74bca5;
  margin-bottom: 0.6em;
}
.voice-item .cont .review {
  font-size: 1.6rem;
  max-height: 36rem;
  overflow-y: auto;
  margin-top: 40px;
  padding-right: 32px;
}
.voice-item .cont .review::-webkit-scrollbar {
  width: 6px;
}
.voice-item .cont .review::-webkit-scrollbar-track {
  background-color: #efefef;
}
.voice-item .cont .review::-webkit-scrollbar-thumb {
  background-color: #8e8e8e;
  border-radius: 99px;
}
.voice-item .cont .review p {
  margin-bottom: 1.1em;
}
.voice-item .pct {
  width: 25%;
  overflow: hidden;
  aspect-ratio: 1/1.2;
  position: absolute;
  right: 56px;
  top: 48px;
  border-radius: 24px;
  overflow: hidden;
}
.voice-item .pct img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-item.layout-right .cont {
  order: 2;
}
.voice-item.layout-right .pct {
  order: 1;
}

.flow-sec {
  position: relative;
  padding-top: 7vh;
}

.flow {
  position: relative;
  z-index: 1;
}

.flow-column {
  display: flex;
  align-items: stretch;
  gap: 36px;
}
.flow-column:last-child {
  justify-content: flex-end;
}

.flow-item {
  padding: 24px 40px;
  position: relative;
  z-index: 2;
}
.flow-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.flow-item * {
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 769px) {
  .flow-item {
    width: 34%;
    min-height: 40rem;
    margin-bottom: 48px;
  }
  .flow-item.step04 {
    z-index: 0;
  }
}
.flow-item .step {
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  color: #9f9f9f;
  margin-bottom: 0.4em;
}
.flow-item .step .num {
  font-size: 1.3em;
}
.flow-item .ico {
  width: 100px;
  margin: 0 auto 22px;
  text-align: center;
  background-color: #ffffff;
  font-size: 1.5rem;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.flow-item .ttl {
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.flow-item .exp {
  font-size: 1.6rem;
}
.flow-item p:has(a.btn-regist) {
  margin: 14px 0;
}

.flow-arrow {
  position: absolute;
  left: -77px;
  z-index: 1;
  top: -54px;
}

a.btn-regist {
  background-color: #49c29c;
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  width: 90%;
  display: block;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  padding: 0.65em;
  border-radius: 999px;
  border: 2px solid #49c29c;
  transition: background-color 0.25s, box-shadow 0.25s;
}
@media (hover: hover) and (pointer: fine) {
  a.btn-regist:hover, a.btn-regist:focus {
    background-color: #fff;
    color: #49c29c;
  }
}

/* ==================================================================
    #faq
================================================================== */
.faq-list {
  margin-bottom: 56px;
  position: relative;
}
.faq-list:last-child {
  margin-bottom: 0;
}

.faq {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.faq .heading {
  width: 30%;
}

.faq-list {
  width: 68%;
}

.faq-blc {
  border-bottom: 1px solid rgba(119, 122, 65, 0.3294117647);
  font-size: 1.7rem;
  padding-bottom: 28px;
  margin: 0 auto 28px 0;
}
.faq-blc dt,
.faq-blc dd {
  position: relative;
  padding-left: 3.3rem;
}
.faq-blc dt .ico,
.faq-blc dd .ico {
  position: absolute;
  left: 0;
  top: 0.15em;
  font-weight: bold;
  font-size: 2.5rem;
  color: #5b5b5b;
  line-height: 1;
}
.faq-blc dt {
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-list-ul {
  margin: 1em 0;
}
.faq-list-ul li {
  margin-bottom: 0.2em;
  position: relative;
  padding-left: 0.9em;
}
.faq-list-ul li::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: #bbb;
  position: absolute;
  left: 0;
  top: 0.9em;
  transform: translateY(-50%);
}

.join-sec {
  background: url(../iwc_img/join_bg.jpg) center center/cover no-repeat;
  border-radius: 48px;
  padding: 64px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: none;
}

.join-heading {
  text-align: center;
  margin-bottom: 32px;
}

.join-heading-txt {
  font-size: 3rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.join {
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-btn {
  width: 100%;
  max-width: 400px;
  margin: 0 24px;
}
.join-btn a {
  display: block;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 1em 0.8em;
  border-radius: 999px;
  color: #fff;
  background-color: #141414;
}
.join-btn a .ttl {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 0.9em;
  color: #f2ff53;
  margin-bottom: 0.7em;
}
@media (hover: hover) {
  .join-btn a {
    transition: 0.2s;
  }
  .join-btn a:hover {
    background-color: #fff;
    color: #111;
  }
  .join-btn a:hover .ttl {
    color: #111;
  }
}

@media screen and (max-width: 768px) {
  .join-sec {
    width: 92%;
    border-radius: 32px;
    margin: 0 auto;
    padding: 32px 24px;
  }
  .join-heading {
    margin-bottom: 24px;
  }
  .join-heading-txt {
    font-size: 2rem;
  }
  .join {
    display: block;
  }
  .join-btn {
    width: 90%;
    max-width: none;
    margin: 0 auto 16px;
  }
  .join-btn:last-child {
    margin-bottom: 0;
  }
  .join-btn a {
    font-size: 1.7rem;
    padding: 0.8em;
  }
}
.management {
  text-align: center;
  padding: 88px 30px 10vh;
}
.management a {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 1em;
  border-radius: 999px;
  background-color: #e8e8e8;
}
@media (hover: hover) {
  .management a {
    transition: 0.2s;
  }
  .management a:hover {
    color: #fff;
    background-color: #404040;
  }
}

@media screen and (max-width: 768px) {
  .management {
    padding: 64px 30px;
  }
  .management a {
    max-width: none;
    font-size: 1.6rem;
  }
}
/* ==================================================================
    #固定ボタン
================================================================== */
.fixbutton {
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 1000;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #49c29c;
  border: 2px solid #49c29c;
  border-right: none;
  color: #fff;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 9px 18px 9px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.fixbutton .ico {
  width: 1.6em;
  margin-bottom: 0.5em;
  transition: 0.2s;
}
.fixbutton a {
  color: inherit;
  text-decoration: none;
  display: block;
  text-align: center;
}
@media (hover: hover) {
  .fixbutton:hover {
    color: #3ba181;
    background: #ffffff;
  }
  .fixbutton:hover .ico {
    filter: invert(62%) sepia(24%) saturate(1012%) hue-rotate(110deg) brightness(92%) contrast(92%);
  }
}
@media screen and (max-width: 768px) {
  .fixbutton {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: calc(100vw - 40px);
    margin: 0 auto;
    font-size: 1.5rem;
    padding: 10px 0;
    border-radius: 14px 14px 0 0;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  .fixbutton .ico {
    width: 1.6em;
    margin-bottom: 0;
    vertical-align: middle;
    margin-right: 10px;
  }
}

/* ==================================================================
    #footer
================================================================== */
.footer {
  padding: 88px 30px;
  background-color: #2a2a2a;
  color: #fff;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.5rem;
}

.footer-link-item {
  margin-right: 1.6em;
}
.footer-link-item a,
.footer-link-item a:link {
  color: #c1c1c1;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .hero-pct {
    height: 60vh;
  }
}
/* =================================================================
		#responsive design for mobile
================================================================= */
@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    padding: 16vh 0 24vh;
    margin-bottom: 64px;
    min-height: auto;
    position: relative;
  }
  .hero-pct {
    width: 100vw;
    height: 100vh;
  }
  .hero-pct .swiper-slide img {
    filter: brightness(140%);
    transform: scale(1.05);
  }
  .hero-box {
    width: 90%;
    min-width: auto;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 0 auto;
  }
  .catch-cont {
    width: 100%;
  }
  .catch-large {
    width: 100%;
    margin-bottom: 16px;
  }
  .clause {
    padding-bottom: 6px;
    margin-bottom: 12px;
  }
  .catch-welcome {
    width: 39%;
    left: auto;
    right: -4%;
    top: 106%;
  }
  .catch-small {
    font-size: 2rem;
    left: 0;
    top: 113%;
  }
  .catch-en {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    margin-top: 20px;
  }
  .company-logo {
    left: 16px;
    top: 16px;
  }
  .company-logo img {
    width: 150px;
  }
  .sec {
    padding: 0 16px;
    margin-bottom: 60px;
  }
  .sec-color {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .container {
    max-width: 100%;
  }
  .heading-en {
    font-size: 4.2rem;
    margin-bottom: 0.3em;
  }
  .heading-txt {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .about-inner {
    flex-direction: column;
    gap: 32px;
  }
  .about-cont {
    width: 100%;
    order: 2;
  }
  .about-cont .exp p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .about-pcts {
    width: 100%;
    order: 1;
  }
  .about-pcts .summary-swiper {
    border-radius: 32px;
  }
  .about-illust {
    display: none;
  }
  .about-diagram {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    margin-top: 48px;
    margin-bottom: 16px;
  }
  .about-diagram .ttl {
    font-size: 1.9rem;
    line-height: 1.6;
    padding: 32px 16px 24px;
  }
  .about-diagram .ttl .smaller {
    font-size: 1.4rem;
    display: block;
  }
  .about-diagram .pct {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 0 16px;
  }
  .about-diagram .pct img {
    min-width: 800px;
    height: auto;
    display: inline-block;
    vertical-align: top;
  }
  .about-diagram-exp {
    font-size: 1.5rem;
    padding: 20px 16px 32px;
    flex-direction: column;
  }
  .about-diagram-exp dl {
    margin: 0 0 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .about-diagram-exp dl:last-child {
    margin-bottom: 0;
  }
  .about-diagram-exp dl dt {
    margin-bottom: 0.3em;
    font-size: 1.3rem;
  }
  .about-diagram-exp dl dd:before {
    display: none;
  }
  .researcher-cont {
    display: block;
  }
  .researcher-exp {
    width: 100%;
    order: 2;
  }
  .researcher-exp p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .researcher-pcts {
    width: 100%;
    order: 1;
  }
  .researcher-pct-01 {
    margin-bottom: 24px;
  }
  .researcher-pct-02 {
    width: 100%;
    margin: 24px 0;
    display: block;
  }
  .checklist {
    font-size: 1.5rem;
    margin: 1em 0;
  }
  .checklist li {
    padding-left: 1.8em;
    margin-bottom: 0.5em;
  }
  .checklist li::before {
    width: 1.2em;
    top: 0.2em;
  }
  .can-do-item {
    margin-bottom: 32px;
    padding: 32px 24px;
    border-radius: 24px;
  }
  .can-do-ttl {
    font-size: 2.2rem;
    margin-bottom: 0.8em;
  }
  .can-do-cont {
    flex-direction: column;
    gap: 24px;
  }
  .can-do-txt {
    width: 100%;
    order: 2;
  }
  .can-do-txt p {
    font-size: 1.5rem;
  }
  .can-do-pct {
    width: 100%;
    order: 1;
    position: static;
    text-align: center;
  }
  .can-do-pct img {
    width: 70%;
    position: static;
    transform: none;
  }
  .can-do-message {
    font-size: 1.7rem;
    margin-top: 48px;
  }
  .activity-item {
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 24px;
  }
  .activity-item .inner {
    flex-direction: column;
    gap: 24px;
  }
  .activity-item .pct {
    width: 100%;
    margin-right: 0;
    border-radius: 16px;
  }
  .activity-item .ttl {
    font-size: 2rem;
    text-align: center;
  }
  .activity-item .en {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 24px;
  }
  .activity-item .exp {
    font-size: 1.5rem;
  }
  .voice-item .inner {
    padding: 24px;
    border-radius: 24px;
  }
  .voice-item .cont {
    width: 100%;
    margin-right: 0;
  }
  .voice-item .cont .profile {
    display: block;
    margin-bottom: 1.4em;
  }
  .voice-item .cont .author {
    font-size: 1.6rem;
  }
  .voice-item .cont .position {
    font-size: 1.3rem;
    margin-bottom: 0.2em;
  }
  .voice-item .cont .position:before {
    display: none;
  }
  .voice-item .cont .location {
    font-size: 1.3rem;
    margin-top: 0;
  }
  .voice-item .cont .catch {
    font-size: 1.7rem;
  }
  .voice-item .cont .review {
    font-size: 1.4rem;
    max-height: 300px;
    padding-right: 16px;
    margin-top: 24px;
  }
  .voice-item .pct {
    width: 65%;
    aspect-ratio: 1/1;
    position: static;
    margin: 0 auto 16px;
    border-radius: 16px;
    transform: none;
  }
  .flow-column {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .flow-column:last-child {
    justify-content: flex-start;
  }
  .flow-item {
    width: 100%;
    min-height: auto;
    margin-bottom: 0;
    padding: 28px 24px;
  }
  .flow-item * {
    z-index: 2;
  }
  .flow-item:before {
    border-radius: 20px;
    background-color: transparent;
  }
  .flow-item:nth-child(1):before {
    z-index: 0;
  }
  .flow-item .step {
    font-size: 2rem;
  }
  .flow-item .ttl {
    font-size: 1.8rem;
  }
  .flow-item .exp {
    font-size: 1.4rem;
  }
  .flow-arrow {
    left: auto;
    top: 0;
    right: 12%;
    height: 88%;
  }
  .flow-arrow img {
    height: 100%;
  }
  .faq {
    display: block;
  }
  .faq .heading {
    width: 100%;
  }
  .faq-list {
    width: 100%;
  }
  .faq-blc {
    font-size: 1.5rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .faq-blc dt,
  .faq-blc dd {
    padding-left: 2.8rem;
  }
  .faq-blc dt .ico,
  .faq-blc dd .ico {
    font-size: 2rem;
  }
  .visual {
    height: 48vh;
  }
  .visual p {
    font-size: 3.2rem;
    line-height: 1.6;
    top: 30px;
    width: 95%;
  }
  .footer {
    padding: 40px 20px 100px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    font-size: 1.4rem;
  }
  .footer-link-item {
    margin-right: 1.2em;
  }
  .copyright {
    font-size: 1.2rem;
    text-align: center;
  }
  .btn-detail a {
    width: 100%;
    max-width: none;
    min-width: auto;
    font-size: 1.5rem;
    padding: 14px 32px 14px 24px;
  }
  .btn-detail a:after {
    width: 20px;
    height: 6px;
    right: 12px;
  }
  .list-common li {
    margin-bottom: 0.6em;
    padding-left: 0.8em;
  }
  .list-common li::before {
    width: 5px;
    height: 5px;
    top: 0.5em;
  }
  .list-normal li {
    margin-bottom: 0.3em;
    padding-left: 10px;
  }
  .list-normal li::before {
    width: 3px;
    height: 3px;
    top: 0.5em;
  }
  .txtbox {
    font-size: 1.4rem;
  }
  .lead {
    font-size: 1.5rem;
  }
  .scrollpcts {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: -40px 0 40px;
    height: 230px;
  }
  .scrollpcts-wrap {
    display: flex;
    animation: scroll-horizontal-mobile 40s linear infinite;
    width: -moz-max-content;
    width: max-content;
    height: 100%;
  }
  .scrollpcts-wrap img {
    flex-shrink: 0;
    height: 230px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  @keyframes scroll-horizontal-mobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .summary {
    margin-bottom: 80px;
    padding: 0 16px 64px;
    display: block;
  }
  .summary-pct {
    width: 50%;
    line-height: 0;
    margin: 0 auto 18px;
  }
  .summary-lead {
    font-size: 1.7rem;
    line-height: 2;
  }
  .swiper-buttons {
    max-width: none;
    width: 104%;
    padding: 0 20px;
  }
  .swiper-buttons .swiper-button-prev:after,
  .swiper-buttons .swiper-button-next:after {
    font-size: 2rem;
  }
}/*# sourceMappingURL=common.css.map */