@charset "UTF-8";

/*  variables
================================================ */
:root {
    --clrPrimary: #004950;
    --clrTxtDefault: #1f1f1f;
    --clrTxtSecondary: #505050;
    --clrTxtTertiary: #999999;
    --clrBorderPrimary: #dbdbdb;
    --clrBorderSecondary: #ededed;
    --clrBorderTertiary: #9fd4d9;
    --clrBackground: #f0f2f2;

    --fnt_en: elido, sans-serif;
}

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

/*  Global
---------------------------------------- */
html {
    overflow: auto;
    font-size: 62.5%;
}

html[lang="ja"] {
    word-break: break-word;
}

body {
    min-width: 320px;
    margin: 0;
    overflow: hidden;
    line-height: 1.6;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: kinto-sans, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
        "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
    font-feature-settings: "palt";
    color: var(--clrTxtDefault); /* Fixed by Kyoetsu */
}

/*  Code (Added by Kyoetsu)
---------------------------------------- */
/* code 要素共通 */
code {
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}

/* インラインコード用スタイル */
:not(pre) > code {
    padding: 0.2em 0.4em;
    font-size: 85%;
    overflow-wrap: break-word;
    background-color: #afb8c133; /* 半透明グレー */
    border-radius: 6px;
}

/* コードブロックの外枠 */
pre {
    overflow-x: auto;
    padding: 12px;
    background-color: #afb8c133; /* 半透明グレー */
    border-radius: 6px;
}

/* コードブロック内の文字設定 */
pre code {
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: normal;
}

/*  View
---------------------------------------- */
@media all and (min-width: 768px) {
    .body {
        min-width: auto;
        font-size: 1.6rem;
    }
}

/*  utility
================================================ */

/*  Layout (Added by Kyoetsu)
---------------------------------------- */
.u-noBreak {
    display: inline-block !important;
}

/*  Alignment (Added by Kyoetsu)
---------------------------------------- */
.u-textRight {
    text-align: right !important;
}

/*  Typography (Added by Kyoetsu)
---------------------------------------- */
.u-fontFeatNorm {
    font-feature-settings: normal !important;
}

/*  View
---------------------------------------- */
@media all and (min-width: 769px) {
    .u-viewSmall {
        display: none !important;
    }
}

@media all and (max-width: 768px) {
    .u-viewMedium {
        display: none !important;
    }

    .u-viewUpperMedium {
        display: none !important;
    }
}

@media all and (min-width: 1025px) {
    .u-viewMedium {
        display: none !important;
    }

    .u-viewUnderMedium {
        display: none !important;
    }
}

@media all and (max-width: 1024px) {
    .u-viewLarge {
        display: none !important;
    }
}

/*  component
================================================ */

/*  Containers (Added by Kyoetsu)
---------------------------------------- */
.c-infoBox {
    --c-infoBox-padding-left: 1em;
    width: fit-content;
    margin: 1em;
    border: 1px solid #b6dfe3;
    padding: 1em var(--c-infoBox-padding-left) 1em 1em;
}

.c-infoBox:has(> .c-descList) {
    --c-infoBox-padding-left: 2em;
}

.c-linkWrapper {
    display: inline-block;
    margin-left: 0.7em;
    font-size: 0.9em;
    color: var(--clrTxtSecondary);
}

/*  Description Lists (Added by Kyoetsu)
---------------------------------------- */
p + .c-descList {
    margin-top: 1em;
}

.c-descList__term:not(:first-of-type) {
    margin-top: 0.5em;
}

.c-descList__term {
    font-weight: bold;
}

.c-descList__desc {
    padding-left: 1em;
}

/*  Members (Added by Kyoetsu)
---------------------------------------- */
.c-memberGrid {
    display: grid;
    grid-template-columns: auto 1fr; /* 1列目の幅は中身に合わせ、2列目は残りを埋める */
}

.c-memberGrid__post {
    grid-column: 1;
    padding-right: 1em;
}

.c-memberGrid__name {
    grid-column: 2;
}

/*  Scrollshow
---------------------------------------- */
.c-scShow .c-scShow__row {
    display: block;
    overflow: hidden;
}

.c-scShow .c-scShow__text {
    display: inline-block;
    transform: translate3d(0, 100%, 0);
    transition: transform cubic-bezier(0.32, 1, 0.67, 1) 1.3s;
}

.c-scShow.-show .c-scShow__text {
    transform: translate3d(0, 0, 0);
}

.c-scShow.-block {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity ease 1.4s,
        transform cubic-bezier(0.32, 1, 0.67, 1) 1.4s;
}

.c-scShow.-block.-show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/*  Line
---------------------------------------- */
.c-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.c-line__item {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--clrBorderSecondary);
    transform-origin: top left;
    transition: transform cubic-bezier(0.32, 1, 0.67, 1) 2.8s 0.6s;
}

.c-line__item.-horizon {
    width: 100%;
    height: 1px;
    transform: scaleX(0);
}

.c-line__item.-vertical {
    width: 1px;
    height: 100%;
    transform: scaleY(0);
}

.c-line__item.-horizon.-bottom {
    top: auto;
    bottom: 0;
}

.c-line__item.-vertical.-right {
    left: auto;
    right: 0;
}

.-show .c-line__item {
    transform: scale(1);
}

/*  LinkIcon
---------------------------------------- */
.c-linkIcon {
    --c-linkIcon-margin-inline: 0.3em; /* Added by Kyoetsu */
    width: 12px;
    height: 10px;
    display: inline-block;
    margin-inline: var(--c-linkIcon-margin-inline); /* Added by Kyoetsu */
    background: url(../img/common/ico-link.svg) no-repeat center;
    background-size: contain;
}

/*  Text
---------------------------------------- */
.c-textEm {
    font-style: normal;
    color: var(--clrPrimary);
}

.c-textSmall {
    margin-top: 0.4em;
    display: inline-block;
    line-height: 1.5;
    font-size: 0.86em;
}

.c-textIndent {
    margin-left: 1.4em;
    text-indent: -1.4em;
}

.c-textGreen {
    color: var(--clrPrimary);
}

.c-textGray {
    color: var(--clrTxtTertiary);
}

.c-textAsterisk {
    color: #cb4e00;
}

/*  Button
---------------------------------------- */
.c-moreButton {
    margin-top: 15px;
    margin-left: -15px;
    padding: 6px 15px;
    display: inline-block;
    position: relative;
    line-height: 1.2;
    font-size: 1.3rem;
    font-family: var(--fnt_en);
    transition: color ease 0.4s;
}

a.c-moreButton:hover,
a:hover .c-moreButton {
    color: var(--clrPrimary);
}

.c-moreButton::before {
    content: "";
    width: 60px;
    height: 1px;
    margin-right: 15px;
    display: inline-block;
    position: relative;
    top: -1px;
    vertical-align: middle;
    background: var(--clrTxtDefault);
    transition:
        width cubic-bezier(0.32, 1, 0.67, 1) 0.8s,
        background ease 0.4s;
}

a.c-moreButton:hover::before,
a:hover .c-moreButton::before {
    width: 120px;
    background: var(--clrPrimary);
}

.c-moreButton .c-linkIcon {
    --c-linkIcon-margin-inline: 0.5em; /* Fixed by Kyoetsu */
}

.c-boxButton {
    padding: 20px 10px;
    display: block;
    position: relative;
    text-align: center;
    line-height: 1.2;
    font-size: 1.4rem;
    font-family: var(--fnt_en);
    border: 1px solid var(--clrTxtSecondary);
    transition:
        color ease 0.4s,
        border-color ease 0.4s;
}

.c-boxButton:hover {
    color: var(--clrPrimary);
    border-color: var(--clrPrimary);
}

.c-boxButton .c-linkIcon {
    --c-linkIcon-margin-inline: 0; /* Added by Kyoetsu */
    position: absolute;
    top: 8px;
    right: 8px;
    filter: grayscale(100%);
    transition: filter ease 0.4s;
}

.c-boxButton:hover .c-linkIcon {
    filter: grayscale(0%);
}

@media all and (min-width: 769px) {
    .c-moreButton {
        font-size: 1.4rem;
    }
}

@media all and (min-width: 1025px) {
    .c-moreButton {
        margin-top: 20px;
    }
}

@media all and (min-width: 1441px) {
    .c-moreButton {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
}

/*  Lists
---------------------------------------- */
/* Fixed by Kyoetsu */
.c-list {
    --c-list-line-height: 1.6;
    list-style: none;
}

/* Fixed by Kyoetsu */
.c-list li {
    position: relative;
    padding-left: 1em;
    line-height: var(--c-list-line-height);
}

/* Fixed by Kyoetsu */
.c-list li::before {
    content: "";
    position: absolute;
    top: calc(
        var(--c-list-line-height) * 1em / 2
    ); /* 1emを掛けて行の高さを算出し、2で割って中央に配置 */
    left: 0;
    translate: 0 -50%; /* マーカー自身の高さの半分だけ上にずらして中央に合わせる */
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
    background-color: var(--clrPrimary);
}

/*  Table
---------------------------------------- */
.c-table {
    width: 100%;
    table-layout: auto;
}

.c-table th,
.c-table td {
    padding: 20px;
    text-align: left;
    vertical-align: top;
    font-size: 1.5rem;
    border: 1px solid var(--clrBorderPrimary);
}

.c-table tr > *:first-child {
    border-left: none;
}

.c-table tr > *:last-child {
    border-right: none;
}

.c-table th {
    min-width: 80px;
    padding-right: 10px;
    letter-spacing: 0.09em;
    font-weight: bold;
    color: var(--clrPrimary);
}

.c-table td {
    color: var(--clrTxtSecondary);
}

.c-table td small {
    color: var(--clrTxtTertiary);
}

.c-table th.c-table__en {
    line-height: 0.9;
    letter-spacing: 0.04em;
    font-size: 2.4rem;
    font-weight: normal;
    font-family: var(--fnt_en);
}

.c-table__labelText {
    padding-left: 42px;
    position: relative;
}

.c-table__labelText:not(:first-child) {
    margin-top: 0.3em;
}

.c-table__label {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--clrTxtDefault);
}

@media all and (max-width: 1024px) {
    .c-table tr > *:first-child {
        padding-left: 0;
    }

    .c-table tr > *:last-child {
        padding-right: 0;
    }
}

@media all and (min-width: 1025px) {
    .c-table th,
    .c-table td {
        padding: 25px 30px;
    }

    .c-table__labelText {
        padding-left: 46px;
    }
}

@media all and (min-width: 1441px) {
    .c-table th,
    .c-table td {
        padding: 30px 40px;
    }

    .c-table th.c-table__en {
        line-height: 0.7;
        font-size: 3.2rem;
    }
}

/*  Form
---------------------------------------- */
.c-form {
    position: relative;
}

.c-form__box {
    width: calc(100% + 48px);
    padding: 60px 24px;
    position: relative;
    left: -24px;
    background: var(--clrBackground);
}

.c-form__row:not(:first-child) {
    margin-top: 32px;
}

.c-form-label {
    margin-bottom: 20px;
}

.c-form-label__text {
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.c-form-label__text .c-textAsterisk {
    margin-left: 0.6em;
}

.c-form-label.-privacy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-form-label .c-form__link {
    text-decoration: underline;
    line-height: 1.2;
    font-size: 1.3rem;
    color: var(--clrTxtSecondary);
}

.c-form-label .c-form__link:hover {
    text-decoration: none;
}

.c-form__input input[type="text"],
.c-form__input input[type="email"],
.c-form__textarea textarea {
    padding: 20px;
    line-height: 1.4;
    background: #fff;
}

.c-form__textarea textarea {
    min-height: 200px;
}

.c-form ::-webkit-input-placeholder {
    overflow: visible;
}

.c-form ::-moz-placeholder {
    overflow: visible;
}

.c-form :-ms-input-placeholder {
    overflow: visible;
}

.c-form :placeholder {
    overflow: visible;
}

.c-form .c-form__checkbox label {
    margin-left: -10px;
    padding: 10px;
    display: inline-block;
    line-height: 1.4;
    cursor: pointer;
}

.c-form .c-form__checkbox input[type="checkbox"] {
    display: none;
}

.c-form .c-form__checkbox input[type="checkbox"] + span {
    position: relative;
    display: inline-block;
    padding-left: 36px;
}

.c-form .c-form__checkbox input[type="checkbox"] + span::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
}

.c-form .c-form__checkbox input[type="checkbox"]:checked + span::after {
    content: "";
    width: 11px;
    height: 6px;
    position: absolute;
    left: 6px;
    top: calc(50% - 6px);
    border: solid var(--clrPrimary);
    border-width: 0 0 3px 3px;
    rotate: -45deg;
}

.c-form-continue {
    margin-top: 40px;
    text-align: center;
}

.c-form-continue button {
    width: auto;
    margin: 0 10px 20px;
    padding: 12px 0;
    display: inline-block;
    position: relative;
    line-height: 1.2;
    letter-spacing: 0.06em;
    font-size: 1.4rem;
    color: var(--clrTxtDefault);
    transition: color ease 0.4s;
}

.c-form-continue button:hover {
    color: var(--clrPrimary);
}

.c-form-continue button::before {
    content: "";
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clrTxtDefault);
    transition:
        background ease 0.4s,
        transform ease 0.4s;
}

.c-form-continue button:hover::before {
    transform: scaleX(0.6);
    background: var(--clrPrimary);
}

.c-form-continue button[name="submitBack"] {
    min-width: 40px;
}

.c-form-continue button[name="submit"] {
    min-width: 160px;
}

.mw_wp_form_preview .c-form .c-form-item {
    padding: 20px;
    background: var(--clrBorderSecondary);
}

.c-form .error {
    margin-top: 0.8em;
}

@media all and (min-width: 769px) {
    .c-form__box {
        width: auto;
        padding: 70px 24px;
        left: auto;
    }

    .c-form__row {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media all and (min-width: 1025px) {
    .c-form__box {
        padding: 80px 24px;
    }

    .c-form-continue button {
        font-size: 1.5rem;
    }
}

@media all and (min-width: 1441px) {
    .c-form__box {
        padding: 100px 20px;
    }

    .c-form-continue button {
        padding: 14px 0;
    }
}

/*  Section
---------------------------------------- */
.c-section {
    padding: 65px 0;
    position: relative;
}

.c-section.-gray::before {
    content: "";
    width: 100vw;
    position: absolute;
    top: -1px;
    bottom: -1px;
    right: 0;
    z-index: -1;
    background: url(../img/common/bg-noise.png) repeat-y center;
    background-size: 100% auto;
}

.c-section__inner {
    width: min(100%, 1080px);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.c-section__head {
    margin-bottom: 35px;
    text-align: center;
}

.c-section__head.-alignleft {
    text-align: left;
}

.c-section__title {
    margin-bottom: 1em;
    line-height: 1.25;
    font-size: 5rem;
    font-weight: normal;
    font-family: var(--fnt_en);
}

.c-section__titleSub {
    line-height: 1.2;
    font-size: 1.3rem;
    font-weight: normal;
    font-family: var(--fnt_en);
}

.c-section__titleJp {
    margin-top: 0.3em;
    line-height: 1.5;
    letter-spacing: 0.09em;
    font-size: 3.2rem;
    font-weight: bold;
}

.c-section__body {
    position: relative;
}

.c-section__body-text {
    margin-bottom: 1.3em;
    line-height: 1.7;
    font-size: 1.5rem;
    color: var(--clrTxtSecondary);
}

@media all and (min-width: 426px) {
    .c-section {
        padding: 80px 0;
    }

    .c-section__inner {
        width: min(94%, 1080px);
    }
}

@media all and (min-width: 769px) {
    .c-section {
        padding: 100px 0;
    }

    .c-section__head {
        margin-bottom: 40px;
    }

    .c-section__titleSub {
        display: inline-block;
        vertical-align: middle;
    }

    .c-section__titleJp {
        margin-top: 0;
        margin-left: 1em;
        display: inline-block;
        vertical-align: middle;
    }

    .c-columnSection {
        display: flex;
    }

    .c-columnSection .c-section__head {
        width: 140px;
        margin-bottom: 0;
        text-align: left;
    }

    .c-columnSection .c-section__body {
        width: calc(100% - 140px);
    }
}

@media all and (min-width: 1025px) {
    .c-section {
        padding: 140px 0;
    }

    .c-section__inner {
        width: min(90%, 1080px);
    }

    .c-section__inner.-narrow {
        max-width: calc(840px + 48px);
    }

    .c-section__head {
        margin-bottom: 50px;
    }

    .c-columnSection .c-section__head {
        width: 200px;
    }

    .c-columnSection .c-section__body {
        width: calc(100% - 200px);
    }

    .c-section__body-text {
        margin-bottom: 2.2em;
    }
}

@media all and (min-width: 1441px) {
    .c-section {
        padding: 200px 0;
    }

    .c-section__inner {
        width: min(86%, 1320px);
        padding: 0 20px;
    }

    .c-section__inner.-narrow {
        max-width: calc(840px + 40px);
    }

    .c-section__head {
        margin-bottom: 80px;
    }

    .c-section__title {
        font-size: 8rem;
    }

    .c-section__titleSub {
        font-size: 1.5rem;
    }

    .c-section__titleJp {
        font-size: 4rem;
    }

    .c-columnSection .c-section__head {
        width: 220px;
    }

    .c-columnSection .c-section__body {
        width: calc(100% - 220px);
    }

    .c-section__body-text {
        margin-bottom: 3.3em;
    }
}

/*  RecruitCv
---------------------------------------- */
.c-recruitCv {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.c-recruitCv .c-section__inner {
    display: block;
}

.c-recruitCv__image {
    margin: -20px auto 30px 0;
    transition: opacity ease 0.4s;
}

a:hover .c-recruitCv__image {
    opacity: 0.8;
}

@media all and (min-width: 769px) {
    .c-recruitCv {
        padding: 0;
    }

    .c-recruitCv-content {
        width: 60%;
        min-height: 500px;
        display: flex;
        align-items: center;
    }

    .c-recruitCv-content .c-line {
        left: 60%;
    }

    .c-recruitCv-content__inner {
        padding: 60px 20px 60px 0;
    }

    .c-recruitCv__image {
        width: 40%;
        margin: 0;
        padding-left: 3%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}

@media all and (min-width: 1025px) {
    .c-recruitCv-content {
        width: 50%;
        min-height: 640px;
    }

    .c-recruitCv-content .c-line {
        left: 50%;
    }

    .c-recruitCv__image {
        width: 50%;
        padding-left: 40px;
        right: -20px;
    }
}

@media all and (min-width: 1441px) {
    .c-recruitCv-content {
        min-height: 820px;
    }

    .c-recruitCv__image {
        right: -60px;
    }
}

/*  Content
---------------------------------------- */
.c-content__read {
    margin-bottom: 0.6em;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.09em;
    font-size: 2.8rem;
    font-weight: bold;
}

.c-content__read.-alignLeft {
    text-align: left;
}

.c-content__read.-large {
    margin-bottom: 1em;
}

.c-content__read.-large .c-content__title {
    font-size: 3rem;
}

.c-content__title:not(:first-child) {
    margin-top: 0.3em;
}

.c-content__copy .c-content__text {
    margin-top: 1.2em;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--clrTxtSecondary);
}

.c-content__copy .c-content__secondaryTitle {
    line-height: 1.5;
    letter-spacing: 0.09em;
    font-weight: bold;
    font-size: 2.2rem;
}

@media all and (min-width: 426px) {
    .c-content__read.-large .c-content__title {
        font-size: 3.2rem;
    }
}

@media all and (min-width: 769px) {
    .c-content__title {
        text-align: left;
    }

    .c-content__title:not(:first-child) {
        margin-top: 0.1em;
    }
}

@media all and (min-width: 1025px) {
    .c-columnContent {
        display: flex;
        align-items: center;
    }

    .c-columnContent__view {
        width: 36%;
    }

    .c-columnContent__content {
        width: 64%;
        padding-left: 5%;
    }
}

@media all and (min-width: 1441px) {
    .c-content__title {
        font-size: 3.5rem;
    }

    .c-content__read {
        margin-bottom: 1.2em;
    }

    .c-content__read.-large {
        margin-bottom: 1.4em;
    }

    .c-content__read.-large .c-content__title {
        font-size: 4rem;
    }

    .c-content__copy.-large .c-content__text {
        font-size: 1.7rem;
    }

    .c-content__copy .c-content__secondaryTitle {
        font-size: 2.4rem;
    }

    .c-columnContent__view {
        width: 40%;
    }

    .c-columnContent__content {
        width: 60%;
        padding-left: 100px;
    }
}

/*  Breadcrumb
---------------------------------------- */
.c-breadcrumb__list {
    display: flex;
}

.c-breadcrumb__item {
    line-height: 1.2;
    font-size: 1.3rem;
    font-family: var(--fnt_en);
}

.c-breadcrumb__item:not(:first-child) {
    margin-left: 30px;
    position: relative;
}

.c-breadcrumb__item:not(:first-child)::before {
    content: "";
    width: 20px;
    height: 1px;
    display: block;
    position: absolute;
    top: 50%;
    right: 100%;
    background: var(--clrBorderPrimary);
}

.c-breadcrumb__item .c-breadcrumb__text {
    margin-right: -10px;
    padding: 5px 10px;
    display: inline-block;
    color: var(--clrTxtTertiary);
}

.c-breadcrumb__item a.c-breadcrumb__text {
    color: var(--clrTxtDefault);
    transition: color ease 0.4s;
}

.c-breadcrumb__item a.c-breadcrumb__text:hover {
    color: var(--clrPrimary);
}

/*  Hero
---------------------------------------- */
.c-hero {
    padding-top: 90px;
    position: relative;
}

.c-hero__inner {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.c-hero-header {
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.c-hero-header__ja {
    line-height: 1.2;
    font-size: 1.5rem;
    color: var(--clrPrimary);
}

.c-hero-content__en {
    padding: 1.6em 0 2.2em;
    line-height: 1.2;
    font-size: 5rem;
    font-weight: normal;
    font-family: var(--fnt_en);
}

@media all and (min-width: 426px) {
    .c-hero__inner {
        width: min(94%, 1080px);
    }

    .c-hero-content__en {
        font-size: 5.4rem;
    }
}

@media all and (min-width: 769px) {
    .c-hero-content__en {
        font-size: 6.2rem;
    }
}

@media all and (min-width: 1025px) {
    .c-hero {
        padding-top: 80px;
    }

    .c-hero__inner {
        width: min(90%, 1080px);
    }

    .c-hero-content__en {
        padding: 2em 0 2.6em;
        font-size: 7.2rem;
    }
}

@media all and (min-width: 1441px) {
    .c-hero {
        padding-top: 100px;
    }

    .c-hero__inner {
        width: min(86%, 1320px);
        padding: 0 20px;
    }

    .c-hero-header__ja {
        font-size: 1.6rem;
    }

    .c-hero-content__en {
        font-size: 11rem;
    }
}

/*  Block - common
---------------------------------------- */
.c-block-item__link {
    display: block;
}

.c-block-item__viewer {
    overflow: hidden;
}

.c-block-item__viewer img {
    display: block;
    transition: transform cubic-bezier(0.32, 1, 0.67, 1) 1.2s;
}

.c-block-item__link:hover .c-block-item__viewer img {
    transform: scale(1.1);
}

.c-block-item__tag {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 1.3rem;
    color: var(--clrPrimary);
}

.c-block-item__content {
    margin-top: 24px;
}

.c-block-item__title {
    margin-bottom: 0.4em;
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-size: 2.2rem;
}

.c-block-item__text {
    letter-spacing: 0.09em;
    font-size: 1.5rem;
    color: var(--clrTxtSecondary);
}

.c-block-item__text a {
    text-decoration: underline;
    color: var(--clrPrimary);
}

.c-block-item__text a:hover {
    text-decoration: none;
}

@media all and (min-width: 769px) {
    .c-block-item__content {
        margin-top: 30px;
    }
}

@media all and (min-width: 1025px) {
    .c-block-item__tag {
        margin-bottom: 15px;
    }
}

@media all and (min-width: 1441px) {
    .c-block-item__tag {
        font-size: 1.3rem;
    }

    .c-block-item__title {
        font-size: 2.8rem;
    }
}

/*  Block - gridBlocks
---------------------------------------- */
.c-gridBlocks {
    position: relative;
}

.c-gridBlocks .c-block-item {
    max-width: 480px;
}

.c-gridBlocks .c-block-item:not(:first-child) {
    margin-top: 60px;
}

.c-gridBlocks .c-block-item:nth-child(odd) {
    margin-right: auto;
}

.c-gridBlocks .c-block-item:nth-child(even) {
    margin-left: auto;
}

.c-gridBlocks .c-block-item:nth-child(odd) .c-block-item__image .c-block-item__viewer {
    width: calc(100% + 24px);
    margin-left: -24px;
    margin-right: auto;
}

.c-gridBlocks .c-block-item:nth-child(even) .c-block-item__image .c-block-item__viewer {
    width: calc(100% + 24px);
    margin-left: auto;
    margin-right: -24px;
}

@media all and (min-width: 426px) {
    .c-gridBlocks .c-block-item:nth-child(odd) .c-block-item__image .c-block-item__viewer {
        width: calc(100% + (24px + 3vw));
        margin-left: calc(-24px - 3vw);
    }

    .c-gridBlocks .c-block-item:nth-child(even) .c-block-item__image .c-block-item__viewer {
        width: calc(100% + (24px + 3vw));
        margin-right: calc(-24px - 3vw);
    }
}

@media all and (min-width: 769px) {
    .c-gridBlocks {
        width: calc(100% + 40px);
        padding-top: 30px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        align-items: flex-start;
        position: relative;
        left: -20px;
    }

    .c-gridBlocks .c-block-item {
        width: 50%;
        max-width: none;
        padding: 0 20px;
    }

    .c-gridBlocks .c-block-item:not(:last-child) {
        margin-bottom: 80px;
    }

    .c-gridBlocks .c-block-item:not(:first-child) {
        margin-top: 0;
    }

    .c-gridBlocks .c-block-item:nth-child(odd) {
        margin-top: -160px;
    }

    .c-gridBlocks .c-block-item.-large + .c-block-item.-large {
        margin-top: -320px;
    }

    .c-gridBlocks .c-block-item:nth-child(odd) .c-block-item__image .c-block-item__viewer {
        width: 100%;
        margin-left: auto;
    }

    .c-gridBlocks .c-block-item:nth-child(even) .c-block-item__image .c-block-item__viewer {
        width: 100%;
        margin-right: auto;
    }
}

@media all and (min-width: 1025px) {
    .c-gridBlocks {
        width: calc(100% + 60px);
        padding: 0 30px;
        left: -30px;
    }

    .c-gridBlocks .c-block-item {
        padding: 0 30px;
    }

    .c-gridBlocks .c-block-item.-large + .c-block-item.-large {
        margin-top: -360px;
    }

    .c-gridBlocks .c-block-item.-large:nth-child(odd) {
        padding-right: 0;
    }

    .c-gridBlocks .c-block-item.-large:nth-child(even) {
        padding-left: 0;
    }
}

@media all and (min-width: 1441px) {
    .c-gridBlocks {
        width: calc(100% + 80px);
        padding: 0;
        left: -40px;
    }

    .c-gridBlocks .c-block-item {
        padding: 0 40px;
    }

    .c-gridBlocks .c-block-item:not(:last-child) {
        margin-bottom: 140px;
    }

    .c-gridBlocks .c-block-item:nth-child(odd) {
        margin-top: -260px;
    }

    .c-gridBlocks .c-block-item.-large + .c-block-item.-large {
        margin-top: -580px;
    }

    .c-gridBlocks .c-block-item__content {
        margin-top: 40px;
    }

    .c-gridBlocks .c-block-item__title {
        font-size: 2.4rem;
    }
}

@media all and (min-width: 1920px) {
    .c-gridBlocks {
        width: calc(100% + 160px);
        left: -80px;
    }

    .c-gridBlocks .c-block-item {
        padding: 0 80px;
    }
}

/*  Block - rowBlocks
---------------------------------------- */
.c-rowBlocks {
    margin-top: -60px;
    position: relative;
}

.c-rowBlocks .c-block-item {
    padding-top: 60px;
}

.c-rowBlocks .c-block-item__title {
    margin-bottom: 0.8em;
}

.c-rowBlocks__buttons {
    width: calc(100% + 4px);
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    left: -2px;
}

.c-rowBlocks__buttons .c-boxButton {
    width: calc(50% - 4px);
    margin: 2px;
}

@media all and (min-width: 769px) {
    .c-rowBlocks .c-rowBlocks__column {
        display: flex;
        align-items: center;
    }

    .c-rowBlocks .c-block-item__image {
        width: 50%;
        padding-right: 20px;
    }

    .c-rowBlocks .c-block-item__content {
        width: 50%;
        margin-top: 0;
        padding-left: 20px;
    }

    .c-rowBlocks .c-rowBlocks__column.-rev {
        flex-direction: row-reverse;
    }

    .c-rowBlocks .c-rowBlocks__column.-rev .c-block-item__image {
        padding-left: 20px;
        padding-right: 0;
    }

    .c-rowBlocks .c-rowBlocks__column.-rev .c-block-item__content {
        padding-left: 0;
        padding-right: 20px;
    }
}

@media all and (min-width: 1025px) {
    .c-rowBlocks .c-block-item__image {
        padding-right: 40px;
    }

    .c-rowBlocks .c-rowBlocks__column.-rev .c-block-item__image {
        padding-left: 40px;
    }
}

@media all and (min-width: 1441px) {
    .c-rowBlocks .c-block-item:not(:first-child) {
        margin-top: 70px;
    }

    .c-rowBlocks .c-block-item__image {
        padding-right: 60px;
    }

    .c-rowBlocks .c-rowBlocks__column.-rev .c-block-item__image {
        padding-left: 60px;
    }

    .c-rowBlocks .c-block-item__title {
        margin-bottom: 1em;
    }

    .c-rowBlocks__buttons {
        width: calc(100% + 8px);
        margin-top: 30px;
        left: -4px;
    }

    .c-rowBlocks__buttons .c-boxButton {
        width: calc((100% / 3) - 8px);
        margin: 4px;
    }
}

@media all and (min-width: 1920px) {
    .c-rowBlocks .c-block-item__image {
        padding-right: 80px;
    }

    .c-rowBlocks .c-rowBlocks__column.-rev .c-block-item__image {
        padding-left: 80px;
    }
}

/*  Block - otherBlocks
---------------------------------------- */
.c-otherBlocks {
    position: relative;
}

.c-otherBlocks .c-line__item {
    background: var(--clrBorderPrimary);
}

.c-otherBlocks .c-block-item__tag {
    margin-bottom: 0;
    padding-bottom: 10px;
    position: relative;
}

.c-otherBlocks .c-otherBlocks__column {
    padding-bottom: 1px;
}

.c-otherBlocks .c-block-item {
    margin: 24px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.c-otherBlocks .c-block-item:not(:first-child) {
    padding-top: 24px;
}

.c-otherBlocks .c-block-item__image {
    width: 110px;
}

.c-otherBlocks .c-block-item__content {
    width: calc(100% - 110px);
    margin-top: 0;
    padding-left: 24px;
}

.c-otherBlocks .c-block-item__title {
    margin-bottom: 0.2em;
    font-size: 2rem;
}

.c-otherBlocks .c-block-item__text {
    font-size: 1.4rem;
}

@media all and (min-width: 769px) {
    .c-otherBlocks .c-block-item {
        margin: 35px 0;
    }

    .c-otherBlocks .c-block-item:not(:first-child) {
        padding-top: 35px;
    }

    .c-otherBlocks .c-block-item__image {
        width: 160px;
    }

    .c-otherBlocks .c-block-item__content {
        width: calc(100% - 160px);
    }
}

@media all and (min-width: 1025px) {
    .c-otherBlocks .c-otherBlocks__column {
        padding-bottom: 0;
        display: flex;
        align-items: center;
    }

    .c-otherBlocks .c-block-item {
        width: 50%;
        position: relative;
    }

    .c-otherBlocks .c-block-item:not(:first-child) {
        padding-top: 0;
        border-top: none;
    }

    .c-otherBlocks .c-block-item:nth-child(odd) {
        padding-right: 30px;
    }

    .c-otherBlocks .c-block-item:nth-child(even) {
        padding-left: 30px;
    }

    .c-otherBlocks .c-block-item__content {
        padding-left: 30px;
    }
}

@media all and (min-width: 1441px) {
    .c-otherBlocks .c-block-item {
        margin: 55px 0;
    }

    .c-otherBlocks .c-block-item:nth-child(odd) {
        padding-right: 50px;
    }

    .c-otherBlocks .c-block-item:nth-child(even) {
        padding-left: 50px;
    }

    .c-otherBlocks .c-block-item__image {
        width: 220px;
    }

    .c-otherBlocks .c-block-item__content {
        width: calc(100% - 180px);
        padding-left: 50px;
    }

    .c-otherBlocks .c-block-item__title {
        font-size: 2.2rem;
    }

    .c-otherBlocks .c-block-item__text {
        font-size: 1.5rem;
    }
}

/*  BlockLink
---------------------------------------- */
.c-blockLink {
    padding-top: 5px;
}

.c-blockLink__link {
    padding: 50px 30px;
    display: block;
    position: relative;
    background: #fff;
    border: 1px solid var(--clrBorderPrimary);
    transition:
        color ease 0.4s,
        border-color ease 0.4s;
}

.c-blockLink__link.-current {
    pointer-events: none;
    color: var(--clrTxtTertiary);
}

.c-blockLink__link:hover {
    color: var(--clrPrimary);
    border-color: var(--clrPrimary);
}

.c-blockLink__link:not(:first-child) {
    margin-top: 5px;
}

.c-blockLink__link::before {
    content: "";
    width: 40px;
    position: absolute;
    top: 50%;
    right: 0;
    border-top: 1px solid var(--clrBorderPrimary);
    transform-origin: right;
    transition:
        border-color ease 0.4s,
        transform ease 0.4s;
}

.c-blockLink__link:hover::before {
    border-top-color: var(--clrPrimary);
    transform: scaleX(200%);
}

.c-blockLink__inner {
    height: 100%;
    position: relative;
}

.c-blockLink__text {
    top: 0;
    left: 0;
    transition: opacity ease 0.6s;
}

.c-blockLink__text:not(.-viewMore) {
    position: relative;
}

.c-blockLink__text.-viewMore {
    position: absolute;
    opacity: 0;
}

.c-blockLink__ja {
    margin-bottom: 0.6em;
    line-height: 1.2;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
    color: var(--clrTxtSecondary);
    transition: color ease 0.4s;
}

.c-blockLink__link:hover .c-blockLink__ja {
    color: var(--clrPrimary);
}

.c-blockLink__link.-current .c-blockLink__ja {
    color: var(--clrTxtTertiary);
}

.c-blockLink__en {
    line-height: 1.2;
    font-size: 2.2rem;
    font-family: var(--fnt_en);
}

@media all and (min-width: 769px) {
    .c-blockLink__text {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
    }

    .c-blockLink__ja {
        margin-bottom: 0;
        margin-left: 32px;
    }

    .c-blockLink__en {
        white-space: nowrap;
    }

    .c-blockLink__link:hover .c-blockLink__text:not(.-viewMore) {
        position: absolute;
        opacity: 0;
    }

    .c-blockLink__link:hover .c-blockLink__text.-viewMore {
        position: relative;
        opacity: 1;
    }
}

@media all and (min-width: 1025px) {
    .c-blockLink__link:not(:first-child) {
        margin-top: 8px;
    }

    .c-blockLink__link {
        padding: 60px 40px;
    }

    .c-blockLink__link::before {
        width: 60px;
    }

    .c-blockLink__en,
    .c-blockLink__en::before {
        font-size: 2.8rem;
    }
}

@media all and (min-width: 1441px) {
    .c-blockLink__link {
        padding: 86px 50px;
    }

    .c-blockLink__link::before {
        width: 100px;
    }

    .c-blockLink__ja {
        font-size: 1.4rem;
    }

    .c-blockLink__en,
    .c-blockLink__en::before {
        font-size: 3.5rem;
    }
}

/*  Posts
---------------------------------------- */
.c-posts {
    position: relative;
}

.c-categories {
    margin-bottom: 15px;
}

.c-categories__item {
    margin-left: -10px;
    margin-right: 10px;
    padding: 10px;
    display: inline-block;
    line-height: 1.2;
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--clrTxtTertiary);
    transition: color ease 0.4s;
}

.c-categories__item:hover,
.c-categories__item.-current {
    color: var(--clrPrimary);
}

.c-posts-list {
    margin-bottom: 20px;
    position: relative;
}

.c-posts-item {
    position: relative;
}

.c-posts-item__link {
    padding: 30px 0;
    display: block;
    text-decoration: none;
    transition: color ease 0.4s;
}

.c-posts-item__link:hover {
    color: var(--clrPrimary);
}

/* Fixed by Kyoetsu */
.c-posts-item-head {
    display: grid;
    grid-template-columns: auto 1fr; /* 1列目の幅は中身に合わせ、2列目は残りを埋める */
    align-items: center;
    column-gap: 1em;
    line-height: 1.4;
    font-size: 1.3rem;
    font-family: var(--fnt_en);
    color: var(--clrTxtSecondary);
    transition: color ease 0.4s;
}

.c-posts-item__link:hover .c-posts-item-head {
    color: var(--clrPrimary);
}

/* Fixed by Kyoetsu */
.c-posts-item__time {
    grid-column: 1;
}

/* Added by Kyoetsu */
.c-posts-item__categories {
    grid-column: 2;
    padding-right: 1em;
}

/* Fixed by Kyoetsu */
.c-posts-item__title {
    margin-top: 10px;
    overflow: hidden;
    letter-spacing: 0.04em;
    font-size: 1.5rem;
    font-weight: normal;
    /* line-clamp非対応ブラウザ用 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    /* line-clamp対応ブラウザ用 */
    line-clamp: 2; /* 2行まで表示 */
}

.c-paging {
    margin-top: 40px;
    text-align: center;
    font-size: 0;
}

.c-paging__item {
    margin: 0 2px 4px;
    display: inline-block;
    vertical-align: bottom;
    line-height: 1.2;
    font-size: 1.4rem;
    font-family: var(--fnt_en);
}

.c-paging__item .page-numbers {
    display: block;
}

.c-paging__item .page-numbers:not(.dots) {
    padding: 10px 16px;
}

.c-paging__item .current,
.c-paging__item a:hover {
    border-bottom: 1px solid var(--clrTxtDefault);
}

.c-paging__item .dots {
    padding: 0 4px 0.7em;
}

.c-paging__item .c-paging__arrow {
    width: 6px;
    height: 12px;
    display: block;
    background: no-repeat center;
    background-size: contain;
}

.c-paging__item .c-paging__arrow.-left {
    background-image: url(../img/common/ico-paging_arrow-left.svg);
}

.c-paging__item .c-paging__arrow.-right {
    background-image: url(../img/common/ico-paging_arrow-right.svg);
}

@media all and (min-width: 1025px) {
    .c-categories {
        margin-bottom: 40px;
    }

    .c-posts-list {
        margin-bottom: 40px;
    }

    .c-posts-item__link {
        padding: 40px 0;
        display: flex;
        align-items: center;
    }

    /* Fixed by Kyoetsu */
    .c-posts-item-head {
        grid-template-columns: 160px 1fr; /* 1列目の幅は絶対値指定、2列目は残りを埋める */
        width: 300px;
    }

    /* Disabled by Kyoetsu */
    /* .c-posts-item__time {
        width: 160px;
    } */

    /* Fixed by Kyoetsu */
    .c-posts-item__title {
        width: calc(100% - 300px);
        margin-top: 0;
        /* line-clamp非対応ブラウザ用 */
        -webkit-line-clamp: 3;
        /* line-clamp対応ブラウザ用 */
        line-clamp: 3; /* 3行まで表示 */
    }
}

@media all and (min-width: 1441px) {
    .c-categories {
        margin-bottom: 70px;
    }

    .c-categories__item {
        font-size: 1.6rem;
    }

    .c-posts-list {
        margin-bottom: 50px;
    }

    .c-posts-item__link {
        padding: 50px 0;
    }

    .c-posts-item-head {
        font-size: 1.5rem;
    }

    .c-paging {
        margin-top: 60px;
    }

    .c-paging__item {
        font-size: 1.5rem;
    }

    .c-paging__item .page-numbers:not(.dots) {
        padding: 14px 16px;
    }

    .c-paging__item .c-paging__arrow {
        width: 7px;
        height: 14px;
    }
}

/*  AutoScroller
---------------------------------------- */
.c-autoScroller {
    position: relative;
    overflow: hidden;
}

.c-autoScroller__list {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    animation: autoScroller 50s linear infinite;
}

.c-autoScroller__item {
    height: 100%;
    padding: 25px 0;
    display: flex;
    word-break: keep-all;
    line-height: 1;
    font-size: 3.2rem;
    font-weight: normal;
    font-family: var(--fnt_en);
    color: var(--clrBackground);
}

.c-autoScroller__item span {
    width: auto;
    padding-right: 50px;
    display: block;
    position: relative;
}

.c-autoScroller__item span::after {
    content: "";
    width: 20px;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    right: 15px;
    background: var(--clrBackground);
}

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

@media all and (min-width: 426px) {
    .c-autoScroller__item {
        font-size: 3.8rem;
    }
}

@media all and (min-width: 769px) {
    .c-autoScroller__item {
        font-size: 4.2rem;
    }
}

@media all and (min-width: 1025px) {
    .c-autoScroller__item {
        font-size: 5rem;
    }
}

@media all and (min-width: 1441px) {
    .c-autoScroller__item {
        font-size: 6rem;
    }

    .c-autoScroller__item span {
        padding-right: 100px;
    }

    .c-autoScroller__item span::after {
        width: 40px;
        right: 30px;
    }
}

/*  layout
================================================ */

/*  Wrapper
---------------------------------------- */
.l-wrapper {
    position: relative;
}

@media all and (min-width: 1025px) {
    .l-wrapper {
        padding-left: 200px;
    }
}

@media all and (min-width: 1441px) {
    .l-wrapper {
        padding-left: 280px;
    }
}

/*  Header
---------------------------------------- */
.l-header {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.l-header .l-header-logo {
    position: relative;
    z-index: 1;
    font-size: 0;
}

.l-header .l-header-logo a {
    padding: 20px 24px;
    display: inline-block;
    transition: opacity ease 0.4s;
}

.l-header .l-header-logo a:hover {
    opacity: 0.7;
}

.l-header .l-header-logo img {
    width: auto;
    height: 16px;
    display: block;
}

.l-header .l-hamburger {
    width: 70px;
    height: 56px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
}

.l-header .l-hamburger__line {
    width: 24px;
    height: 18px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.l-header .l-hamburger__line span {
    height: 2px;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clrTxtDefault);
    transition:
        background ease 0.4s,
        transform ease 0.4s;
}

.l-header .l-hamburger__line span:nth-child(1) {
    transform: translate3d(0, -8px, 0);
}

.l-header .l-hamburger__line span:nth-child(3) {
    transform: translate3d(0, 8px, 0);
}

.l-header.-menuOpen .l-hamburger__line span:nth-child(1) {
    transform: rotate(45deg) translate3d(0, 0, 0);
    transform-origin: center;
}

.l-header.-menuOpen .l-hamburger__line span:nth-child(2) {
    transform: scale3d(0, 1, 1);
    transition-duration: 0.2s;
}

.l-header.-menuOpen .l-hamburger__line span:nth-child(3) {
    transform: rotate(-45deg) translate3d(0, 0, 0);
    transform-origin: center;
}

.l-nav {
    height: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    background: #fff;
    opacity: 0;
    transition:
        height 0s 0.6s,
        opacity ease 0.5s;
}

.l-header.-menuOpen .l-nav {
    height: 100%;
    opacity: 1;
    transition-delay: 0s, 0.1s;
}

.l-nav .l-nav__inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 130px 40px 80px;
}

.l-nav .l-nav-list {
    height: calc(100% + 1px);
}

.l-nav .l-nav-list__item {
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.l-nav .l-nav-list__link {
    margin-left: -20px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    transition: color ease 0.4s;
}

.l-nav .l-nav-list__link:hover {
    color: var(--clrPrimary);
}

.l-nav .l-nav-list__text {
    font-size: 3.2rem;
    font-family: var(--fnt_en);
}

.l-nav .l-nav-list__link small {
    margin-left: 1.4em;
    padding-top: 0.3em;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
    color: var(--clrTxtSecondary);
}

.l-nav .l-nav-listSub {
    margin-top: 60px;
}

.l-nav .l-nav-listSub__item {
    line-height: 1.2;
    letter-spacing: 0.04em;
    font-size: 1.3rem;
    font-family: var(--fnt_en);
}

.l-nav .l-nav-listSub__link {
    margin-left: -10px;
    padding: 10px;
    display: inline-block;
    color: var(--clrTxtTertiary);
    transition: color ease 0.4s;
}

.l-nav .l-nav-listSub__link:hover {
    color: var(--clrPrimary);
}

@media all and (min-width: 426px) {
    .l-nav .l-nav__inner {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media all and (min-width: 769px) {
    .l-header .l-header-logo a {
        padding: 26px 24px;
    }

    .l-header .l-header-logo img {
        height: 20px;
    }

    .l-header .l-hamburger {
        width: 80px;
        height: 72px;
    }

    .l-nav .l-nav__inner {
        max-width: 720px;
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .l-nav .l-nav-list {
        display: flex;
        flex-wrap: wrap;
    }

    .l-nav .l-nav-list__item {
        width: 50%;
        padding-right: 30px;
    }

    .l-nav .l-nav-list__item:first-child {
        width: 100%;
    }

    .l-nav .l-nav-list__link {
        padding: 30px 20px;
    }

    .l-nav .l-nav-listSub {
        margin-top: 80px;
        display: flex;
    }

    .l-nav .l-nav-listSub__item {
        padding-right: 30px;
    }
}

@media all and (min-width: 1025px) {
    .l-header {
        width: 200px;
        height: 100vh;
        padding: 60px 0 60px 40px;
        display: block;
        position: fixed;
        bottom: 0;
        right: auto;
    }

    .l-header .l-header-logo a {
        margin-left: -25px;
    }

    .l-header .l-header-logo img {
        height: 26px;
    }

    .l-header.-bigLogo .l-header-logo img {
        height: 36px;
        transition: height ease-in-out 0.3s;
    }

    .l-header.-bigLogo.-afterHero .l-header-logo img {
        height: 26px;
    }

    .l-nav {
        height: calc(100% - 78px);
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        overflow: hidden;
        overscroll-behavior-y: auto;
        background: transparent;
        opacity: 1;
        transition: none;
    }

    .l-header.-bigLogo .l-nav {
        height: calc(100% - 88px);
        transition: height ease-in-out 0.3s;
    }

    .l-header.-bigLogo.-afterHero .l-nav {
        height: calc(100% - 78px);
    }

    .l-nav .l-nav__inner {
        max-width: none;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }

    .l-nav .l-nav-list {
        width: 100%;
        height: auto;
        padding-top: 20px;
        display: block;
    }

    .l-nav .l-nav-list__item {
        width: auto;
        padding-right: 0;
    }

    .l-nav .l-nav-list__link {
        margin-left: -10px;
        padding: 10px;
        display: inline-block;
        color: var(--clrTxtSecondary);
    }

    .l-nav .l-nav-list__text {
        font-size: 1.4rem;
    }

    .l-nav .l-nav-listSub {
        margin-top: 0;
        display: block;
    }

    .l-nav .l-nav-listSub__item {
        padding-right: 0;
        font-size: 1.2rem;
    }

    .l-nav .l-nav-listSub__link {
        margin-left: -5px;
        padding: 5px;
    }
}

@media all and (min-width: 1441px) {
    .l-header {
        width: 280px;
        padding: 80px 0 80px 50px;
    }

    .l-header .l-header-logo img {
        height: 30px;
    }

    .l-header.-bigLogo .l-header-logo img {
        height: 50px;
    }

    .l-header.-bigLogo.-afterHero .l-header-logo img {
        height: 30px;
    }

    .l-nav {
        height: calc(100% - 82px);
    }

    .l-header.-bigLogo .l-nav {
        height: calc(100% - 102px);
    }

    .l-header.-bigLogo.-afterHero .l-nav {
        height: calc(100% - 82px);
    }

    .l-nav .l-nav-list__link {
        padding: 12px 10px;
    }
}

/*  Contents
---------------------------------------- */

.l-contents {
    min-height: 100vh;
}

/*  Footer
---------------------------------------- */
.l-footer {
    position: relative;
}

.l-footer .l-footer__inner {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
}

.l-footer .l-footer-logo {
    position: relative;
    z-index: 1;
    font-size: 0;
}

.l-footer .l-footer-logo a {
    margin-left: -10px;
    padding: 10px;
    display: inline-block;
    transition: opacity ease 0.4s;
}

.l-footer .l-footer-logo a:hover {
    opacity: 0.7;
}

.l-footer .l-footer-logo img {
    width: auto;
    height: 22px;
    display: block;
}

.l-footer .l-footer__info {
    margin-top: 5px;
    font-size: 1.2rem;
    color: var(--clrTxtTertiary);
}

.l-footer .l-footer__cr {
    margin-top: 30px;
    line-height: 1.2;
    font-size: 1.1rem;
    color: var(--clrTxtTertiary);
}

@media all and (min-width: 426px) {
    .l-footer .l-footer__inner {
        width: min(94%, 1080px);
    }
}

@media all and (min-width: 1025px) {
    .l-footer .l-footer__inner {
        width: min(90%, 1080px);
        padding: 25px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }

    .l-footer .l-footer__info {
        margin-top: 0;
        text-align: right;
        font-size: 1.25rem;
    }

    .l-footer .l-footer__cr {
        margin-top: 0;
        font-size: 1rem;
    }
}

@media all and (min-width: 1441px) {
    .l-footer .l-footer__inner {
        width: min(86%, 1320px);
        padding: 25px 20px;
    }

    .l-footer .l-footer__info {
        font-size: 1.3rem;
    }
}

/*  editor-area
================================================ */

/* editor root
	font-size: 62.5%;
 */

.editor-area {
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.5rem;
    font-feature-settings: "pwid" 1;
    color: var(--clrTxtSecondary);
}

.editor-area > p {
    min-height: 1px;
    margin-top: 0.8em;
}

.editor-area > :first-child {
    margin-top: 0;
}

.editor-area-graybox {
    margin-top: 1em;
    padding: 24px;
    background: var(--clrBackground);
}

/*  Styles
---------------------------------------- */
.editor-area h1,
.editor-area h2,
.editor-area h3,
.editor-area h4,
.editor-area h5,
.editor-area h6 {
    margin-top: 2.4em;
    line-height: 1.5;
    letter-spacing: 0.09em;
    font-weight: bold;
    color: var(--clrTxtDefault);
}

.editor-area h1 {
    font-size: 1.6em;
}

/* Disabled by Kyoetsu */
/* .editor-area h2 {
    padding: 0.8em 20px;
    font-size: 1.4em;
    background: var(--clrBackground);
    border-top: 1px solid var(--clrPrimary);
    border-bottom: 1px solid var(--clrPrimary);
} */

/* Disabled by Kyoetsu */
/* .editor-area h3 {
    padding-bottom: 0.6em;
    font-size: 1.3em;
    border-bottom: 1px solid var(--clrPrimary);
} */

/* Disabled by Kyoetsu */
/* .editor-area h4,
.editor-area h5 {
    font-size: 1.2em;
} */

/* Added by Kyoetsu */
.editor-area h2,
.editor-area h3,
.editor-area h4,
.editor-area h5 {
    font-size: 1.2em;
}

.editor-area .has-drop-cap {
    min-height: 8.4em;
}

.editor-area a {
    text-decoration: underline;
    color: var(--clrPrimary);
}

.editor-area a:hover {
    text-decoration: none;
}

.editor-area strong {
    font-weight: bold;
    color: #cb4e00;
}

/* Disabled by Kyoetsu */
/* .editor-area code {
    padding: 1em 2em;
    display: block;
    color: #fff;
    background: #4a4a4a;
    border-left: 4px solid #1a1a1a;
} */

.editor-area img {
    vertical-align: middle;
}

.editor-area kbd {
    background: #eaeaea;
}

.editor-area sup {
    vertical-align: super;
    font-size: smaller;
}

.editor-area sub {
    vertical-align: sub;
    font-size: smaller;
}

.editor-area ul,
.editor-area ol {
    margin-top: 0.8em;
    padding-left: 0;
}

.editor-area p + ul,
.editor-area p + ol {
    margin-top: 0.5em;
}

.editor-area li:not(:first-child) {
    margin-top: 0.1em;
}

.editor-area ol:not(.-alpha) {
    list-style-type: none;
    counter-reset: count 0;
}

.editor-area ol:not(.-alpha) li {
    padding-left: 1.1em;
    position: relative;
}

.editor-area ol:not(.-alpha) li::before {
    content: counter(count, decimal) ". ";
    counter-increment: count 1;
    width: 18px;
    position: absolute;
    top: 0;
    right: calc(100% - 9px);
    text-align: right;
    font-family: var(--fnt_en);
    color: var(--clrPrimary);
}

.editor-area ol.-alpha {
    padding-left: 1.5em; /* Fixed by Kyoetsu */
    list-style-type: lower-alpha;
}

.editor-area ol.-alpha li::marker {
    font-family: var(--fnt_en);
    color: var(--clrPrimary);
}

/* Added by Kyoetsu */
.editor-area ol.-alpha li {
    padding-left: 0.3em;
}

/* Disabled by Kyoetsu */
/* .editor-area ul {
    list-style: none;
}
.editor-area ul li {
    padding-left: 1.1em;
    position: relative;
}
.editor-area ul li::before {
    content: "";
    width: 3px;
    height: 3px;
    display: inline-block;
    position: absolute;
    top: 0.7em;
    left: 0.2em;
    background: var(--clrPrimary);
} */

.editor-area table {
    width: 100%;
    margin: 1.6em auto;
    clear: both;
    text-align: left;
    table-layout: auto;
}

.editor-area table th,
.editor-area table td {
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--clrBorderPrimary);
}

.editor-area tr > *:first-child {
    padding-left: 0;
    border-left: none;
}

.editor-area tr > *:last-child {
    padding-right: 0;
    border-right: none;
}

.editor-area table th {
    min-width: 100px;
    padding: 20px;
    color: var(--clrPrimary);
}

.editor-area table td {
    padding: 20px;
}

.editor-area blockquote {
    margin: 1.6em auto;
    padding: 40px 15px;
    position: relative;
    z-index: 1;
    clear: both;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}

.editor-area blockquote::before,
.editor-area blockquote::after {
    position: absolute;
    line-height: 1;
    font-size: 400%;
    font-weight: bold;
    font-family: "Times New Roman", serif;
    color: #aaa;
}

.editor-area blockquote::before {
    content: "“";
    top: 0;
    left: 0;
}

.editor-area blockquote::after {
    content: "”";
    bottom: -0.3em;
    right: 0;
}

.editor-area hr {
    margin: 1.6em auto;
    border-bottom: 1px solid var(--clrBorderSecondary);
}

.editor-area iframe {
    width: 100%;
    margin: 1.6em auto;
    display: block;
}

.editor-area embed,
.editor-area iframe,
.editor-area object,
.editor-area video {
    max-width: 100%;
}

.editor-area img {
    margin: 0.8em auto;
}

.editor-area .alignright,
.editor-area .alignleft,
.editor-area .aligncenter,
.editor-area .alignnone {
    width: auto !important;
    max-width: 100%;
}

.editor-area .alignright img,
.editor-area .alignleft img,
.editor-area .aligncenter img,
.editor-area .alignnone img,
.editor-area .alignright figcaption,
.editor-area .alignleft figcaption,
.editor-area .aligncenter figcaption,
.editor-area .alignnone figcaption {
    margin: 0 auto;
}

.editor-area .alignright {
    margin: 5px 0 10px 25px;
    float: right;
}

.editor-area .alignleft {
    margin: 5px 25px 10px 0;
    float: left;
}

.editor-area .alignnone {
    margin: 0.8em auto;
}

.editor-area .aligncenter {
    margin: 0.8em auto;
    display: block;
}

.editor-area .aligncenter img {
    margin: 0.8em auto;
    display: block;
}

.editor-area .wp-caption-text {
    margin-bottom: 0.8em;
    line-height: 1.4;
    font-size: 0.9em;
}

@media all and (min-width: 1025px) {
    .editor-area h1,
    .editor-area h2,
    .editor-area h3,
    .editor-area h4,
    .editor-area h5,
    .editor-area h6 {
        margin-top: 3.2em;
    }
}
