@charset "UTF-8";
body {
    font-family: "Noto Sans JP", sans-serif;
}

.u-large {
    display: none;
}
@media screen and (max-width: 1024px) {
    .u-large {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    .u-large--hide {
        display: none;
    }
}

.u-desktop {
    display: block;
}
@media screen and (max-width: 768px) {
    .u-desktop {
        display: none;
    }
}

.u-mobile {
    display: none;
}
@media screen and (max-width: 768px) {
    .u-mobile {
        display: block;
    }
}

/* リキッドレイアウト対応 */
html {
    font-size: 16px;
}
@media (max-width: 375px) {
    html {
        font-size: 4.2666666667vw;
    }
}
@media (min-width: 769px) {
    html {
        font-size: 1.2307692308vw;
    }
}
@media (min-width: 1300px) {
    html {
        font-size: 16px;
    }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/* ホバー */
a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
    a:hover {
        opacity: 0.8;
    }
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core root defaults */
html {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
    width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

.arrow {
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    width: 38px;
    height: 10px;
    border-right: 6px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: skewX(50deg);
    transform: skewX(50deg);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: none;
}
@media screen and (max-width: 768px) {
    .arrow {
        display: block;
    }
}

.arrow.arrow--prev {
    left: 0;
    right: auto;
    -webkit-transform: scale(-1, 1) skewX(50deg);
    transform: scale(-1, 1) skewX(50deg);
}

.button {
    position: relative;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.16em;
    color: #fff;
    font-family: "Inter", sans-serif;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    padding: 21.5px 0;
    padding: 1.34375rem 0;
    width: 228px;
    width: 14.25rem;
    border-radius: 1.875rem;
    background: linear-gradient(106.37deg, #fda085 9.96%, #f6d365 98.8%);
}

.button span {
    position: relative;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    border-radius: 1.875rem;
    background: linear-gradient(106.37deg, #f6d365 9.96%, #fda085 98.8%);
}

.button:hover::before {
    opacity: 0;
}

.button.button--white {
    background: none;
    background-color: #fff;
    font-weight: bold;
    color: #38393a;
    -webkit-transition: background-color 0.5s, color 0.5s;
    transition: background-color 0.5s, color 0.5s;
}

.button--white.button::before {
    background: unset;
}

.button.button--white:hover {
    background-color: #38393a;
    color: #fff;
}

.card {
    width: 100%;
    max-width: 1077px;
    max-width: 67.3125rem;
    padding: 33px 35px 29px;
    padding: 2.0625rem 2.1875rem 1.8125rem;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 768px) {
    .card {
        display: block;
        padding: 2.0625rem 0.9375rem 1.8125rem;
        width: 95%;
        margin: 0 auto;
    }
}

.card__img {
    position: relative;
    width: 43%;
    max-width: 800px;
    max-width: 50rem;
}
@media screen and (max-width: 768px) {
    .card__img {
        width: 100%;
    }
}

.card__main-img {
    aspect-ratio: 463.1/293;
    -o-object-fit: cover;
    object-fit: cover;
}

.card__logo-img {
    position: absolute;
    display: inline-block;
    width: 138px;
    width: 8.625rem;
    height: 138px;
    height: 8.625rem;
    top: 11px;
    top: 0.6875rem;
    left: 9px;
    left: 0.5625rem;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(9.5px);
    backdrop-filter: blur(9.5px);
}
@media screen and (max-width: 768px) {
    .card__logo-img {
        width: 24.53%;
        height: 38.77%;
    }
}

.card__logo-img--fit {
    -o-object-fit: contain;
    object-fit: contain;
}

.card__box {
    margin-top: 32px;
    margin-top: 2rem;
    margin-left: 63px;
    margin-left: 3.9375rem;
}
@media screen and (max-width: 768px) {
    .card__box {
        margin-left: 0;
    }
}

.card__title {
    font-size: 29px;
    font-size: 1.8125rem;
    font-weight: 500;
    line-height: 1.45;
    color: #38393a;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 768px) {
    .card__title {
        font-size: 1.625rem;
    }
}

.card__title.card__title--small {
    font-size: 22px;
    font-size: 1.375rem;
}

.card__subtitle {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: #38393a;
    font-family: "Inter", sans-serif;
    display: inline-block;
    margin-top: 13px;
    margin-top: 0.8125rem;
}

.card__tags {
    margin-top: 13px;
    margin-top: 0.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
    gap: 0.875rem;
}
@media screen and (max-width: 768px) {
    .card__tags {
        gap: 0.625rem;
    }
}

.card__tag {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1;
    color: #38393a;
    display: inline-block;
    padding: 8px 14px 10px;
    padding: 0.5rem 0.875rem 0.625rem;
    border: 1px solid #38393a;
    border: 0.0625rem solid #38393a;
    border-radius: 0.5625rem;
}
@media screen and (max-width: 768px) {
    .card__tag {
        font-size: 0.75rem;
        padding: 0.5rem 0.6875rem;
    }
}

.card__button {
    margin-top: 66px;
    margin-top: 4.125rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .card__button {
        margin-top: 2.8125rem;
    }
}

.drawer-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 107px;
    z-index: -10;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
    .drawer-nav {
        top: 64px;
    }
}

.drawer-nav.is-active {
    pointer-events: all;
}

.drawer-nav.is-active .drawer-nav__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
}

.drawer-nav__inner {
    width: 70%;
    height: 100%;
    margin-left: auto;
    background-color: #fff;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.drawer-nav.is-active .drawer-nav__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.drawer-nav.is-active .drawer-nav__bg {
    background-color: rgba(0, 0, 0, 0.8);
}

.drawer-nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.drawer-nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    color: #3f3f3f;
    width: 100%;
    padding: 30px;
    padding: 1.875rem;
    border-bottom: 1px solid #fafafa;
}

.drawer-nav__button {
    margin-top: 30px;
    margin-top: 1.875rem;
    text-align: center;
}

.drawer-nav__link::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #f4ce47;
    border-top: 1px solid #f4ce47;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fadein {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
}

.fadein.fadein-up {
    -webkit-transform: translate(0, -40px);
    transform: translate(0, -40px);
}

.fadein.scrollin {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.footer-nav {
    margin-top: 74px;
    margin-top: 4.625rem;
}
@media screen and (max-width: 768px) {
    .footer-nav {
        margin-top: 2.5rem;
    }
}

.footer-nav__inner {
    padding-left: 81px;
    padding-left: 5.0625rem;
}
@media screen and (max-width: 768px) {
    .footer-nav__inner {
        padding-left: 0;
    }
}

.footer-nav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 71px;
    gap: 4.4375rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .footer-nav__items {
        gap: 1.875rem;
    }
}

.footer {
    width: 100%;
    padding: 57px 0;
    padding: 3.5625rem 0;
}

.footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 768px) {
    .footer__contents {
        display: block;
    }
}

.footer__info {
    width: 33.33%;
    max-width: 800px;
    max-width: 50rem;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 56px 81px 39px;
    padding: 3.5rem 5.0625rem 2.4375rem;
    border-right: 1px solid #ececec;
    border-right: 0.0625rem solid #ececec;
}
@media screen and (max-width: 768px) {
    .footer__info {
        width: 100%;
        padding: 0 0 1.25rem 0;
        border-right: unset;
        text-align: center;
        border-bottom: 0.0625rem solid #ececec;
    }
}

.footer__logo {
    width: 131px;
    width: 8.1875rem;
    margin: 0 auto;
}

.footer__logo-text {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #929292;
    display: block;
    text-align: center;
    margin-top: 17px;
    margin-top: 1.0625rem;
}

.footer__info-box {
    margin-top: 10px;
    margin-top: 0.625rem;
}

.footer__address,
.footer__tel,
.footer__mail {
    font-size: 11px;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.025em;
    color: #929292;
    font-style: normal;
    font-style: initial;
}

.footer__tel,
.footer__mail {
    margin-top: 8px;
    margin-top: 0.5rem;
}

.footer__nav {
    width: 66.67%;
    max-width: 800px;
    max-width: 50rem;
}
@media screen and (max-width: 768px) {
    .footer__nav {
        width: 100%;
    }
}

.footer__sns {
    margin-top: 41px;
    margin-top: 2.5625rem;
}

.footer__instagram .fa-instagram {
    font-size: 19px;
    font-size: 1.1875rem;
    background: linear-gradient(198.04deg, #9396d9 5.82%, #cd598c 44.27%, #f9de9f 80.82%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.footer__twitter .fa-twitter {
    color: #4d9feb;
    margin-left: 21px;
    margin-left: 1.3125rem;
}

.form__list:not(:first-child) {
    margin-top: 35px;
    margin-top: 2.1875rem;
}

.form__title-text {
    font-size: 19px;
    font-size: 1.1875rem;
    font-weight: 500;
    color: #38393a;
    font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
    .form__title-text {
        font-size: 1rem;
    }
}

.form__required-mark {
    margin-right: 5px;
    margin-right: 0.3125rem;
    color: #fda682;
}

.form__input {
    padding: 16px 21px;
    padding: 1rem 1.3125rem;
    background-color: #fff;
    margin-top: 10px;
    margin-top: 0.625rem;
    border: 1px solid #ccc;
    border: 0.0625rem solid #ccc;
    border-radius: 0.3125rem;
}
@media screen and (max-width: 768px) {
    .form__input {
        padding: 0.8125rem 1rem;
    }
}

.form__input-text {
    display: block;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    color: #38393a;
}

.form__input-text::-webkit-input-placeholder {
    color: #38393a;
}

.form__input-text::-moz-placeholder {
    color: #38393a;
}

.form__input-text::-ms-input-placeholder {
    color: #38393a;
}

.form__input-text::placeholder {
    color: #38393a;
}

.form__radio-box {
    margin-top: 10px;
    margin-top: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 28px;
    gap: 1.75rem;
}

.form__radio-label {
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    padding-left: 2.1875rem;
}

.form__radio-label:not(:first-of-type) {
    margin-left: 28px;
    margin-left: 1.75rem;
}

.form__radio-label::before,
.form__radio-label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.form__radio-label::before {
    background-color: #fff;
    border: 1px solid #ccc;
    border: 0.0625rem solid #ccc;
    border-radius: 50%;
    width: 15.45px;
    width: 0.965625rem;
    height: 15.45px;
    height: 0.965625rem;
    left: 5px;
    left: 0.3125rem;
}

.form__radio-label::after {
    background-color: #aaa;
    border-radius: 50%;
    opacity: 0;
    width: 9px;
    width: 0.5625rem;
    height: 9px;
    height: 0.5625rem;
    left: 7.5px;
    left: 0.46875rem;
}

.form__radio:checked + .form__radio-label::after {
    opacity: 1;
}

.form__input-textarea {
    width: 100%;
    height: 135px;
    height: 8.4375rem;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
}

.form__input-textarea::-webkit-input-placeholder {
    color: #38393a;
}

.form__input-textarea::-moz-placeholder {
    color: #38393a;
}

.form__input-textarea::-ms-input-placeholder {
    color: #38393a;
}

.form__input-textarea::placeholder {
    color: #38393a;
}

.form__button-wrapper {
    margin-top: 36px;
    margin-top: 2.25rem;
    text-align: center;
}

.form__button {
    width: 135px;
    width: 8.4375rem;
    padding: 17px 0;
    padding: 1.0625rem 0;
    color: #fff;
    background-color: #38393a;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 1.875rem;
    border: 1px solid #38393a;
    -webkit-transition: color 0.5s, background-color 0.5s;
    transition: color 0.5s, background-color 0.5s;
}

.form__button:hover {
    color: #38393a;
    background-color: #fff;
}

.hamburger {
    position: fixed;
    z-index: 9999;
    top: 45px;
    right: 50px;
    width: 25px;
    height: 16px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .hamburger {
        top: 23px;
        right: 20px;
    }
}

.hamburger span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #38393a;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.is-active span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

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

.hamburger.is-active span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 107px;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .header {
        height: 64px;
    }
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
    padding: 0 49px 0 46px;
    padding: 0 3.0625rem 0 2.875rem;
}
@media screen and (max-width: 768px) {
    .header__inner {
        padding: 0 1.25rem;
    }
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
    margin-right: auto;
}

.header__logo img {
    height: 70px;
}
@media screen and (max-width: 768px) {
    .header__logo img {
        height: 45px;
        width: 84.2px;
    }
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
}

@media screen and (max-width: 1024px) {
    .header__menu.u-large--hide {
        display: none;
    }
}

.header__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
}

.header__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
}

.header__item:not(:first-child) {
    margin-left: 31px;
    margin-left: 1.9375rem;
}
@media screen and (max-width: 1200px) {
    .header__item:not(:first-child) {
        margin-left: 0.9375rem;
    }
}

.header__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
    padding: 0 15px;
    padding: 0 0.9375rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: #3f3f3f;
}
@media screen and (max-width: 1200px) {
    .header__link {
        font-size: 0.875rem;
        padding: 0 0.9375rem;
    }
}

.header__button {
    width: 192px;
    width: 12rem;
    margin-left: 60px;
    margin-left: 3.75rem;
    text-transform: unset;
}
@media screen and (max-width: 1200px) {
    .header__button {
        margin-left: 2.8125rem;
    }
}

.inner {
    width: 100%;
    max-width: 1400px;
    padding-right: 50px;
    padding-left: 50px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width: 768px) {
    .inner {
        padding-right: 30px;
        padding-left: 30px;
    }
}

.interview {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 768px) {
    .interview {
        display: block;
        margin-top: 2.5rem;
    }
}

.interview.interview--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.interview__box {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 111px;
    padding-left: 6.9375rem;
    padding-right: 65px;
    padding-right: 4.0625rem;
}
@media screen and (max-width: 768px) {
    .interview__box {
        width: 100%;
        padding-left: 1.875rem;
        padding-right: 1.875rem;
        padding-bottom: 3.125rem;
        margin-top: 2.5rem;
    }
}

.interview__name {
    font-size: 57px;
    font-size: 3.5625rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #38393a;
    font-family: "Inter", sans-serif;
}
@media screen and (max-width: 768px) {
    .interview__name {
        font-size: 2.375rem;
    }
}

.interview__name span {
    color: #f4ce47;
}

.interview__detail {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.24em;
    color: #38393a;
    margin-top: 9px;
    margin-top: 0.5625rem;
}

.interview__contents {
    margin-top: 66px;
    margin-top: 4.125rem;
}
@media screen and (max-width: 768px) {
    .interview__contents {
        margin-top: 3.125rem;
    }
}

.interview__content:not(:first-child) {
    margin-top: 66px;
    margin-top: 4.125rem;
}
@media screen and (max-width: 768px) {
    .interview__content:not(:first-child) {
        margin-top: 2.5rem;
    }
}

.interview__question {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: 300;
    line-height: 1.4615384615;
    letter-spacing: 0.065em;
    color: #38393a;
}
@media screen and (max-width: 768px) {
    .interview__question {
        font-size: 1.3125rem;
    }
}

.interview__answer {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.42857;
    letter-spacing: 0.065em;
    color: #38393a;
    margin-top: 16px;
    margin-top: 1rem;
}

.interview__answer p:not(:first-child) {
    margin-top: 13px;
    margin-top: 0.8125rem;
}

.interview__img {
    width: 50%;
}
@media screen and (max-width: 768px) {
    .interview__img {
        width: 100%;
    }
}

.mainview {
    position: relative;
}

.mainview video {
    width: 100%;
    height: auto;
    padding-top: 107px;
    padding-top: 6.6875rem;
}
@media screen and (max-width: 768px) {
    .mainview video {
        padding-top: 4rem;
    }
}

.panel {
    position: relative;
}

.panel img {
    aspect-ratio: 260/184;
    -o-object-fit: cover;
    object-fit: cover;
}

.panel__tag {
    position: absolute;
    display: inline-block;
    padding: 4px 9px;
    padding: 0.25rem 0.5625rem;
    background-color: #fff;
    bottom: 0;
    right: 0;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    color: #38393a;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 768px) {
    .panel__tag {
        font-size: 0.75rem;
    }
}

.person-card__img img {
    aspect-ratio: 208/280;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left top;
    object-position: left top;
}

.person-card__contents {
    margin-top: 16px;
    margin-top: 1rem;
    text-align: center;
}

.person-card__position {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    color: #38393a;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.person-card__name {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1;
    color: #38393a;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    margin-top: 4px;
    margin-top: 0.25rem;
}

/*スクロールダウン全体の場所*/
.scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 50%;
    bottom: 10px;
    /*全体の高さ*/
    height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown span {
    /*描画位置*/
    position: absolute;
    left: -15px;
    top: -15px;
    /*テキストの形状*/
    color: #eee;
    font-size: 11.2px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    -webkit-animation: pathmove 1.4s ease-in-out infinite;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }
    30% {
        height: 30px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }
    30% {
        height: 30px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}
.test {
    font-size: 20px;
    font-size: 1.25rem;
    background-color: #38393a;
    color: #fff;
}

.company-info {
    padding-top: 130px;
    padding-top: 8.125rem;
}
@media screen and (max-width: 768px) {
    .company-info {
        padding-top: 6.25rem;
    }
}

.company-info__inner.inner {
    max-width: 800px;
    max-width: 50rem;
}

.company-info__title-box {
    text-align: center;
}

.company-info__title {
    font-size: 56px;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: #38393a;
    font-style: italic;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .company-info__title {
        font-size: 2.375rem;
    }
}

.company-info__lists {
    margin-top: 50px;
    margin-top: 3.125rem;
}

.company-info__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.company-info__list-title {
    width: 33%;
    padding: 15px 10px;
    padding: 0.9375rem 0.625rem;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #f8c071;
    border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
    .company-info__list-title {
        padding: 0.3125rem 0.625rem;
        font-size: 0.75rem;
    }
}

.company-info__list-text {
    width: 67%;
    padding: 15px 10px;
    padding: 0.9375rem 0.625rem;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #38393a;
    border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
    .company-info__list-text {
        padding: 0.3125rem 0.625rem;
        font-size: 0.75rem;
    }
}

.company-scrolldown.scrolldown {
    bottom: 10%;
}
@media screen and (max-width: 768px) {
    .company-scrolldown.scrolldown {
        bottom: 0.625rem;
    }
}

.interview-mainview {
    position: relative;
    width: 100%;
    padding-top: 107px;
    padding-top: 6.6875rem;
}
@media screen and (max-width: 768px) {
    .interview-mainview {
        padding-top: 4rem;
    }
}

.interview-mainview__inner {
    padding-left: 185px;
    padding-left: 11.5625rem;
    padding-bottom: 77px;
    padding-bottom: 4.8125rem;
}
@media screen and (max-width: 768px) {
    .interview-mainview__inner {
        padding-left: 0;
        padding-bottom: 0;
    }
}

.interview-mainview__contents {
    position: relative;
}

.interview-mainview__img {
    aspect-ratio: 1115/653;
}

.interview-mainview__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.interview-mainview__title {
    position: absolute;
    bottom: 18.683%;
    left: 0;
    font-size: 48px;
    font-size: 3rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.09em;
    color: #38393a;
    font-family: "Zen Old Mincho", serif;
    padding: 16px 58px 16px 52px;
    padding: 1rem 3.625rem 1rem 3.25rem;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .interview-mainview__title {
        bottom: 10%;
        font-size: 1.75rem;
        padding: 0.5rem 0.9375rem;
    }
}

.brands {
    padding: 78px 0;
    padding: 4.875rem 0;
    background-color: #f9f9f5;
}

.brands__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1025px;
    max-width: 64.0625rem;
    margin: 0 auto;
    padding: 13px 0;
    padding: 0.8125rem 0;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .brands__container {
        display: block;
        margin-left: 0;
        margin-right: 0;
        padding: 3.125rem 0;
    }
}

.brands__title-box {
    width: 32%;
    max-width: 1025px;
    max-width: 64.0625rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .brands__title-box {
        width: 100%;
    }
}

.brands__title-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4px;
    width: 0.25rem;
    height: 94.67%;
    background-color: #f4ce47;
}
@media screen and (max-width: 768px) {
    .brands__title-box::after {
        top: unset;
        right: unset;
        bottom: -3.125rem;
        -webkit-transform: unset;
        transform: unset;
        width: 80%;
        height: 0.25rem;
    }
}

.brands__title {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1;
    color: #38393a;
    font-family: "Inter", sans-serif;
}

.brands__contents {
    width: 68%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .brands__contents {
        width: 100%;
    }
}

.brands__imgs-box {
    width: 95%;
    display: grid;
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .brands__imgs-box {
        width: 85%;
        margin-top: 3.125rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact__bg {
    padding-top: 14px;
    padding-top: 0.875rem;
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
    background-color: #f9f9f5;
}
@media screen and (max-width: 768px) {
    .contact__bg {
        padding-bottom: 3.125rem;
    }
}

.contact__title-box {
    text-align: center;
}

.contact__title {
    font-size: 48px;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    color: #38393a;
}
@media screen and (max-width: 768px) {
    .contact__title {
        font-size: 2.375rem;
    }
}

.contact__form-box {
    width: 100%;
    max-width: 720px;
    max-width: 45rem;
    margin: 63px auto 0;
    margin: 3.9375rem auto 0;
}
@media screen and (max-width: 768px) {
    .contact__form-box {
        width: 90%;
    }
}

.jobtype__bg {
    padding: 58px 0 71px;
    padding: 3.625rem 0 4.4375rem;
    background-color: #f9f9f5;
}

.jobtype__title-box {
    text-align: center;
}

.jobtype__title {
    font-size: 56px;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: #38393a;
    font-style: italic;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .jobtype__title {
        font-size: 2.375rem;
    }
}

.jobtype__cards {
    margin-top: 53px;
    margin-top: 3.3125rem;
}

.jobtype__card {
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .jobtype__card {
        margin: 0 0.625rem;
    }
}

.jobtype__card:not(:first-child) {
    margin-top: 46px;
    margin-top: 2.875rem;
}

.occupation {
    padding: 50px 0;
    padding: 3.125rem 0;
}

.occupation__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, transparent), color-stop(10%, #f9f9f5), to(#f9f9f5));
    background: linear-gradient(90deg, transparent 10%, #f9f9f5 10%, #f9f9f5 100%);
}
@media screen and (max-width: 768px) {
    .occupation__inner {
        display: block;
    }
}

.occupation__inner.inner {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    padding-right: 0;
}
@media screen and (max-width: 768px) {
    .occupation__inner.inner {
        padding-right: 30px;
    }
}

.occupation__content {
    width: 33.846%;
    max-width: 436px;
    max-width: 27.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 28px;
    margin-left: 1.75rem;
}
@media screen and (max-width: 768px) {
    .occupation__content {
        width: 100%;
        margin-left: 0;
    }
}

.occupation__title {
    font-size: 48px;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4583;
    letter-spacing: 0.025em;
    color: #38393a;
    font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
    .occupation__title {
        font-size: 1.75rem;
    }
}

.occupation__text {
    margin-top: 14px;
    margin-top: 0.875rem;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4667;
    letter-spacing: 0.085em;
    color: #38393a;
}

.occupation__imgs {
    width: calc(66.154% - 1.4375rem);
    max-width: 782px;
    max-width: 48.875rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: transparent;
    margin-left: auto;
}
@media screen and (max-width: 768px) {
    .occupation__imgs {
        width: 100%;
        margin-top: 1.875rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

.philosophy {
    padding-top: 190px;
    padding-top: 11.875rem;
    padding-bottom: 206px;
    padding-bottom: 12.875rem;
}
@media screen and (max-width: 768px) {
    .philosophy {
        padding-top: 3.125rem;
        padding-bottom: 4.375rem;
    }
}

.philosophy__title {
    text-align: center;
}

.philosophy__en-title {
    font-size: 29px;
    font-size: 1.8125rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.065em;
    color: #38393a;
    font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
    .philosophy__en-title {
        font-size: 1.25rem;
    }
}

.philosophy__en-title:not(:first-of-type) {
    display: block;
    margin-top: 40px;
}

.philosophy__jp-title {
    font-size: 42px;
    font-size: 2.625rem;
    font-weight: 400;
    line-height: 1.4523;
    letter-spacing: 0.025em;
    color: #38393a;
    font-family: "Zen Old Mincho", serif;
    margin-top: 15px;
    margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
    .philosophy__jp-title {
        font-size: 1.75rem;
    }
}

.philosophy__content {
    margin-top: 40px;
}
@media screen and (max-width: 768px) {
    .philosophy__content {
        -moz-text-align-last: left;
        text-align-last: left;
    }
}

.philosophy__text {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.42857;
    letter-spacing: 0.085em;
    color: #38393a;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .philosophy__text {
        -moz-text-align-last: left;
        text-align-last: left;
    }
}

.philosophy__text:not(:first-child) {
    margin-top: 21px;
    margin-top: 1.3125rem;
}

.top-interview__bg {
    position: relative;
    padding-top: 61px;
    padding-top: 3.8125rem;
    padding-bottom: 74px;
    padding-bottom: 4.625rem;
    background-image: url(../images/common/top-interview-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.top-interview__bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(106.37deg, rgba(252, 227, 102, 0.9) 9.96%, rgba(254, 163, 134, 0.9) 98.8%);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.06" /><feFuncG type="linear" slope="1.06" /><feFuncB type="linear" slope="1.06" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(106%);
    filter: brightness(106%);
}

.top-interview__title-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.top-interview__title {
    font-size: 56px;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    font-style: italic;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .top-interview__title {
        font-size: 2.375rem;
    }
}

.top-interview__cards {
    position: relative;
    margin-top: 63px;
    margin-top: 3.9375rem;
    padding: 0 28px;
    padding: 0 1.75rem;
    z-index: 1;
    overflow: visible;
}
@media screen and (max-width: 768px) {
    .top-interview__cards {
        overflow: hidden;
    }
}

.top-interview__cards-wrapper {
    display: grid;
    gap: 26px;
    gap: 1.625rem;
    grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 768px) {
    .top-interview__cards-wrapper {
        gap: 0;
    }
}

.top-interview__button {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 38px;
    margin-top: 2.375rem;
}
/*# sourceMappingURL=styles.css.map */
