@charset "UTF-8";
/* 
本サイトにおける BEM の書式は以下の通り
.block {}
.block.--modifier {}
.block__element {}
.block__element.--modifier {}
.block__element.--css-property_css-value {} 
*/
/* ======================================== Common ======================================== */
/* ============================== html tags ============================== */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family:
        dnp-shuei-gothic-gin-std,
        system-ui, -apple-system, BlinkMacSystemFont,
        "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Yu Gothic UI", "Yu Gothic", "Meiryo",
        "Noto Sans CJK JP", Roboto,
        "Segoe UI", Arial, sans-serif;
    font-size: 62.5%;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    color: #222222;
    background-color: #f5f5f3;
}
* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
}
*::before, *::after {
    box-sizing: border-box;
    margin: 0; padding: 0;
}
:focus-visible {
    outline: 3px solid #2b6dff; /* お好みでブランド色に */
    outline-offset: 2px;
    /* outline: -webkit-focus-ring-color auto 0; */
}
body {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #222;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
h1, h2, h3, h4, h5, h6, p, span, a, button,
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, p span, a span, button span,
th, td, input, textarea,
input::placeholder, textarea::placeholder, *::before, *::after {
    letter-spacing: 0.05em;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, p span, a span, button span  {
    font: inherit;
    color: inherit;
}
p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
}
a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
a:focus-visible,
article:focus-visible {
    outline: unset;
}
a:-webkit-any-link:focus-visible {
    outline-offset: 0;
}
a:-webkit-any-link:focus-visible {
    outline-offset: unset;
}
button {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 0;
    font: inherit;
    color: inherit;
    background: transparent;
}
button:focus-visible {
    outline: 3px solid #2b6dff;
    outline-offset: 2px;
}
/* リスト */
ul, ol {
    padding: 0;
    margin: 0;
    list-style: none;
    caret-color: transparent;
}
/* テーブル */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
th, td {
    text-align: left;
}
/* フォーム */
button, input, select, textarea {
    font: inherit; color: inherit;
}
input,textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0;
    border: unset;
    border-width: 0;
    background-color: transparent;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: #222;
}
input[type="text" i] {
    padding: 0;
}
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
/* プレースホルダー（標準＋互換） */
::placeholder {
    font-family:
        dnp-shuei-gothic-gin-std,
        system-ui, -apple-system, BlinkMacSystemFont,
        "Hiragino Sans","Hiragino Kaku Gothic ProN",
        "Yu Gothic UI","Yu Gothic","Meiryo",
        "Noto Sans CJK JP", Roboto,
        "Segoe UI", Arial, sans-serif;
}
/* Chrome/Safari */
::-webkit-input-placeholder {
    font-family: inherit;
}
/* Firefox */
::-moz-placeholder {
    font-family: inherit;
}
/* 旧Edge/IE（必要なら） */
:-ms-input-placeholder {
    font-family: inherit;
}
select {
    appearance: none;         /* 標準 */
    -webkit-appearance: none; /* Safari/Chrome用 */
    -moz-appearance: none;    /* Firefox用 */
    border: none;
    background: none;         /* 必要なら背景も消す */
}
/* ============================== End html tags ============================== */
/* ============================== Utility Classes ============================== */
/* Display Utilities: Show/Hide on Devices */
/* 
- .pc / .tablet-sp:
- Default: .pc is visible, .tablet-sp is hidden.
- Below 1000px: .pc is hidden, .tablet-sp is visible.
*/
.pc {
    display: block;
}
.tablet-sp {
    display: none;
}
@media screen and (max-width: 1000px) {
    .pc {
        display: none !important;
    }
    .tablet-sp {
        display: block !important;
    }
}
/* 
- .pc-tablet / .sp:
- Default: .pc-tablet is visible, .sp is hidden.
- Below 750px: .pc-tablet is hidden, .sp is visible.
*/
.pc-tablet {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 750px) {
    .pc-tablet {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}
.display_inline-block {
    display: inline-block;
}
.width_0 {
    display: inline-block;
    width: 0;
}
/* color */
.color_white {
    color: #fff;
}
/* background-color */
.background-color_white {
    color: #fff;
}
/* ============================== End Utility Classes ============================== */
/* ============================== Helper Classes ============================== */
/* English Font Settings */
.en {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.img,
.video {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* Container Helper: Layout Width */
.wrapper {
	width: 68%;
    max-width: 130rem;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 89%;
    }
}
/* text */
.text {
    font-size: 1.8rem;
    line-height: 2;
}
@media screen and (max-width: 1000px) {
    .text {
        font-size: 1.6rem;
    }
}
.text + .text {
    margin-top: 3.5rem;
}
@media screen and (max-width: 1000px) {
    .text + .text {
        margin-top: 2.8rem;
    }
}
/* text-link */
.text-link {
    text-decoration: underline;
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .text-link:hover {
        opacity: .6;
    }
}
/* text-link */
.text-link {
    text-decoration: underline;
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .text-link:hover {
        opacity: .6;
    }
}
/* hover-animation opacity */
.hover-opacity {
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .hover-opacity:hover {
        opacity: .6;
    }
}
/* inview */
.inview {
    transform: translate(0, 5px);
    opacity: 0;
    transition: filter 1s, opacity 1s, transform 1s;
}
.inview.show {
    transform: translate(0, 0);
    opacity: 1.0;
}
/* ============================== End Helper Classes ============================== */
/* ============================== Common Component Classes ============================== */
/* ==================== header ==================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: end;
    width: 100%;
    height: auto;
}
.header.-scroll {}
.header__logo-wrap {
    position: fixed;
    top: 2rem;
    left: 1.5%;
    z-index: 10;
}
/* header-logo */
.header-logo {
    position: relative;
    width: 14rem;
    opacity: 1;
    transition: width .3s, opacity .3s;
}
@media (hover: hover) {
    .header-logo:hover {
        opacity: .7;
    }
}
.header.-scroll .header-logo {
    width: 8rem;
}
.header__right-area {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 3.4rem 2.7% 0 0;
}
.header__text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}
.header__nav-area {
    margin-top: 1.8rem;
}
.header-nav {}
.header-nav__list {
    display: flex;
    gap: 2rem;
}
.header-nav__link {
    padding: 0.3rem 1.8rem 0.4rem;
    border: 2px solid #222;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: transparent;
    transition: color .2s, background-color .2s;
}
@media (hover: hover) {
    .header-nav__link:hover {
        background-color: #222;
        color: #fff;
    }
}
/* -------------------- header responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .header {}
    .header__logo-wrap {
        top: 1rem;
        left: 2.7%;
    }
    /* header-logo */
    .header-logo {
        width: 10rem;
    }
    .header.-scroll .header-logo {
        width: 6rem;
    }
    .header__right-area {
        padding: 2rem 4.1% 0 0;
    }
    .header__text {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.2;
    }
    .header__nav-area {
        margin-top: 0;
    }
    .header-nav {}
    .header-nav__list {
        display: flex;
        gap: 2rem;
    }
    .header-nav__link {
        padding: 0.1rem 1.2rem 0.2rem;
        font-size: 1.2rem;
    }
}

/* ==================== End header ==================== */
/* ==================== footer ==================== */
.footer {
    position: relative;
    padding: 4.3rem 6.7% 6rem 3.5%;
}
.footer__links-area {
    display: flex;
    justify-content: end;
}
/* .footer__list {
    display: flex;
    flex-direction: column;
} */
.footer__item:not(:last-child) {
    margin-bottom: 0.2rem;
}
.footer__link {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.025em;
}
.footer__link > span {
    position: relative;
    display: inline-block;
    padding: 0.1rem 0.3rem;
    color: #222;
    background-color: #f5f5f3;
}
.footer__link > span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    transform: scale(0,1);
    transform-origin: right;
    width: 100%;
    height: 100%;
    background-color: #fff;
    mix-blend-mode: difference; /* difference（差分） */
    transition: transform 0.3s;
}
@media (hover: hover) {
    .footer__link:hover > span::before {
        transform-origin: left;
        transform: scale(1,1);
    }
}
.footer__link.with-icon-external::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 15px;
    height: 11px;
    margin-left: 0.8rem;
    background-image: url('/assets/img/common/icon-external-link.svg');
    background-size: 15px 11px;
    background-repeat: no-repeat;
}
.footer__copyright {
    padding-top: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.05em;
}
/* -------------------- footer responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .footer {
        padding: 3.2rem 5.5% 4rem;
    }
    .footer__links-area {
        justify-content: left;
        width: 100%;
    }
    .footer__link.--letter-spacing_0 {
        letter-spacing: 0;
    }
    .footer__copyright {
        padding-top: 4.5rem;
        text-align: center;
        font-size: 1rem;
    }
}
/* ==================== End footer ==================== */
/* ==================== Other Common Modules ==================== */
/* ========== common-cards ========== */
.common-cards {}
.common-cards__list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2.3%;
    padding: 0 2.7%;
}
.common-cards__item {
    width: calc((100% - 2.3% * 3) / 4);
}
.common-card {}
.common-card__img-link {
    display: block;
    opacity: 1;
    transition: opacity .3s;
}
.common-card__img-link:hover,
.common-card__img-link.is-hover {
    opacity: .6;
}
.common-card__body {
    margin-top: 1.7rem;
}
.common-card__title {
    font-size: 1.4rem;
    line-height: 1.57;
}
.common-card__title-link {
    display: inline-block;
}
.common-card__title-link span {
    position: relative;
    display: inline-block;
    padding: 0.2rem 0.3rem 0;
    color: #222;
    background-color: #f5f5f3;
}
.common-card__title-link span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    transform: scale(0, 1);
    transform-origin: right;
    width: 100%;
    height: 100%;
    background-color: #fff;
    mix-blend-mode: difference;
    transition: transform 0.3s;
}
.common-card__title-link:hover > span::before,
.common-card__title-link.is-hover > span::before {
    transform-origin: left;
    transform: scale(1,1);
}
.common-card__links-area {
    display: flex;
    justify-content: end;
    gap: 1.8rem;
    margin-top: 0.7rem;
}
.common-card__visit-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.common-card__visit-link-text {
    position: relative;
    display: inline-block;
    padding: 0 0.3rem;
    color: #222;
    background-color: #f5f5f3;
}
.common-card__visit-link .common-card__visit-link-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    transform: scale(0, 1);
    transform-origin: right;
    width: 100%;
    height: 100%;
    background-color: #fff;
    mix-blend-mode: difference;
    transition: transform 0.3s;
}
.common-card__visit-link:hover .common-card__visit-link-text::before,
.common-card__visit-link.is-hover .common-card__visit-link-text::before {
    transform-origin: left;
    transform: scale(1,1);
}
.common-card__icon-external {
    display: flex;
    align-items: center;
}
.common-card__icon-external svg {
    width: 1.5rem;
}
.common-card__detail-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.common-card__detail-link-text {
    position: relative;
    display: inline-block;
    padding: 0 0.3rem;
    color: #222;
    background-color: #f5f5f3;
}
.common-card__detail-link .common-card__detail-link-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    transform: scale(0, 1);
    transform-origin: right;
    width: 100%;
    height: 100%;
    background-color: #fff;
    mix-blend-mode: difference;
    transition: transform 0.3s;
}
.common-card__detail-link:hover .common-card__detail-link-text::before {
    transform-origin: left;
    transform: scale(1,1);
}
.common-card__icon-detail {
    display: flex;
    align-items: center;
}
.common-card__icon-detail svg {
    width: 2.1rem;
}
.js-common-card__img-link.is-hover,
.js-common-card__title-link.is-hover,
.js-common-card__visit-link.is-hover {
    /* 連動させたい hover 表現 */
    opacity: 0.7;
    /* color や border-color などもここに */
}

/* ---------- common-cards responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .common-cards {}
    .common-cards__list {
        gap: 2.5rem 2.3%;
        padding: 0 2.7%;
    }
    .common-cards__item {
        width: calc((100% - 2.3%) / 2);
    }
    .common-card {}
}
/* ---------- common-cards responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .common-cards {}
    .common-cards__list {
        padding: 0;
    }
    .common-cards__item {
        width: 100%;
    }
    .common-card {}
    .common-card__body {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 1.5rem;
        padding: 0 4% 0;
    }
    .common-card__title {
        margin-top: 0;
    }
    .common-card__links-area {
        margin-top: -2px;
    }
}


/* ========== End common-cards ========== */
/* ========== common-adv ========== */
.common-adv {
    padding: 6rem 0 0;
    background-color: #ddddda;
}
.common-adv__list {
    display: flex;
    justify-content: center;
    gap: 4.5%;
    margin: 0 auto;
}
.common-adv__item {
    width: fit-content;
    background: rgb(0, 0, 0, 0.05);
}
.common-adv__link {
    display: inline-block;
    width: 30rem;
}
.common-adv__text {
    padding: 4.2rem 0 0.7rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #9b9b9b;
}
/* ---------- common-adv responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .common-adv {
        padding: 4rem 0 0;
    }
    .common-adv__list {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    .common-adv__text {
        padding: 3.2rem 0 0.7rem;

    }
}
/* ========== End common-adv ========== */
/* ========== pagination ========== */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    font-family:
        dnp-shuei-gothic-gin-std,
        system-ui, -apple-system, BlinkMacSystemFont,
        "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Yu Gothic UI", "Yu Gothic", "Meiryo",
        "Noto Sans CJK JP", Roboto,
        "Segoe UI", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}
.page-numbers {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 2rem;
    padding-bottom: 19px;
    color: #aaaaaa;
    opacity: 1;
    transition: opacity .3s;
}
.page-numbers.current {
    color: #222;
    opacity: 1;
}
a.page-numbers:hover {
    opacity: 0.7;
}
span.page-numbers::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 22px;
    padding-top: 2px;
    border-radius: 1px;
    background-color: #222;
}
/* ----- pagination responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .pagination {
        gap: 3rem;
        font-size: 20px;
        line-height: 15px;
    }
    .page-numbers {
        padding-bottom: 10px;
    }
    span.page-numbers::before {
        width: 22px;
        padding-top: 2px;
        border-radius: 1px;
    }
}
/* ========== End pagination ========== */
/* ========== common-link ========== */
.common-link {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    width: 100%;
    max-width: 54.2rem;
    border-bottom: 2px solid #222;
}
.common-link__text {
    position: relative;
    margin-bottom: 0.7rem;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.025em;
}
.common-link__text.--icon-external-link::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 15px;
    height: 11px;
    margin: 0 0 3px 15px;
    background-image: url('/assets/img/common/icon-external-link.svg');
    background-size: 15px 11px;
    background-repeat: no-repeat;
}
.common-link__icon-detail {
    margin-bottom: 0.2rem;
}
.common-link__icon-detail svg {
    width: 4.1rem;
}
/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .common-link {}
    .common-link__text {
        margin-bottom: 0.7rem;
        font-size: 1.8rem;
    }
}
/* ========== End common-link ========== */
/* ========== common-first-view ========== */
.common-first-view {
    position: relative;
    padding: 25.5rem 0 5rem;
}
.common-first-view__img {
    position: absolute;
    top: 19rem;
    right: 0;
    z-index: -1;
    width: 36%;
}
/* ---------- common-first-view responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .common-first-view {
        padding: 17rem 0 2.8rem;
    }
    .common-first-view__img {
        top: 14rem;
        right: 0;
        width: 55%;
    }
}
/* ========== End common-first-view ========== */
/* ========== common-page-title ========== */
.common-page-title {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
}
/* ---------- common-page-title responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .common-page-title {
        font-size: 3rem;
    }
}
/* ========== End common-section-title ========== */
/* ========== common-section-title ========== */
.common-section-title {
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
}
/* ----- common-section-title responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .common-section-title {
        font-size: 2.1rem;
    }
}
/* ========== End common-section-title ========== */

/* ==================== End Other Common Modules ==================== */
/* ============================== End Common Component Classes ============================== */
/* ======================================== End Common ======================================== */
