@charset 'UTF-8';

/*  variables
---------------------------------------- */
:root {
	--clrMain: #002D81;
	--clrMainSecondary: #D1DFF4;

	--clrTxt: #111111;
	--clrTxtSecondary: #333333;
	--clrTxtTertiary: #7A7A7A;

	--clrPointYellow: #F2B047;
	--clrPointMildYellow: #FAEED4;
	--clrPointGreen: #15871B;
	--clrPointMildGreen: #E4EFE5;

	--clrBorderPrimary: #DBDBDB;
	--clrBorderSecondary: #4567A8;
	--clrBorderTertiary: #CECECE;

	--clrBackground: #F1F1F5;

    --fntEn: "transducer", sans-serif;
}

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.7;
	font-size: 1.5rem;
	font-weight: 400;
	font-family: "kinto-sans", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    color: var(--clrTxt);
}

@media all and (min-width: 1441px) {
    body {
        font-size: 1.6rem;
    }
}


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

/*  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;
    }
}

/*  tel-link
---------------------------------------- */
@media all and (min-width: 1025px) {
    .u-tellink {
        pointer-events: none;
    }
}


/*  component - texts & buttons
================================================ */

/*  text
---------------------------------------- */
.c-textEm {
    font-style: normal;
    font-weight: bold;
    color: var(--clrMain);
}

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

/*  button
---------------------------------------- */
.c-button {
    padding: 13px 30px;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    line-height: 1.4;
    color: #fff;
    background: var(--clrMain);
    border: 1px solid #fff;
    border-radius: 100px;
    transition: color ease 0.4s, background ease 0.4s, border-color ease 0.4s;
}

.c-button.-clrRev {
    color: var(--clrMain);
    background: #fff;
    border-color: var(--clrMain);
}

.c-button.-alignCenter {
    justify-content: center;
    text-align: center;
}

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

.c-button-icon {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
}

.c-button-icon:first-child {
    margin-right: 8px;
}

.c-button-icon:last-child {
    margin-left: -12px;
}

.c-button-icon__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity ease 0.4s;
}

.c-button-icon__image.-imgRev {
    opacity: 0;
}

.c-button.-clrRev .c-button-icon__image {
    opacity: 0;
}

.c-button.-clrRev .c-button-icon__image.-imgRev {
    opacity: 1;
}

.c-button__text {
    display: inline-block;
    position: relative;
    z-index: 2;
    vertical-align: middle;
}

.c-button:not(.-alignCenter) .c-button__text {
    padding-right: 40px;
}

@media all and (min-width: 1441px) {
    .c-button {
        padding: 16px 30px;
    }

    .c-button:not(.-alignCenter) .c-button__text {
        padding-right: 60px;
    }
}

/*  button - hover common
---------------------------------------- */
.c-button:not(.-clrRev):hover {
    color: var(--clrMain);
    background: #fff;
    border-color: var(--clrMain);
}

.c-button.-clrRev:hover {
    color: #fff;
    background: var(--clrMain);
    border-color: #fff;
}

.c-button:not(.-clrRev):hover .c-button-icon__image:not(.-imgRev) {
    opacity: 0;
}

.c-button:not(.-clrRev):hover .c-button-icon__image.-imgRev {
    opacity: 1;
}

.c-button.-clrRev:hover .c-button-icon__image.-imgRev {
    opacity: 0;
}

.c-button.-clrRev:hover .c-button-icon__image:not(.-imgRev) {
    opacity: 1;
}

/*  button - hoverCircle
---------------------------------------- */
.c-button.-hoverCircle {
    border-color: var(--clrMain);
}

.c-button.-hoverCircle.-clrRev:hover {
    border-color: #fff;
}

.c-button.-hoverCircle:hover {
    transition-delay: 0.2s;
}

.c-button.-hoverCircle:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    top: 50%;
    right: 24px;
    z-index: 2;
    background: var(--clrMain);
    border-radius: 50%;
    opacity: 0;
    transform: translate(50%, -50%);
    transition: opacity ease 0.2s 0.3s;
}

.c-button.-hoverCircle.-clrRev:before {
    background: #fff;
}

.c-button.-hoverCircle:hover:before {
    opacity: 1;
    transition-delay: 0s;
}

.c-button.-hoverCircle:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    top: 50%;
    right: 24px;
    font-size: 0;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(50%, -50%);
    transition: padding ease 0.5s;
}

.c-button.-hoverCircle.-clrRev:after {
    background: var(--clrMain);
}

.c-button.-hoverCircle:hover:after {
    padding: 100%;
}

@media all and (min-width: 1441px) {
    .c-button.-hoverCircle:before,
    .c-button.-hoverCircle:after {
        right: 30px;
    }
}

/*  dotButton
---------------------------------------- */
.c-dotButton {
    padding: 5px;
    padding-right: 26px;
    display: inline-block;
    position: relative;
    line-height: 1.4;
    color: var(--clrMain);
}

.c-dotButton:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    right: -4px;
    background: var(--clrMain);
    border-radius: 100%;
    transform: scale3d(0.25, 0.25, 1);
    transition: transform ease 0.4s;
}

.c-dotButton.-rev {
    padding-left: 26px;
    padding-right: 0;
}

.c-dotButton.-rev:before {
    left: 2px;
    right: auto;
}

.c-dotButton:hover:before {
    transform: scale3d(1, 1, 1);
}


/*  component - general
================================================ */

/*  list
---------------------------------------- */
.c-list li {
    padding-left: 0.8em;
    position: relative;
    line-height: 1.6;
}

.c-list li:not(:first-child) {
    margin-top: 0.2em;
}

.c-list li:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    top: calc(0.8em - 2px);
    left: 0;
    background: var(--clrMain);
    border-radius: 100%;
}

/*  numberList
---------------------------------------- */
.c-numberList {
    list-style: none;
    counter-reset: count 0;
    color: #333;
}

.c-numberList__item {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 1.6em;
    position: relative;
    line-height: 1.6;
}

.c-numberList__item:not(:first-child) {
    border-top: 1px dotted var(--clrBorderTertiary);
}

.c-numberList__item:before {
    content: counter(count, decimal)'. ';
    counter-increment: count 1;
    width: 2em;
    position: absolute;
    top: 14px;
    right: calc(100% - 1em);
    text-align: right;
    font-family: var(--fntEn);
    color: var(--clrMain);
}

@media all and (min-width: 1025px) {
    .c-numberList.-column {
        display: flex;
        flex-wrap: wrap;
        column-gap: 44px;
    }

    .c-numberList.-column .c-numberList__item {
        width: calc(50% - 22px);
    }

    .c-numberList.-column .c-numberList__item:first-child + .c-numberList__item {
        border-top: none;
    }
}

@media all and (min-width: 1441px) {
    .c-numberList__item {
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 1.8em;
    }

    .c-numberList__item:before {
        top: 15px;
    }
}

/*  table
---------------------------------------- */
.c-table {
    width: 100%;
    table-layout: auto;
    text-align: left;
}

.c-table th,
.c-table td {
    width: 100%;
    display: block;
}

.c-table th {
    padding: 18px 20px;
    vertical-align: top;
    font-weight: bold;
    color: #fff;
    background: var(--clrMain);
}

.c-table tr:not(:first-child) th {
    border-top: 1px dotted var(--clrBorderTertiary);
}

.c-table td {
    padding: 18px 20px;
    color: var(--clrTxtSecondary);
    background: #fff;
    border: 1px dotted var(--clrBorderTertiary);
}

.c-table .c-table__label {
    margin-right: 12px;
    display: inline-block;
    color: var(--clrMain);
}

@media all and (min-width: 768px) {
    .c-table th,
    .c-table td {
        width: auto;
        display: table-cell;
    }
}

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

    .c-table td {
        padding: 30px 35px;
    }
}

/*  baumkuchen
---------------------------------------- */
.c-baumkuchen {
    position: absolute;
    background: no-repeat center;
    background-size: contain;
}

.c-baumkuchen.-lineBlue {
    background-image: url(../png/baumkuchen-blue.png);
}

.c-baumkuchen.-lineWhite {
    background-image: url(../png/baumkuchen-white.png);
}

.c-baumkuchen.-top {
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
    transform: rotate(180deg);
}

.c-baumkuchen.-bottom {
    width: 250px;
    height: 250px;
    bottom: 0;
    left: 0;
}

@media all and (min-width: 1025px) {
    .c-baumkuchen.-bottom {
        width: 360px;
        height: 360px;
    }
}

@media all and (min-width: 1441px) {
    .c-baumkuchen.-bottom {
        width: 500px;
        height: 500px;
    }
}


/*  component - Posts
================================================ */

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

.c-posts-item {
    position: relative;
    border-bottom: 1px dotted var(--clrBorderTertiary);
}

.c-posts-item:first-child {
    border-top: 1px dotted var(--clrBorderTertiary);
}

.c-posts-item__link {
    padding: 24px 0;
    display: block;
}

.c-posts-item__time {
    margin-bottom: 8px;
    display: block;
    line-height: 1.2;
    font-size: 1.3rem;
    font-family: var(--fntEn);
    color: var(--clrTxtTertiary);
    transition: color ease 0.4s;
}

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

.c-posts-item__title {
    font-size: 1.5rem;
    font-weight: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color ease 0.4s;
}

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

@media all and (min-width: 769px) {
    .c-posts-item__link {
        display: flex;
    }

    .c-posts-item__time {
        width: 104px;
        margin-bottom: 0;
        padding-top: 0.4em;
    }

    .c-posts-item__title {
        width: calc(100% - 104px);
        font-size: 1.6rem;
    }
}

@media all and (min-width: 1025px) {
    .c-posts-item__link {
        padding: 36px 0;
    }
}

@media all and (min-width: 1441px) {
    .c-posts-item__link {
        padding: 46px 0;
    }
}

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

.c-paging__item {
	margin: 0 2px 4px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    line-height: 1.2;
    font-size: 1.4rem;
    color: var(--clrMain);
}

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

.c-paging__item .page-numbers:not(.dots) {
    padding: 10px 14px;
    font-family: var(--fntEn);
}

.c-paging__item .current,
.c-paging__item a {
    position: relative;
    transition: color ease 0.4s;
}

.c-paging__item .current,
.c-paging__item a:hover {
    color: #fff;
}

.c-paging__item .current:before,
.c-paging__item a:before {
    content: "";
    width: 36px;
    height: 36px;
    margin: auto;
    position: absolute;
    z-index: -1;
    top: calc(50% - 18px);
    left: 0;
    right: 0;
    background: var(--clrMain);
    border-radius: 100%;
    opacity: 0;
    transition: opacity ease 0.4s;
}

.c-paging__item .current:before,
.c-paging__item a:hover:before {
    opacity: 1;
}

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

.c-paging__item .c-paging__arrow {
    width: 10px;
    height: 10px;
    display: block;
    position: relative;
    border-top: 1px solid;
    border-color: var(--clrMain);
    transition: border-color ease 0.4s;
}

.c-paging__item .c-paging__arrow.-left {
    right: -3px;
    border-left: 1px solid;
    transform: rotate(-45deg);
}

.c-paging__item .c-paging__arrow.-right {
    left: -3px;
    border-right: 1px solid;
    transform: rotate(45deg);
}

.c-paging__item a:hover .c-paging__arrow {
    border-color: #fff;
}

@media all and (min-width: 1441px) {
    .c-paging {
        margin-top: 60px;
    }
}


/*  component - Layout frame
================================================ */

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

.c-section:not(.-gray) + .c-section:not(.-gray) {
    margin-top: -50px;
}

.c-section.-gray:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clrBackground);
}

.c-section__inner {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.c-section__head {
    position: relative;
    text-align: center;
}

.c-section__head + .c-section__body {
    margin-top: 28px;
}

.c-section__titleEn {
    line-height: 1.2;
    font-size: 1.2rem;
    font-family: var(--fntEn);
    color: var(--clrTxtTertiary);
}

.c-section__titleJa {
    margin-top: 0.3em;
    line-height: 1.5;
    font-size: 2.6rem;
    font-weight: bold;
}

.c-section__titleSub {
    margin-top: 40px;
    margin-bottom: 24px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 2rem;
    font-weight: bold;
}

.c-section__titleSub:before {
    content: "";
    height: 21px;
    position: absolute;
    top: calc(0.75em - 10px);
    left: 0;
    border-left: 4px solid var(--clrMain);
}

.c-section__body {
    position: relative;
}

.c-section__text {
    font-size: 1.6rem;
    color: var(--clrTxtSecondary);
}

.c-section__text.-alignCenter {
    text-align: center;
}

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

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

    .c-section__inner {
        padding: 0 20px;
    }

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

    .c-section__text.-alignCenter {
        text-align: left;
    }
}

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

    .c-section:not(.-gray) + .c-section:not(.-gray) {
        margin-top: -80px;
    }

    .c-section.-gray:before {
        right: 100px;
    }

    .c-section__head + .c-section__body {
        margin-top: 40px;
    }

    .c-section__titleEn {
        font-size: 1.3rem;
    }

    .c-section__titleJa {
        font-size: 3rem;
    }

    .c-section__titleSub {
        margin-top: 60px;
        margin-bottom: 28px;
        font-size: 2.2rem;
    }

    .c-section__titleSub:before {
        height: 22px;
        top: calc(0.75em - 11px);
    }
}

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

    .c-section:not(.-gray) + .c-section:not(.-gray) {
        margin-top: -140px;
    }

    .c-section__inner {
        width: min(100%, 1320px);
    }

    .c-section__head + .c-section__body {
        margin-top: 56px;
    }

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

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

    .c-section__titleSub {
        margin-top: 80px;
        margin-bottom: 32px;
        padding-left: 24px;
        font-size: 2.4rem;
    }
}

/*  breadcrumb
---------------------------------------- */
.c-breadcrumb {
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-end;
}

.c-breadcrumb__list {
    display: flex;
}

.c-breadcrumb__item {
    line-height: 1.2;
    font-size: 1.3rem;
}

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

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

.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(--clrTxt);
    transition: color ease 0.4s;
}

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

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

/*  hero
---------------------------------------- */
.c-hero {
    position: relative;
}

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

.c-hero-content {
    padding: 80px 0 42px;
}

.c-hero__title {
    margin-bottom: 0.5em;
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: bold;
}

.c-hero__titleEn {
    max-width: 310px;
    line-height: 1.2;
    font-size: 5rem;
    font-weight: normal;
    font-family: var(--fntEn);
}

.c-hero__text {
    margin-top: 24px;
    font-size: 1.4rem;
    color: var(--clrTxtSecondary);
}

.c-hero__text br {
    display: none;
}

.c-hero-thumbnail {
    height: 250px;
}

.c-hero-thumbnail__img {
    height: 100%;
    display: block;
}

.c-hero-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media all and (min-width: 426px) {
    .c-hero-content {
        padding: 100px 0 50px;
    }

    .c-hero__titleEn {
        max-width: none;
    }

    .c-hero-thumbnail {
        height: 320px;
    }
}

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

    .c-hero__text br {
        display: block;
    }

    .c-hero-thumbnail {
        height: 360px;
    }
}

@media all and (min-width: 1025px) {
    .c-hero-content {
        padding: 180px 0 70px;
    }

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

    .c-hero__titleEn {
        font-size: 6.6rem;
    }

    .c-hero-thumbnail {
        height: 400px;
    }
}

@media all and (min-width: 1441px) {
    .c-hero__inner {
        width: min(100%, 1320px);
    }

    .c-hero-content {
        padding: 250px 0 100px;
    }

    .c-hero__title {
        font-size: 1.8rem;
    }

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

    .c-hero__text {
        margin-top: 28px;
        font-size: 1.6rem;
    }

    .c-hero-thumbnail {
        height: 650px;
    }
}


/*  component - Layout patterns
================================================ */

/*  cv
---------------------------------------- */
.c-cv {
    margin: 32px auto 0;
}

.c-cv__button {
    width: 100%;
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 1.6rem;
}

.c-cv__button:not(:first-child) {
    margin-top: 8px;
}

.c-cv__button.-tel {
    font-family: var(--fntEn);
}

.c-cv__fax {
    margin-top: 16px;
    text-align: center;
    line-height: 1.2;
    font-size: 1.6rem;
    font-family: var(--fntEn);
}

@media all and (min-width: 1025px) {
    .c-cv {
        max-width: 780px;
        display: flex;
    }

    .c-cv__button {
        width: 47%;
        margin: 0 1.5%;
        font-size: 1.6rem;
    }

    .c-cv__button:not(:first-child) {
        margin-top: 0;
    }
}

@media all and (min-width: 1441px) {
    .c-cv {
        max-width: 850px;
        margin-top: 56px;
    }

    .c-cv__button {
        padding-top: 29px;
        padding-bottom: 29px;
        font-size: 2rem;
    }
}

/*  dotBox
---------------------------------------- */
.c-dotBox {
    padding: 8px 24px;
    border: 1px dotted var(--clrBorderTertiary);
}

@media all and (min-width: 1025px) {
    .c-dotBox {
        padding: 20px 32px;
    }
}

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

/*  whiteBox
---------------------------------------- */
.c-whiteBox {
    width: calc(100% + 32px);
    padding: 45px 16px;
    position: relative;
    left: -16px;
    background: #fff;
}

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

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

@media all and (min-width: 1441px) {
    .c-whiteBox {
        max-width: 1060px;
        margin: 0 auto;
        padding: 80px 110px;
    }
}

/*  grayBox
---------------------------------------- */
.c-grayBox {
    background: var(--clrBackground);
}

/*  cardList
---------------------------------------- */
.c-cardList {
    max-width: 550px;
    margin: 0 auto;
    counter-reset: count 0;
}

.c-cardList__item {
    background: #fff;
}

.c-cardList__item:not(:first-child) {
    margin-top: 16px;
}

.c-cardList__image img {
    margin: 0 auto;
    display: block;
}

.c-cardList__content {
    padding: 30px 32px;
    position: relative;
}

.c-cardList__content:before {
    width: 48px;
    height: 48px;
    padding-top: calc(24px - 0.5em);
    display: block;
    position: absolute;
    top: calc(-24px + 0.5em);
    right: 16px;
    text-align: center;
    line-height: 1;
    font-size: 1.2rem;
    font-family: var(--fntEn);
    color: var(--clrTxtTertiary);
    background: #fff;
    border-radius: 24px;
    content: counter(count, decimal-leading-zero);
    counter-increment: count 1;
}

.c-cardList__title {
    line-height: 1.5;
    font-size: 2rem;
    font-weight: bold;
}

.c-cardList__body {
    margin-top: 8px;
    color: var(--clrTxtSecondary);
}

@media all and (min-width: 769px) {
    .c-cardList {
        width: calc(100% + 2px);
        max-width: none;
        display: flex;
        position: relative;
        left: -1px;
    }

    .c-cardList__item {
        width: calc(100% / 3);
        margin: 0 1px;
    }

    .c-cardList__item:not(:first-child) {
        margin-top: 0;
    }
}

@media all and (min-width: 1025px) {
    .c-cardList {
        width: calc(100% + 12px);
        left: -6px;
    }

    .c-cardList__item {
        margin: 0 6px;
    }
}

@media all and (min-width: 1441px) {
    .c-cardList {
        width: calc(100% + 40px);
        left: -20px;
    }

    .c-cardList__item {
        margin: 0 20px;
    }

    .c-cardList__item:before {
        font-size: 1.3rem;
    }

    .c-cardList__title {
        font-size: 2.4rem;
    }

    .c-cardList__body {
        margin-top: 12px;
    }
}

/*  imagelist
---------------------------------------- */
.c-imagelist__item:not(:first-child) {
    margin-top: 18px;
}

.c-imagelist__image {
    max-width: 360px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border: 1px dotted var(--clrBorderTertiary);
}

.c-imagelist__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-imagelist__text {
    margin-top: 8px;
    text-align: center;
    line-height: 1.5;
}

@media all and (max-width: 768px) {
    .c-imagelist.-column {
        width: calc(100% + 10px);
        margin-left: -5px;
        display: flex;
        flex-wrap: wrap;
    }

    .c-imagelist.-column .c-imagelist__item {
        width: calc(50% - 10px);
        margin-left: 5px;
        margin-right: 5px;
    }

    .c-imagelist.-column .c-imagelist__item:first-child + .c-imagelist__item {
        margin-top: 0;
    }
}

@media all and (min-width: 769px) {
    .c-imagelist {
        width: calc(100% + 10px);
        margin-left: -5px;
        display: flex;
        flex-wrap: wrap;
    }

    .c-imagelist__item {
        width: calc(50% - 10px);
        margin-left: 5px;
        margin-right: 5px;
    }

    .c-imagelist__item:first-child + .c-imagelist__item {
        margin-top: 0;
    }
}

@media all and (min-width: 1025px) {
    .c-imagelist {
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .c-imagelist__item {
        width: calc(25% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .c-imagelist__item:not(:first-child) {
        margin-top: 0;
    }

    .c-imagelist__text {
        margin-top: 14px;
        min-height: 3em;
    }
}

/*  FaxAndTelCv
---------------------------------------- */
.c-FaxAndTelCv-block__text {
    color: var(--clrTxtSecondary);
}

.c-FaxAndTelCv-box {
    max-width: 480px;
    margin: 20px auto 24px;
    padding: 20px;
    text-align: center;
    border: 1px dotted var(--clrMain);
}

.c-FaxAndTelCv-box__number {
    line-height: 1.5;
    font-size: 1.7rem;
    font-weight: normal;
    font-family: var(--fntEn);
    color: var(--clrMain);
}

.c-FaxAndTelCv-box__text {
    margin-top: 0.2em;
    line-height: 1.5;
    font-size: 1.4rem;
    color: var(--clrTxtSecondary);
}

@media all and (min-width: 769px) {
    .c-FaxAndTelCv {
        width: calc(100% + 40px);
        display: flex;
        position: relative;
        left: -20px;
    }

    .c-FaxAndTelCv-block {
        width: 50%;
        padding: 0 20px;
    }

    .c-FaxAndTelCv-block__text {
        min-height: 5.1em;
    }

    .c-FaxAndTelCv-box {
        min-height: 90px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
    }

    .c-FaxAndTelCv-box__number {
        width: 100%;
    }
}

@media all and (min-width: 1025px) {
    .c-FaxAndTelCv {
        width: calc(100% + 80px);
        padding-top: 10px;
        left: -40px;
    }

    .c-FaxAndTelCv-block {
        padding: 0 40px;
        position: relative;
    }

    .c-FaxAndTelCv-block:not(:first-child) {
        border-left: 1px dotted var(--clrBorderTertiary);
    }

    .c-FaxAndTelCv-block > :first-child {
        margin-top: 0;
    }

    .c-FaxAndTelCv-box {
        max-width: none;
    }

    .c-FaxAndTelCv-box__number {
        font-size: 1.9rem;
    }
}

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

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

    .c-FaxAndTelCv-block__text {
        min-height: 0;
    }

    .c-FaxAndTelCv-box {
        min-height: 115px;
    }

    .c-FaxAndTelCv-box__number {
        font-size: 2.2rem;
    }
}

/*  contactTab
---------------------------------------- */
.c-contactTab {
    max-width: 570px;
    margin: 28px auto 16px 0;
    display: flex;
    background: var(--clrMain);
    border: 4px solid var(--clrMain);
    border-radius: 40px;
}

.c-contactTab-button {
    width: 50%;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: var(--clrMain);
    border-radius: 40px;
}

a.c-contactTab-button {
    transition: opacity ease 0.4s;
}

a.c-contactTab-button:hover {
    opacity: 0.7;
}

.c-contactTab-button.-current {
    color: var(--clrMain);
    background: #fff;
}

.c-contactTab-button-icon {
    width: 24px;
    height: 24px;
    margin-right: 4px;
    display: block;
    position: relative;
}

.c-contactTab-button-icon__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.c-contactTab-button__text {
    font-size: 1.5rem;
    font-weight: bold;
}

@media all and (min-width: 1025px) {
    .c-contactTab {
        margin: 40px auto 20px 0;
    }

    .c-contactTab-button-icon {
        margin-right: 8px;
    }
}

@media all and (min-width: 1441px) {
    .c-contactTab {
        margin: 60px auto 24px 0;
    }

    .c-contactTab-button {
        width: 50%;
        padding: 18px 20px;
    }

    .c-contactTab-button__text {
        font-size: 1.8rem;
    }
}


/*  component - form
================================================ */

/*  form
---------------------------------------- */
.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__required {
    padding: 4px 7px;
    display: block;
    line-height: 1.1;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: var(--clrMain);
}

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

.c-form-label {
    display: flex;
    align-items: center;
}

.c-form-label__text {
    margin-right: 16px;
    font-size: 1.8rem;
    font-weight: bold;
}

.c-form-item {
    margin-top: 12px;
}

.c-form__input input[type=text],
.c-form__input input[type=email],
.c-form__textarea textarea {
    padding: 15px 20px;
    line-height: 1.5;
    background: #fff;
    border: 1px solid var(--clrBorderTertiary);
}

.c-form__input input[type=text],
.c-form__input input[type=email] {
    max-width: 420px;
}

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

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

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

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

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

.c-form__checkbox input[type=checkbox]:checked + span:after {
    content: "";
    width: 10px;
    height: 5px;
    position: absolute;
    left: 6px;
    top: calc(50% - 7px);
    border: solid var(--clrMain);
    border-width: 0 0 3px 3px;
    rotate: -55deg;
    transform: skewX(-18deg);
}

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

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

.c-form__privary .c-form__link {
    padding: 5px 0;
    padding-right: 24px;
    display: inline-block;
    position: relative;
    text-decoration: underline;
    line-height: 1.2;
    font-size: 1.3rem;
    color: var(--clrMain);
}

.c-form__privary .c-form__link:after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
    background: url(../svg/ico-link-color.svg) no-repeat center;
    background-size: contain;
}

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

.c-form-continue button {
    width: auto;
    margin: 5px 10px;
}

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

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

@media all and (min-width: 1025px) {
    .c-form__textarea textarea {
        min-height: 200px;
    }

    .c-form__privary .c-form__link {
        font-size: 1.5rem;
    }
}

/*  component - Circle
================================================ */
.c-bgCircle {
    width: auto;
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.c-bgCircle.-circle-sp-top {
    top: -30px;
    right: -30px;
}

.c-bgCircle.-circle-sp-bottom {
    bottom: -30px;
    left: -60px;
}

.c-bgCircle.-circle-top {
    top: -40px;
    right: -160px;
}

.c-bgCircle.-circle-bottom {
    bottom: -80px;
    left: -120px;
}


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

/*  wrapper
---------------------------------------- */
.l-wrapper {
    position: relative;
    z-index: 2;
}

/*  header
---------------------------------------- */
.l-header {
    display: flex;
    align-items: center;
    position: absolute;
    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: 9px 16px;
    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: 38px;
    display: block;
}

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

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

.l-header .l-hamburger__line span {
    height: 3px;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clrMain);
    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-x: hidden;
    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: 60px 32px 48px;
}

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

.l-nav .l-nav-list__item {
    line-height: 1.2;
    font-size: 2rem;
    border-bottom: 1px dotted var(--clrBorderTertiary);
}

.l-nav .l-nav-list__link {
    margin-left: -20px;
    padding: 32px 20px;
    display: block;
    transition: color ease 0.4s;
}

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

.l-nav .c-cv {
    margin-top: 40px;
}

@media all and (min-width: 1025px) {
    .l-header {
        position: fixed;
        justify-content: space-between;
        align-items: center;
    }

    .l-header .l-header-logo a {
        padding: 18px 30px;
    }

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

    .l-nav {
        height: auto;
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        overflow: hidden;
        overscroll-behavior-y: auto;
        background: transparent;
        opacity: 1;
        transition: none;
    }

    .l-nav .l-nav__inner {
        max-width: none;
        padding: 23px 30px;
        display: flex;
        align-items: center;
    }

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

    .l-nav .l-nav-list__item {
        font-size: 1.4rem;
        border-bottom: none;
    }

    .l-nav .l-nav-list__item:not(:first-child) {
        margin-left: 0.5vw;
    }

    .l-nav .l-nav-list__link {
        margin-left: auto;
        padding: 10px;
    }

    .l-nav .c-cv {
        min-width: 380px;
        margin-top: 0;
        margin-left: 15px;
    }

    .l-nav .c-cv__button {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1.4rem;
    }
}

@media all and (min-width: 1441px) {
    .l-header .l-header-logo a {
        padding: 18px 35px;
    }

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

    .l-nav .l-nav-list__item {
        font-size: 1.6rem;
    }

    .l-nav .l-nav-list__item:not(:first-child) {
        margin-left: 25px;
    }

    .l-nav .c-cv {
        min-width: 500px;
        margin-left: 25px;
    }

    .l-nav .c-cv__button {
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 1.6rem;
    }
}

/*  underContact
---------------------------------------- */
.l-underContact {
    padding: 50px 0 65px;
    color: #fff;
    background: var(--clrMain);
}

.l-underContact__inner {
    width: min(100%, 1080px);
    max-width: 520px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.l-underContact__title {
    text-align: center;
    line-height: 1.2;
    font-size: 4rem;
    font-family: var(--fntEn);
}

.l-underContact__title-word {
    display: inline-block;
}

.l-underContact__body {
    margin-top: 24px;
}

.l-underContact__text.-number {
    margin: 3px 15px 0;
    display: inline-block;
    line-height: 1.2;
    font-family: var(--fntEn);
}

@media all and (min-width: 769px) {
    .l-underContact__body {
        text-align: center;
    }
}

@media all and (min-width: 1025px) {
    .l-underContact {
        padding: 65px 0 80px;
    }

    .l-underContact__inner {
        max-width: none;
        padding: 0 20px;
    }
}

@media all and (min-width: 1441px) {
    .l-underContact {
        padding: 95px 0 120px;
    }

    .l-underContact__inner {
        width: min(100%, 1320px);
    }

    .l-underContact__title {
        font-size: 7.2rem;
    }

    .l-underContact__text {
        font-size: 1.8rem;
    }
}

/*  footer
---------------------------------------- */
.l-footer {
    padding-top: 40px;
    position: relative;
    background: var(--clrBackground);
}

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

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

.l-footer .l-footer-logo a {
    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: 60px;
    display: block;
}

.l-footer .l-footer__text {
    margin-top: 10px;
    text-align: center;
    font-size: 1.4rem;
}

.l-footer .u-tellink {
    font-family: var(--fntEn);
}

.l-footer .l-footer-list {
    display: flex;
}

.l-footer .l-footer-list__item {
    font-size: 1.4rem;
}

.l-footer .l-footer-list__link {
    padding: 12px;
    display: block;
    transition: color ease 0.4s;
}

.l-footer .l-footer-list__link:hover {
    color: var(--clrMain);
}

.l-footer .u-tellink:hover {
    text-decoration: underline;
}

.l-footer .l-footer__bottom {
    margin-top: 80px;
    padding: 16px;
    position: relative;
    text-align: center;
    border-top: 1px solid #FFFFFF;
}

.l-footer .l-footer__privacy {
    padding: 5px;
    position: absolute;
    bottom: calc(100% + 31px);
    left: 0;
    right: 0;
    font-size: 1.3rem;
    color: var(--clrTxtTertiary);
    transition: opacity ease 0.4s;
}

.l-footer .l-footer__privacy:hover {
    opacity: 0.5;
}

.l-footer .l-footer__cr {
    line-height: 1.2;
    font-size: 1.2rem;
    color: #999999;
}

@media all and (min-width: 769px) {
    .l-footer .l-footer__inner {
        padding: 0 20px;
    }
}

@media all and (min-width: 1025px) {
    .l-footer {
        padding-top: 70px;
    }

    .l-footer .l-footer__top .l-footer__inner {
        display: flex;
        justify-content: space-between;
    }

    .l-footer .l-footer-logo {
        text-align: left;
    }

    .l-footer .l-footer-logo a {
        margin-left: -10px;
    }

    .l-footer .l-footer__text {
        text-align: left;
    }

    .l-footer .l-footer__bottom .l-footer__inner {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .l-footer .l-footer__privacy {
        position: static;
        font-size: 1.2rem;
    }
}

@media all and (min-width: 1441px) {
    .l-footer {
        padding-top: 110px;
    }

    .l-footer .l-footer__inner {
        width: min(100%, 1320px);
    }

    .l-footer .l-footer-logo img {
        width: 80px;
    }

    .l-footer .l-footer-list {
        padding-top: 30px;
    }

    .l-footer .l-footer__text {
        margin-top: 14px;
        font-size: 1.5rem;
    }

    .l-footer .l-footer__bottom {
        margin-top: 120px;
    }
}


/**
 * Editor-area
 * ==========================================================================
 */


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

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

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

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


/**
 * 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.8em;
}

.editor-area h2 {
    padding-left: 20px;
    font-size: 1.6em;
    border-left: 5px solid var(--clrMain);
}

.editor-area h3 {
    padding-bottom: 0.4em;
    font-size: 1.4em;
    border-bottom: 1px solid var(--clrMain);
}

.editor-area h4,
.editor-area h5 {
    font-size: 1.3em;
}

.editor-area a:not(.c-button) {
	text-decoration: underline;
    color: var(--clrMain);
}

.editor-area a:not(.c-button):hover {
	text-decoration: none;
}

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

.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 {
    list-style-type: none;
    counter-reset: count 0;
}

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

.editor-area ol li:before {
    content: counter(count, decimal)'. ';
    counter-increment: count 1;
    width: 22px;
    position: absolute;
    top: 1px;
    right: calc(100% - 10px);
    text-align: right;
    font-size: 1.3rem;
    font-family: var(--fntEn);
    color: var(--clrMain);
}

.editor-area ul {
    list-style: none;
}

.editor-area ul li {
    padding-left: 0.8em;
    position: relative;
    line-height: 1.6;
}

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

.editor-area ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    top: calc(0.8em - 2px);
    left: 0;
    background: var(--clrMain);
    border-radius: 100%;
}

.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;
}

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

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

.editor-area table th {
    min-width: 120px;
	padding: 20px;
    color: #fff;
    background: var(--clrMain);
}

.editor-area table tr:not(:first-child) th {
    border-top: 1px dotted var(--clrBorderTertiary);
}

.editor-area table td {
	padding: 20px;
    border: 1px dotted var(--clrBorderTertiary);
}

.editor-area blockquote {
	margin: 1.6em auto;
	padding: 40px 40px;
	position: relative;
	z-index: 1;
	clear: both;
    border: 1px dotted var(--clrBorderTertiary);
	-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: var(--clrBorderPrimary);
}

.editor-area blockquote:before {
	content: "“";
	top: 5px;
	left: 10px;
}

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

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

.editor-area embed,
.editor-area iframe,
.editor-area object,
.editor-area video {
	width: 100%;
	max-width: 100%;
	margin: 1.6em auto;
	display: block;
}

.editor-area a:not(.c-button) img {
	margin: 0.8em auto;
    vertical-align: middle;
}

.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;
}

.editor-area .c-button {
    margin-bottom: 5px;
    padding: 11px 24px;
}

@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;
    }

    .editor-area ol li:before {
        top: -1px;
        font-size: 1.5rem;
    }

    .editor-area .c-button {
        padding: 14px 24px;
    }
}

@media all and (min-width: 1441px) {
    .editor-area {
        font-size: 1.6rem;
    }

    .editor-area blockquote {
        padding: 40px 60px;
    }

    .editor-area .c-button:not(.-alignCenter) .c-button__text {
        padding-right: 40px;
    }
}
