/* ===============================================
   # Reset（.ikcp-page配下のみ）
=============================================== */

:where(.ikcp-page),
:where(.ikcp-page) *,
:where(.ikcp-page) *::before,
:where(.ikcp-page) *::after {
  box-sizing: border-box;
}

:where(.ikcp-page) p,
:where(.ikcp-page) ul,
:where(.ikcp-page) ol,
:where(.ikcp-page) li,
:where(.ikcp-page) h1,
:where(.ikcp-page) h2,
:where(.ikcp-page) h3,
:where(.ikcp-page) h4,
:where(.ikcp-page) dl,
:where(.ikcp-page) dt,
:where(.ikcp-page) dd {
  margin: 0;
  padding: 0;
}

:where(.ikcp-page) ul,
:where(.ikcp-page) ol {
  list-style: none;
}

:where(.ikcp-page) a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

:where(.ikcp-page) img,
:where(.ikcp-page) picture,
:where(.ikcp-page) video,
:where(.ikcp-page) canvas,
:where(.ikcp-page) svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===============================================
   # Base
=============================================== */

/* Mobile First coding */

.ikcp-page {
  margin: 0;
  padding: 0;
  background: #fff;

  font-family:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  color: #333;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  font-size: 16px;

  --ikcp-main-color: #0066cc;
  --ikcp-accent-color: #d82d2d;
  --ikcp-base-bg: #333;
  --ikcp-base-white: #fff;
  --ikcp-khaki: #948964;
  --ikcp-space-1: 10px;
  --ikcp-space-2: 20px;
  --ikcp-space-3: 30px;
  --ikcp-space-4: 40px;
  --ikcp-space-6: 60px;
  --ikcp-space-8: 80px;
  --ikcp-space-10: 100px;
}

/* ===============================================
   # GPU Boost
=============================================== */

.ikcp-smooth {
  will-change: transform;
  transform: translateZ(0);
}

/* ===============================================
# 共通
=============================================== */
@media screen and (min-width: 768px) {
  .ikcp-container-wide {
    max-width: 100%;
    height: auto;
  }

  .ikcp-container {
    max-width: 960px;
    height: auto;
    margin: 0 auto;
  }

  .ikcp-container-narrow {
    max-width: 600px;
    height: auto;
    margin: 0 auto;
  }
}

/* 1カラム */
.ikcp-1col {
  display: block;
  margin: 0 auto;
  padding: 0 clamp(10px, 8vw, 150px);
}

/* SPは1カラム、PCは3カラム */
.ikcp-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin: 0 auto;
  padding: clamp(60px, 6vw, 120px) clamp(10px, 8vw, 140px);
}

@media screen and (min-width: 768px) {
  .ikcp-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 30px;
  }
}

/* SPは1カラム、PCは2カラム */
.ikcp-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin: 0 auto;
  padding: clamp(60px, 6vw, 120px) clamp(30px, 8vw, 180px);
}

@media screen and (min-width: 768px) {
  .ikcp-2col {
    grid-template-columns: 1fr 1fr;
  }
}

/* 改行 */
.ikcp-br-pc {
  display: none;
}

@media screen and (min-width: 1042px) {
  .ikcp-br-pc {
    display: block;
  }

  .ikcp-br-sp {
    display: none;
  }
}

:where(.ikcp-page) h2 {
  font-size: clamp(21px, 2.5vw, 36px);
  text-align: center;
}

/* ===============================================
# header
=============================================== */

.ikcp-header {
  width: 100%;
  height: 70px;
}

.ikcp-header__inner {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px clamp(10px, 2.5vw, 50px);
}

.ikcp-header__inner img {
  max-width: 150px;
  height: auto;
}

.ikcp-header__text {
  font-size: 12px;
}

/* ===============================================
# hero
=============================================== */

.ikcp-hero {
  overflow: hidden;
  background-color: #0a090a;
}

.ikcp-hero__inner {
  position: relative;
  transform: scale(1.25);
  transform-origin: center;
  animation: ikcpHeroZoomOut 3.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform;
}

@keyframes ikcpHeroZoomOut {
  0% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.ikcp-page-title {
  padding: 0;
  margin: 0;
  background: #0a090a;
}

.ikcp-page-title h1 {
  padding: 5px;
  font-size: 12px;
  color: #fff;
  max-width: 1024px;
  margin: 0 auto;
}

.ikcp-hero__media {
  overflow: hidden;
  height: 350px;
}

@media screen and (min-width: 768px) {
  .ikcp-hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 1024px;
    margin: 0 auto;
  }
}

.ikcp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .ikcp-hero__media img {
    object-position: center 20%;
  }
}

.ikcp-hero__label {
  font-size: 14px;
  margin-bottom: 10px;
}

.ikcp-hero__text {
  font-size: clamp(12px, 2.5vw, 16px);
  line-height: 1.6;
  max-width: 35em;
  margin-bottom: clamp(15px, 3vw, 30px);
}

.ikcp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ===============================================
# intro
=============================================== */

.ikcp-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-top: var(--ikcp-space-4);
  padding-bottom: var(--ikcp-space-4);
}

@media screen and (min-width: 768px) {
  .ikcp-intro__inner {
    padding-top: var(--ikcp-space-8);
    padding-bottom: var(--ikcp-space-8);
    max-width: 700px;
    margin: 0 auto;
  }
}

.ikcp-intro__inner-lead {
  font-size: clamp(16px, 2.5vw, 20px);
}

.ikcp-intro__inner-lead span {
  color: var(--ikcp-accent-color);
  font-weight: 700;
}

.ikcp-intro__inner-title {
  font-size: clamp(26px, 3vw, 30px);
  font-family: serif;
}

.ikcp-intro__inner-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  margin-top: 10px;
  background-color: #0066cc;
  -webkit-mask: url(./ikcp-img/balloon-line01.svg) no-repeat center / contain;
  mask: url(./ikcp-img/balloon-line01.svg) no-repeat center / contain;
  margin-right: auto;
  margin-left: auto;
}

/* ===============================================
   # Photo slider
=============================================== */

.ikcp-photo-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0 0 40px;
}

.ikcp-photo-slider-tit {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.ikcp-photo-slider {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: auto;
}

.ikcp-photo-item {
  position: relative;
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ikcp-photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .ikcp-photo-slider-wrapper {
    padding: 0 0 30px;
  }

  .ikcp-photo-slider-tit {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .ikcp-photo-item {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
  }
}

/* ===============================================
# CTA
=============================================== */

.ikcp-cta__inner {
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: var(--ikcp-accent-color);
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .ikcp-cta__inner {
    padding-top: var(--ikcp-space-6);
    padding-bottom: var(--ikcp-space-6);
  }
}

.ikcp-cta__btn {
  padding: 20px 30px;
  border: solid 2px var(--ikcp-base-white);
  border-radius: 40px;
  font-size: clamp(18px, 2.5vw, 23px);
  font-weight: 700;
  background-color: var(--ikcp-accent-color);
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.605);
  margin-top: 10px;
}

.ikcp-cta__btn:hover {
  background-color: #ee8b70;
}

/* ===============================================
# advantage
=============================================== */

.ikcp-advantage {
  padding-top: var(--ikcp-space-4);
  padding-bottom: var(--ikcp-space-4);
  background-image: url(./ikcp-img/bgimage.jpg);
  background-repeat: repeat-y;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .ikcp-advantage {
    padding-top: var(--ikcp-space-8);
    padding-bottom: var(--ikcp-space-8);
  }
}

.ikcp-advantage__heading {
  font-size: clamp(28px, 5vw, 38px);
  z-index: 5;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  display: block;
  font-family: serif;
}

.ikcp-advantage__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 30px;
  background-color: #fafa07;
  z-index: -1;
}

.ikcp-advantage__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
}

@media screen and (min-width: 768px) {
  .ikcp-advantage__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
  }

  .ikcp-advantage__item {
    flex: 0 0 calc((100% - 100px) / 2);
  }
}

.ikcp-advantage__item {
  padding: 60px 15px 20px;
  border: 2px solid #d4c8a3;
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.ikcp-advantage__label {
  position: absolute;
  top: -12px;
  font-size: 35px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
  color: var(--ikcp-base-white);
  background-color: #d4c8a3;
  padding: 10px;
}

.ikcp-advantage__item-title {
  font-size: clamp(20px, 5vw, 21px);
  color: #092783;
  margin-bottom: 8px;
  line-height: 40px;
}

.ikcp-advantage__item-title span {
  font-size: clamp(23px, 8vw, 38px);
  color: var(--ikcp-accent-color);
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 5px;
  vertical-align: -2px;
}

.ikcp-advantage__img {
  overflow: hidden;
  width: 100%;
  height: 200px;
}

.ikcp-advantage__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.2);
}

.ikcp-advantage__img--map {
  height: auto;
  overflow: visible;
}

.ikcp-advantage__img--map img {
  transform: none;
  object-fit: contain;
}

/* ===============================================
# job-board
=============================================== */
.ikcp-job-info {
  padding-top: var(--ikcp-space-4);
  padding-bottom: var(--ikcp-space-4);
  padding-left: 20px;
  padding-right: 20px;
}

.ikcp-job-info-board {
  padding-top: var(--ikcp-space-4);
  padding-bottom: var(--ikcp-space-4);
}

@media screen and (min-width: 768px) {
  .ikcp-job-info-board {
    padding-top: var(--ikcp-space-8);
    padding-bottom: var(--ikcp-space-8);
  }
}

.ikcp-job-info-board__title {
  background-color: var(--ikcp-base-white);
  color: var(--ikcp-main-color);
  font-size: clamp(22px, 4vw, 38px);
  padding-top: 50px;
  /* padding-bottom: 50px; */
  position: relative;
  font-family: serif;
}

.ikcp-job-info-board__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  margin-top: 10px;
  background-color: #0066cc;
  -webkit-mask: url(./ikcp-img/balloon-line01.svg) no-repeat center / contain;
  mask: url(./ikcp-img/balloon-line01.svg) no-repeat center / contain;
  margin-right: auto;
  margin-left: auto;
}

.ikcp-info__row {
  margin-bottom: 20px;
}

.ikcp-info__list dt {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 0;
  border-bottom: solid 1px #cfcfcf;
}

.ikcp-info__list dt::before {
  content: "●";
  padding-right: 3px;
  color: var(--ikcp-base-bg);
}

.ikcp-info__list dd {
  font-size: clamp(16px, 2.5vw, 18px);
  letter-spacing: 0.5px;
  padding: 5px 0;
}

.ikcp-info__data span {
  font-size: 12px;
}

/* ===============================================
# members cta
=============================================== */

.ikcp-members-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
}

.ikcp-btn {
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  border: solid 2px #fff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .ikcp-btn {
    padding: 20px 50px;
    font-size: 19px;
  }
}

.ikcp-btn--members {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: var(--ikcp-main-color);
  color: var(--ikcp-base-white);
  border: solid 2px var(--ikcp-main-color);
  font-size: clamp(18px, 2.5vw, 20px);
}

.ikcp-btn--members:hover {
  opacity: 0.7;
}

.ikcp-members-cta__title {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--ikcp-main-color);
  padding: 10px 0;
}

.ikcp-members-cta__lead {
  font-size: clamp(18px, 2.5vw, 21px);
  padding: 10px 0;
}

.ikcp-members__note {
  text-align: left;
  font-size: clamp(16px, 2.5vw, 18px);
  margin-top: 20px;
}

.ikcp-members__note-text {
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 23px);
  position: relative;
  padding: 7px 0;
}

.ikcp-members__note-text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: rgba(255, 255, 0, 0.703);
  height: 20px;
  width: 100%;
  z-index: -1;
}

.ikcp-members__note li::before {
  content: "✓";
  color: var(--ikcp-accent-color);
  display: inline;
  font-weight: 700;
  font-size: 20px;
}

/* ===============================================
# footer
=============================================== */

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

.ikcp-footer__copyright {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  padding-bottom: 50px;
  color: var(--ikcp-base-white);
}

/* ===============================================
 # line
 =============================================== */

.ikcp-line {
  border-top: dotted 2px #0ca70c;
  border-bottom: dotted 2px #0ca70c;
}

.ikcp-line__inner {
  padding: 50px 10px;
  color: var(--ikcp-base-bg);
}

.ikcp-line__title {
  font-size: clamp(16px, 2.5vw, 20px);
}

.ikcp-line-cta__btn {
  background-color: var(--ikcp-base-white);
  border: solid 10px var(--ikcp-base-white);
}

.ikcp-line-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ikcp-base-white);
  margin: 20px auto;
}

.ikcp-line__text {
  font-size: clamp(16px, 2.5vw, 18px);
  text-align: center;
  padding: 0 10px;
}

.ikcp-line-cta__btn img {
  width: 200px;
  height: auto;
}

/* ===============================================
# flow & faq
=============================================== */

.ikcp-flow__title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--ikcp-main-color);
}

.ikcp-flow__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ikcp-flow__step {
  font-size: 12px;
  color: #333;
  font-weight: bold;
  background-color: #d2dae1;
  padding: 3px 10px;
}

.ikcp-flow__heading {
  font-size: 18px;
  margin: 5px 0;
}

.ikcp-flow__text {
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ */

.ikcp-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 50px 15px;
}

@media screen and (min-width: 768px) {
  .ikcp-faq {
    padding: 80px 15px;
  }
}

.ikcp-faq__title {
  text-align: center;
  margin-bottom: 30px;
}

.ikcp-faq__item {
  border-bottom: 1px solid #eee;
  padding: 15px 0 30px;
}

.ikcp-faq__q {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.ikcp-faq__q::before {
  content: "Q.";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: var(--ikcp-main-color);
  color: var(--ikcp-base-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  box-sizing: border-box;
  margin-bottom: 5px;
}

.ikcp-faq__a {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===============================================
# flow arrow straight
=============================================== */

.ikcp-flow {
  overflow: visible;
  padding: 50px 15px;
  background-color: #f1ecec;
}

@media screen and (min-width: 768px) {
  .ikcp-flow {
    padding: 80px 15px;
  }
}

.ikcp-flow__list {
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .ikcp-flow__list {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }
}

.ikcp-flow__item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: visible;
  box-shadow: 2px 2px 5px #9e9b9b;
}

/* STEP間の縦線 */
.ikcp-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 24px;
  width: 2px;
  height: 80px;
  background: var(--ikcp-accent-color);
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .ikcp-flow__item:not(:last-child)::after {
    display: none;
  }

  .ikcp-flow__item:not(:last-child)::before {
    display: none;
  }
}

/* 矢印の先 */
.ikcp-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  right: 18px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--ikcp-accent-color);
  border-bottom: 2px solid var(--ikcp-accent-color);
  transform: rotate(45deg);
  z-index: 5;
}
