@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://db.onlinewebfonts.com/c/2ba0dc3a3aeaf8a94097b7b60b382990?family=Chalkboard+SE");
/* 初期状態（見えない） */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.fade-section.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 少し遅らせたい場合 */
.fade-section.delay {
  transition-delay: 0.3s;
}

*,
html,
body {
  margin: 0;
  padding: 0;
  color: black;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background: white;
}

div,
h1,
h2,
h3,
h4,
h5,
p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

img {
  width: 100%;
}

/*******************
Top
********************/
.top_box {
  margin: 0 auto;
  width: 1500px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.top_circle {
  position: relative;
  margin-top: 150px;
}
.top_circle .title_box {
  width: 50%;
  background-image: url(../../src/home/c_top.webp);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 10% 0 18% 0;
}
.top_circle .title_box .title {
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 5%;
}
.top_circle .title_box p {
  text-align: center;
  font-size: min(2vw, 30px);
  line-height: 200%;
  font-family: "Hiragino Mincho ProN", YuMincho, serif;
  margin-left: -5%;
}
.top_circle .c_top3 {
  position: absolute;
  bottom: 20%;
  left: 43%;
  width: 10%;
  z-index: -1;
}

.shape1 {
  position: absolute;
  top: 53vw;
  right: 0%;
}
.shape1 img {
  width: auto;
  height: 12vw;
}
.shape1 {
  z-index: 1;
}

/*
.swiper-container1 {
    aspect-ratio: 1 / 1;
    position: relative;

    .swiper-slide {
        transition: opacity 1s ease;
        opacity: 0;
    }

    .swiper-slide-active {
        opacity: 1;
    }
}*/
/********************
回転アニメ
*********************/
.swiper-box {
  width: 65%;
  position: absolute;
  top: calc(var(--radius) * -1 + 65vw - 32.5vw);
  margin-top: 50px;
  right: -67%;
  z-index: -2;
}

.ferris {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}

.wheel {
  width: 100%;
  height: 100%;
  position: absolute; /* ← relative ではなく absolute */
  top: 0;
  left: 0;
  inset: 0;
  transform-origin: 50% 50%;
}

.item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65vw; /* ★ 主役サイズ */
  max-width: 975px; /* PCでの上限（任意） */
  aspect-ratio: 1/1;
  transform-origin: 50% 50%;
}

.item img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item img {
  opacity: 0;
  transition: 2s ease;
}

.item.is-active img {
  opacity: 1;
}

/*
.ferris {
    outline: 2px solid red;
}
.wheel {
    outline: 2px solid blue;
}*/
/********************
*********************/
.c_top1 {
  position: absolute;
  top: 150px;
  left: 2%;
  width: 50px;
  z-index: -1;
}

.c_top2 {
  position: absolute;
  top: 120px;
  left: 30%;
  width: 30px;
  z-index: -1;
}

/*******************
loop
********************/
.loop {
  margin: 0 auto;
  max-width: 100%;
  width: 1500px;
}

.image_wrapper {
  display: flex;
  height: 300px;
  overflow: hidden;
}

.loop_image {
  width: auto;
  height: 300px;
  max-width: none;
}

.loop_image:nth-child(odd) {
  animation: loop3 80s -40s linear infinite;
}

.loop_image:nth-child(even) {
  animation: loop4 80s linear infinite;
}

@keyframes loop3 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop_box {
  margin-top: -5%;
}

.loop_box {
  position: relative;
}

.c_top4 {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 20px;
  z-index: -1;
}

.c_top5 {
  position: absolute;
  top: 70%;
  left: 40%;
  width: 15px;
  z-index: -1;
}

/*******************
home title
********************/
.home_title {
  text-align: center;
}
.home_title .en {
  font-size: 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #005798;
}
.home_title h2 {
  font-size: 50px;
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}

/*******************
know
********************/
.to_know {
  margin: 0 auto;
  padding-top: 20%;
  margin-top: -15%;
  background-image: url("../../src/home/bg1.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 50px;
  width: 1500px;
  max-width: 100%;
}

.know_flex {
  display: flex;
  max-width: 90%;
  width: 1400px;
  margin: 50px auto;
  gap: 100px;
  align-items: center;
}
.know_flex .left {
  width: calc(50% - 50px);
}
.know_flex .left img {
  filter: drop-shadow(10px 10px 0 #d6d5d5);
}
.know_flex .right {
  width: calc(50% - 50px);
}
.know_flex .right p {
  font-size: 23px;
  font-weight: 800;
  line-height: 170%;
}
.know_flex .right .btn a {
  margin-top: 20px;
  margin-left: auto;
  margin-right: 20%;
}
.know_flex .right .btn a:hover {
  transform: scale(1.05, 1.05);
}

.img_box {
  position: relative;
}

.text_span {
  position: absolute;
  bottom: 0;
  left: -30px;
  line-height: 170%;
  font-size: 30px;
  font-weight: 500;
  z-index: 5;
}
.text_span .bg {
  background: #005798;
  color: white;
  padding: 7px 15px;
}
.text_span .yellow {
  color: #ffe731;
}

.btn a {
  display: block;
  background: #005798;
  padding: 7px 20px;
  color: white;
  border-radius: 9999px;
  width: 170px;
  max-width: 100%;
  text-align: center;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 800;
}

.quiz {
  width: 800px;
  max-width: 90%;
  margin: 50px auto;
  position: relative;
  cursor: pointer;
}
.quiz .start {
  width: 200px;
  max-width: 20%;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, 0);
}
.quiz:hover .start {
  transform: translate(-50%, 0) scale(1.1, 1.1);
}

/*******************
job
********************/
.job_box {
  max-width: 90%;
  width: 1400px;
  margin: 50px auto;
}

.map {
  width: 1200px;
  max-width: 100%;
  margin: 30px auto;
}
.map .btn2 a {
  border: solid 1px #005798;
  color: #005798;
  background: transparent;
  margin-top: 20px;
  margin-left: auto;
  font-size: 25px;
  width: 250px;
  margin-right: 5%;
}

.job_flex {
  display: flex;
  margin: 50px auto;
  width: 1200px;
  max-width: 100%;
}
.job_flex .left {
  width: 50%;
}
.job_flex .right {
  width: 50%;
}
.job_flex .right .img_box {
  margin-top: 20%;
}
.job_flex img {
  filter: drop-shadow(10px 10px 0 #d6d5d5);
}
.job_flex .img_box {
  width: 500px;
  max-width: 80%;
  margin: 0 auto;
}
.job_flex .img_box:hover {
  transform: translate(10px, 10px);
}
.job_flex .img_box:hover img {
  filter: none;
}
.job_flex .text_span {
  bottom: 20px;
  left: -10%;
}

/*******************
interview
********************/
.interview_box {
  margin: 0 auto;
  padding-top: 20%;
  background-image: url("../../src/home/bg2.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 50px;
  width: 1500px;
  max-width: 100%;
}

.interview_sw {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  display: flex;
}

.interview-texts {
  width: 35%;
}

.swiper-container3,
.swiper-container3_sp {
  margin-left: 5%;
  width: 65%;
  padding-bottom: 100px;
  padding-top: 30px;
}
.swiper-container3 .swiper-slide,
.swiper-container3_sp .swiper-slide {
  width: 320px;
  opacity: 0.5;
}
.swiper-container3 .icon,
.swiper-container3_sp .icon {
  width: auto;
  height: 270px;
  margin: 0 auto;
  margin-top: 50px;
}
.swiper-container3 .swiper-wrapper,
.swiper-container3_sp .swiper-wrapper {
  display: flex;
  align-items: flex-end;
}
.swiper-container3 .swiper-slide-active,
.swiper-container3_sp .swiper-slide-active {
  opacity: 1;
}
.swiper-container3 .swiper-slide-active .icon,
.swiper-container3_sp .swiper-slide-active .icon {
  width: auto;
  height: 320px;
  margin-top: 0;
  margin-left: 0;
}
.swiper-container3 .arrow,
.swiper-container3_sp .arrow {
  display: none;
}
.swiper-container3 .tags li,
.swiper-container3_sp .tags li {
  list-style: "";
  font-size: 15px;
  margin-bottom: 10px;
}
.swiper-container3 .tags li span,
.swiper-container3_sp .tags li span {
  background: #fdf4b3;
  border: solid 1px #707070;
  padding: 5px 10px;
  font-size: 20px;
  border-radius: 10px;
}
.swiper-container3 .thumb,
.swiper-container3_sp .thumb {
  position: relative;
}
.swiper-container3 .thumb .arrow,
.swiper-container3_sp .thumb .arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 70px;
}
.swiper-container3 .name,
.swiper-container3_sp .name {
  font-size: 30px;
  font-weight: 800;
  margin: 10px 0;
}
.swiper-container3 .name span,
.swiper-container3_sp .name span {
  font-size: 18px;
  font-weight: 400;
}

.interview-texts .text {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: none;
}

.interview-texts .text.is-active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}

.interview_box {
  position: relative;
}
.interview_box .swiper-pagination {
  position: static;
}
.interview_box .shape2 {
  position: absolute;
  width: 200px;
  right: 2%;
  top: 5%;
  z-index: 1;
}
.interview_box .btn_flex {
  position: absolute;
  display: flex !important;
  gap: 50px;
  bottom: 20px;
  right: 10%;
}
.interview_box .btn_flex .swiper-button-prev,
.interview_box .btn_flex .swiper-button-next {
  width: 60px;
  background-image: none;
  position: static;
}

.memo_box {
  background: white;
  padding: 10px 20px;
  border: solid 2px #000000;
  transform: rotate(-7deg);
  margin: 0 auto;
  margin-top: 35%;
  width: 90%;
  margin-left: 10%;
  position: relative;
  z-index: 3;
}
.memo_box img {
  width: 20px;
  margin: 0px auto 10px auto;
  transform: rotate(7deg);
}
.memo_box p {
  font-weight: 600;
  font-size: 20px;
  line-height: 170%;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.memo_box p span {
  border-bottom: solid 5px #fdf4b3;
}

.swiper-pagination3 {
  position: absolute;
  left: 10%;
  bottom: 50px;
  width: 200px;
  height: 200px;
  background: #ffffff;
  font-size: 100px;
  opacity: 0.5;
  font-weight: 400;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: white;
  border-radius: 50%;
}
.swiper-pagination3 .num1,
.swiper-pagination3 .num2 {
  font-size: 30px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: white;
}
.swiper-pagination3 .num1 {
  position: absolute;
  left: 20px;
  top: 25px;
}
.swiper-pagination3 .num2 {
  position: absolute;
  right: 15px;
  bottom: 25px;
}

.num_circle0 {
  width: 200px;
  height: 200px;
}

.num_container {
  position: relative;
  width: 200px;
  height: 200px;
}

.num_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle {
  inset: 0;
  width: 200px;
  height: 200px;
  transform: rotate(-90deg); /* 右スタート */
}

.circle-bg {
  fill: none;
}

.circle-progress {
  fill: none;
  stroke: #707070;
  stroke-width: 2;
  /* 円周 2πr = 約283 */
  stroke-dasharray: 308;
  stroke-dashoffset: 308;
  animation: circle-spin linear forwards;
  animation-duration: 3s; /* autoplayと合わせる */
}

@keyframes circle-spin {
  from {
    stroke-dashoffset: 283;
  }
  to {
    stroke-dashoffset: 0;
  }
}
/*******************
info
********************/
.info_flex {
  max-width: 90%;
  width: 1400px;
  margin: 50px auto;
  display: flex;
  width: 1000px;
  justify-content: center;
  gap: 50px;
}
.info_flex .left,
.info_flex .right {
  width: calc(50% - 50px);
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-direction: column;
}
.info_flex .btn {
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
}
.info_flex .btn a {
  width: auto;
  font-weight: 400;
  border-radius: 20px;
  padding: 20px 10%;
  font-size: 20px;
  position: relative;
}
.info_flex .btn a span {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
.info_flex .btn a:hover {
  transform: scale(1.05, 1.05);
}
.info_flex span {
  color: white;
}

/*******************
quiz
********************/
/* モーダル */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: flex-start; /* ← 中央にしない */
  overflow-y: scroll; /* ← 重要 */
  padding: 40px 16px; /* ← 余白確保 */
  z-index: 100;
  top: 0;
  margin-top: 100px;
}

.modal-content {
  background: #fff;
  width: 900px;
  max-width: 90%;
  padding: 30px;
  position: relative;
}

/* 閉じるボタン */
.close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.7490196078);
  border: solid 2px #707070;
  border-radius: 50%;
}

.choices button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  cursor: pointer;
}

#explanation {
  margin-top: 20px;
  display: none;
}

#nextBtn {
  margin-top: 20px;
  display: none;
}

.correct-choice {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  font-size: 18px;
  cursor: default;
}

/* 結果 */
#result {
  display: none;
  padding: 40px;
  color: #fff;
}

#result a {
  display: block;
  margin-top: 10px;
  color: #fff;
}

.modal-content {
  background-image: url(../../src/quiz/bg1.webp);
  background-repeat: repeat;
  background-size: cover;
  padding-bottom: 40px;
  min-height: 580px;
}

.q-count {
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 50px;
  color: white;
}

h2#question {
  font-size: 16px;
  background-image: url("../../src/quiz/question.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 70px 50px 80px 50px;
  width: 500px;
  max-width: 100%;
  margin: 70px auto 20px auto;
  position: relative;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
}
h2#question::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -60px;
  width: 150px;
  height: 120px;
  max-width: 30%;
  background-image: url("../../src/quiz/q.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-50%, 0);
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  width: 700px;
  max-width: 100%;
  justify-content: center;
  margin: 0 auto;
}
.choices button {
  width: calc(50% - 30px);
  margin: 0px 0;
  background-color: transparent;
  border: 0;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
}
.choices button:hover {
  transform: scale(1.05, 1.05);
}
.choices button span {
  display: block;
}
.choices button .choice-label {
  background-image: url("../../src/quiz/q_cirlce.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 30px;
  font-family: "Chalkboard SE";
  width: 50px;
  height: 50px;
  padding: 0px 10px;
}
.choices button .choice-text {
  background-image: url("../../src/quiz/text.webp");
  background-repeat: no-repeat;
  padding: 10px 30px;
  background-size: 100% 100%;
  width: calc(100% - 50px);
  margin-left: -7px;
  min-height: 50px;
  display: flex;
  align-items: center;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.is-answer {
  padding-bottom: 20px;
}
.is-answer .choices button {
  cursor: default;
}
.is-answer .choices button:hover {
  transform: none;
}
.is-answer .quiz-image {
  margin-top: 0px;
}

#quizImage {
  width: auto;
  height: 80px;
  margin: 0px auto 0px auto;
}

#answerText {
  font-size: 16px;
  background-image: url("../../src/quiz/answer.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 50px 40px 50px;
  width: 700px;
  max-width: 100%;
  margin: 30px auto 20px auto;
  position: relative;
  font-weight: 800;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  line-height: 150%;
  font-size: 20px;
}
#answerText span {
  color: #005798;
  padding-bottom: 10px;
  font-size: 24px;
  display: block;
}

#commentText {
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
#commentText span {
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
}

#link {
  display: block !important;
  padding: 15px 40px;
  margin: 20px auto;
  background: #ffff00;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  border: solid 4px black;
  border-radius: 9999px;
  position: relative;
  width: 250px;
  max-width: 100%;
  text-align: center;
}
#link::after {
  content: "▶︎";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
#link:hover {
  transform: scale(1.05, 1.05);
}

#nextBtn {
  background-color: transparent;
  border: 0;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  background-image: url("../../src/quiz/next.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 20px 30px 20px 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  cursor: pointer;
}
#nextBtn:hover {
  transform: scale(1.05, 1.05);
}

#answerArea #nextBtn {
  margin-bottom: 20px;
}

#result {
  text-align: center;
  padding: 100px;
}
#result h2 {
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  line-height: 120%;
  font-size: 25px;
}
#result h2 span {
  font-size: 18px;
}
#result p {
  margin-top: 30px;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 25px;
}
#result p span {
  font-size: 16px;
}
#result p .font1 {
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  padding-top: 50px;
  display: block;
}
#result p .font1 .font2 {
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  display: inline;
}
#result .linl_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  width: 700px;
  max-width: 100%;
  justify-content: center;
  margin: 0 auto;
  margin-top: 30px;
}
#result .linl_flex a {
  display: block !important;
  padding: 20px 40px;
  margin: 0px auto;
  background: #ffff00;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  border: solid 4px black;
  border-radius: 9999px;
  position: relative;
  width: 330px;
  max-width: 100%;
  text-align: center;
  color: black;
  font-size: 20px;
}
#result .linl_flex a::after {
  content: "▶︎";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

.info_box {
  max-width: 90%;
  width: 1400px;
  margin: 100px auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/*******************
company
********************/
.map {
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  width: 1500px;
  max-width: 100%;
}
.map .btn a:hover {
  transform: scale(1.05, 1.05);
}

.company {
  position: absolute;
  top: 40%;
  left: 13%;
  width: 27%;
  cursor: pointer;
}
.company:hover {
  transform: scale(1.05, 1.05);
}

.sukesan {
  position: absolute;
  top: 17.5%;
  left: 41.3%;
  width: 22%;
  cursor: pointer;
}
.sukesan:hover {
  transform: scale(1.05, 1.05);
}

.office {
  position: absolute;
  top: 2.5%;
  left: 76.5%;
  width: 21%;
  cursor: pointer;
}
.office:hover {
  transform: scale(1.05, 1.05);
}

.click {
  position: absolute;
  width: 6%;
  animation: balloon-float 2s ease-in-out infinite;
  pointer-events: none;
}

.click1 {
  position: absolute;
  top: 36%;
  left: 24%;
}

.click2 {
  position: absolute;
  top: 8.5%;
  left: 50.3%;
}

.click3 {
  position: absolute;
  top: -8.5%;
  left: 83.5%;
}

/* アニメーション */
@keyframes balloon-float {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-8px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.map2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 900px) {
  .swiper-box {
    margin-top: 20px;
  }
  /*
  .swiper-box {
      width: 70%;
  }*/
  .know_flex {
    gap: 50px;
  }
  .know_flex .left {
    width: 100%;
  }
  .know_flex .right {
    width: 100%;
  }
  .know_flex .right p {
    font-size: 18px;
  }
  .know_flex .right p br {
    display: none;
  }
  .know_flex .text_span {
    font-size: 25px;
    left: -10px;
  }
  .know_flex .text_span .bg {
    padding: 5px 10px;
  }
}
@media (max-width: 1300px) {
  .memo_box p {
    width: auto;
  }
}
@media (max-width: 700px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .shape1 {
    margin-top: -10px;
  }
  .swiper-box {
    margin-top: -5px;
    right: -61%;
  }
  .modal {
    margin-top: 0;
    padding-top: 80px;
  }
  .modal-content {
    padding: 30px 5%;
  }
  .is-answer .quiz-image {
    margin-top: 10px;
  }
  #quizImage {
    width: auto;
    height: 60px;
  }
  .close {
    width: 50px;
    height: 50px;
  }
  #result {
    padding: 40px 0;
  }
  #result h2 {
    font-size: 22px;
  }
  #result h2 span {
    font-size: 16px;
  }
  #result p {
    font-size: 22px;
  }
  #result p span {
    font-size: 11px;
  }
  #result .linl_flex a {
    font-size: 18px;
    padding: 15px 30px;
  }
  .choices {
    flex-direction: column;
  }
  .choices button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  #answerText {
    font-size: 16px;
    padding: 40px 40px 40px 40px;
  }
  #answerText br {
    display: none;
  }
  #answerText span {
    font-size: 18px;
  }
  #commentText {
    font-size: 12px;
  }
  .top_circle {
    margin-top: 100px;
  }
  .top_circle .title_box p {
    font-size: 12px;
  }
  .image_wrapper {
    display: flex;
    height: 100px;
    overflow: hidden;
  }
  .image_wrapper .loop_image {
    height: 100px;
  }
  .home_title .en {
    font-size: 20px;
  }
  .home_title h2 {
    font-size: 30px;
  }
  .to_know {
    margin-top: 0px;
    padding-top: 50px;
    background: none;
    padding-bottom: 0;
  }
  .know_flex {
    gap: 0px;
    flex-direction: column;
    margin-top: 20px;
    padding-bottom: 30px;
  }
  .know_flex .left {
    width: 100%;
  }
  .know_flex .left .text_span {
    position: absolute;
  }
  .know_flex .right {
    width: 100%;
  }
  .know_flex .right p {
    display: none;
  }
  .know_flex .right .btn {
    margin-top: -20px;
    position: relative;
    z-index: 5;
  }
  .know_flex .right .btn a {
    margin-top: 0;
    margin-right: 0;
  }
  .know_flex .text_span {
    font-size: 20px;
    left: -10px;
  }
  .know_flex .text_span .bg {
    padding: 5px 10px;
  }
  .know_box {
    background-image: url(../../src/home/bg1.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .map .btn2 a {
    font-size: 20px;
    width: 200px;
    max-width: 100%;
    margin: 20px auto;
  }
  .job_flex {
    flex-direction: column;
  }
  .job_flex .left {
    width: 100%;
  }
  .job_flex .right {
    width: 100%;
  }
  .text_span {
    position: static;
    margin-bottom: 10px;
  }
  .job_flex .img_box {
    margin-top: 30px;
  }
  .swiper-pagination3 {
    display: none;
  }
  .interview_box {
    background-image: none;
    margin-top: 0;
    padding-top: 0;
  }
  .interview_box .shape2 {
    display: none;
  }
  .interview_sw {
    display: block;
  }
  .interview-texts {
    width: 90%;
  }
  .memo_box {
    margin-top: 30px;
  }
  .memo_box p {
    font-size: 16px;
  }
  .swiper-container3,
  .swiper-container3_sp {
    width: 100%;
    margin-top: 0px;
    padding-bottom: 0px;
    margin-left: 0%;
  }
  .swiper-container3 .swiper-wrapper,
  .swiper-container3_sp .swiper-wrapper {
    display: block;
  }
  .swiper-container3 .swiper-wrapper .icon,
  .swiper-container3_sp .swiper-wrapper .icon {
    margin-top: 20px;
  }
  .swiper-container3 .swiper-slide,
  .swiper-container3_sp .swiper-slide {
    width: 100%;
    margin: 30px auto;
    opacity: 1;
  }
  .swiper-container3 .swiper-slide article,
  .swiper-container3_sp .swiper-slide article {
    background-image: url("../../src/home/bg2_sp2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0 30px 0;
  }
  .swiper-container3 .swiper-slide:first-child article,
  .swiper-container3_sp .swiper-slide:first-child article {
    background-image: url("../../src/home/bg2_sp1.webp");
  }
  .swiper-container3 .tags li span,
  .swiper-container3_sp .tags li span {
    font-size: 16px;
  }
  .swiper-container3 .card,
  .swiper-container3_sp .card {
    width: 300px;
    max-width: 90%;
    margin: 10px auto;
  }
  .memo_box {
    margin: 0 auto;
    width: 400px;
    max-width: 90%;
  }
  .home_title {
    margin-bottom: 50px;
  }
  .swiper-container3_sp .thumb .arrow {
    display: block;
    bottom: -5px;
    right: 40px;
    width: 60px;
  }
  .interview_box .btn_flex {
    display: none !important;
  }
  .info_flex {
    display: block;
    gap: 0;
  }
  .info_flex .left,
  .info_flex .right {
    gap: 0;
    width: 100%;
  }
  .info_flex .btn {
    width: 400px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .info_box {
    margin-bottom: 0;
    margin-top: 50px;
  }
}
@media (max-width: 400px) {
  .memo_box p {
    font-size: 15px;
  }
}
@media (max-width: 300px) {
  #quizImage {
    width: 90%;
    height: auto;
  }
}/*# sourceMappingURL=home.css.map */