@charset "utf-8";

/*-------------------------------------
■目次
-CSS変数
-リセットCSS
-初期設定
-レイアウト
-モジュール
-汎用クラス
-JS初期設定
---------------------------------------*/

/* CSS変数
----------------------------------------- */
:root {
    /* color */
    --color_primary_white: #fff;
    --color_primary_blue: #092987;
    --color_primary_black: #333;
    --color_primary_pink: #D4657E;
    --color_primary_purple: #C57CAD;
    --color_primary_lightBlue: #E1F3FC;
    --color_primary_green: #00A283;
    --color_primary_orange: #E8827A;
    --color_primary_skyBlue: #009FB0;
    --color_primary_gray: #999;
    --color_secondary_gray: #F1F1F0;
    --color_secondary_white: #EFEFEF;
    --color_secondary_blue: #718BC4;
    --color_secondary_lightBlue: #04A0E9;
    --color_tertiary_lightBlue: #00A7E3;
    --color_quaternary_lightBlue: #7DA5BD;
    --color_quinary_lightBlue: #7FD6FF;

    /* ロールオーバー時のアニメーション */
    --rollOver_transition_time: 0.3s;

    /* ハンバーガーメニューのアニメーション時間 */
    --hamburgerBtn_transition_time: 0.2s;
    --hamburgerMenu_transition_time: 0.8s;

    /* モーダル背景 */
    --bgColor_black: raba(#000, 0.5);

    /* レイアウト幅 */
    --contentWidth: 1240px;
    --innerSpSpace: 15px;
    --innerPcSpace: 20px;
}

/* リセットCSS
----------------------------------------- */
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -webkit-tap-highlight-color: transparent;
    /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
    display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
    font-weight: normal;
}

dd {
    margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: inherit;
    /* 2 */
}

address {
    font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: inherit;
    /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Replaced content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    /* 1 */
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
    /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
    outline: auto;
}

select:disabled {
    opacity: inherit;
}

/**
 * Remove padding
 */

option {
    padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
    overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * Correct the outline style in Safari.
 */

[type="search"] {
    outline-offset: -2px;
    /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type="number"] {
    -moz-appearance: textfield;
}

/**
 * Clickable labels
 */

label[for] {
    cursor: pointer;
}

/* Interactive */
/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
    outline: auto;
}

/* Tables */
/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

table {
    border-color: inherit;
    /* 1 */
    border-collapse: collapse;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: bold;
}

/* 初期設定
----------------------------------------- */
body {
    font-size: 16px;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic Pro", "メイリオ", verdana, "Osaka", "MS PGothic", sans-serif;
    font-weight: 500;
    line-height: calc(26 / 16);
    color: var(--color_primary_black);
    background-color: var(--color_primary_white);
    -webkit-text-size-adjust: 100%;
}

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

/* レイアウト
----------------------------------------- */
.wrapper {
    margin: auto;
    padding: 0 var(--innerSpSpace);
    max-width: var(--contentWidth);
}

@media screen and (min-width:768px) {
    .wrapper {
        padding: 0 var(--innerPcSpace);
    }
}

/* モジュール
----------------------------------------- */
/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    z-index: 1000;
}

@media screen and (min-width:1024px) {
    .header {
        height: 100px;
    }
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    max-width: var(--contentWidth);
    height: 100%;
}

@media screen and (min-width:1024px) {
    .header__inner {
        padding: 16px 20px;
        height: auto;
    }
}

.header__logoArea {
    padding-left: 4.8%;
}

@media screen and (min-width:1024px) {
    .header__logoArea {
        padding: 0;
    }
}

.header__link {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.header__logo {
    max-width: none;
    width: 130px;
}

@media screen and (min-width:768px) {
    .header__logo {
        width: 175px;
    }
}

.header__title {
    margin-top: 0.5em;
    flex-shrink: 0;
    font-size: 11px;
    line-height: 1;
    color: var(--color_primary_blue);
}

@media screen and (min-width: 360px) {
    .header__title {
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) {
    .header__title {
        margin-top: 0;
        font-size: min(calc(16 / 375 * 100vw), 24px);
    }
}

.header__btnArea {
    height: 100%;
}

.header__btnWrap {
    display: none;
}

@media screen and (min-width:1024px) {
    .header__btnWrap {
        display: block;
        width: 130px;
    }
}

/* グローバルナビ */
.globalNav {
    padding: 26px 0 49px;
    margin: auto;
    max-width: var(--contentWidth);
    height: calc(100vh - 49px);
    color: var(--color_primary_white);
    background-color: var(--color_primary_blue);
    opacity: 0;
    visibility: hidden;
    transition: all var(--hamburgerMenu_transition_time);
    overflow-y: auto;
    overscroll-behavior-y: contain;
}

.globalNav.is_show {
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width:1024px) {
    .globalNav {
        padding: 0 20px;
        height: auto;
        color: var(--color_primary_black);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
    }
}

.globalNav__list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding: 0 50px;
    text-align: center;
}

@media screen and (min-width:1024px) {
    .globalNav__list {
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
    }
}

.globalNav__item {
    padding-bottom: 17px;
    border-bottom: 1px solid var(--color_primary_white);
}

@media screen and (min-width:1024px) {
    .globalNav__item {
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 0;
        flex-grow: 1;
        font-size: min(calc(16 / 1200 * 100vw), 16px);
    }

    .globalNav__item::before,
    .globalNav__item:last-child::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 0.875em;
        background-color: var(--color_primary_gray);
    }

    .globalNav__item::before {
        left: 0;
    }

    .globalNav__item::after {
        right: 0;
    }

    .globalNav__item--pc_hide {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .globalNav__item--sp_hide {
        display: none;
    }
}

.globalNav__icon {
    display: inline-block;
}

.globalNav__icon::after {
    content: "";
    display: inline-block;
    margin-left: 7px;
    width: 12px;
    height: 12px;
    background: url(../img/icon_hd_tabWhite.svg) no-repeat 0 0 / contain;
}

@media screen and (min-width:1024px) {
    .globalNav__icon::after {
        background-image: url(../img/icon_tabGray.svg);
    }
}

@media screen and (min-width:1024px) {
    .globalNav__link {
        display: block;
        position: relative;
        flex-grow: 1;
        transition: color 0.3s;
    }

    .globalNav__link.is_current {
        font-weight: bold;
    }

    .globalNav__link.is_current,
    .globalNav__link:not(.is_current):hover {
        color: var(--color_primary_blue);
    }

    .globalNav__link::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--color_primary_blue);
        transition: all var(--rollOver_transition_time);
    }

    .globalNav__link:not(.is_current):hover::after,
    .globalNav__link.is_current::after {
        width: calc(100% - 4px);
    }
}

.globalNav__itemBtn {
    position: relative;
    padding-right: 36px;
}

.globalNav__itemBtn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 15px;
    background: url(../img/icon_hd_spAccordion_close.svg) no-repeat 0 0 / contain,
        url(../img/icon_hd_spAccordion_open.svg) no-repeat 0 0 / 0;
    transform: translateY(-50%);
}

.globalNav__itemBtn[data-accordion="open"]::after {
    background-size: 0 0, contain;
}

/* ハンバーガーボタン */
.drawBtn {
    display: block;
    position: relative;
    width: 50px;
    height: 100%;
    color: var(--color_primary_white);
    background-color: var(--color_primary_blue);
    z-index: 10000;
}

@media screen and (min-width:1024px) {
    .drawBtn {
        display: none;
    }
}

.drawBtn__line {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: var(--color_primary_white);
    transition: all var(--hamburgerBtn_transition_time);
}

.drawBtn__line::before,
.drawBtn__line::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    transition: all var(--hamburgerBtn_transition_time);
}

.drawBtn__line.is_active {
    background-color: transparent;
}

.drawBtn__line.is_active::before,
.drawBtn__line.is_active::after {
    top: 0;
    background-color: var(--color_primary_white);
}

.drawBtn__line.is_active::before {
    transform: rotate(45deg);
}

.drawBtn__line.is_active::after {
    transform: rotate(-45deg);
}

.drawBtn__line::before {
    top: -7px;
}

.drawBtn__line::after {
    bottom: -7px;
}

.drawBtn__text {
    display: block;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    line-height: 1;
}

/* ハンバーガーメニュー内 アコーディオン */
.accordionBody {
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.globalNav__itemList {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-top: 18px;
    padding-top: 16px;
    padding-bottom: 18px;
    border-top: 1px solid var(--color_primary_white);
}

.globalNav_foot {
    margin-top: 32px;
}

.globalNav_foot.entry {
    padding-top: 23px;
    padding-bottom: 35px;
}

@media screen and (min-width:1024px) {
    .globalNav_foot.entry {
        display: none;
    }
}

/* フッター */
.footer__inner {
    padding: 29px var(--innerSpSpace) 30px;
    color: var(--color_primary_white);
    background-color: var(--color_primary_blue);
}

@media screen and (min-width:1024px) {
    .footer__inner {
        padding: 35px 20px 31px;
    }
}

.footer__title {
    font-size: 16px;
    line-height: calc(26 / 16);
    text-align: center;
}

.footer__list {
    display: flex;
    justify-content: center;
    column-gap: 24px;
    margin: 29px 0 47px;
}

@media screen and (min-width:1024px) {
    .footer__list {
        margin: 38px 0 35px;
    }
}

.footer__item {
    text-align: center;
}

.footer__iconLink {
    display: inline-block;
}

.footer__iconText {
    margin-top: 8px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.footer__text {
    text-align: center;
}

.footer__link {
    display: inline-block;
}

.footer__link::after {
    content: "";
    display: inline-block;
    margin-left: 6px;
    width: 12px;
    height: 12px;
    background: url(../img/icon_hd_tabWhite.svg) no-repeat 0 0 / contain;
}

@media screen and (min-width:1024px) {
    .footer__link {
        transition: all var(--rollOver_transition_time);
    }

    .footer__link:hover {
        text-decoration: underline;
    }
}

.footer__foot {
    margin-top: 44px;
    text-align: center;
    border-top: 1px solid var(--color_primary_white);
}

@media screen and (min-width:1024px) {
    .footer__foot {
        margin-top: 57px;
    }
}

.footer__copy {
    display: block;
    margin-top: 19px;
    line-height: 1;
}

/* パンくずリスト */
.breadcrumb {
    margin-bottom: 16px;
    border-top: 1px solid var(--color_primary_blue);
    border-bottom: 1px solid var(--color_primary_blue);
}

@media screen and (min-width:1024px) {
    .breadcrumb {
        margin-bottom: 21px;
    }
}

.breadcrumb__nav {
    margin: auto;
    padding: 15px 0 15px 3.73%;
    max-width: var(--contentWidth);
}

@media screen and (min-width:768px) {
    .breadcrumb__nav {
        padding: 15px var(--innerPcSpace);
    }
}

.breadcrumb__list {
    display: flex;
    column-gap: 10px;
}

.breadcrumb__item {
    font-size: min(calc(12 / 375 * 100vw), 12px);
    line-height: 1;
}

.breadcrumb__item:last-child {
    color: var(--color_primary_blue);
    font-weight: bold;
}

.breadcrumb__item:not(:last-child) {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.breadcrumb__item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(../img/icon_arrowGray.svg) no-repeat 0 center / contain;
}

.breadcrumb__link {
    display: inline-block;
}

@media screen and (min-width:1024px) {
    .breadcrumb__link {
        transition: all var(--rollOver_transition_time);
    }

    .breadcrumb__link:hover {
        text-decoration: underline;
    }
}

/* ページTOPへ戻るボタン */
.topBtn_wrap {
    margin-bottom: -10px;
    text-align: center;
}

@media screen and (min-width:1024px) {
    .topBtn_wrap {
        margin-bottom: -18px;
    }
}

@media screen and (min-width:1024px) {
    .topBtn {
        transition: opacity var(--rollOver_transition_time);
    }

    .topBtn:hover {
        opacity: 0.8;
    }
}

/* 下層ページ メインビジュアル */
.mv__photo {
    margin: 0 calc(50% - 50vw);
}

.mv__photo img {
    width: 100%;
}

@media screen and (min-width:1024px) {
    .mv__photo {
        margin: 0;
    }
}

/* 見出しタイトル */
.titleA {
    color: var(--color_primary_blue);
}

.titleA__text {
    display: block;
    margin-top: 12px;
    font-size: 20px;
    font-weight: bold;
    line-height: calc(24 / 20);
    text-align: center;
}

@media screen and (min-width:768px) {
    .titleA__text {
        margin-top: 23px;
    }
}

.titleB {
    font-size: 22px;
    font-weight: bold;
    line-height: calc(36 / 22);
    text-align: center;
    color: var(--color_primary_blue);
}

.titleB__title {
    display: inline-block;
    text-align: left;
}

@media screen and (min-width:1024px) {
    .titleB {
        font-size: 28px;
        line-height: 1;
    }
}

.titleC {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid var(--color_primary_blue);
}

.titleC::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(93 / 375 * 100vw);
    height: 4px;
    background-color: var(--color_primary_blue);
}

.titleC__title {
    display: inline-block;
    margin-bottom: 13px;
}

.titleC__text {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 12px;
}

@media screen and (min-width:1024px) {
    .titleC {
        font-size: 24px;
        line-height: calc(24 / 18);
    }

    .titleC--medium::after {
        width: calc(93 / 650 * 100%);
    }

    .titleC--large::after {
        width: calc(93 / 1200 * 100%);
    }

    .titleC__title {
        margin-bottom: 17px;
    }

    .titleC__text {
        font-size: 14px;
    }
}

/* エントリーボタン */
.btnA {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 21px;
    line-height: calc(20 / 16);
    border-radius: 9999px;
    font-weight: bold;
    color: var(--color_primary_white);
    background-color: var(--color_primary_blue);
}

.btnA::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 5px;
    height: 8px;
    transform: translateY(-50%);
    background: url(../img/icon_btnArrowWhite.svg) no-repeat 0 0 / contain;
}

@media screen and (min-width:1024px) {
    .btnA {
        transition: background var(--rollOver_transition_time);
    }

    .btnA:hover {
        background-color: var(--color_secondary_lightBlue);
    }
}

/* moreボタン */
.btnB {
    display: flex;
    align-items: center;
    margin: auto;
    text-align: center;
}

.btnB::after {
    content: "";
    display: block;
    flex-shrink: 0;
    background: url(../img/icon_moreBtnArrow.svg) no-repeat center / contain,
        url(../img/icon_moreBtnArrowBlue.svg) no-repeat center / 0 0;
}

.btnB__body {
    display: inline-block;
    flex-grow: 1;
    padding: 0 10px;
    border-radius: 9999px;
    color: var(--color_primary_white);
    background-color: var(--color_primary_blue);
    transition: background var(--rollOver_transition_time);
}

@media screen and (min-width:1024px) {
    .btnB:hover .btnB__body {
        background-color: var(--color_secondary_lightBlue);
    }

    .btnB::after {
        transition: background var(--rollOver_transition_time);
    }

    .btnB:hover::after {
        background-size: 0 0, contain;
    }
}

/* 汎用ボタン */
.btnC {
    display: block;
    padding: 9px;
    line-height: calc(24 / 16);
    font-weight: bold;
    color: var(--color_primary_blue);
    border: 1px solid var(--color_primary_blue);
}

.btnC__body {
    display: block;
    position: relative;
}

.btnC__body::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    width: 5px;
    height: 9px;
    background: url(../img/icon_btnArrowBlue.svg) no-repeat 0 0 / contain, url(../img/icon_btnArrowLightBlue.svg) no-repeat 0 0 / 0;
}

@media screen and (min-width:1024px) {
    .btnC {
        padding: 16px 12px;
        text-align: center;
        transition: all var(--rollOver_transition_time);
    }

    .btnC:hover {
        color: var(--color_secondary_lightBlue);
        border-color: var(--color_secondary_lightBlue);
    }

    .btnC__body::after {
        width: 7px;
        height: 11px;
        transition: background var(--rollOver_transition_time);
    }

    .btnC:hover .btnC__body::after {
        background-size: 0 0, contain;
    }
}

/* 新卒採用エントリーエリア */
.entry {
    padding: 31px 15px 46px;
    text-align: center;
    color: var(--color_primary_white);
    background-color: var(--color_secondary_lightBlue);
}

@media screen and (min-width:1024px) {
    .entry {
        padding: 36px 20px 52px;
    }
}

.entry__title {
    font-size: 20px;
    font-weight: bold;
    line-height: calc(26 / 20);
}

@media screen and (min-width:1024px) {
    .entry__title {
        font-size: 24px;
        line-height: calc(26 / 24);
    }
}

.entry__btn {
    margin: 28px auto 0;
    max-width: 300px;
    border-radius: 9999px;
    color: var(--color_secondary_lightBlue);
    background-color: var(--color_primary_white);
}

@media screen and (min-width:1024px) {
    .entry__btn {
        max-width: 400px;
    }
}

.entry__btnLink {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 73px;
    min-height: 48px;
    border-radius: inherit;
    font-size: 18px;
    font-weight: bold;
    line-height: calc(20 / 18);
}

@media screen and (min-width:1024px) {
    .entry__btnLink {
        min-height: 66px;
        padding: 19px 99px;
        font-size: 24px;
        line-height: calc(24 / 20);
    }
}

.entry__btnLink::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 8px;
    height: 12px;
    background: url(../img/icon_btnArrow.svg) no-repeat 0 0 / contain,
        url(../img/icon_btnArrowWhite.svg) no-repeat 0 0 / 0;
}

@media screen and (min-width:1024px) {
    .entry__btnLink {
        transition: all var(--rollOver_transition_time);
    }

    .entry__btnLink:hover {
        color: var(--color_primary_white);
        background-color: var(--color_quinary_lightBlue);
    }

    .entry__btnLink:hover::after {
        background-size: 0 0, contain;
    }
}

.entry__text {
    margin-top: 17px;
}

.entry__link {
    position: relative;
    display: inline-block;
}

.entry__link::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 5px;
    height: 8px;
    background: url(../img/icon_btnArrowWhite.svg) no-repeat 0 0 / contain;
}

@media screen and (min-width:1024px) {
    .entry__link {
        transition: opacity var(--rollOver_transition_time);
    }

    .entry__link:hover {
        opacity: 0.5;
    }
}

/* 汎用クラス
----------------------------------------- */
/* 横スクロール防止 */
.overflowX {
    overflow-x: hidden;
}

/* 特定のデバイスでは非表示 */
@media screen and (max-width: 767px) {
    .sp_hide {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .pc_hide {
        display: none;
    }
}

/* 横幅 */
@media screen and (max-width: 767px) {
    .sp_w75 {
        width: 75%;
    }
}

/* 中央揃え */
.tac {
    text-align: center;
}

/* カーソル無効化 */
.not_pointer {
    pointer-events: none;
}

/* 指定した位置で改行 */
.break {
    display: inline-block;
}

/* js アニメーション初期設定
----------------------------------------- */
[data-animation] {
    transition: all 1.3s;
}

[data-animation-state="is_hide"] {
    opacity: 0;
}

[data-animation="fadeIn"][data-animation-state="is_show"] {
    opacity: 1;
}