@charset "UTF-8";

/* var */
:root {
  --orange: #F78157;
  --orange2: #FFFAF8;
  --black: #333333;
  --brown: #4A1E00;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}

html {
  /*font-size: 62.5%;*/
  overflow-x: hidden;
  font-family: "Meiryo", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 1px;
  color: var(--black);
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  line-height: 160%;
}

.en {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

figure {
  margin: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

a.noref {
  pointer-events: none;
}

.pc-only {
  display: block !important;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.body {
  padding-top: 90px;
}

@media (max-width: 768px) {
  .body {
    padding-top: 55px;
  }
}

.header {
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }
}

.header.is-scroll {
  background: rgba(255, 255, 255, 0.8784313725);
  box-shadow: 0 2px 3px rgba(74, 30, 0, 0.3215686275);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header .header-logo {
  max-width: 304px;
  width: 100%;
}

@media (max-width: 768px) {
  .header .header-logo {
    max-width: 300px;
    width: 60%;
  }
}

.header .header-detail {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header .header-detail .header-detail-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1080px) {
  .header .header-detail .header-detail-nav {
    display: none;
  }
}

.header .header-detail .header-detail-nav__item a {
  font-size: 16px;
  font-weight: 700;
}

.header .header-detail .header-detail-nav__entry {
  width: 200px;
  padding: 0.5rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .header .header-detail .header-detail-nav__entry {
    display: none;
  }
}

.header .header-detail .header-detail-nav__entry a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  gap: 10px;
}

.header-toggle {
  cursor: pointer;
}

.header-toggle div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.header-toggle div span {
  background: var(--orange);
  display: block;
  width: 35px;
  height: 5px;
  border-radius: 10px;
  transition: 0.3s all;
}

@media (max-width: 768px) {
  .header-toggle div span {
    width: 28px;
    height: 3px;
  }
}

.header-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

@media (max-width: 768px) {
  .header-toggle.is-active span:nth-child(1) {
    top: 8px;
  }
}

.header-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -10px;
}

@media (max-width: 768px) {
  .header-toggle.is-active span:nth-child(3) {
    top: -8px;
  }
}

.hero {
  display: none;
}

.hero.is-active {
  display: block;
  height: 80vh;
  background: var(--orange2);
  padding: 150px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

@media (max-width: 768px) {
  .hero.is-active {
    padding: 70px 0 0;
    height: 90vh;
  }
}

.hero-logo {
  max-width: 400px;
}

@media (max-width: 1000px) {
  .hero-logo {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    display: none;
  }
}

.hero .hero-wrap {
  display: flex;
  gap: 120px;
}

@media (max-width: 1000px) {
  .hero .hero-wrap {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrap {
    gap: 0;
    flex-direction: column;
  }
}

.hero .hero-wrap .hero-right .hero-top {
  display: flex;
  gap: 80px;
}

@media (max-width: 1200px) {
  .hero .hero-wrap .hero-right .hero-top {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-top {
    flex-direction: column;
    gap: 0;
  }
}

.hero .hero-wrap .hero-right .hero-top .hero-top__list dt {
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-top .hero-top__list dt {
    display: none;
  }
}

.hero .hero-wrap .hero-right .hero-top .hero-top__list dd {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-top .hero-top__list dd {
    border-bottom: 1px solid #FFF0E6;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1200px) {
  .hero .hero-wrap .hero-right .hero-top .hero-top__list dd a {
    font-size: 20px;
  }
}

@media (max-width: 1080px) {
  .hero .hero-wrap .hero-right .hero-top .hero-top__list dd a {
    font-size: 18px;
  }
}

.hero .hero-wrap .hero-right .hero-top .hero-top__list dd a::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 40%;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-top .hero-top__list dd a::after {
    display: none;
  }
}

.hero .hero-wrap .hero-right .hero-bottom {
  padding-top: 20px;
}

.hero .hero-wrap .hero-right .hero-bottom__link {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .hero .hero-wrap .hero-right .hero-bottom__link {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-bottom__link {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.hero .hero-wrap .hero-right .hero-bottom__link a::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 35%;
  width: 8px;
  height: 8px;
  border-top: 3px solid var(--black);
  border-right: 3px solid var(--black);
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-bottom__link a::after {
    display: none;
  }
}

.hero .hero-wrap .hero-right .hero-bottom .hero-bottom__btn {
  max-width: 350px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-bottom .hero-bottom__btn {
    max-width: 500px;
    margin: 0 auto;
  }
}

.hero .hero-wrap .hero-right .hero-bottom .hero-bottom__btn a {
  display: flex;
  align-items: center;
  background: var(--brown) url("../img/common/icon_arrow2.svg") 90% center no-repeat;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 80px 12px 40px;
  gap: 10px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

@media (max-width: 1000px) {
  .hero .hero-wrap .hero-right .hero-bottom .hero-bottom__btn a {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrap .hero-right .hero-bottom .hero-bottom__btn a {
    font-size: 20px;
    border-radius: 10px;
    padding: 16px 80px 16px 40px;
  }
}

.hero .hero-wrap .hero-right .hero-bottom .hero-bottom__btn a img {
  width: 35px;
}

.min {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .title {
    margin-bottom: 30px;
  }
}

.title-en {
  color: var(--orange);
  font-size: 50px;
  font-weight: 700;
  display: block;
  letter-spacing: 0.07em;
}

@media (max-width: 768px) {
  .title-en {
    font-size: 30px;
  }
}

.title-ja {
  display: block;
  font-size: 20px;
  font-weight: 700;
  display: block;
  color: var(--brown);
}

@media (max-width: 768px) {
  .title-ja {
    font-size: 16px;
  }
}

.main .first {
  padding: 120px 0 130px;
}

@media (max-width: 768px) {
  .main .first {
    padding: 60px 0;
  }
}

.main .first .first-lead {
  color: var(--orange);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 160%;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .main .first .first-lead {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 520px) {
  .main .first .first-lead {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.main .first .first-set {
  margin-bottom: 130px;
}

@media (max-width: 768px) {
  .main .first .first-set {
    margin-bottom: 80px;
  }
}

.main .first .first-set .first-text {
  line-height: 160%;
  margin-bottom: 30px;
}

.main .first .first-set .first-text:last-child {
  margin-bottom: 0;
}

.main .first .first-benner {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .main .first .first-benner {
    flex-direction: column;
    gap: 30px;
  }
}

.main .first .first-benner__item {
  width: 100%;
  max-width: calc(50% - 20px);
}

@media (max-width: 768px) {
  .main .first .first-benner__item {
    max-width: 100%;
  }
}

.main .interview {
  background: var(--orange2);
  padding: 130px 0;
}

@media (max-width: 768px) {
  .main .interview {
    padding: 80px 0;
  }
}

.main .interview .interview-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .main .interview .interview-list {
    flex-direction: column;
  }
}

.main .interview .interview-list__detail {
  padding: 0 20px 10px;
}

@media (max-width: 768px) {
  .main .interview .interview-list__detail {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .main .interview .interview-list__head {
    display: flex;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .main .interview .interview-list__head a {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .main .interview .interview-list__main {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .main .interview .interview-list__image {
    width: 100%;
    display: block;
  }
}

.main .interview .interview-list__bottom {
  padding: 0 20px 60px;
}

@media (max-width: 768px) {
  .main .interview .interview-list__bottom {
    padding: 20px 0 40px;
  }
}

.main .interview .interview-list__box {
  background: #fff;
  width: calc(33% - 18px);
  max-width: 380px;
}

@media (max-width: 1000px) {
  .main .interview .interview-list__box {
    width: calc(50% - 18px);
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .main .interview .interview-list__box {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }
}

.main .interview .interview-list__box .interview-list-icon {
  padding: 20px;
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .main .interview .interview-list__box .interview-list-icon {
    flex-direction: column;
    padding: 0;
    font-size: 16px;
    gap: 5px;
    margin-bottom: 10px;
  }
}

.main .interview .interview-list__box .interview-list-icon__item span {
  background: #474747;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  padding: 7px 10px;
  line-height: 1;
}

@media (max-width: 768px) {
  .main .interview .interview-list__box .interview-list-icon__item span {
    font-size: 14px;
    padding: 3px 10px;
  }
}

.main .interview .interview-list__box .interview-list__position {
  font-size: 20px;
  line-height: 120%;
}

@media (max-width: 768px) {
  .main .interview .interview-list__box .interview-list__position {
    font-size: 16px;
  }
}

.main .interview .interview-list__box .interview-list__name {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .main .interview .interview-list__box .interview-list__name {
    font-size: 18px;
  }
}

.main .interview .interview-list__box .interview-list__text {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .main .interview .interview-list__box .interview-list__text {
    font-size: 16px;
  }
}

.main .interview .interview-list__box .interview-list__nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-end;
}

.main .interview .interview-list__box .interview-list__nav a {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .main .interview .interview-list__box .interview-list__nav a {
    font-size: 14px;
  }
}

.main .interview .interview-list__box .interview-list__nav a::after {
  content: "";
  background: transparent url("../img/common/icon_arrow.svg") center center;
  width: 20px;
  height: 20px;
  display: block;
}

.interview-list__image {
  aspect-ratio: 4/3;
}

.interview-list__image img {
  object-fit: contain;
  height: 250px;
  width: 100%;
}

@media (max-width: 768px) {
  .interview-list__image img {
    height: auto;
  }
}

.interview h2.title {
  display: none;
}

.main .top-intro {
  padding: 140px 0;
}

@media (max-width: 768px) {
  .main .top-intro {
    padding: 80px 0;
  }
}

.main .top-intro .inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.main .top-intro .top-intro-wrap {
  display: flex;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .main .top-intro .top-intro-wrap {
    flex-direction: column;
    gap: 30px;
  }
}

.main .top-intro .top-intro-wrap .top-intro-detail {
  width: 50%;
  height: 535px;
}

@media (max-width: 768px) {
  .main .top-intro .top-intro-wrap .top-intro-detail {
    height: auto;
    width: 100%;
  }
}

.main .top-intro .top-intro-wrap .top-intro-detail .title {
  text-align: left;
}

.main .top-intro .top-intro-wrap .top-intro-detail .top-intro-detail__text {
  margin-bottom: 20px;
}

.main .top-intro .top-intro-wrap .top-intro-detail .top-intro-detail__nav a {
  display: block;
  padding: 15px 0;
  border: 1px solid var(--orange);
  border-radius: 80px;
  width: 100%;
  max-width: 275px;
  text-align: center;
  text-indent: -20px;
  background: transparent url("../img/common/icon_arrow.svg") 85% center no-repeat;

}

@media (max-width: 768px) {
  .main .top-intro .top-intro-wrap .top-intro-detail .top-intro-detail__nav a {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .main .top-intro .top-intro-wrap .top-intro-detail .top-intro-detail__nav a {
    max-width: 400px;
    margin: 0 auto;
    padding: 7px 0;
    background-size: 14px;
  }
}

.main .top-intro .top-intro-wrap .top-intro-image {
  width: 45%;
  max-width: 910px;
  position: absolute;
  top: 0;
  left: 56%;
}

@media (max-width: 768px) {
  .main .top-intro .top-intro-wrap .top-intro-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.main .top-intro .top-intro-wrap:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .main .top-intro .top-intro-wrap:nth-child(even) {
    flex-direction: column;
  }
}

.main .top-intro .top-intro-wrap:nth-child(even) .top-intro-image {
  left: auto;
  right: 56%;
}

@media (max-width: 768px) {
  .main .top-intro .top-intro-wrap:nth-child(even) .top-intro-image {
    right: auto;
    left: 0;
  }
}

.bg {
  background: #FFF9F8;
}

.breadcrumb {
  margin-bottom: 10px;
}

.breadcrumb-list {
  display: flex;
  gap: 10px;
  font-size: 16px;
}

.breadcrumb-list__item::after {
  content: ">";
  padding: 0 0 0 10px;
}

.breadcrumb-list__item:last-child::after {
  display: none;
}

.btn {
  text-align: center;
}

.btn a {
  display: inline-block;
  padding: 15px 60px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  background: #fff;
}

@media (max-width: 768px) {
  .btn a {
    padding: 15px 30px;
  }
}

.btn span {
  padding: 0 40px 0 40px;
  background: transparent url("../img/common/icon_arrow.svg") right center no-repeat;
}

.lower {
  padding: 0 0;
}

.lower-fv {
  background-size: 100% auto;
  height: 350px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .lower-fv {
    height: auto;
    flex-direction: column;
  }
}

.lower-fv__inner {
  max-width: 1500px;
  margin: 0 auto 0 3vw;
}

@media (max-width: 768px) {
  .lower-fv__inner {
    margin: 0 auto;
  }
}

.lower-fv__spimage {
  display: none;
}

@media (max-width: 768px) {
  .lower-fv__spimage {
    display: block;
  }
}

.lower-fv-pass {
  background: url("../img/pass/bg_header_pass.jpg") center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .lower-fv-pass {
    background: none;
  }
}

.lower-fv-feature {
  background: url("../img/feature/bg_header_feature.jpg") center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .lower-fv-feature {
    background: none;
  }
}

.lower-fv-career {
  background: url("../img/career/bg_header_career.jpg") center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .lower-fv-career {
    background: none;
  }
}

.lower-fv-company {
  background: url("../img/company/bg_header_company.jpg") center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .lower-fv-company {
    background: none;
  }
}

.lower-fv-interview {
  background: url("../img/interview/bg_header_interview.jpg") center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .lower-fv-interview {
    background: none;
  }
}

.lower-fv-towards {
  background: url("../img/towards/bg_header_towards.jpg") center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .lower-fv-towards {
    background: none;
  }
}

.lower-fv-works {
  background: url("../img/works/bg_header_works.jpg") center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .lower-fv-works {
    background: none;
  }
}

.lower-fv__set {
  width: 42vw;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .lower-fv__set {
    width: 100%;
    padding: 0 0 0;
    margin: 0 auto;
  }
}

.lower-fv__title {
  color: var(--orange);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 140%;
}

@media (max-width: 1000px) {
  .lower-fv__title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .lower-fv__title {
    width: 90%;
    margin: -100px auto 70px;
  }
}

@media (max-width: 768px) {
  .lower-fv__title span {
    font-size: 30px;
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 30px 10px 20px;
  }
}

@media (max-width: 520px) {
  .lower-fv__title {
    margin: -50px auto 40px;
  }
}

@media (max-width: 520px) {
  .lower-fv__title span {
    font-size: 18px;
    padding: 5px 30px 5px 10px;
  }
}

.lower-fv__text {
  font-size: 16px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .lower-fv__text {
    width: 90%;
    margin: 0 auto;
  }
}

.lower-fv2 {
  background: rgb(245, 111, 74);
  background: linear-gradient(180deg, rgb(245, 111, 74) 0%, rgb(251, 175, 119) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .lower-fv2 {
    height: 120px;
  }
}

.lower-fv2 h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .lower-fv2 h2 {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .lower-fv2 h2 {
    font-size: 24px;
  }
}

.lower-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .lower-title {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .lower-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.lower-fz {
  background-size: cover;
  text-align: center;
  padding: 80px 30px;
}

@media (max-width: 768px) {
  .lower-fz {
    padding: 40px 30px;
  }
}

.lower-fz h2 {
  font-size: 40px;
  color: #fff;
}

@media (max-width: 768px) {
  .lower-fz h2 {
    font-size: 20px;
  }
}

.lower-sub {
  border-left: 8px solid var(--orange);
  padding: 0 0 0 20px;
  margin-bottom: 30px;
}

.feature-first {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .feature-first {
    padding: 60px 0 140px;
  }
}

.feature-first__wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .feature-first__wrap {
    flex-direction: column;
  }
}

.feature-first__lead {
  font-weight: 700;
  font-size: 50px;
  line-height: 160%;
}

@media (max-width: 1000px) {
  .feature-first__lead {
    font-size: 35px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .feature-first__lead {
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .feature-first__lead {
    font-size: 20px;
    text-align: center;
  }
}

.feature-first__image {
  width: 100%;
  max-width: 600px;
}

@media (max-width: 1000px) {
  .feature-first__image {
    max-width: 400px;
  }
}

.feature-work {
  padding-bottom: 160px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .feature-work {
    padding-bottom: 80px;
    margin-bottom: 40px;
  }
}

.feature-work__title {
  top: -70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .feature-work__title {
    margin-bottom: 0px;
    top: -40px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .feature-work__title img {
    width: 80px;
  }
}

.feature-work__title--en {
  color: #FDDDD2;
  font-size: 114px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .feature-work__title--en {
    font-size: 60px;
  }
}

@media (max-width: 520px) {
  .feature-work__title--en {
    font-size: 40px;
  }
}

.feature-work__title--right {
  flex-direction: row-reverse;
}

.feature-work__wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

@media (max-width: 768px) {
  .feature-work__wrap {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}

.feature-work__wrap--rev {
  flex-direction: row;
}

@media (max-width: 768px) {
  .feature-work__wrap--rev {
    flex-direction: column;
  }
}

.feature-work__image {
  width: 50%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .feature-work__image {
    margin: 0 auto;
    width: 100%;
  }
}

.feature-work__list {
  flex: 1;
  display: flex;
  gap: 30px;
  flex-direction: column;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .feature-work__list {
    margin-bottom: 20px;
  }
}

.feature-work__label {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .feature-work__label {
    font-size: 18px;
  }
}

.feature-work__label::before {
  content: "●";
  color: var(--orange);
  font-size: 20px;
}

.feature-work2 {
  margin-top: -85px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .feature-work2 {
    margin-top: -40px;
  }
}

.works-first {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .works-first {
    padding: 60px 0;
  }
}

.works-first__lead {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .works-first__lead {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .works-first__lead {
    font-size: 20px;
  }
}

.works-point {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .works-point {
    padding-bottom: 40px;
  }
}

.works-point__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .works-point__wrap {
    flex-direction: column;
    gap: 0;
  }
}

.works-point__wrap--rev {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .works-point__wrap--rev {
    flex-direction: column;
  }
}

.works-point__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.works-point__lead {
  font-weight: 700;
  font-size: 30px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .works-point__lead {
    font-size: 24px;
    margin-bottom: 0;
  }
}

@media (max-width: 520px) {
  .works-point__lead {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .works-point__text {
    margin-bottom: 30px;
  }
}

.works-point__image--02 {
  max-width: 400px;
}

.works-detail__set {
  background: var(--orange2);
  padding: 40px;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .works-detail__set {
    flex-direction: column;
    padding: 30px;
    margin-bottom: 20px;
  }
}

.works-detail__detail {
  flex: 1;
}

@media (max-width: 768px) {
  .works-detail__detail {
    max-width: 500px;
    margin: 0 auto;
  }
}

.works-detail__head {
  display: flex;
  border: 1px solid var(--orange);
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
}

@media (max-width: 768px) {
  .works-detail__head {
    flex-direction: column;
  }
}

.works-detail__head dt {
  background: var(--orange);
  color: #fff;
  padding: 10px 5px 10px 15px;
  min-width: 100px;
}

@media (max-width: 1200px) {
  .works-detail__head dt {
    font-size: 20px;
  }
}

@media (max-width: 1000px) {
  .works-detail__head dt {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .works-detail__head dt {
    width: 100%;
    text-align: center;
    padding: 5px 15px;
  }
}

.works-detail__head dt::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: var(--orange);
  width: 20px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 5;
}

@media (max-width: 768px) {
  .works-detail__head dt::after {
    display: none;
  }
}

.works-detail__head dd {
  background: #fff;
  padding: 5px 15px 5px 35px;
}

@media (max-width: 1200px) {
  .works-detail__head dd {
    font-size: 20px;
  }
}

@media (max-width: 1080px) {
  .works-detail__head dd {
    font-size: 16px;
    line-height: 160%;
  }
}

@media (max-width: 768px) {
  .works-detail__head dd {
    padding: 15px;
  }
}

@media (max-width: 1000px) {
  .works-detail__list {
    font-size: 16px;
    line-height: 160%;
  }
}

.works-detail__image {
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .works-detail__image {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .works-detail__image {
    max-width: 300px;
  }
}

.company-first {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .company-first {
    padding: 60px 0;
  }
}

.company-first__lead {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .company-first__lead {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .company-first__lead {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.company-first__wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 768px) {
  .company-first__wrap {
    flex-direction: column;
  }
}

.company-first__detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company-first__detail dt {
  color: var(--orange);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .company-first__detail dt {
    font-size: 20px;
  }
}

.company-first__detail dd {
  padding: 0 0 0 30px;
}

@media (max-width: 768px) {
  .company-first__detail dd {
    padding: 0;
  }
}

.company-first__image {
  width: 50%;
  max-width: 500px;
}

@media (max-width: 768px) {
  .company-first__image {
    width: 100%;
  }
}

.company-info {
  padding-bottom: 150px;
}

@media (max-width: 768px) {
  .company-info {
    padding-bottom: 80px;
  }
}

.company-info__table {
  width: 100%;
}

@media (max-width: 768px) {
  .company-info__table {
    border-bottom: 1px solid #ccc;
  }
}

.company-info__table th {
  background: #FFF9F8;
  border: 1px solid #ccc;
  font-weight: 500;
  padding: 20px;
  text-align: left;
  width: 260px;
}

@media (max-width: 768px) {
  .company-info__table th {
    width: 100%;
    display: block;
    border-bottom: none;
    padding: 15px;
  }
}

.company-info__table td {
  border: 1px solid #ccc;
  font-weight: 500;
  padding: 20px;
}

@media (max-width: 768px) {
  .company-info__table td {
    width: 100%;
    display: block;
    border-bottom: none;
    padding: 15px;
  }
}

.company-info__table td p {
  margin-bottom: 10px;
}

.company-info__table td p:last-child {
  margin-bottom: 0;
}

.company-info__table td p a {
  text-decoration: underline;
  color: #1F77DC;
}

.company-history {
  padding-bottom: 150px;
}

.company-history__table {
  width: 100%;
}

@media (max-width: 768px) {
  .company-history__table {
    border-top: 2px solid #ccc;
  }
}

.company-history__table th {
  border-top: 2px solid var(--orange);
  font-weight: 500;
  width: 200px;
  padding: 30px 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .company-history__table th {
    width: 100%;
    display: block;
    border-top: none;
    padding: 15px;
    padding-bottom: 0;
  }
}

.company-history__table td {
  border-top: 2px solid #CCCCCC;
  padding: 20px;
}

@media (max-width: 768px) {
  .company-history__table td {
    width: 100%;
    display: block;
    border: none;
    padding-top: 10px;
  }
}

.company-history__table td:last-child {
  border-bottom: 2px solid #ccc;
}

.company-history__table tr:last-child th {
  border-bottom: 2px solid var(--orange);
}

@media (max-width: 768px) {
  .company-history__table tr:last-child th {
    border: none;
  }
}

.company-place {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .company-place {
    margin-bottom: 50px;
  }
}

.company-place-tab {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--orange);
}

.company-place-tab__item {
  width: 33%;
  max-width: 395px;
}

.company-place-tab__item a {
  display: block;
  text-align: center;
  background: #F6F6F6;
  padding: 30px;
}

@media (max-width: 768px) {
  .company-place-tab__item a {
    padding: 20px;
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .company-place-tab__item a {
    padding: 10px;
    font-size: 12px;
  }
}

.company-place-tab__item a:hover {
  opacity: 1;
}

.company-place-tab__item.is-active a {
  background: var(--orange2);
  color: var(--orange);
  font-weight: 700;
}

.company-place__box {
  background: var(--orange2);
  padding: 50px 40px 90px;
  display: none;
}

@media (max-width: 768px) {
  .company-place__box {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px 50px;
  }
}

.company-place__box.is-active {
  display: block;
}

.company-place__inner {
  display: flex;
  gap: 50px;
}

@media (max-width: 768px) {
  .company-place__inner {
    flex-direction: column;
    gap: 30px;
  }
}

.company-place__detail {
  width: 60%;
  max-width: 60%;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .company-place__detail {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}

.company-place__image {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .company-place__image {
    margin-bottom: 30px;
  }
}

.company-place__title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .company-place__title {
    font-size: 24px;
  }
}

.company-place__ratio {
  border: 2px solid var(--orange);
  display: flex;
  margin-bottom: 20px;
}

.company-place__ratio dt {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 5px 10px;
  width: 140px;
}

.company-place__ratio dd {
  font-weight: 700;
  padding: 5px 10px;
  flex: 1;
}

.company-place__text {
  margin-bottom: 20px;
}

.company-place__btn {
  margin-bottom: 50px;
}

.company-place-bottom {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .company-place-bottom {
    flex-direction: column;
  }
}

.company-place-bottom__title {
  margin-bottom: 5px;
}

.company-place-bottom__set {
  font-weight: 700;
  width: calc(50% - 10px);
}

@media (max-width: 768px) {
  .company-place-bottom__set {
    width: 100%;
  }
}

.company-place-bottom__set iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.towards-first {
  background: transparent url("../img/common/bg_check_gray.jpg") repeat center center;
  padding: 120px 0 150px;
}

@media (max-width: 768px) {
  .towards-first {
    padding: 80px 0;
    margin-top: 30px;
  }
}

.towards-first::after {
  content: "";
  background: #F6F6F6;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  display: block;
  width: 72px;
  height: 53px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
}

.towards-first__label {
  text-align: center;
  margin-bottom: 180px;
}

@media (max-width: 1000px) {
  .towards-first__label {
    margin-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .towards-first__label {
    margin-bottom: 120px;
  }
}

.towards-first__label span {
  font-size: 30px;
  font-weight: 700;
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .towards-first__label span {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .towards-first__label span {
    font-size: 20px;
  }
}

.towards-first__wrap {
  display: flex;
  gap: 30px;
  justify-content: center;
}

@media (max-width: 1000px) {
  .towards-first__wrap {
    flex-direction: column;
    gap: 90px;
  }
}

.towards-first__item {
  background: #fff;
  width: 380px;
  height: 380px;
  border-radius: 380px;
  text-align: center;
}

@media (max-width: 1000px) {
  .towards-first__item {
    width: 100%;
    height: 100%;
    max-width: 380px;
    max-height: 380px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }
}

.towards-first__num {
  position: relative;
  top: -50px;
}

.towards-first__icon {
  margin-top: -20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .towards-first__icon {
    margin-top: -30px;
  }
}

.towards-first__text {
  font-size: 20px;
  line-height: 140%;
}

@media (max-width: 768px) {
  .towards-first__text {
    font-size: 16px;
  }
}

.towards-first__text .col-orange {
  font-weight: 700;
}

.towards-second {
  padding: 110px 0 40px;
}

@media (max-width: 1000px) {
  .towards-second {
    padding: 120px 0 60px;
  }
}

@media (max-width: 768px) {
  .towards-second {
    padding: 90px 0 20px;
  }
}

.towards-second .lower-title {
  font-size: 30px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .towards-second .lower-title {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .towards-second .lower-title {
    font-size: 20px;
  }
}

.towards-result {
  background: transparent url("../img/common/bg_check_orange.jpg") repeat center center;
  padding: 120px 0 150px;
  text-align: center;
  margin-bottom: 150px;
}

@media (max-width: 1000px) {
  .towards-result {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .towards-result {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}

.towards-result__label {
  margin-bottom: 50px;
  text-align: center;
}

.towards-result__label span {
  background: var(--orange);
  border-radius: 60px;
  color: #fff;
  font-weight: 700;
  padding: 5px 30px;
}

@media (max-width: 768px) {
  .towards-result__label span {
    display: block;
  }
}

.towards-result__label span::after {
  content: "";
  background: var(--orange);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

.towards-result__text {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .towards-result__text {
    font-size: 18px;
    text-align: left;
  }
}

.towards-result__icon {
  margin-top: 30px;
}

.towards-reason {
  background: var(--orange);
  padding: 150px 0;
}

@media (max-width: 1000px) {
  .towards-reason {
    padding: 80px 0;
  }
}

.towards-reason .lower-title {
  color: #fff;
}

.towards-reason__wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.towards-reason__set {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  box-shadow: 3px 3px 10px rgba(168, 168, 168, 0.43);
}

@media (max-width: 768px) {
  .towards-reason__set {
    flex-direction: column;
    gap: 20px;
  }
}

.towards-reason__set--rev {
  flex-direction: row;
}

@media (max-width: 768px) {
  .towards-reason__set--rev {
    flex-direction: column;
  }
}

.towards-reason__image {
  width: 50%;
  max-width: 500px;
}

@media (max-width: 768px) {
  .towards-reason__image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.towards-reason__detail {
  flex: 1;
}

.towards-reason__title {
  font-size: 25px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .towards-reason__title {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1200px) {
  .towards-reason__title img {
    max-width: 70px;
    display: block;
    margin-bottom: 20px;
  }
}

.towards-reason__title span {
  left: -20px;
}

@media (max-width: 1200px) {
  .towards-reason__title span {
    left: 0;
  }
}

.towards-reason__text {
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .towards-reason__text {
    font-size: 16px;
  }
}

.towards-qa {
  padding: 150px 0 50px;
}

@media (max-width: 1000px) {
  .towards-qa {
    padding: 80px 0 40px;
  }
}

.towards-qa__label {
  background: var(--brown);
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 900px;
}

@media (max-width: 768px) {
  .towards-qa__label {
    padding: 10px;
  }
}

.towards-qa__set {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.towards-qa__set--rev {
  flex-direction: row-reverse;
}

.towards-qa__icon {
  width: 94px;
}

.towards-qa__detail {
  flex: 1;
  border: 2px solid var(--orange);
  background: var(--orange2);
  border-radius: 10px;
  padding: 20px;
  max-width: 620px;
}

.towards-qa__detail::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: var(--orange);
  width: 30px;
  height: 20px;
  display: block;
  position: absolute;
  left: -30px;
  top: 20px;
}

.towards-qa__detail::after {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: var(--orange2);
  width: 30px;
  height: 20px;
  display: block;
  position: absolute;
  left: -23px;
  top: 20px;
}

.towards-qa__detail--rev::before {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: auto;
  right: -30px;
}

.towards-qa__detail--rev::after {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: auto;
  right: -23px;
}

.towards-qa__text {
  font-size: 18px;
  line-height: 140%;
}

@media (max-width: 768px) {
  .towards-qa__text {
    font-size: 16px;
    line-height: 160%;
  }
}

.towards-qa__text--mark {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.pass-first {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .pass-first {
    padding: 80px 0;
  }
}

.pass-first .inner {
  text-align: center;
}

.pass-first__lead {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .pass-first__lead {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .pass-first__lead {
    font-size: 20px;
  }
}

.pass-first__text {
  text-align: center;
  font-size: 25px;
  margin-bottom: 40px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-first__text {
    font-size: 18px;
    text-align: left;
  }
}

.pass-first__list {
  text-align: center;
  display: inline-block;
  margin: 0 auto 80px;
}

.pass-first__item {
  text-align: left;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-first__item {
    font-size: 18px;
    align-items: flex-start;
  }
}

.pass-first__item:before {
  content: "・";
  font-size: 60px;
  color: var(--orange);
  margin-right: -5px;
}

.pass-first__lead2 {
  margin-top: 80px;
  font-size: 30px;
  font-weight: 700;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-first__lead2 {
    font-size: 20px;
    margin-top: 40px;
  }
}

.pass-first__lead2--mark {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.pass-reason {
  background: transparent url("../img/common/bg_check_gray.jpg") repeat center center;
  padding: 120px 0 90px;
}

@media (max-width: 768px) {
  .pass-reason {
    padding: 80px 0;
  }
}

.pass-reason .towards-first__label {
  margin-bottom: 80px;
}

.pass-reason::after {
  content: "";
  background: #F6F6F6;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  display: block;
  width: 72px;
  height: 53px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
}

.pass-reason__item {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
}

.pass-reason__text {
  flex: 1;
}

.pass-reason__text span {
  background: #fff;
  border-radius: 0 100px 100px 0;
  font-size: 25px;
  display: flex;
  align-items: center;
  padding: 18px 15px 18px 60px;
  left: -30px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-reason__text span {
    font-size: 16px;
    padding: 18px 25px 18px 40px;
    width: 105%;
  }
}

@media (max-width: 520px) {
  .pass-reason__text span {
    width: 110%;
  }
}

@media (max-width: 370px) {
  .pass-reason__text--01 span {
    padding: 8px 25px 8px 40px;
  }
}

@media (max-width: 470px) {
  .pass-reason__text--02 span {
    padding: 8px 25px 8px 40px;
  }
}

.pass-reason__icon {
  width: 102px;
  z-index: 5;
}

@media (max-width: 768px) {
  .pass-reason__icon {
    width: 70px;
  }
}

.pass-solution {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .pass-solution {
    padding: 80px 0;
  }
}

.pass-solution__title {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 50px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-solution__title {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .pass-solution__title {
    font-size: 20px;
  }
}

.pass-solution__set {
  margin-bottom: 30px;
}

.pass-solution__set:last-child {
  margin-bottom: 0;
}

.pass-solution__head {
  background: var(--orange);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .pass-solution__head {
    flex-direction: column;
    padding: 10px;
  }
}

.pass-solution__head::before {
  content: "＋";
  color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pass-solution__head::before {
    color: var(--orange);
    background: #fff;
    border-radius: 50px;
    text-align: center;
    line-height: 30px;
    width: 30px;
    height: 30px;
  }
}

.pass-solution__head.is-active::before {
  content: "ー";
}

.pass-solution__head--icon {
  background: var(--orange2);
  font-weight: 700;
  font-size: 25px;
  color: var(--brown);
  padding: 15px 30px;
}

@media (max-width: 1000px) {
  .pass-solution__head--icon {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .pass-solution__head--icon {
    font-size: 16px;
    padding: 3px 10px;
    margin: 0 auto 0 10px;
  }
}

.pass-solution__head--icon::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: var(--orange2);
  width: 30px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -29px;
}

@media (max-width: 768px) {
  .pass-solution__head--icon::after {
    display: none;
  }
}

.pass-solution__head--detail {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 0 40px 0 50px;
  line-height: 160%;
}

@media (max-width: 1000px) {
  .pass-solution__head--detail {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .pass-solution__head--detail {
    font-size: 18px;
    padding: 10px 50px 0px 10px;
    margin: 0 auto 0 0;
  }
}

.pass-solution__detail {
  background: transparent url("../img/common/bg_check_orange.jpg") repeat center center;
  padding: 50px 20px;
  display: none;
}

.pass-solution__first {
  font-size: 20px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .pass-solution__first {
    font-size: 16px;
  }
}

.pass-solution__image {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .pass-solution__image {
    overflow-x: scroll;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pass-solution__image img {
    display: block;
    width: 600px;
    max-width: 600px;
  }
}

.pass-solution__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.pass-solution__list::after {
  content: "";
  display: block;
  background: var(--orange);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -46px;
  width: 36px;
  height: 20px;
}

.pass-solution__item--mark {
  background: linear-gradient(transparent 60%, #ff6 60%);
  font-weight: 700;
}

.pass-solution__item:before {
  content: "・";
}

.pass-solution__after {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  padding-top: 40px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-solution__after {
    font-size: 18px;
    padding-top: 20px;
  }
}

.pass-solution__second {
  background: #E5E5E5;
  padding: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .pass-solution__second {
    padding: 20px;
  }
}

.pass-solution-career {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .pass-solution-career {
    flex-direction: column;
  }
}

.pass-solution-career__item {
  width: 100%;
  max-width: calc(33.3333333333% - 5px);
  padding-top: 80px;
}

@media (max-width: 768px) {
  .pass-solution-career__item {
    max-width: 100%;
  }
}

.pass-solution-career__item::before {
  content: "";
  display: block;
  background: var(--orange);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  width: 36px;
  height: 20px;
}

.pass-solution-career__box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(168, 168, 168, 0.43);
  padding: 60px 20px 0;
  height: 100%;
}

@media (max-width: 768px) {
  .pass-solution-career__box {
    padding: 60px 20px 40px;
  }
}

.pass-solution-career__label {
  text-align: center;
  top: 20px;
}

.pass-solution-career__label span {
  background: var(--brown);
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  z-index: 5;
}

.pass-solution-career__icon {
  text-align: center;
  margin-bottom: 20px;
}

.pass-solution-career__lead {
  color: var(--orange);
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-solution-career__lead {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .pass-solution-career__lead {
    font-size: 20px;
  }
}

.pass-solution-career__text {
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .pass-solution-career__text {
    font-size: 16px;
  }
}

.pass-solution-set {
  background: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(168, 168, 168, 0.43);
  padding: 30px 40px;
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .pass-solution-set {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
  }
}

.pass-solution-set:last-child {
  margin-bottom: 0;
}

.pass-solution-set__rev {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .pass-solution-set__rev {
    flex-direction: column;
  }
}

.pass-solution-set__image {
  width: 50%;
  max-width: 490px;
}

@media (max-width: 768px) {
  .pass-solution-set__image {
    width: 100%;
  }
}

.pass-solution-set__detail {
  flex: 1;
}

.pass-solution-set__lead {
  color: var(--brown);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-solution-set__lead {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.pass-solution-set__text {
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .pass-solution-set__text {
    font-size: 16px;
  }
}

.pass-after {
  padding: 120px 0 150px;
  text-align: center;
}

@media (max-width: 768px) {
  .pass-after {
    padding: 60px 0 80px;
  }
}

.pass-after__image {
  margin-bottom: 30px;
}

.pass-after__lead {
  font-size: 30px;
  font-weight: 700;
  line-height: 160%;
}

@media (max-width: 768px) {
  .pass-after__lead {
    font-size: 20px;
  }
}

.career-first {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .career-first {
    padding: 60px 0;
  }
}

.career-first__image {
  max-width: 920px;
  margin: 0 auto 80px;
}

.career-first__detail {
  display: flex;
  gap: 50px;
  flex-direction: column;
  margin-bottom: 100px;
}

.career-first__detail::after {
  content: "";
  width: 4px;
  height: 86%;
  display: block;
  position: absolute;
  left: 150px;
  top: 20px;
  background: linear-gradient(0deg, #F78258, #FFEED3);
}

@media (max-width: 768px) {
  .career-first__detail::after {
    left: 79px;
    height: 81%;
  }
}

.career-first__set {
  display: flex;
}

.career-first__set::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  display: block;
  top: 11px;
  left: 145px;
  z-index: 5;
  position: absolute;
}

@media (max-width: 768px) {
  .career-first__set::before {
    left: 74px;
  }
}

.career-first__set--01::before {
  background: #FDDFC4;
}

.career-first__set--02::before {
  background: #F9B99F;
}

.career-first__set--03::before {
  background: #F79D7F;
}

.career-first__set--04::before {
  background: #F78258;
}

.career-first__label {
  font-weight: 700;
  width: 200px;
}

@media (max-width: 768px) {
  .career-first__label {
    width: 100px;
  }
}

.career-first__text {
  flex: 1;
}

.career-support {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .career-support {
    padding: 50px 0;
  }
}

.career-support__set {
  margin-bottom: 60px;
}

.career-support__set:last-child {
  margin-bottom: 0;
}

.career-support__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 520px) {
  .career-support__list {
    flex-direction: column;
  }
}

.career-support__item {
  background: #fff;
  box-shadow: 3px 3px 7px rgba(168, 168, 168, 0.16);
  width: calc(33% - 20px);
  max-width: 380px;
  padding: 80px 35px 60px;
}

@media (max-width: 1000px) {
  .career-support__item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 520px) {
  .career-support__item {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
  }
}

.career-support__icon {
  text-align: center;
  margin-bottom: 20px;
}

.career-support__label {
  font-weight: 700;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .career-support__label {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.entry-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .entry-title {
    font-size: 25px;
  }
}

.entry-first {
  padding: 150px 0;
}

@media (max-width: 1000px) {
  .entry-first {
    padding: 120px 0;
  }
}

@media (max-width: 768px) {
  .entry-first {
    padding: 80px 0 30px;
  }
}

.entry-first__wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

@media (max-width: 1000px) {
  .entry-first__wrap {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .entry-first__wrap {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}

.entry-first__image {
  width: 100%;
  max-width: 300px;
}

@media (max-width: 768px) {
  .entry-first__image {
    margin: 0 auto;
    max-width: 400px;
  }
}

.entry-first__detail {
  flex: 1;
}

.entry-first__text {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .entry-first__text {
    margin-bottom: 20px;
  }
}

.entry-first__text:last-child {
  margin-bottom: 0;
}

.entry-flow .lower-sub {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .entry-flow .lower-sub {
    margin-bottom: 30px;
  }
}

.entry-flow__wrap {
  display: flex;
  gap: 70px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .entry-flow__wrap {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 30px;
  }
}

.entry-flow__set {
  width: 48%;
}

@media (max-width: 768px) {
  .entry-flow__set {
    width: 100%;
  }
}

.entry-flow__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .entry-flow__icon {
    max-width: 70px;
  }
}

.entry-flow__text {
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
}

@media (max-width: 1000px) {
  .entry-flow__text {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .entry-flow__text {
    font-size: 20px;
  }
}

.entry-flow__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.entry-flow__item {
  display: flex;
  gap: 10px;
}

.entry-flow__item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange);
  display: block;
  position: relative;
  top: 6px;
}

@media (max-width: 768px) {
  .entry-flow__item::before {
    top: 5px;
  }
}

.entry-recommend {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .entry-recommend {
    margin-bottom: 50px;
  }
}

.entry-recommend .inner {
  background: var(--orange2);
  padding: 60px;
}

@media (max-width: 768px) {
  .entry-recommend .inner {
    padding: 30px 20px;
  }
}

.entry-recommend__title {
  color: var(--orange);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .entry-recommend__title {
    font-size: 24px;
  }
}

.entry-recommend__list {
  background: #fff;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .entry-recommend__list {
    padding: 30px 20px;
  }
}

.entry-recommend__item {
  display: flex;
  gap: 10px;
}

.entry-recommend__item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange);
  display: block;
  position: relative;
  top: 6px;
}

@media (max-width: 768px) {
  .entry-recommend__item::before {
    top: 5px;
  }
}

.entry-recommend__item span {
  flex: 1;
}

.entry-thanks {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .entry-thanks {
    padding: 50px 0;
  }
}

.entry-thanks__title {
  text-align: center;
  margin-bottom: 60px;
}

.entry-thanks__title span {
  background: transparent url("../img/entry/icon_check.svg") no-repeat left center;
  padding: 0 0 0 60px;
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .entry-thanks__title span {
    font-size: 30px;
    background: transparent url("../img/entry/icon_check.svg") no-repeat left center;
    background-size: auto 80%;
    padding: 0 0 0 40px;
  }
}

.entry-confirm {
  padding: 0 0 150px;
}

@media (max-width: 768px) {
  .entry-confirm {
    padding: 0 0 80px;
  }
}

.error_messe {
  color: red;
}

.entry-confirm__title {
  text-align: center;
  margin-bottom: 60px;
}

.entry-confirm__title span {
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .entry-confirm__title span {
    font-size: 30px;
  }
}

.entry-first__text {
  text-align: left;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .entry-first__text {
    margin-bottom: 30px;
  }
}

.entry-first__btn a {
  padding: 10px 100px;
  background: transparent url("../img/entry/icon_arrow.svg") no-repeat 90% center;
}

.entry-detail {
  padding: 150px 0 0;
}

@media (max-width: 768px) {
  .entry-detail {
    padding: 50px 0;
  }
}

.entry-detail__table {
  width: 100%;
}

.entry-detail__table th {
  padding: 20px;
  text-align: left;
  width: 350px;
}

@media (max-width: 768px) {
  .entry-detail__table th {
    display: block;
    width: 100%;
    padding-bottom: 5px;
  }
}

.entry-detail__table td {
  padding: 20px;
}

@media (max-width: 768px) {
  .entry-detail__table td {
    display: block;
    width: 100%;
    padding-top: 5px;
  }
}

.entry-detail__table tr:nth-child(odd) th,
.entry-detail__table tr:nth-child(odd) td {
  background: var(--orange2);
}

.entry-list__head {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .entry-list__head {
    padding: 80px 0 30px;
  }
}

.entry-list__wrap {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--orange);
}

.entry-list__set {
  border-bottom: 1px dotted #9a9a9a;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .entry-list__set {
    padding: 30px 0;
  }
}

.entry-list__set:last-child {
  border-bottom: none;
}

.entry-list__inner {
  display: flex;
  gap: 50px;
}

@media (max-width: 768px) {
  .entry-list__inner {
    flex-direction: column;
    gap: 30px;
  }
}

.entry-list__image {
  width: 100%;
  max-width: 250px;
}

@media (max-width: 768px) {
  .entry-list__image {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }
}

.entry-list__detail {
  flex: 1;
}

.entry-list__label {
  font-size: 30px;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .entry-list__label {
    font-size: 24px;
  }
}

.entry-list__icon {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.entry-list__icon li {
  display: inline-block;
  border: 1px solid var(--orange);
  font-size: 15px;
  padding: 5px 10px 4px;
}

@media (max-width: 768px) {
  .entry-list__icon li {
    font-size: 14px;
    padding: 3px 10px 2px;
  }
}

.entry-list__table {
  width: 100%;
  border: 1px solid #707070;
  border-bottom: none;
  margin-bottom: 40px;
}

.entry-list__table th {
  background: var(--orange2);
  padding: 20px;
  border: 1px solid #707070;
  width: 150px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .entry-list__table th {
    padding: 10px;
  }
}

.entry-list__table td {
  padding: 20px;
  border: 1px solid #707070;
}

@media (max-width: 768px) {
  .entry-list__table td {
    padding: 10px;
  }
}

.interview-main {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .interview-main {
    padding: 80px 0;
  }
}

.interview-main__date {
  font-size: 30px;
  padding: 10px 0 0;
}

@media (max-width: 768px) {
  .interview-main__date {
    font-size: 20px;
    text-align: center;
  }
}

.interview-main__head {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .interview-main__head {
    margin-bottom: 50px;
  }
}

.interview-main-profile {
  display: flex;
  gap: 80px;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .interview-main-profile {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 20px;
  }
}

.interview-main-profile__label {
  margin-bottom: 50px;
}

.interview-main-profile__detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.interview-main-profile__detail p {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: #707070;
  padding-bottom: 30px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .interview-main-profile__detail p {
    font-size: 16px;
  }
}

.interview-main-profile__detail p::after {
  content: "";
  background: transparent url("../img/interview/icon_arrow.svg") no-repeat center center;
  width: 30px;
  height: 25px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.interview-main-profile__detail p:last-child::after {
  display: none;
}

.interview-main-profile__label {
  color: var(--orange);
  font-size: 75px;
}

@media (max-width: 768px) {
  .interview-main-profile__label {
    font-size: 40px;
    text-align: center;
  }
}

.interview-main-profile__image {
  max-width: 408px;
  margin: 20px 0 0 20px;
}

@media (max-width: 1000px) {
  .interview-main-profile__image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .interview-main-profile__image {
    max-width: 400px;
    margin: 20px auto 50px;
    width: 90%;
  }
}

.interview-main-profile__image::before {
  content: "";
  height: 200px;
  width: 2px;
  background: var(--orange);
  display: block;
  position: absolute;
  top: -20px;
  left: -20px;
}

.interview-main-profile__image::after {
  content: "";
  height: 2px;
  width: 120px;
  background: var(--orange);
  display: block;
  position: absolute;
  top: -20px;
  left: -20px;
}

.interview-main-profile__image--bg::before {
  content: "";
  height: 200px;
  width: 2px;
  background: var(--orange);
  display: block;
  position: absolute;
  bottom: -30px;
  right: -30px;
}

.interview-main-profile__image--bg::after {
  content: "";
  height: 2px;
  width: 120px;
  background: var(--orange);
  display: block;
  position: absolute;
  bottom: -30px;
  right: -30px;
}

.interview-main-profile__image--bg img {
  box-shadow: 10px 10px 0 #9D9D9D;
}

.interview-title {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .interview-title {
    flex-direction: column;
    gap: 20px;
  }
}

.interview-title__name {
  font-size: 90px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .interview-title__name {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  .interview-title__name {
    font-size: 40px;
  }
}

.interview-title__en {
  background: var(--orange);
  font-size: 50px;
  padding: 10px;
  text-align: right;
  color: #fff;
  flex: 1;
  letter-spacing: 0.2em;
  line-height: 105%;
}

@media (max-width: 1000px) {
  .interview-title__en {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .interview-title__en {
    font-size: 30px;
    background: #fff;
    color: var(--orange);
    text-align: center;
  }
}

.interview-title__en::before {
  content: "";
  background: #fff;
  display: block;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 80px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .interview-title__en::before {
    display: none;
  }
}

.interview-detail-table {
  width: 100%;
}

.interview-detail-table th {
  width: 200px;
  border-bottom: 1px solid var(--orange);
  padding: 40px;
  font-size: 21px;
  text-align: left;
}

@media (max-width: 768px) {
  .interview-detail-table th {
    display: block;
    width: 100%;
    font-size: 18px;
    border: none;
    padding: 20px 0 5px;
  }
}

.interview-detail-table td {
  border-bottom: 1px solid var(--orange);
  padding: 40px 50px 40px 0;
  font-size: 21px;
}

@media (max-width: 768px) {
  .interview-detail-table td {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 10px 0 20px;
  }
}

.interview-detail-table__01 td::after {
  content: "Department";
  color: #FCE8E1;
  font-size: 75px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  position: absolute;
  top: 62%;
  right: 30px;
}

@media (max-width: 768px) {
  .interview-detail-table__01 td::after {
    font-size: 40px;
    top: 50%;
    right: 0;
  }
}

.interview-detail-table__02 td::after {
  content: "Title";
  color: #FCE8E1;
  font-size: 75px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  position: absolute;
  top: 62%;
  right: 30px;
}

@media (max-width: 768px) {
  .interview-detail-table__02 td::after {
    font-size: 40px;
    top: 50%;
    right: 0;
  }
}

.interview-detail-table__04 td::after {
  content: "Birthplace";
  color: #FCE8E1;
  font-size: 75px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  position: absolute;
  top: 62%;
  right: 30px;
}

@media (max-width: 768px) {
  .interview-detail-table__04 td::after {
    font-size: 40px;
    top: 50%;
    right: 0;
  }
}

.interview-detail-table__05 td::after {
  content: "Hobby";
  color: #FCE8E1;
  font-size: 75px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  position: absolute;
  top: 62%;
  right: 30px;
}

@media (max-width: 768px) {
  .interview-detail-table__05 td::after {
    font-size: 40px;
    top: 50%;
    right: 0;
  }
}

.interview-qa {
  margin-bottom: 200px;
}

@media (max-width: 768px) {
  .interview-qa {
    margin-bottom: 100px;
  }
}

.interview-qa .inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.interview-qa__set {
  padding: 50px 50px 10px;
}

@media (max-width: 768px) {
  .interview-qa__set {
    padding: 20px;
  }
}

.interview-qa__set:nth-child(odd) {
  background: transparent url("../img/interview/bg_qa.jpg") repeat left top;
  background-size: 100%;
}

.interview-qa__label {
  color: var(--orange);
  font-size: 45px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .interview-qa__label {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.interview-qa__title {
  font-size: 25px;
  color: var(--orange);
  padding: 0 0 0 20px;
  margin-bottom: 20px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .interview-qa__title {
    padding: 0px;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
  }
}

.interview-qa__text {
  font-size: 21px;
  line-height: 200%;
  padding: 0 50px 50px;
}

@media (max-width: 768px) {
  .interview-qa__text {
    padding: 20px 0;
    font-size: 16px;
    line-height: 160%;
  }
}

.interview-message .inner {
  margin-bottom: 70px;
  padding-bottom: 200px;
  border-bottom: 1px solid #E2E2E2;
}

@media (max-width: 768px) {
  .interview-message .inner {
    padding-bottom: 80px;
  }
}

.interview-message__box {
  background: transparent url("../img/interview/bg_message.jpg") repeat left top;
  background-size: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .interview-message__box {
    padding: 20px 0 30px;
  }
}

.interview-message__title {
  display: flex;
  color: var(--orange);
  padding: 0 50px;
  gap: 80px;
  top: -30px;
}

@media (max-width: 768px) {
  .interview-message__title {
    padding: 0 20px;
    flex-direction: column;
    gap: 0px;
    top: 0;
  }
}

.interview-message__title--en {
  font-size: 45px;
}

@media (max-width: 768px) {
  .interview-message__title--en {
    font-size: 30px;
  }
}

.interview-message__title--label {
  font-size: 25px;
  font-weight: 500;
  top: 10px;
}

@media (max-width: 1000px) {
  .interview-message__title--label {
    font-size: 24px;
  }
}

@media (max-width: 850px) {
  .interview-message__title--label {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .interview-message__title--label {
    font-size: 18px;
    font-weight: 700;
  }
}

.interview-message__title--label::before {
  content: "";
  width: 40px;
  height: 4px;
  background: var(--orange);
  display: block;
  position: absolute;
  left: -40px;
  top: 10px;
  transform: rotate(65deg);
}

@media (max-width: 768px) {
  .interview-message__title--label::before {
    display: none;
  }
}

.interview-message__title--label::after {
  content: "";
  width: 40px;
  height: 4px;
  background: var(--orange);
  display: block;
  position: absolute;
  right: -40px;
  top: 10px;
  transform: rotate(-65deg);
}

@media (max-width: 768px) {
  .interview-message__title--label::after {
    display: none;
  }
}

.interview-message__text {
  padding: 40px 80px;
}

@media (max-width: 768px) {
  .interview-message__text {
    padding: 30px;
  }
}

.interview-message__name {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  padding: 0 80px 40px;
}

@media (max-width: 768px) {
  .interview-message__name {
    flex-direction: column;
    padding: 0 30px;
    gap: 0;
  }
}

.interview-message__name--label {
  font-size: 20px;
  color: var(--orange);
}

@media (max-width: 768px) {
  .interview-message__name--label {
    font-size: 18px;
  }
}

.interview-message__name--text {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .interview-message__name--text {
    font-size: 20px;
  }
}

.interview-bottom {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .interview-bottom {
    margin-bottom: 50px;
  }
}

.interview-bottom__back {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 60px;
}

.interview-bottom__back a {
  color: var(--orange);
  font-size: 16px;
}

@media (max-width: 768px) {
  .interview-bottom__back a {
    font-size: 16px;
  }
}

.interview-bottom__back a::after {
  content: "＞";
  padding: 0 0 0 20px;
}

.interview-bottom-other {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .interview-bottom-other {
    flex-direction: column;
    gap: 30px;
  }
}

.interview-bottom-other__box {
  width: 48%;
}

@media (max-width: 768px) {
  .interview-bottom-other__box {
    width: 100%;
  }

  .interview-bottom-other__box--blank {
    display: none;
  }
}

.interview-bottom-other__bg {
  background: #FEE6DD;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 340px;
}

@media (max-width: 768px) {
  .interview-bottom-other__bg {
    padding: 20px;
    gap: 20px;
    margin-bottom: 10px;
  }
}

.interview-bottom-other__image {
  max-width: 170px;
}

@media (max-width: 768px) {
  .interview-bottom-other__image {
    max-width: 150px;
  }
}

.interview-bottom-other__name {
  font-size: 35px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .interview-bottom-other__name {
    font-size: 22px;
  }
}

.interview-bottom-other__text {
  font-size: 20px;
}

@media (max-width: 768px) {
  .interview-bottom-other__text {
    font-size: 16px;
  }
}

.interview-bottom-other__nav a {
  font-size: 16px;
  color: var(--orange);
}

@media (max-width: 768px) {
  .interview-bottom-other__nav a {
    font-size: 16px;
  }
}

.interview-bottom-other__nav a::before {
  content: "＜";
  padding: 0 20px 0 0;
}

.interview-bottom-other__nav--next {
  display: flex;
  justify-content: flex-end;
}

.interview-bottom-other__nav--next a::after {
  content: "＞";
  padding: 0 0 0 20px;
}

.interview-bottom-other__nav--next a::before {
  display: none;
}

.form {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .form {
    padding: 50px 0 80px;
  }
}

.form-table {
  width: 100%;
  border: 1px solid #CCCCCC;
  border-bottom: none;
  margin-bottom: 40px;
}

.form-table th {
  background: #F6F6F6;
  padding: 30px;
  width: 350px;
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  vertical-align: top;
}

@media (max-width: 768px) {
  .form-table th {
    display: block;
    width: 100%;
    padding: 20px;
  }
}

.form-table td {
  padding: 30px;
  border-bottom: 1px solid #CCCCCC;
  width: calc(100% - 350px);
}

@media (max-width: 768px) {
  .form-table td {
    display: block;
    width: 100%;
    padding: 20px;
  }
}

.form-table__icon {
  position: absolute;
  top: 30px;
  right: 20px;
}

@media (max-width: 768px) {
  .form-table__icon {
    top: 20px;
    right: 10px;
  }
}

.form-table__icon span {
  color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 5px 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .form-table__icon span {
    font-size: 14px;
  }
}

.form-table__icon--01 span {
  background: #F25252;
}

.form-table__icon--02 span {
  background: #999999;
}

.form-check {
  margin-bottom: 10px;
}

.form-check:last-child {
  margin-bottom: 0;
}

.form-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.form-check input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-check input[type=checkbox]::before {
  content: "";
  border: 1px solid #707070;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 768px) {
  .form-check input[type=checkbox]::before {
    width: 20px;
    height: 20px;
  }
}

.form-check input[type=checkbox]:checked::after {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
  display: block;
  position: absolute;
  top: 6px;
  left: 4px;
}

@media (max-width: 768px) {
  .form-check input[type=checkbox]:checked::after {
    width: 10px;
    height: 5px;
    border-left: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
    top: 5px;
  }
}

.form-input input[type=text] {
  background: #FFF9F8;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 15px;
  width: 100%;
  font-size: 16px;
}

@media (max-width: 768px) {
  .form-input input[type=text] {
    font-size: 16px;
  }
}

.form-textarea textarea {
  background: #FFF9F8;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 15px;
  width: 100%;
  font-size: 16px;
  height: 300px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .form-textarea textarea {
    font-size: 16px;
  }
}

.form-error {
  margin: 10px 0 0;
  background: #F25252 url("../img/entry/icon-error.svg") 10px center no-repeat;
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: center;
  padding: 3px 20px 3px 45px;
  color: #fff;
  display: none;
}

.form-error.is-active {
  display: flex;
}

.form-lastcheck {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .form-lastcheck {
    gap: 20px;
  }
}

.form-lastcheck input {
  padding-right: 10px;
}

.form-lastcheck a {
  text-decoration: underline;
}

.form-submit {
  display: flex;
  justify-content: center;
}

.form-submit span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 40px;
  top: 50%;
  display: block;
  z-index: 5;
}

.form-submit input {
  background: var(--brown);
  font-size: 25px;
  color: #fff;
  text-align: center;
  width: 366px;
  padding: 10px 0;
  cursor: pointer;
  pointer-events: none;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .form-submit input {
    font-size: 18px;
  }
}

.form-submit input.is-active {
  pointer-events: auto;
  opacity: 1;
}

.form-submit input.is-active:hover {
  opacity: 0.8;
}

.form-submit-back input {
  pointer-events: inherit;
  opacity: 1;
  background: #EEEEEE;
  border: 1px solid #999999;
  color: #333333;
}

.form-submit-back span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(-135deg) translateY(-50%);
  position: absolute;
  left: 40px;
  top: 40%;
  display: block;
  z-index: 5;
}

.form-submit-send input {
  pointer-events: inherit;
  opacity: 1;
}

.form-submit-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .form-submit-wrap {
    flex-direction: column;
  }
}

.error-message {
  color: #F25252;
  text-align: center;
  font-weight: bold;
  padding: 20px 0 0;
  display: none;
}

.privacy-main {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .privacy-main {
    padding: 50px 0;
  }
}

.privacy-lead {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .privacy-lead {
    margin-bottom: 50px;
  }
}

.privacy-set {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .privacy-set {
    margin-bottom: 30px;
  }
}

.privacy-set:last-child {
  margin-bottom: 0;
}

.privacy-set__label {
  font-size: 30px;
  font-weight: 700;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 5px;
  margin-bottom: 20px;
  line-height: 160%;
}

@media (max-width: 768px) {
  .privacy-set__label {
    font-size: 22px;
  }
}

.en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
}

.en-i {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
}

.col-orange {
  color: var(--orange);
}

.job {
  padding-bottom: 150px;
}

@media (max-width: 768px) {
  .job {
    padding-bottom: 60px;
  }
}

.footer {
  background: var(--orange);
  padding: 100px 0 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }
}

.footer .footer-text {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 160%;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .footer .footer-text {
    font-size: 20px;
  }
}

.footer .footer-nav {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer .footer-nav {
    flex-direction: column;
    margin-bottom: 50px;
    gap: 20px;
  }
}

.footer .footer-nav__item {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}

.footer .footer-nav__item a {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  padding: 30px 0;
}

@media (max-width: 768px) {
  .footer .footer-nav__item a {
    padding: 25px 0;
  }
}

.footer .footer-nav__item a::after {
  content: "";
  background: transparent url("../img/common/icon_arrow.svg") center center;
  width: 20px;
  height: 20px;
  display: block;
}

.footer .footer-copy {
  background: var(--brown);
  font-size: 12px;
  color: #fff;
  padding: 15px 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer .footer-copy {
    font-size: 10px;
    letter-spacing: 0;
    padding: 5px 0;
  }
}

.footer-sub {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-sub__item {
  padding: 0 10px;
}

.footer-sub__item::after {
  content: "|";
  color: #fff;
  padding-left: 20px;
}

.footer-sub__item:last-child:after {
  display: none;
}

.footer-sub__item a {
  color: #fff;
  font-size: 16px;
}

/*# sourceMappingURL=layout.css.map */

.error-text {
  margin-bottom: 20px;
}

.error-text a {
  text-decoration: underline;
}