:root {
    --color-text: #333333;
    --color-primary: #E40065;
    --color-secondary: #00B7B7;
    --color-dark: #333333;
    --base-font-family: 'Noto Sans JP', sans-serif;
    --en-font-family: 'Bebas Neue', sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 24px;
    --font-size-xl: 32px;
    --font-size-lg-en: 36px;
    --font-size-num: 32px;
    --line-height-title: 1.19;
    --line-height-en: 10px;
    --line-height-base: 1.8;
}

/* =================================
    ベーススタイル
================================= */
html {
    overscroll-behavior: none;
}

body {
    color: var(--color-text);
    font-family: var(--base-font-family);
    background-image: url(../image/background.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

a {
    text-decoration: none;
    color: var(--color-text);
}

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

ul {
    list-style-type: none;
}


/* ボタン */
.btn {
    position: relative;
    width: 80%;
    margin: auto;
    padding: 16px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}


.btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}

.btn span:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-62%);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.btn span {
    transition: all 0.3s ease;
    position: relative;
}

.btn:hover span:after {}

.background_wrapper {
    position: fixed;
    display: flex;
    z-index: -1;
    bottom: 0;
    white-space: nowrap;
    font-size: 96px;
    line-height: 60px;
    font-family: var(--en-font-family);
    color: var(--color-secondary);
    opacity: 0.3;
}


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

/* =================================
    レイアウト
================================= */

body.single {
    padding: 0 !important;
}

.entry,
.about,
.confidence,
.news,
.recruit,
.faq,
.single,
.work,
.error_404,
.company,
.privacy_policy {
    padding: 0 21px;
}

.entry_inner,
.about_inner,
.news_inner,
.recruit_inner,
.single_inner,
.work_inner,
.error_404_inner,
.company_inner,
.privacy_policy_inner {
    padding: 40px 0 80px;
}

.page_title {
    font-size: var(--font-size-xl);
}

.page_title_en {
    font-family: var(--en-font-family);
    font-size: var(--font-size-lg-en);
    font-weight: bold;
    color: var(--color-primary);
    line-height: var(--line-height-en);
}

.section_header {
    margin-bottom: 40px;
}

/* =================================
    ヘッダー
================================= */
header {
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    padding: 0 20px;
    background-color: #fff;
    z-index: 900;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    width: 160px;
    text-align: right;
    margin-right: 20px;
    z-index: 1000;
}

.logo_inner {
    width: 100%;
}

.logo p {
    font-size: 0.75rem;
    font-weight: bold;
}

.header_wrapper {
    display: flex;
    align-items: center;
}

/* エントリーボタン */
.btn_entry {
    margin-right: 8px;
    padding: 8px 24px;
    background-color: var(--color-secondary);
    border-radius: 4px;
    z-index: 1000;
}

.btn_entry p {
    font-family: var(--en-font-family), cursive;
    font-size: 1.25rem;
    color: #fff;
}

/* ハンバーガーメニュー */
.hamburger {
    width: 36px;
    height: 28px;
    display: grid;
    gap: 8px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 36px;
    height: 4px;
    background-color: var(--color-primary);
    transition: all .4s;
}

.hamburger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}

/* =================================
    ナビゲーション
================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0 21px;
    opacity: 0;
    z-index: 900;
    pointer-events: none;
    transition: all .4s;
    background-color: #fff;
}

.nav.active {
    opacity: 1;
    pointer-events: auto;
}

.nav_list {
    display: grid;
    height: 100%;
    grid-template-rows: repeat(6, 1fr);
    align-items: center;
}

.nav_item {
    border-bottom: solid #ddd;
    margin-bottom: 16px;
}

.nav_item span {
    font-family: var(--en-font-family);
    font-size: var(--font-size-lg-en);
    color: var(--color-primary);
    line-height: var(--line-height-en);
    vertical-align: bottom;
}

.nav_item p {
    font-size: var(--font-size-xl);
    font-weight: bold;
}

.btn_entry_pc {
    display: none;
}

/* =================================
    メインビジュアル
================================= */
main {
    position: relative;
    padding: 0;
    background: #fff;
    min-height: calc(100vh - 160px);
}

.main_visual {
    position: relative;
}

.main_visual_img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 90%;
    height: 85vh;
    margin-left: auto;
    border-radius: 24px 0 0 24px;
}

.main_title {
    display: grid;
    gap: 8px;
    position: absolute;
    bottom: 13.33%;
}

.main_title span {
    background-color: #fff;
    padding: 8px 20px 8px 24px;
    font-size: var(--font-size-xl);
    line-height: var(--line-height-title);
    width: fit-content;
    opacity: 0;
    transform: translateX(-100px);
}

/* =================================
    About
================================= */
.index_about {
    padding: 0 21px;
    position: relative;
    overflow: hidden;
}

svg {
    position: absolute;
    width: 65%;
    right: -32px;
    bottom: 100px;
}

.st0 {
    fill: none;
    stroke: var(--color-primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 28px;
}

.index_about_inner {
    padding: 80px 0;
    display: grid;
    gap: 40px;
    align-items: center;
}

.index_about_wrapper {
    display: grid;
    gap: 20px;
}

.p-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.index_about_title span {
    color: var(--color-primary);
}

.index_about_text,
.index_work_text {
    font-size: 3.73vw;
    line-height: var(--line-height-base);
}

/* =================================
    Work
================================= */
.index_work {
    padding: 0 21px;
    background-color: var(--color-dark);
    border-radius: 0 48px 0 0;
    color: #fff;
}

.index_work_inner {
    padding: 80px 0;
    display: grid;
}

.index_section_header_work {
    margin-bottom: 20px;
}

.index_work_text {
    margin-bottom: 40px;
}

.index_work_cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    width: 100%;
    height: 240px;
    border-radius: 8px;
    background-color: #ddd;
}

.index_work_pro {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.index_work_flow {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* =================================
    News
================================= */
.index_news {
    padding: 0 21px;
}

.index_news_inner {
    padding: 80px 0;
    list-style: none;
    display: grid;
    gap: 40px;
}

.index_news_title .en {
    font-size: var(--font-size-lg-en);
}

.index_news_title h2 {
    font-size: var(--font-size-xl);
}

.index_news_item {
    position: relative;
    padding: 20px 30px 20px 0;
    border-bottom: 1px solid #ddd;
}

.index_news_item:first-child {
    border-top: 1px solid #ddd;
}

.index_news_item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    transform: rotate(45deg) translateY(-50%);
    border-radius: 1px;
}

.index_news_tags {
    display: flex;
    align-items: center;
    padding-bottom: 16px;
}

.index_news_date {
    font-size: 14px;
    margin-right: 8px;
}

.index_news_category {
    font-size: 14px;
    padding: 2px 4px;
    background-color: var(--color-primary);
    border-radius: 4px;
}

.index_news_category a {
    color: #fff;
}

.index_news_text h3 {
    line-height: var(--line-height-base);
    font-size: var(--font-size-base);
    font-weight: normal;
}

/* =================================
    Recruit & Entry
================================= */
.recruit_and_entry {
    display: grid;
    font-family: var(--en-font-family);
    font-size: var(--font-size-lg-en);
}

.recruit_info,
.index_entry {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
}

.recruit_info {
    background-color: var(--color-primary);
}

.index_entry {
    background-color: var(--color-secondary);
}

.recruit_info span,
.index_entry span {
    color: #fff;
}

/* =================================
    フッター
================================= */
footer {
    position: relative;
    padding: 0 21px;
    background-color: #f5f5f5;
}

.footer_inner {
    padding: 24px 0 12px;
    display: grid;
    gap: 24px;
}

.sns_icons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.sns_icons img {
    width: 32px;
    height: auto;
}

.footer_info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.footer_info a {
    font-size: 14px;
    padding: 4px 12px;
    color: #777;
}

.footer_copyright {
    display: grid;
    gap: 4px;
    font-size: 10px;
    justify-content: center;
    color: #777;
}

.footer_logo {
    margin: auto;
}

.footer_logo img {
    width: 100px;
}

/* =================================
    投稿用タグ
================================= */
.tags {
    display: flex;
    align-items: center;
    padding-bottom: 16px;
}

.date {
    font-size: 14px;
    margin-right: 8px;
}

.category {
    font-size: 14px;
    padding: 2px 4px;
    background-color: var(--color-primary);
    border-radius: 4px;
    color: #fff;
}

.work_main_visual {
    position: relative;
    height: 300px;
}

.work_main_visual_img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 348px;
    margin-left: auto;
}


.work {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0 48px 0 0;
}

/* Work Flow Section */
.work_flow h2 {
    margin-bottom: 28px;
}

.work_flow_toggle {
    width: 100%;
    height: auto;
    padding: 4px;
    display: flex;
    border-radius: 35px;
    background-color: #eee;
    margin-bottom: 28px;
}

.toggle {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 31px;
    cursor: pointer;
}

.toggle:first-child.active {
    background-color: var(--color-primary);
    color: #fff;
}

.toggle:last-child.active {
    background-color: var(--color-secondary);
    color: #fff;
}

/* Work Flow General and Company */
.work_flow_general,
.work_flow_company {
    position: relative;
    display: none;
    gap: 80px;
}

.work_flow_general.active,
.work_flow_company.active {
    display: grid;
}

.work_flow_general::before,
.work_flow_company::before {
    content: "";
    position: absolute;
    width: 4px;
    height: calc(100% - 185px);
    left: 50%;
    margin-left: -2px;
    background-color: #ddd;
}

/* Company Specific Styles */
.work_flow_company .flow_card::before,
.work_flow_company .time_tag {
    background-color: var(--color-secondary);
}

.work_flow_company .time_tag::before {
    border-bottom: 12px solid var(--color-secondary);
}

.work_flow_company .flow_info {
    border: 2px solid var(--color-secondary);
}

/* Flow Card */
.flow_card {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.flow_card::before {
    content: "";
    position: absolute;
    top: -30px;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    background-color: var(--color-primary);
    border-radius: 6px;
}

/* Time Tag */
.time_tag {
    position: relative;
    width: 82px;
    margin: 0 auto 8px;
    padding: 4px 12px;
    font-family: var(--en-font-family);
    font-size: var(--font-size-num);
    color: #fff;
    background-color: var(--color-primary);
    border-radius: 4px;
}

.time_tag::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-bottom: 12px solid var(--color-primary);
}

/* Flow Info */
.flow_info {
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 20px 12px;
    background-color: #fff;
}

.flow_info h2 {
    margin-bottom: 8px;
}


.recruit_items {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.info_item1 {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px;
    border-bottom: 1px solid #ccc;
}

.info_item1 a,
.privacy_policy_item a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.info_item2 {
    padding: 14px 0;
    border-bottom: 1px solid #ccc;
}

.info_item1:first-child {
    border-top: 1px solid #ccc;
    /* 最初だけ上線 */
}

.info_item2 {
    border-top: 1px solid #ccc;
    /* 最初だけ上線 */
}

dt {
    font-weight: bold;
}

dd {
    margin: 0;
}

.faq_inner {
    padding: 80px 0;
}

.faq_list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    padding: 20px 16px;
    background: #fff;
    cursor: pointer;
    position: relative;
}

/* ＋マーク */
.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 16px;
    height: 2px;
    background: var(--color-secondary);
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(0deg) scaleX(0);
}

.faq-answer {
    overflow: hidden;
    max-height: 0px;
    padding: 0 16px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}


.news_inner {
    list-style: none;
}

.news_item {
    padding: 20px 30px 20px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.news_item:first-child {
    border-top: 1px solid #ddd;
}

.news_item::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 6px;
    border-radius: 1px;
}


.news_text h3 {
    line-height: var(--line-height-base);
    font-size: var(--font-size-base);
    font-weight: normal;
}



.form_item {
    padding-bottom: 20px;
    display: grid;
}

label {
    display: block;
    margin-bottom: 8px;
}

.required {
    padding: 2px 4px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--color-primary);
    font-size: 14px;
    margin-left: 4px;
}

.optional {
    padding: 2px 4px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--color-secondary);
    font-size: 14px;
    margin-left: 4px;
}

.entry_form input {
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    height: 48px;
    padding: 0 8px;
    caret-color: var(--color-secondary);
}

.entry_form select {
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    height: 48px;
    padding: 0 8px;
    caret-color: var(--color-secondary);
}


.entry_form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    height: 120px;
    padding: 8px;
    caret-color: var(--color-secondary);
}

.entry_form input,
.entry_form select,
.entry_form textarea {
    box-sizing: border-box;
}

.input_wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* どうしてもはみ出すときの保険 */
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.entry_form input[type="date"] {
    appearance: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: 16px;
}

input::-webkit-date-and-time-value {
    text-align: left;
}

.entry_form input:focus,
.entry_form textarea:focus {
    border: 1px solid var(--color-primary);
    outline: none;
}


.entry_form input[type="submit"],
.entry_form .submit-btn {
    display: inline-block;
    width: fit-content;
    height: auto;
    padding: 16px 64px;
    color: #fff;
    background-color: var(--color-primary);
    border-radius: 8px;
    border: none;
    margin: auto;
}


.about_main_visual {
    position: relative;
    height: 300px;
}

.about_main_visual_img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 348px;
    margin-left: auto;
}


.about {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0 48px 0 0;
}


.about_wrapper {
    display: grid;
    gap: 20px;
}

.about_sub_title h2 {
    font-size: var(--font-size-lg);
}

.about_sub_title span {
    color: var(--color-primary);
}

.about_text {
    font-size: 3.73vw;
    line-height: var(--line-height-base);
}

/* メインスライダー */
.swiper {
    width: 100%;
    height: 472px;
    margin: auto;
    padding: 28px 0;
}

.swiper-slide {
    display: grid;
    gap: 8px;
}

.swiper-slide h3 {
    font-size: var(--font-size-lg);
}

.swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px 0 12px 12px;
    position: relative;
}

.swiper.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: linear;
    margin: 0 auto;
}

/* 特定のスライドだけ上下移動 */
.swiper .slide1 {
    transform: translateY(28px);
}

.swiper .slide2 {
    transform: translateY(-28px);
}

.swiper .slide3 {
    transform: translateY(28px);
}

.swiper .slide4 {
    transform: translateY(-28px);
}


.confidence {
    overflow: hidden;
}

.confidence_inner {
    padding: 80px 0;
}


.confidence .swiper2 {
    position: relative;
    width: 100%;
    padding-bottom: 60px;
}

/* ページネーションを下に */
.confidence .swiper2 .swiper-pagination {
    bottom: 20px;
    /* スライドの下に配置 */
}

/* ナビゲーション矢印の共通設定 */
.confidence .swiper-navigation {
    display: flex;
    justify-content: center;
    /* 真ん中に配置 */
    gap: 80px;
    /* 矢印同士の間隔 */
    margin-top: 10px;
    /* スライダーとの間隔 */
}


/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -25px;
}

.confidence .swiper-button-prev,
.confidence .swiper-button-next {
    position: static;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* 矢印自体の色 */
.confidence .swiper-button-prev::after,
.confidence .swiper-button-next::after {
    color: var(--color-secondary);
    font-size: 28px;
}

.swiper-slide {
    width: 200px;
    text-align: center;
}

.swiper-slide_img {
    margin: auto;
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.con1 {
    background-image: url(../image/confidence1.png);
}

.con2 {
    background-image: url(../image/confidence2.png);
}

.con3 {
    background-image: url(../image/confidence3.png);
}

.ceo_message {
    padding: 0 0 0 21px;
}

.ceo_message_inner {
    padding: 80px 0;
}


.ceo_message_img {
    width: 100%;
    height: 400px;
    border-radius: 48px 0 0 0;
    overflow: hidden;
    margin-bottom: 24px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ceo_message_text {
    padding-right: 21px;
    margin-bottom: 24px;
}

.ceo_message_text p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.error_404_inner {
    text-align: center;
    display: grid;
    gap: 20px;
    height: calc(100vh - 302px);
    align-content: center;
}

.error_404_title h1 {
    font-family: var(--en-font-family);
    font-size: 80px;
    line-height: 60px;
    color: var(--color-primary);
}

.error_404_title span {
    color: var(--color-secondary);
}

.error_404_title h2 {
    font-family: var(--en-font-family);
    font-size: var(--font-size-lg-en);
}

.error_404_inner p {
    line-height: var(--line-height-base);

}


table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-spacing: 0;
}


tr {
    text-align: left;
    display: grid;
}

th {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 12px;
    background-color: #f8f8f8;
}

td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 12px;
}

.privacy_policy_content p {
    line-height: var(--line-height-base);
}

.privacy_policy_item,
.policy_intro {
    margin-bottom: 24px;
}

.privacy_policy_item h2 {
    margin-bottom: 8px;
}

.policy_list {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.policy_space {
    margin-bottom: 12px;
}


/* =================================
    メディアクエリ
================================= */
@media screen and (min-width: 500px) {

    main {
        height: auto;
        overflow: hidden;
        max-width: 402px;
        margin: 42px auto 0 !important;
        border-radius: 8px 8px 0 0;
        box-shadow: -0.2rem 0 2rem rgba(40, 28, 121, .1),
            .2rem 0 2rem rgba(40, 28, 121, .1);
        min-height: calc(100vh - 260px);
    }

    footer {
        max-width: 402px;
        margin: 0 auto;
        box-shadow: 0 20px 2rem rgba(40, 28, 121, .1),
            0 20px 2rem rgba(40, 28, 121, .1);
    }

    header {
        background: none;
    }

    .index_about_text,
    .index_work_text {
        font-size: var(--font-size-base);
    }

    .about_text {
        font-size: var(--font-size-base);
    }

    .space {
        padding-top: 40px !important;
    }

    .space.about,
    .space.work {
        display: none;
    }

    .index_news_item:hover,
    .news_item:hover {
        background-color: #f5f5f5;
    }
}


@media screen and (min-width: 1000px) {
    header {
        position: relative;
    }

    .logo,
    .btn_entry,
    .hamburger {
        display: none;
    }

    main {
        min-height: calc(100vh - 260px);
    }

    main,
    footer {
        z-index: 1000;
    }

    .nav {
        z-index: 9;
        display: block;
        height: fit-content;
        opacity: 1 !important;
        pointer-events: none;
        background: transparent;
        padding: 0 0 80px 80px !important;
        top: 25%;
    }

    .nav_item {
        border-bottom: none;
        width: fit-content;
        position: relative;
        pointer-events: auto;
    }

    .nav_item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        /* 文字の下に余白を取る */
        width: 100%;
        height: 2px;
        background-color: var(--color-secondary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .nav_item:hover::after {
        transform: scaleX(1);
    }

    .logo {
        z-index: 10;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 74px 0 0 80px !important;
    }

    .logo_inner {
        width: 20vw;
        height: auto;
    }

    .btn_entry_pc {
        z-index: 10;
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 80px 56px 0;
        justify-content: flex-end;
        pointer-events: none;
    }

    .btn_entry_pc_inner {
        position: relative;
        width: 200px;
        pointer-events: auto;
    }

    .serrated {
        width: 100%;
        animation: rotate1 15s infinite linear;
    }

    .entry_joinus {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        transform: translate(-50%, -50%);
        animation: rotate2 15s infinite linear;
    }

    .woman_entry {
        position: absolute;
        bottom: 0;
        right: -24px;
        width: 50%;
    }

    .btn_entry_pc_inner p {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200px;
        transform: translate(-50%, -50%) rotate(-8deg);
        color: #fff;
        font-weight: bold;
        font-size: var(--font-size-lg);
        text-align: center;
    }

    .btn_entry_pc_inner span {
        font-size: calc(var(--font-size-lg) * 1.2);
    }

    .entry_inner,
    .recruit_inner,
    .faq_inner,
    .news_inner,
    .single_inner,
    .company_inner,
    .privacy_policy_inner {
        padding: 0 0 80px;
    }
}

/* =================================
    アニメーション
================================= */
@keyframes rotate1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate2 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}