@charset "UTF-8";

:root {
  --color-main-black: #362F2F;
  --color-main-blue: #0067BB;
  --color-sub-blue: #E8F4FF;
  --color-pink: #E56199;
  --color-grd: linear-gradient(90deg,rgba(68, 165, 222, 1) 0%, rgba(30, 186, 188, 1) 50%, rgba(134, 128, 255, 1) 80%, rgba(134, 128, 255, 1) 100%);
  --font-mincho: "Zen Old Mincho", serif;
  --font-oswald: "Oswald", sans-serif;
}

/* =====================
  fonts
===================== */

/*  Regular (400)
------------------------*/
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2"),
       url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/*  Bold (700)
------------------------*/
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2"),
       url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* =====================
  base
===================== */

#kyoritsu {
  font-family: "LINE Seed JP", sans-serif;
  color: var(--color-main-black);
  background: #fff;
  font-weight: 400;
}

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    base
  ===================== */

  #header::before {
    opacity: .5;
    background: linear-gradient(0deg,rgba(0, 103, 187, 0) 0%, rgba(0, 103, 187, 0.46) 40%, rgba(0, 103, 187, 1) 100%);;
  }

  #kyoritsu {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  #container {
    margin-bottom: 80px;
  }

  /* =====================
    entry_btn
  ===================== */

  .entry_btn {
    width: 350px;
    margin: 35px auto 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
  }

  .entry_btn a {
    display: flex;
    width: 100%;
    height: 70px;    
    color: #fff;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,rgba(248, 78, 137, 1) 0%, rgba(227, 126, 240, 1) 100%);
    border-radius: 70px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
    position: relative;
  }
  
  .entry_btn a::before {
    content: '';
    width: 7px;
    height: 11px;
    display: block;
    background: url(../images/icon_arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
  }

  .entry_btn_note {
    color: #fff;
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .entry_btn_note a {
    color: #fff;
    text-decoration: underline;
  }

  /* =====================
    fv
  ===================== */
  
  #fv {
    background: url(../images/fv_bg.jpg) no-repeat center;
    background-size: cover;
  }

  #fv::before {
    display: none;
  }

  #fv .inner {
    height: 770px;
    align-items: center;
    padding-top: 75px;
    position: relative;
  }

  /*  kyoritsu_fv_column
  ------------------------*/
  
  .kyoritsu_fv_column {
    width: 100%;
    position: relative;
  }

  .kyoritsu_fv_text {
    max-width: 550px;
    width: 53%;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
  }

  .kyoritsu_fv_img {
    max-width: 585px;
    width: 54%;
    height: 0;
    padding-bottom: 54%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .kyoritsu_fv_img img {
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .kyoritsu_fv_name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
  }

  .kyoritsu_fv_ttl {
    font-size: min(54px, 4.7vw);
    font-weight: 400;
    color: var(--color-main-blue);
    font-family: var(--font-mincho);
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
  }

  .kyoritsu_fv_ttl span {
    background: #fff;
    display: inline-block;
    padding: 5px 10px 13px;
    line-height: 1;
  }

  .kyoritsu_fv_ttl span:last-of-type {
    padding-right: 0;
  }

  .kyoritsu_fv_sub {
    font-size: 17px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .kyoritsu_fv_sub strong {
    font-weight: 400;
    border: 1px solid #fff;
    display: inline-block;
    line-height: 1;
    padding: 5px 5px 3px;
    margin-right: 5px;
  }
 
  #fv .entry_btn_note {
    margin-top: 10px;
    font-size: 10px;
  }

  /*  kyoritsu_fv_bg
  ------------------------*/
  
  .kyoritsu_fv_bg {
    position: absolute;
  }
  
  .kyoritsu_fv_bg img {
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .kyoritsu_fv_bg.img1 {
    width: 127px;
    top: 240px;
    left: -165px;
  }

  .kyoritsu_fv_bg.img2 {
    width: 170px;
    top: 185px;
    right: -165px;
  }
  
  .kyoritsu_fv_bg.img3 {
    width: 195px;
    bottom: 15px;
    right: -145px;
  }

  /* =====================
    bnr
  ===================== */

  #bnr {
    padding: 50px 0 10px;
  }
  
  .bnr_list {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .bnr_list li {
    width: 200px;
    border: 1px solid #EAEAEA;
  }

  /* =====================
    ttl
  ===================== */
  
  .ttl_s {
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    color: var(--color-main-blue);
    margin-bottom: 35px;
  }

  .ttl_m {
    font-family: var(--font-mincho);
    font-size: 35px;
    letter-spacing: 0.05em;
    font-weight: 900;
    text-align: center;
    line-height: 1.45;
    margin-bottom: 30px;
  }

  .ttl_l {
    font-family: var(--font-mincho);
    font-size: 50px;
    letter-spacing: 0.05em;
    font-weight: 900;
    text-align: center;
    line-height: 1.45;
    margin-bottom: 30px;
  }

  .b_line {
    position: relative;
    padding-bottom: 10px;
  }

  .ttl_m.b_line {
    padding-bottom: 15px;
  }

  .b_line::before {
    content: '';
    width: 25px;
    height: 2px;
    display: block;
    background: var(--color-grd);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .c_grd {
    background: var(--color-grd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* =====================
    text
  ===================== */

  .text {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
  }

  .text p:not(:last-of-type) {
    margin-bottom: 25px;
  }

  .text strong {
    font-weight: 700;
    color: var(--color-pink);
  }

  .text .kome_mark {
    color: #5A5A5A;
    font-size: 10px;
    font-weight: 400;
    vertical-align: text-top;
  }
  
  .text .kome {
    color: #5A5A5A;
    font-size: 10px;
    font-weight: 400;
    display: block;
    margin-top: 15px;
  }

  /* =====================
    entry_area
  ===================== */

  .entry_area {
    background: url(../images/entry_bg.jpg) no-repeat center;
    background-size: cover;
    margin-top: 120px;
  }
  
  .entry_area .inner {
    position: relative;
    padding: 90px 0 95px;
  }

  .entry_ttl {
    font-family: var(--font-oswald);
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-align: center;
    background: var(--color-grd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%,3px);
  }

  .entry_text {
    font-family: var(--font-mincho);
    font-size: min(30px,3vw);
    letter-spacing: 0.05em;
    font-weight: 600;
    text-align: center;
    color: var(--color-main-blue);
    line-height: 2.3;
  }

  .entry_text span {
    display: inline-block;
    background: #fff;
    line-height: 1;
    padding: 10px 14px 14px;
  }

  /*  entry_bg
  ------------------------*/
  
  .entry_bg {
    position: absolute;
    z-index: 1;
  }
  
  .entry_bg img {
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .entry_bg.img1 {
    width: 127px;
    top: 50px;
    left: -165px;
  }

  .entry_bg.img2 {
    width: 170px;
    top: 160px;
    right: -165px;
  }
  
  .entry_bg.img3 {
    width: 195px;
    bottom: -15px;
    left: -105px;
  }

  /* =====================
    about
  ===================== */

  #about {
    background: url(../images/about_bg.jpg) no-repeat top center;
    background-size: 2400px;
  }
  
  #about .text {
    text-align: center;
    line-height: 2.6;
    font-weight: 700;
  }

  .about_youtube {
    width: 800px;
    aspect-ratio: 16 / 9;
    margin: 70px auto 0;
    position: relative;
  }

  .about_youtube iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  /* =====================
    introduction
  ===================== */
  
  #introduction {
    background: var(--color-sub-blue);
    padding: 50px 0 60px;
  }

  .introduction_list {
    gap: 25px;
    justify-content: center;
  }

  .introduction_list li {
    width: 200px;
  }

  .introduction_list li figure {
    height: 0;
    padding-bottom: 66.5%;
    position: relative;
  }

  .introduction_list li img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .introduction_list li span {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-top: 15px;
  }

  /* =====================
    intern
  ===================== */

  #intern {
    background: url(../images/intern_bg.jpg) no-repeat top -120px center;
    background-size: 2194px;
  }
  
  #intern .ttl_s {
    margin-bottom: 25px;
  }

  .intern_text {
    justify-content: space-between;
    align-items: center;
  }

  .intern_img {
    max-width: 420px;
    width: 39%;
  }

  .intern_img img {
    max-height: 420px;
    height: 39%;
    object-fit: cover;
    border-radius: 50%;
  }

  .intern_text .text {
    max-width: 630px;
    width: 58%;
  }

  .intern_merit {
    max-width: 100%;
    width: 1000px;
    margin: 50px auto 0;
    justify-content: space-between;
    gap: 60px;
  }

  .intern_merit img {
    max-width: 470px;
    width: 47%;
  }

  /* =====================
    interview
  ===================== */
  
  #interview {
    background: var(--color-sub-blue);
    position: relative;
    overflow: clip;
  }
  
  .interview_bg {
    width: 100vw;
    height: 566px;
    display: block;
    position: sticky;
    top: 100px;
    left: 0;
    margin-bottom: -566px;
  }

  .interview_bg img {
    width: 1526px;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
  }

  #interview .ttl_m {
    margin-bottom: 55px;
  }

  .interview_item {
    border: 10px solid var(--color-sub-blue);
    border-radius: 10px;
    background: #fff;
    padding: 45px 70px 80px;
    margin-bottom: 50px;
    position: relative;
  }

  .interview_item:last-of-type {
    margin-bottom: 0;
  }

  .interview_content {
    overflow: hidden;
    height: auto;
    transition: height .6s ease;
    will-change: height;
  }

  .interview_item.is-clamped .interview_content {
    height: 1000px;
  }

  .interview_item.is-clamped::after,
  .interview_item.is-expanding::after {
    content: '';
    height: 400px;
    pointer-events: none;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity .4s ease;
    opacity: 1;
  }

  .interview_item.is-expanding::after,
  .interview_item.is-expanded::after {
    opacity: 0;
  }

  .interview_readmore {
    width: 350px;
    margin: 35px auto 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .interview_readmore span {
    display: flex;
    width: 100%;
    height: 70px;    
    color: #fff;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,rgba(68, 165, 222, 1) 0%, rgba(30, 186, 188, 1) 50%, rgba(134, 128, 255, 1) 100%);
    border-radius: 70px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
    position: relative;
  }

  .interview_readmore span::before {
    content: '';
    width: 7px;
    height: 11px;
    display: block;
    background: url(../images/icon_arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
  }

  /* 動き控えめ設定に配慮 */
  @media (prefers-reduced-motion: reduce) {
    .interview_content { transition: none; }
    .interview_item::after { transition: none; }
    .interview_readmore { transition: none; }
  }

  /*  interview_top
  ------------------------*/
  
  .interview_top {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 45px;
    background-image: linear-gradient(to right, var(--color-sub-blue) 10px, transparent 10px);
    background-size: 20px 10px;
    background-repeat: repeat-x;
    background-position: left bottom;
    margin-bottom: 55px;
  }

  .interview_top_img {
    max-width: 343px;
    width: 37%;
  }

  .interview_top_img img {
    max-height: 343px;
    height: 37%;
    object-fit: cover;
    border-radius: 50%;
  }

  .interview_top_text {
    max-width: 550px;
    width: 59%;
    line-height: 1.6;
  }

  .interview_top_text .ttl {
    font-size: min(35px,3vw);
    color: var(--color-main-blue);
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 27px;
  }

  .interview_top_text .position {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }

  .interview_top_text .position span {
    font-size: 10px;
    color: #747C83;
  }

  .interview_top_text .name {
    font-size: 25px;
    font-weight: 700;
  }
  
  /*
  .interview_top_text .name span {
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 500;
    color: #BFD7ED;
    display: inline-block;
    margin-left: 10px;
  }
  */

  /*  interview_conts
  ------------------------*/
  
  .interview_text {
    max-width: 100%;
    width: 850px;
    margin-bottom: 45px;
  }

  .interview_text:nth-of-type(even) {
    margin-left: auto;
  }

  .interview_text:last-of-type {
    margin-bottom: 0;
  }

  .interview_text .ttl {
    font-family: var(--font-mincho);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
  }

  .interview_text .ttl span {
    background: var(--color-main-blue);
    display: inline-block;
    padding: 5px 10px 7px;
  }

  .interview_text .sub {
    color: var(--color-main-blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 17px;
  }

  .interview_text_column {
    justify-content: space-between;
    margin-top: 30px;
  }

  .interview_text_column .interview_img {
    width: 280px;
  }
  
  .interview_text_column .interview_text_column_right {
    width: calc( 100% - 310px );
  }

  .interview_text .text + .interview_timeline {
    margin-top: 20px;
  }

  .interview_timeline {
    justify-content: space-between;
    gap: 0 25px;
    padding: 10px 0;
    position: relative;
  }

  .interview_timeline::before {
    content: '';
    width: 100%;
    height: 4px;
    display: block;
    background: var(--color-grd);
    position: absolute;
    top: 70px;
    left: 0;
  }

  .timeline_item {
    width: 200px;
    position: relative;
  }

  .timeline_item::before {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline_item:nth-child(1):before {
    background: #5FA3D9;
  }

  .timeline_item:nth-child(2):before {
    background: #5BAACF;
  }

  .timeline_item:nth-child(3):before {
    background: #58B3BD;
  }

  .timeline_item:nth-child(4):before {
    background: #6A96DE;
  }

  .timeline_item:nth-child(5):before {
    background: #8380F6;
  } 

  .timeline_time {
    font-family: var(--font-oswald);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    margin-bottom: 45px;
  }

  .timeline_ttl {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .timeline_item:nth-child(1) .timeline_time,
  .timeline_item:nth-child(1) .timeline_ttl {
    color: #5FA3D9;
  }

  .timeline_item:nth-child(2) .timeline_time,
  .timeline_item:nth-child(2) .timeline_ttl {
    color: #5BAACF;
  }

  .timeline_item:nth-child(3) .timeline_time,
  .timeline_item:nth-child(3) .timeline_ttl {
    color: #58B3BD;
  }

  .timeline_item:nth-child(4) .timeline_time,
  .timeline_item:nth-child(4) .timeline_ttl {
    color: #6A96DE;
  }

  .timeline_item:nth-child(5) .timeline_time,
  .timeline_item:nth-child(5) .timeline_ttl {
    color: #8380F6;
  } 

  .timeline_text {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.7;
  }

  /* =====================
    attraction
  ===================== */
  
  #attraction {
    background: url(../images/attraction_bg.jpg) no-repeat center;
    background-size: cover;
  }

  #attraction .inner {
    position: relative;
  }

  #attraction .inner::before {
    content: '';
    width: 452px;
    height: 409px;
    display: block;
    background: url(../images/attraction_img1.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 335px;
    right: -165px;
    z-index: -1;
  }

  #attraction .inner::after {
    content: '';
    width: 492px;
    height: 410px;
    display: block;
    background: url(../images/attraction_img2.png) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -80px;
    left: -215px;
  }

  #attraction .ttl_l {
    margin-bottom: 0;
    position: relative;
  }

  .attraction_list {
    flex-wrap: wrap;
    gap: 0 30px;
    margin-top: -15px;
    counter-reset: number 0;
  }

  .attraction_item {
    width: min(450px, 42vw);
    height: min(450px, 42vw);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    counter-increment: number 1;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
  }

  .attraction_item:nth-of-type(3) {
    margin-left: auto;
  }

  .attraction_item:nth-of-type(even) {
    margin-top: 70px;
    margin-bottom: -60px;
  }

  .attraction_item:last-of-type {
    margin-bottom: 0;
  }

  .attraction_num {
    color: #fff;
    font-family: var(--font-mincho);
    font-size: min(16px,1.6vw);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 20px;
  }

  .attraction_num span {
    display: inline-block;
    background: var(--color-main-blue);
    padding: 5px 10px 7px;
  }

  .attraction_num span::after {
    content: counter(number)'';
  }

  .attraction_ttl {
    font-size: min(26px, 2.5vw);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 23px;
    color: var(--color-main-blue);
  }

  .attraction_item .text {
    font-size: min(16px,1.6vw);
  }

  /* =====================
    gallery
  ===================== */

  #gallery {
    width: 100vw;
    overflow: hidden;
    --marquee-duration: 40s;
    position: relative;
  }

  #gallery .gallery_track {
    width: max-content;
    will-change: transform;
    animation: gallery-marquee var(--marquee-duration) linear infinite;
  }

  #gallery .gallery_list {
    flex: 0 0 auto;
  }

  .gallery_list li {
    flex: 0 0 auto;
    width: 520px;
  }

  .gallery_list li img {
    height: 345px;
    object-fit: cover;
  }

  @keyframes gallery-marquee {
    from { transform: translate3d(0,0,0); }
    to   { transform: translate3d(-50%,0,0); }
  }

  /* =====================
    benefit
  ===================== */
  
  #benefit {
    position: relative;
  }

  #benefit::before {
    content: '';
    width: 100%;
    height: 400px;
    display: block;
    background: var(--color-sub-blue);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .benefit_list {
    justify-content: space-between;
  }

  .benefit_item {
    max-width: 350px;
    width: 32%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 10px;
  }

  .benefit_img {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
  }

  .benefit_img img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .benefit_text {
    padding: 30px min(45px,4vw) 35px;
  }

  .benefit_ttl {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    color: var(--color-main-blue);
    margin-bottom: 20px;
  }

  .benefit_text .text {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  /* =====================
    jobtype
  ===================== */
  
  #jobtype {
    position: relative;
    padding-bottom: 30px;
  }

  #jobtype::before {
    content: '';
    width: 100%;
    height: 330px;
    display: block;
    background: var(--color-sub-blue);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .jobtype_list {
    justify-content: space-between;
  }

  .jobtype_item {
    max-width: 260px;
    width: 24%;
    padding: 35px 30px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 10px;
  }

  .jobtype_ttl {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    color: var(--color-main-blue);
    margin-bottom: 15px;
  }

  .jobtype_item .text {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  /* =====================
    faq
  ===================== */

  #faq {
    background: url(../images/faq_bg.jpg) no-repeat top -145px center;
    background-size: 2194px;
  }

  #faq .ttl_m {
    margin-bottom: 40px;
  }

  .faq_item_box {
    border: 7px solid var(--color-sub-blue);
    border-radius: 10px;
    padding: 30px 38px;
    background: #fff;
    margin-bottom: 15px;
  }
  
  .faq_item_box:last-of-type {
    margin-bottom: 0;
  }

  .faq_q,
  .faq_a {
    padding-left: 50px;
    position: relative;
  }

  .faq_q {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--color-main-blue);
    margin-bottom: 15px;
  }

  .faq_q::before,
  .faq_a::before {
    width: 35px;
    height: 35px;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-mincho);
    border: 2px solid var(--color-main-blue);
    position: absolute;
    top: 0;
    left: 0;
  }

  .faq_q::before {
    content: 'Q';
    color: #fff;
    background: var(--color-main-blue);
  }

  .faq_a::before {
    content: 'A';
    color: var(--color-main-blue);
    background: #fff;
    top: -2px;
  }

  /* =====================
    requirements
  ===================== */

  #requirements {
    background: var(--color-sub-blue);
  }

  #requirements .ttl_m {
    margin-bottom: 50px;
  }

  .requirements_box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 70px 100px;
  }

  .requirements_table {
    width: 100%;
  }

  .requirements_table th,
  .requirements_table td {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #EFEFEF;
    padding: 16px 0;
  }

  .requirements_table tr:first-of-type th,
  .requirements_table tr:first-of-type td {
    border-top: 1px solid #EFEFEF;
  }

  .requirements_table th {
    width: 200px;
    padding-right: 20px;
    font-weight: 700;
  }

  .requirements_table td {
    width: calc( 100% - 200px );
  }

  /* =====================
    PC調整
  ===================== */
  
  @media screen and (max-width:1200px) {

    #attraction .inner::before {
      display: none;
    }

    #attraction .inner::after {
      width: 293px;
      height: 243px;
      left: -85px;
    }

  }

}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

@media screen and (max-width:899px) {

  /* =====================
    base
  ===================== */

  #kyoritsu {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }

  #container {
    margin-bottom: 40px;
  }

  /* =====================
    entry_btn
  ===================== */

  .entry_btn {
    max-width: 350px;
    width: 90%;
    margin: 20px auto 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
  }

  .entry_btn a {
    display: flex;
    width: 100%;
    height: 60px;
    color: #fff;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,rgba(248, 78, 137, 1) 0%, rgba(227, 126, 240, 1) 100%);
    border-radius: 70px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
    position: relative;
  }
  
  .entry_btn a::before {
    content: '';
    width: 6px;
    height: 9px;
    display: block;
    background: url(../images/icon_arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
  }

  .entry_btn_note {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .entry_btn_note a {
    color: #fff;
    text-decoration: underline;
  }

  /* =====================
    fv
  ===================== */
  
  #fv {
    background: url(../images/fv_bg.jpg) no-repeat center;
    background-size: cover;
  }

  #fv::before {
    display: none;
  }

  #fv .inner {
    position: relative;
    height: auto;
    padding: 20px 0 40px;
  }

  /*  kyoritsu_fv_column
  ------------------------*/
  
  .kyoritsu_fv_column {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }

  .kyoritsu_fv_text {
    letter-spacing: 0;
    position: relative;
    z-index: 1;
  }

  .kyoritsu_fv_img {
    width: 75%;
    margin: 0 auto;
  }

  .kyoritsu_fv_img img {
    border-radius: 50%;
    left: 0;
  }

  .kyoritsu_fv_name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
  }

  .kyoritsu_fv_ttl {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-main-blue);
    font-family: var(--font-mincho);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
  }

  .kyoritsu_fv_ttl span {
    background: #fff;
    display: inline-block;
    padding: 5px 10px 10px;
    line-height: 1;
  }

  .kyoritsu_fv_ttl span:last-of-type {
    padding-right: 0;
  }

  .kyoritsu_fv_sub {
    font-size: 12px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .kyoritsu_fv_sub strong {
    font-weight: 400;
    border: 1px solid #fff;
    display: inline-block;
    line-height: 1;
    padding: 5px 5px 3px;
    margin-right: 5px;
  }
 
  #fv .entry_btn_note {
    margin-top: 10px;
    font-size: 10px;
  }

  /*  kyoritsu_fv_bg
  ------------------------*/
  
  .kyoritsu_fv_bg {
    position: absolute;
  }
  
  .kyoritsu_fv_bg img {
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .kyoritsu_fv_bg.img1 {
    width: 20%;
    top: 10vw;
    left: -8vw;
  }

  .kyoritsu_fv_bg.img2 {
    width: 26%;
    top: 4vw;
    right: -10vw;
  }
  
  .kyoritsu_fv_bg.img3 {
    width: 31%;
    top: 50vw;
    right: -12vw;
  }

  /* =====================
    bnr
  ===================== */

  #bnr {
    padding: 20px 0 10px;
  }
  
  .bnr_list {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .bnr_list li {
    width: 48%;
    border: 1px solid #EAEAEA;
  }

  /* =====================
    ttl
  ===================== */
  
  .ttl_s {
    font-size: 15px;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    color: var(--color-main-blue);
    margin-bottom: 25px;
  }

  .ttl_m {
    font-family: var(--font-mincho);
    font-size: 22px;
    letter-spacing: 0.02em;
    font-weight: 900;
    text-align: center;
    line-height: 1.45;
    margin-bottom: 25px;
  }

  .ttl_l {
    font-family: var(--font-mincho);
    font-size: 27px;
    letter-spacing: 0.02em;
    font-weight: 900;
    text-align: center;
    line-height: 1.45;
    margin-bottom: 25px;
  }

  .b_line {
    position: relative;
    padding-bottom: 10px;
  }

  .ttl_m.b_line {
    padding-bottom: 15px;
  }

  .b_line::before {
    content: '';
    width: 25px;
    height: 2px;
    display: block;
    background: var(--color-grd);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .c_grd {
    background: var(--color-grd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* =====================
    text
  ===================== */

  .text {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.8;
  }

  .text strong {
    font-weight: 700;
    color: var(--color-pink);
  }

  .text .kome_mark {
    color: #5A5A5A;
    font-size: 10px;
    font-weight: 400;
    vertical-align: text-top;
  }
  
  .text .kome {
    color: #5A5A5A;
    font-size: 10px;
    font-weight: 400;
    display: block;
    margin-top: 10px;
  }

  /* =====================
    entry_area
  ===================== */

  .entry_area {
    background: url(../images/entry_bg.jpg) no-repeat center;
    background-size: cover;
    margin-top: 60px;
  }
  
  .entry_area .inner {
    position: relative;
    padding: 40px 0;
  }

  .entry_ttl {
    font-family: var(--font-oswald);
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-align: center;
    background: var(--color-grd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%,3px);
  }

  .entry_text {
    font-family: var(--font-mincho);
    font-size: 18px;
    letter-spacing: 0.02em;
    font-weight: 600;
    text-align: center;
    color: var(--color-main-blue);
    line-height: 2.2;
  }

  .entry_text span {
    display: inline-block;
    background: #fff;
    line-height: 1;
    padding: 7px 10px 9px;
  }

  /*  entry_bg
  ------------------------*/
  
  .entry_bg {
    position: absolute;
    z-index: 1;
  }
  
  .entry_bg img {
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .entry_bg.img1 {
    width: 20%;
    top: -5px;
    left: -32px;
  }

  .entry_bg.img2 {
    width: 23%;
    top: 70px;
    right: -35px;
  }
  
  .entry_bg.img3 {
    width: 25%;
    bottom: -10px;
    left: -40px;
  }

  /* =====================
    about
  ===================== */

  #about {
    background: url(../images/about_bg.jpg) no-repeat top 170px center;
    background-size: 920px;
  }
  
  #about .text {
    text-align: center;
    line-height: 2.3;
    font-weight: 700;
  }

  .about_youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 40px auto 0;
    position: relative;
  }

  .about_youtube iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  /* =====================
    introduction
  ===================== */
  
  #introduction {
    background: var(--color-sub-blue);
  }

  .introduction_list {
    gap: 15px 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .introduction_list li {
    width: 31%;
  }

  .introduction_list li figure {
    height: 0;
    padding-bottom: 66.5%;
    position: relative;
  }

  .introduction_list li img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .introduction_list li span {
    display: block;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-top: 7px;
  }

  /* =====================
    intern
  ===================== */

  #intern {
    background: url(../images/intern_bg.jpg) no-repeat top center;
    background-size: 150vw;
  }
  
  #intern .ttl_s {
    margin-bottom: 15px;
  }

  .intern_text {
    display: block;
  }

  .intern_img {
    width: 200px;
    margin: 0 auto 20px;
  }

  .intern_img img {
    max-height: 420px;
    height: 39%;
    object-fit: cover;
    border-radius: 50%;
  }

  .intern_text .text {
    padding: 0 20px;
  }

  .intern_merit {
    margin: 20px auto 0;
    flex-direction: column-reverse;
  }

  .intern_merit img {
    max-width: 360px;
    margin: 0 auto;
  }

  .intern_merit img:last-of-type {
    margin-bottom: 20px;
  }

  /* =====================
    interview
  ===================== */
  
  #interview {
    background: var(--color-sub-blue);
    position: relative;
    overflow: clip;
  }
  
  .interview_bg {
    width: 115vw;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .interview_item {
    border: 5px solid var(--color-sub-blue);
    border-radius: 5px;
    background: #fff;
    padding: 25px 20px 30px;
    margin-bottom: 20px;
    position: relative;
  }

  .interview_item:last-of-type {
    margin-bottom: 0;
  }

  .interview_content {
    overflow: hidden;
    height: auto;
    transition: height .6s ease;
    will-change: height;
  }

  .interview_item.is-clamped .interview_content {
    height: 1000px;
  }

  .interview_item.is-clamped::after,
  .interview_item.is-expanding::after {
    content: '';
    height: 400px;
    pointer-events: none;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity .4s ease;
    opacity: 1;
  }

  .interview_item.is-expanding::after,
  .interview_item.is-expanded::after {
    opacity: 0;
  }

  .interview_readmore {
    max-width: 350px;
    width: 90%;
    margin: 20px auto 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .interview_readmore span {
    display: flex;
    width: 100%;
    height: 60px;    
    color: #fff;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,rgba(68, 165, 222, 1) 0%, rgba(30, 186, 188, 1) 50%, rgba(134, 128, 255, 1) 100%);
    border-radius: 60px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
    position: relative;
  }

  .interview_readmore span::before {
    content: '';
    width: 6px;
    height: 9px;
    display: block;
    background: url(../images/icon_arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
  }

  /* 動き控えめ設定に配慮 */
  @media (prefers-reduced-motion: reduce) {
    .interview_content { transition: none; }
    .interview_item::after { transition: none; }
    .interview_readmore { transition: none; }
  }

  /*  interview_top
  ------------------------*/
  
  .interview_top {
    display: block;
    padding-bottom: 25px;
    background-image: linear-gradient(to right, var(--color-sub-blue) 5px, transparent 5px);
    background-size: 10px 5px;
    background-repeat: repeat-x;
    background-position: left bottom;
    margin-bottom: 30px;
  }

  .interview_top_img {
    width: 160px;
    margin: 0 auto 10px;
  }

  .interview_top_img img {
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
  }

  .interview_top_text {
    line-height: 1.6;
    text-align: center;
  }

  .interview_top_text .ttl {
    font-size: 18px;
    color: var(--color-main-blue);
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
  }

  .interview_top_text .position {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }

  .interview_top_text .position span {
    font-size: 10px;
    color: #747C83;
  }

  .interview_top_text .name {
    font-size: 16px;
    font-weight: 700;
  }
  
  /*
  .interview_top_text .name span {
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 500;
    color: #BFD7ED;
    display: inline-block;
    margin-left: 10px;
  }
  */

  /*  interview_conts
  ------------------------*/
  
  .interview_text {
    margin-bottom: 40px;
  }

  .interview_text:nth-of-type(even) {
    margin-left: auto;
  }

  .interview_text:last-of-type {
    margin-bottom: 0;
  }

  .interview_text .ttl {
    font-family: var(--font-mincho);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
  }

  .interview_text .ttl span {
    background: var(--color-main-blue);
    display: inline-block;
    padding: 5px 10px 7px;
  }

  .interview_text .sub {
    color: var(--color-main-blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
  }

  .interview_text_column {
    display: block;
  }

  .interview_text_column .interview_img {
    margin: 20px auto 15px;
  }
  
  .interview_text .text + .interview_timeline {
    margin-top: 20px;
  }

  .interview_timeline {
    position: relative;
    display: block;
    padding: 10px 0;
  }

  .interview_timeline::before {
    content: '';
    width: 3px;
    height: 100%;
    display: block;
    background: linear-gradient(180deg,rgba(68, 165, 222, 1) 0%, rgba(30, 186, 188, 1) 50%, rgba(134, 128, 255, 1) 80%, rgba(134, 128, 255, 1) 100%);;
    position: absolute;
    top: 0;
    left: 4.5px;
  }

  .timeline_item {
    position: relative;
    padding-left: 26px;
    margin-bottom: 20px;
  }

  .timeline_item::before {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 6px;
    transform: translateX(-50%);
  }

  .timeline_item:last-of-type {
    margin-bottom: 0;
  }

  .timeline_item:nth-child(1):before {
    background: #5FA3D9;
  }

  .timeline_item:nth-child(2):before {
    background: #5BAACF;
  }

  .timeline_item:nth-child(3):before {
    background: #58B3BD;
  }

  .timeline_item:nth-child(4):before {
    background: #6A96DE;
  }

  .timeline_item:nth-child(5):before {
    background: #8380F6;
  } 

  .timeline_time {
    font-family: var(--font-oswald);
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 10px;
  }

  .timeline_ttl {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 4px;
  }
  
  .timeline_item:nth-child(1) .timeline_time,
  .timeline_item:nth-child(1) .timeline_ttl {
    color: #5FA3D9;
  }

  .timeline_item:nth-child(2) .timeline_time,
  .timeline_item:nth-child(2) .timeline_ttl {
    color: #5BAACF;
  }

  .timeline_item:nth-child(3) .timeline_time,
  .timeline_item:nth-child(3) .timeline_ttl {
    color: #58B3BD;
  }

  .timeline_item:nth-child(4) .timeline_time,
  .timeline_item:nth-child(4) .timeline_ttl {
    color: #6A96DE;
  }

  .timeline_item:nth-child(5) .timeline_time,
  .timeline_item:nth-child(5) .timeline_ttl {
    color: #8380F6;
  } 

  .timeline_text {
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }

  /* =====================
    attraction
  ===================== */
  
  #attraction {
    background: url(../images/attraction_bg.jpg) no-repeat center;
    background-size: cover;
  }

  #attraction .inner {
    position: relative;
    padding-bottom: 40px;
  }

  #attraction .inner::before {
    content: '';
    width: 120px;
    height: 109px;
    display: block;
    background: url(../images/attraction_img1.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 140px;
    right: -10px;
  }

  #attraction .inner::after {
    content: '';
    width: 170px;
    height: 220px;
    display: block;
    background: url(../images/attraction_img2.png) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -80px;
    left: -40px;
  }

  .attraction_list {
    counter-reset: number 0;
    display: block;
  }

  .attraction_item {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    counter-increment: number 1;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }

  .attraction_item:nth-of-type(even) {
    margin-left: auto;
  }

  .attraction_item:last-of-type {
    margin-bottom: 0;
  }

  .attraction_num {
    color: #fff;
    font-family: var(--font-mincho);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 15px;
  }

  .attraction_num span {
    display: inline-block;
    background: var(--color-main-blue);
    padding: 5px 10px 7px;
  }

  .attraction_num span::after {
    content: counter(number)'';
  }

  .attraction_ttl {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 13px;
    color: var(--color-main-blue);
  }

  .attraction_item .text {
    font-size: 14px;
  }
  
  /* =====================
    gallery
  ===================== */

  #gallery {
    width: 100vw;
    overflow: hidden;
    --marquee-duration: 40s;
    position: relative;
  }

  #gallery .gallery_track {
    width: max-content;
    will-change: transform;
    animation: gallery-marquee var(--marquee-duration) linear infinite;
  }

  #gallery .gallery_list {
    flex: 0 0 auto;
  }

  .gallery_list li {
    flex: 0 0 auto;
    width: 200px;
  }

  .gallery_list li img {
    height: 145px;
    object-fit: cover;
  }

  @keyframes gallery-marquee {
    from { transform: translate3d(0,0,0); }
    to   { transform: translate3d(-50%,0,0); }
  }

  /* =====================
    benefit
  ===================== */
  
  #benefit {
    position: relative;
  }

  #benefit::before {
    content: '';
    width: 50%;
    height: 100%;
    display: block;
    background: var(--color-sub-blue);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .benefit_list {
    display: block;
  }

  .benefit_item {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
  }

  .benefit_item:last-of-type {
    margin-bottom: 0;
  }

  .benefit_img {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
  }

  .benefit_img img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .benefit_text {
    padding: 25px 25px 30px;
  }

  .benefit_ttl {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    color: var(--color-main-blue);
    margin-bottom: 10px;
  }

  .benefit_text .text {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  /* =====================
    jobtype
  ===================== */
  
  #jobtype {
    background: var(--color-sub-blue);
    position: relative;
    padding-bottom: 30px;
  }

  .jobtype_list {
    display: block;
  }

  .jobtype_item {
    padding: 25px 25px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .jobtype_item:last-of-type {
    margin-bottom: 0;
  }

  .jobtype_ttl {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    color: var(--color-main-blue);
    margin-bottom: 10px;
  }

  .jobtype_item .text {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  /* =====================
    faq
  ===================== */

  #faq {
    background: url(../images/faq_bg.jpg) no-repeat top -40px center;
    background-size: 150vw;
  }

  .faq_item_box {
    border: 4px solid var(--color-sub-blue);
    border-radius: 10px;
    padding: 20px 20px;
    background: #fff;
    margin-bottom: 10px;
  }
  
  .faq_item_box:last-of-type {
    margin-bottom: 0;
  }

  .faq_q,
  .faq_a {
    padding-left: 39px;
    position: relative;
  }

  .faq_q {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--color-main-blue);
    margin-bottom: 10px;
  }

  .faq_q::before,
  .faq_a::before {
    width: 28px;
    height: 28px;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 21px;
    letter-spacing: 0;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font-mincho);
    border: 2px solid var(--color-main-blue);
    position: absolute;
    top: 0;
    left: 0;
  }

  .faq_q::before {
    content: 'Q';
    color: #fff;
    background: var(--color-main-blue);
  }

  .faq_a::before {
    content: 'A';
    color: var(--color-main-blue);
    background: #fff;
    top: -2px;
  }

  /* =====================
    requirements
  ===================== */

  #requirements {
    background: var(--color-sub-blue);
  }

  .requirements_box {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
  }

  .requirements_table {
    width: 100%;
  }

  .requirements_table th,
  .requirements_table td {
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #EFEFEF;
    padding: 14px 0;
  }

  .requirements_table tr:last-of-type th,
  .requirements_table tr:last-of-type td {
    border: none;
  }

  .requirements_table th {
    width: 120px;
    padding-right: 10px;
    font-weight: 700;
  }

  .requirements_table td {
    width: calc( 100% - 120px );
  }

}