@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
}
header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
    display: block;
}
li {
    list-style: none;
}
ol li {
    list-style: decimal;
}
img {
    max-width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    border: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
caption,
th {
    text-align: left;
}
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}
input,
select {
    vertical-align: middle;
}
input,
textarea {
    margin: 0;
    padding: 0;
}
/*----------------------------------------
	Common
----------------------------------------*/
html {
    width: 100%;
    font-size: 62.5%;
    scroll-behavior: smooth;
}
@media only screen and (max-width: 375px) {
    html {
        font-size: 58%;
    }
}
body {
    font-family: 'Zen Kaku Gothic New',"Noto Sans CJK JP", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Droid Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    position:relative;
    z-index: 0;
    line-height: 1.75;
    letter-spacing: .04em;
    color: #231815;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    height: 100%;
    position: relative;
}

a {
    color: #231815;
    outline: none;
    text-decoration: underline;
}
a:hover {
    color: #231815;
    text-decoration: none;
}
a[href^="tel:"] {
	cursor: default;
}
.show-mobile-inline,
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
.br-mobile {
    display: none !important;
}
.inner {
    width: 77%;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.f-bold {
    font-weight: bold;
}
.mt-1 {
    margin-top: 1rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mb-4 {
    margin-bottom: 4rem;
}
.t-blue {
    color: #0181C0;
}
.t-red {
    color: #E34371;
}
@media only screen and (min-width: 769px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
@media only screen and (max-width: 992px) {
    body {
        font-size: 1.4rem;
    }
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
    .br-mobile {
        display: block !important;
    }
    main {
        /* overflow-x: hidden; */
    }
}
@media only screen and (max-width: 767px) {
    .inner {
        width: 82%;
    }
}


/*----------------------------------------
	Animation
----------------------------------------*/
.animate.delay1 {
    transition-delay: .1s;
}
.animate.delay2 {
    transition-delay: .2s;
}
.animate.delay3 {
    transition-delay: .3s;
}
.animate.delay4 {
    transition-delay: .4s;
}
.animate.delay5 {
    transition-delay: .5s;
}
.animate.delay6 {
    transition-delay: .6s;
}
.animate.delay7 {
    transition-delay: .7s;
}
.animate.delay8 {
    transition-delay: .8s;
}
.animate.delay9 {
    transition-delay: .9s;
}
.animate.delay10 {
    transition-delay: 1s;
}
.fadeIn {
    transition: opacity 1s .1s;
    opacity: 0;
}
.fadeIn.inview {
    opacity: 1;
}
.fadeUpIn {
    transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
    transform: translateY(30px);
    opacity: 0;
}
.fadeUpIn.inview{
    transform: translateY(0);
    opacity: 1;
}
.blurIn {
    animation-name: blurInAnime;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
@keyframes blurInAnime {
    0% {
        filter:blur(15px);
        transform:scale(1.02);
        opacity:0
    }
    100% {
        filter:blur(0);
        transform:scale(1);
        opacity:1
    }
}

/*----------------------------------------
	Components
----------------------------------------*/

/* 入力フォーム */
.c-input {
    width: 100%;
    padding: 1.6rem;
    transition: all .3s ease;
    font-size: 1.5rem;
    border: 1px solid #CCC;
    border-radius: 4px;
    outline: none;
    background-color: #ebebeb;
    appearance: none;
}
.c-input-date {
    width: 200px;
    padding: 1.6rem;
    transition: all .3s ease;
    font-size: 1.5rem;
    border: 1px solid #CCC;
    border-radius: 4px;
    outline: none;
    background-color: #ebebeb;
    appearance: none;
}
.c-select-time {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 4px;
    border-radius: 4px;
    background: #EEE no-repeat;
    vertical-align: middle;
    border: 1px solid #CCC;
    font-size: 15px;
    width: 100px;
    padding: 1.6rem;
    margin-left: 1rem;
}
.c-textarea {
    font-size: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    height: 360px;
    padding: 1.6rem;
    transition: all .3s ease;
    border: 1px solid #CCC;
    border-radius: 4px;
    outline: none;
    background-color: #ebebeb;
    appearance: none;
}
.c-select {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 4px;
    border-radius: 4px;
    background: #EEE no-repeat;
    vertical-align: middle;
    border: 1px solid #CCC;
    font-size: 15px;
    width: 300px;
    padding: 1.6rem;
}
/* ボタン */
.c-button {
    background-color: rgba(255, 255, 255, .3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem 1.3rem 1rem;
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
    font-weight: 500;
}
.c-button:hover {
    background-color: #00aa7b;
    color: #fff;
    text-decoration: none;
}
.c-required {
    font-size: 1.4rem;
    color: #E74400;
}
.c-input-unit {
    margin: 0 2rem 0 .4rem;
}
/* パンクズ */
.c-bread-crumb {
    font-size: 1.2rem;
    color: #989898;
}
.c-bread-crumb ul {
    display: flex;
    justify-content: end;
    padding: 2rem 0;
    line-height: 1;
    overflow-x: auto;
    white-space: nowrap;
}
.c-bread-crumb ul li {
    position: relative;
    flex: 0 0 auto;
    list-style: none;
}
.c-bread-crumb ul li:not(:first-child):before {
    position: absolute;
    top: 50%;
    display: block;
    content: '／';
    transform: translate(-50%, -50%);
}
.c-bread-crumb ul li a {
    color: #0181C0;
    padding-right: 1.4rem;
    text-decoration: none;
}
.c-bread-crumb ul li:not(:first-child) a {
    padding-left: 1.4rem;
}
.c-bread-crumb ul li span {
    color: #929292;
    padding-left: 1.4rem;
}


@media only screen and (max-width: 992px) {
    .c-input-unit {
        margin: 0 1rem 0 0.2rem;
    }
    .c-button {
        font-size: 1.6rem;
        padding: 1.6rem 3rem 2rem 3rem;
    }
    .c-bread-crumb ul {
        justify-content: start;
    }
    .c-bread-crumb ul li {
        font-size: 1rem;
    }
}

/*----------------------------------------
	Layout
----------------------------------------*/
.l-main {
    position: relative;
}
.l-header {
    position: fixed;
    width: 50vw;
    top: 0;
    z-index: 10;
}
.l-footer {
    width: 50vw;
}
.l-content {
    min-height: 100vh;
    width: 50vw;
    padding: 8rem 0;
}
.l-visual {
    height: 100vh;
    width: 50vw;
    position: fixed;
    top: 0;
    right: 0;
}
@media only screen and (max-width: 992px) {
    .l-header {
        width: 100%;
    }
    .l-main {

    }
    .l-visual {
        height: 72vh;
        width: auto;
        position: relative;
        top: initial;
        right: initial;
    }
    .l-content {
        width: 100vw;
        padding: 4rem 0;
    }
    .l-footer {
        width: 100vw;
    }
}
@media only screen and (max-width: 767px) {
}

/*----------------------------------------
	Loading
----------------------------------------*/
.p-loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    background: #fff;
}

/*----------------------------------------
	Header
----------------------------------------*/
.p-header {
    position: relative;
    width: 100%;
    height: 6.4rem;
    display: flex;
    align-items: center;
    padding: 0 3.145%;
}
/* ロゴ */
.p-header-logo {
    width: 18rem;
}
.p-header-logo a {
    display: block;
    cursor: pointer;
    transition: .3s;
}
.p-header-logo a:hover {
    opacity: .6;
}
/* 言語切り替え */
.p-menu-language {
    position: absolute;
    top: 2rem;
    right: 7.4rem;
    z-index: 1001;
    width: 7rem;
    line-height: 1;
    color: #fff;
}
.p-menu-language span,
.p-menu-language a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: .2em;
}
.p-menu-language .jp {
    position: relative;
    padding-right: .6rem;
    margin-right: .6rem;
}
.p-menu-language .jp::after {
    content: '';
    display: block;
    width: 1px;
    height: 1.4rem;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.is-bg_white .p-menu-language,
.is-bg_white .p-menu-language span,
.is-bg_white .p-menu-language a {
    color: #000;
}
.is-bg_white .p-menu-language .jp::after {
    background-color: #000;
}
/* メニューボタン */
.p-menu-open-btn {
    position: absolute;
    top: 1.6rem;
    right: 2.4rem;
    z-index: 1001;
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: .3s;
}
.p-menu-open-btn:hover {
    transform: scaleX(1.2);
}
.p-menu-open-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: calc(50% - 11px);
    transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-bg_white .p-menu-open-btn span {
    background-color: #000;
}
.p-menu-open-btn span.l1 {
    top: 6px;
}
.p-menu-open-btn span.l2 {
    top: 12px;
}
.menu-open .p-menu-open-btn span.l1 {
    top: 9px;
    transform: rotate(45deg);
}
.menu-open .p-menu-open-btn span.l2 {
    top: 9px;
    transform: rotate(-45deg);
}
.p-header .p-gnav {
    position: fixed;
    top: 0;
    right: -10vw;
    z-index: 1000;
    width: 50vw;
    height: 100vh;
    padding: 5%;
    transition-property: right, opacity;
    transition-duration: .3s,.4s;
    overflow-y: scroll;
    background-color: #00aa7b;
    opacity: 0.5;
    visibility: hidden;
}
.p-header .p-gnav a {
    color: #fff;
}
.p-header .p-gnav__main {
    border-top: 1px solid rgba(255,255,255, .7)
}
.p-header .p-gnav__main li {
    border-bottom: 1px solid rgba(255,255,255, .7)
}
.p-header .p-gnav__other li:not(:last-of-type) a::after {
    border-left: 1px solid rgba(255,255,255, .7)
}
.p-header .p-gnav__main li a small::before {
    border-bottom: 1px solid rgba(255,255,255, .7)
}
.p-header .p-gnav__address {
    color: #fff;
}
.menu-open .p-header .p-gnav {
    right: 0;
    opacity: 1;
    visibility: visible;
}
@media only screen and (max-width: 992px) {
    .p-header .p-gnav {
        width: 100vw;
        padding-top: 7rem;
    }
    .menu-open .p-header .p-gnav {
        padding-left: 6%;
        padding-right: 6%;
    }
    /* ロゴ */
    .p-header-logo {
        width: 14rem;
    }
}


/*----------------------------------------
	Footer
----------------------------------------*/
.p-footer {
    padding: 5rem 0;
}
.p-footer__address {
    width: 81%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: .1rem;
}
.p-footer__address .address a {
    margin-left: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.p-footer__address .copyright {
    margin-top: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .06em;
}


/*----------------------------------------
	共通パーツ
----------------------------------------*/
/* ビジュアル */
.l-visual .swiper {
    width: 100%;
    height: 100%;
}
.p-visual {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}
.p-visual__image {
    display: block;
    width: 100%;
    height: 100%;
}
.p-visual__image::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4) url(../img/common/noise.png) repeat center;
    background-size: 27rem auto;
}
.l-visual:hover .p-visual__image::before {
    mix-blend-mode: hard-light;
    animation: noise 1s steps(2) infinite;
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    /* animation-iteration-count: 1; */
}
@keyframes noise {
    to {
    background-position: 0 0;
    }
    10% {
    background-position: -5% -10%;
    }
    20% {
    background-position: -15% 5%;
    }
    30% {
    background-position: 7% -25%;
    }
    40% {
    background-position: 20% 25%;
    }
    50% {
    background-position: -25% 10%;
    }
    60% {
    background-position: 15% 5%;
    }
    70% {
    background-position: 0 15%;
    }
    80% {
    background-position: 25% 35%;
    }
    90% {
    background-position: -10% 10%;
    }
}
.p-visual__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.p-visual__copy {
    position: absolute;
    z-index: 2;
    bottom: 3rem;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
    /* transform: skew(-2deg, -7deg); */
    opacity: 0;
}
.swiper-slide-active .p-visual__copy {
    transition: 1.4s linear;
    transition-delay: 1s;
    opacity: 1;
}
.p-visual__copy .copy {
    font-size: 4.2rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: #fff;
    margin-bottom: 3.2rem;
    width: 70%;
    max-width: 40rem;
}
.p-visual__copy .title {
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: .1em;
    font-weight: 700;
    text-indent: 1rem;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
}
.p-visual__copy .title a {
    display: block;
    text-decoration: none;
    color: #fff;
}
.p-visual__copy .title a:hover {
    text-decoration: underline;
}
.p-visual__copy .post-title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: #fff;
}
.p-visual__title a:first-of-type {
    margin-right: 2rem;
}
.p-visual__title a:last-of-type {
    margin-left: 2rem;
}
/* グロナビ */
.p-gnav {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}
.p-gnav a {
    font-size: 1.6rem;
    text-decoration: none;
    transition-property: opacity;
    transition-duration: .4s;
}
.p-gnav a:hover {
    opacity: .6;
}
.p-gnav__main {
    border-top: 1px solid #3e3a39;
}
.p-gnav__main li {
    border-bottom: 1px solid #3e3a39;
}
.p-gnav__main li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.6rem 0;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: .2rem;
}
.p-gnav__main li a span {
    margin-right: 1rem;
}
.p-gnav__main li a small {
    position: relative;
    font-size: 1.1rem;
    letter-spacing: .1em;
    padding: 0.5rem 0 0.5rem 2rem;
}
.p-gnav__main li a small::before {
    content: '';
    display: block;
    width: 1rem;
    height: 0.1rem;
    border-bottom: 1px solid #3e3a39;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.p-gnav__other {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.1rem;
    letter-spacing: .1rem;
    line-height: 1.8;
    width: 92%;
    margin: 2.4rem auto;
}
.p-gnav__other li a {
    display: block;
    position: relative;
    padding-right: 1.6rem;
    margin-right: 1.6rem;
    font-size: 1.1rem;
}
.p-gnav__other li:not(:last-of-type) a::after {
    content: '';
    display: block;
    height: 1.4rem;
    width: .1rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-left: 1px solid #3e3a39;
}
.p-gnav .p-gnav__address {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: .1rem;
}
.p-gnav .p-gnav__address .address a {
    font-size: 1.1rem;
    margin-left: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-decoration: underline;
}
.p-gnav .p-gnav__address .copyright {
    margin-top: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .06em;
}
/* 戻るボタン */
.p-gotop {
    margin: 2rem 0 4rem 0;
}
.p-gotop span {
    display: block;
    width: 4.2rem;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s;
}
.p-gotop span:hover {
    transform: translateY(-.5rem);
}
/* ページタイトル */
.p-page-title {
    margin-top: 3rem;
    margin-bottom: 6rem;
}
.p-page-title .title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: .24em;
    line-height: 1.65;
}
.en .p-page-title .title {
    letter-spacing: .12em;
}
.p-page-title .meta {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
    text-indent: .2rem;
    display: flex;
    justify-content: space-between;
}
.p-page-title .meta .category {
    font-weight: 600;
}
.p-page-title .meta .date {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .06em;
}

@media only screen and (max-width: 992px) {
    .p-page-title .title {
        font-size: 2.8rem;
    }
    .p-gnav__main li a,
    .p-gnav__other {
        width: 94%;
    }
    .p-footer__address {
        width: 82%;
    }
    .p-visual__copy .copy {
        font-size: 4rem;
        margin-bottom: 2.8rem;
    }
    .p-visual__copy .title {
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-visual__copy .copy {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
    .p-visual__copy .title {
        font-size: 1.1rem;
        text-indent: 0.6rem;
    }
    .p-visual__copy .post-title {
        font-size: 2.4rem;
    }
}

/*----------------------------------------
	トップページ
----------------------------------------*/
/* グロナビ */
.page-top .p-header .p-gnav {
    background-color:#5185c5;
}
/* ビジュアル */
.page-top .p-visual {
    
}
/* コンテンツ背景 */
.page-top .l-content {
    background: linear-gradient(180deg, #00aa7b, #5185c5);
}
/* トップ：ロゴ */
.p-top-logo {
    text-align: center;
    width: 80%;
    min-width: fit-content;
    margin: 0 auto;
    padding: 0 0 8rem 0;
}
.p-top-logo .mark {
    max-width: 40rem;
    width: 76%;
}
.p-top-logo .name-en {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    letter-spacing: .12em;
    font-weight: 400;
    margin-top: 1.4rem;
    color: #fff;
}
.p-top-logo .name-jp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}
.p-top-logo span {
    display: block;
    margin-top: .4rem;
    color: #fff;
    letter-spacing: .14em;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
}
.p-top-logo span:first-of-type {
    margin-right: 1rem;
    padding-right: 1rem;
}
.p-top-logo span:first-of-type::after {
    content: '';
    display: block;
    width: 1px;
    height: 1.2rem;
    position: absolute;
    top: calc(50% + 0.1rem);
    right: 0;
    transform: translateY(-50%);
    background-color: #fff;
}
/* トップ：セクション */
.p-top-section {
    padding: 0 0 15% 0;
}
/* トップ：お知らせセクション */
.p-top-section.news {
    width: 80%;
    margin: 2rem auto 20% auto;
}
.p-top-section.news h2 {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: .2em;
    font-weight: 500;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-top-section.news h2 a {
    color: #fff;
    width: fit-content;
    padding-right: 1.6rem;
    text-decoration: none;
}
.p-top-section.news h2::after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background-color: rgba(255,255,255, .7);
}
.p-top-section.news ul {
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    margin-bottom: 1.2rem;
    padding-bottom: 2.4rem;
}
.p-top-section.news ul li {
    margin-bottom: 1rem;
}
.p-top-section.news ul li a {
    color: #fff;
    display: flex;
    text-decoration: none;
    font-size: 1.3rem;
    overflow: hidden;
}
.p-top-section.news ul li a .date {
    font-family: 'Roboto', sans-serif;
    padding-right: 2rem;
}
.p-top-section.news ul li a .title {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}
.p-top-section.news ul li a:hover .title {
    text-decoration: none;
}
.p-top-section.news nav a {
    color: #fff;
}
/* トップ：固定頁セクション */
.p-top-section__block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 66.66666%;
    margin-left: auto;
    margin-right: auto;
}
.p-top-section__block .image {
    display: block;
    /* max-width: 25vw; */
    width: 77%;
}
.p-top-section__block .image a {
    display: block;
    overflow: hidden;
}
.p-top-section__block .image a img {
    transition: 1s;
}
.p-top-section__block .image a:hover img {
    transform: scale(1.05);
}
.p-top-section__block .content {
    width: 100%;
    color: #fff;
    margin-top: -5rem;
    position: relative;
}
.p-top-section__block .content h2 {
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: .24em;
    line-height: 1.5;
}
.en .p-top-section__block .content h2 {
    letter-spacing: .06em;  
}
.p-top-section__block .content p {
    letter-spacing: .06em;
    margin-top: 3.2rem;
}
.p-top-section__block .content nav {
    margin-top: .8rem;
}
.p-top-section__block .content nav a {
    letter-spacing: .04em;
    color: #fff;
}
@media only screen and (max-width: 1300px) {
    .p-top-logo .name-jp {
        flex-direction: column;
        margin-top: 1.4rem;
    }
    .p-top-logo span:first-of-type {
        margin-right: initial;
        padding-right: initial;
    }
    .p-top-logo span:first-of-type::after {
        display: none;
    }
}
@media only screen and (max-width: 992px) {
    .p-top-logo {
        padding: 3rem 0 7rem 0;
    }
    .p-top-section {
        padding: 0 0 20% 0;
    }
    .p-top-section.news {
        width: 77%;
        margin-bottom: 24%;
    }
    .p-top-section__block {
        width: 77%;
    }
    .p-top-section__block .content h2 {
        font-size: 3rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-top-section.news {
        width: 84%;
    }
    .p-top-section__block {
        width: 84%;
    }
}


/*----------------------------------------
	教授一覧
----------------------------------------*/
/* グロナビ */
.page-laboratories-list .p-header .p-gnav {
    background-color:#49bcbd;
}
/* コンテンツ背景 */
.page-laboratories-list .l-content {
    background: linear-gradient(180deg, #f8b73d, #49bcbd);
    color: #fff;
}
.p-laboratories-list-section__division-summary {
    margin-bottom: 5rem;
}
.p-laboratories-list-section__division-summary h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .2rem;
}
.p-laboratories-list-section__division-summary p {
    font-size: 1.2rem;
    margin-top: 1rem;
}
.p-laboratories-list .item {
    width: 32rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 8rem;
}
.p-laboratories-list .item .image {
    margin-bottom: 2.8rem;
    display: block;
}
.p-laboratories-list .item .image a {
    display: block;
    overflow: hidden;
}
.p-laboratories-list .item .image a img {
    transition: 1s;
}
.p-laboratories-list .item .image a:hover img {
    transform: scale(1.05);
}
.p-laboratories-list .item .content .division {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1.4rem;
}
.p-laboratories-list .item .content h2 {
    display: flex;
    align-items: center;
    line-height: 1.2;
}
.p-laboratories-list .item .content h2 .jp {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: .4rem;
}
.en .p-laboratories-list .item .content h2 .jp {
    letter-spacing: .2rem;
}
.p-laboratories-list .item .content h2 .en {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: .06rem;
    margin-left: 1rem;
}
.p-laboratories-list .item .content nav {
    margin-top: 1.4rem;
    font-weight: 500;
}
.p-laboratories-list .item .content nav a {
    color: #fff;
}


/*----------------------------------------
	教授詳細
----------------------------------------*/
.page-laboratories-detail .l-content {
    padding-bottom: 8rem;
}
/* グロナビ */
.page-laboratories-detail .p-header .p-gnav {
    background-color:#49bcbd;
}
/* コンテンツ背景 */
.page-laboratories-detail .l-content {
    background: linear-gradient(180deg, #f8b73d, #49bcbd);
    color: #fff;
}
.p-laboratories-detail {
    margin-bottom: 5rem;
}
.p-laboratories-detail .swiper {
    width: 50vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -25vw;
    margin-right: -25vw;
    margin-bottom: 5rem;
    display: block;
}
.p-laboratories-detail .swiper img {
    width: 100%;
}
.p-laboratories-detail .name {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: .6rem;
    line-height: 1;
}
.p-laboratories-detail .major {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .4rem;
    margin-top: 1.2rem;
}
.en .p-laboratories-detail .major {
    letter-spacing: .2rem;
}
.p-laboratories-detail .information {
    font-size: 1.4rem;
    margin-top: 2rem;
}
.p-laboratories-detail .information h3 {
    font-weight: 100;
}
.p-laboratories-professor {
    display: flex;
    flex-direction: column;
    padding: 4.8rem 0 5.6rem 0;
}
.p-laboratories-professor .image {
    width: 77%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}
.p-laboratories-professor .content .division {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .1rem;
    margin-bottom: .72rem;
}
.p-laboratories-professor .content h2 {
    display: flex;
    flex-direction: column;
    font-weight: 500;
}
.p-laboratories-professor .content h2 .jp {
    font-size: 3rem;
    letter-spacing: .4rem;
    line-height: 1;
}
.p-laboratories-professor .content h2 .en {
    font-size: 1.2rem;
    letter-spacing: .1rem;
    margin-top: 1.2rem;
}
.p-laboratories-professor .content .summary {
    margin-top: 2rem;
    font-size: 1.4rem;
}
.p-laboratories-navi {
    line-height: normal;
}
.p-laboratories-navi a.c-button {
    font-size: 1.8rem;
}
.p-laboratories-navi a:not(:last-of-type) {
    margin-bottom: 1.6rem;
}
.p-laboratories-navi a.c-button:hover {
    background-color: #f8b73d;
}
@media only screen and (max-width: 992px) {
    .p-laboratories-navi a.c-button {
        font-size: 1.6rem;
    }
    .p-laboratories-detail .image {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .p-laboratories-detail .swiper {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }
}

/*----------------------------------------
	卒業生に聞いてみた
----------------------------------------*/
.p-graduate-voice-section {
    margin-top: 8rem;
}
.p-graduate-voice .item {
    border-bottom: 1px dashed rgba(35, 24, 21, .6);
    padding-bottom: 5rem;
    margin-bottom: 5rem;
}
.p-graduate-voice .item .heading {
    display: flex;
    justify-content: space-between;
}
.p-graduate-voice .item .heading .image {
    width: 36%;
}
.p-graduate-voice .item .heading .content {
    width: 56%;
    margin-top: -0.4rem;
}
.p-graduate-voice .item .heading .content h2 {
    font-size: 2.5rem;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}
.p-graduate-voice .item .heading .content .meta {
    display: flex;
    flex-direction: column;
}
.p-graduate-voice .item .heading .content .meta .name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: .4rem;
}
.p-graduate-voice .item .heading .content .meta .profile {
    font-size: 1.3rem;
}
.p-graduate-voice .item .body {
    margin-top: 3.2rem;
    text-align: justify;
}
@media only screen and (max-width: 992px) {
    .p-graduate-voice .item .heading .image {
        width: 34%;
    }
    .p-graduate-voice .item .heading .content {
        width: 58%;
    }
    .p-graduate-voice .item .heading .content h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/*----------------------------------------
	在学生に聞いてみた（一覧）
----------------------------------------*/
.p-student-voice-list {
    margin-top: 8rem;
}
.p-student-voice-list .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.p-student-voice-list .item:not(:last-of-type) {
    margin-bottom: 8rem;
    padding-bottom: 8rem;
    border-bottom: 1px solid #231815;
}
.p-student-voice-heading {
    width: 100%;
}
.p-student-voice-heading .image {
    display: block;
    width: 77%;
    margin-left: auto;
    margin-right: auto;
}
.p-student-voice-heading .content {
    width: 100%;
    position: relative;
    padding: 11rem 0 0 0;
}
.p-student-voice-heading .content h2 {
    font-size: 2.5rem;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: .1em;
    position: absolute;
    z-index: 2;
    top: -6rem;
    right: -3rem;
    width: 50%;
    /* transform: skew(-2deg, -7deg); */
}
.p-student-voice-heading .content .meta .name {
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
    line-height: 1;
}
.p-student-voice-heading .content .meta .name .jp {
    font-size: 2.2rem;
    font-weight: 600;
    margin-right: 1.8rem;
}
.p-student-voice-heading .content .meta .name .en {
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}
.p-student-voice-heading .content .meta .profile {
    font-size: 1.3rem;
    font-weight: 400;
}
.p-student-voice-heading .content .meta .profile li {
    position: relative;
    padding-left: 1rem;
}
.p-student-voice-heading .content .meta .profile li::before {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    top: 1rem;
    left: 0.2rem;
}
.p-student-voice-list .item nav {
    margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
    .p-student-voice-list {
        width: 82%;
    }
    .p-student-voice-heading .content {
        padding: 8rem 0 0 0;
    }
    .p-student-voice-heading .content h2 {
        z-index: 2;
        top: -7rem;
        right: -2rem;
        width: 55%;
    }
}
/*----------------------------------------
	卒業生に聞いてみた（詳細）
----------------------------------------*/
.p-student-voice {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.page-student-voice .p-student-voice-heading .content {
    padding: 6.4rem 0 0 0;
}
.p-student-voice-body {
    margin-top: 8rem;
}
.p-student-voice-body .wp-block-image,
.p-student-voice-body .image {
    display: block;
    width: 32rem;
    margin: 6.4rem auto;
}
.p-student-voice-qa {
    margin-bottom: 3.2rem;
}
.p-student-voice-qa .question {
    font-weight: 600;
    margin-bottom: 2.4rem;
}
.p-student-voice-qa .answer {
    text-align: justify;
    font-weight: 400;
}
.p-student-voice-navi {
    margin-top: 4.8rem;
}
.p-student-voice-navi a.c-button {
    font-size: 1.8rem;
    background-color: #b5b5b6;
}
.p-student-voice-navi a.c-button:hover {
    background-color: #00aa7b;
}
@media only screen and (max-width: 992px) {
    .page-student-voice .p-student-voice-heading .content {
        padding: 6.4rem 0 0 0;
    }
    .p-student-voice {
        width: 100vw;
    }
    .p-student-voice-navi a.c-button {
        font-size: 1.6rem;
        padding: 1.6rem 2rem 2rem 2rem;
    }
}

/*----------------------------------------
	もっと知りたい
----------------------------------------*/
.page-education {
    font-weight: 100;
}
/* グロナビ */
.page-education .p-header .p-gnav {
    background-color:#e2a2ac;
}
/* コンテンツ背景 */
.page-education .l-content {
    background: linear-gradient(180deg, #00758e, #e2a2ac);
    color: #fff;
}
.page-education .l-content a {
    color: #fff;
}
.p-education-section-title {
    background-color: #fff;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2.6rem;
    padding: 0.9rem 1rem 1.2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-education section:not(:last-of-type) {
    margin-bottom: 10rem;
}
/* 分野別開講科目 */
.p-education-syllabus .p-education-section-title {
    color: #3d8095;
}
.p-syllabus-table {
    display: flex;
    flex-wrap: wrap;
}
.p-syllabus-table dt,
.p-syllabus-table dd {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding: 1.6rem 0 1.8rem 0;
}
.p-syllabus-table dt:first-of-type,
.p-syllabus-table dd:first-of-type {
    padding-top: 0;
}
.p-syllabus-table dt {
    width: 50%;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 500;
}
.p-syllabus-table dd {
    flex: 1;
}
.p-syllabus-table dd p {
    padding: 0 2.4rem;
    border-left: 1px solid #fff;
    margin: 0;
}
.p-syllabus-attention {
    font-size: 1rem;
    margin-top: .5rem;
}
/* 学習の流れ */
.p-education-flow .p-education-section-title {
    margin-bottom: 2rem;
    color: #728a9c;
}
.p-page-body .p-education-flow .image-figure {
    margin-top: 3rem;
}
.p-education-policy .p-education-section-title {
    color: #427c8f;
}
/* 教育目標 */
.p-education-goal .p-education-section-title {
    color: #a995a4;
}
.p-education-goal__list {
    font-weight: 100;
}
.p-education-goal__list dt {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .2rem;
}
.p-education-goal__list dd:not(:last-of-type) {
    margin-bottom: 2rem;
}
/* JABEEプログラム */
.p-education-jabee .p-education-section-title {
    color: #e2a2ac;
}



/*----------------------------------------
	どんなトコ
----------------------------------------*/
/* グロナビ */
.page-overview .p-header .p-gnav {
    background-color:#a688bd;
}
/* コンテンツ背景 */
.page-overview .l-content {
    background: linear-gradient(180deg, #bdd142, #a688bd);
    color: #fff;
}
.page-overview .l-content a {
    color: #fff;
}
.page-overview section:not(:last-of-type) {
    margin-bottom: 10rem;
}
/* 特色 */
.p-page-body .p-overview-feature h2 {
    font-size: 2rem;
}
.p-page-body .p-overview-feature h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.p-overview-access .p-gmap {
    margin-top: 6rem;
}
/* 沿革 */
.p-overview-history dl {
    display: flex;
    flex-wrap: wrap;
}
.p-overview-history dt {
    width: 6rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}
.p-overview-history dd {
    width: calc(100% - 6rem);
    margin-bottom: 1.4rem;
    font-weight: 100;
}

@media only screen and (max-width: 992px) {
    .p-overview-access .p-gmap {
        padding-bottom: 140%;
    }
}

/*----------------------------------------
    入りたい
----------------------------------------*/
/* グロナビ */
.page-apply .p-header .p-gnav {
    background-color:#f29a76;
}
/* コンテンツ背景 */
.page-apply .l-content {
    background: linear-gradient(180deg, #35b597, #f29a76);
    color: #fff;
}
.page-apply .l-content a {
    color: #fff;
}

.page-apply a.c-button:hover {
    background-color: #35B597;
}

.p-apply-link-navi .c-button {
    font-size: 1.8rem;
    line-height: normal;
}
.page-apply section:not(:last-of-type) {
    margin-bottom: 10rem;
}

/* フローチャート */
.p-apply-flow-block {
    margin-bottom: 6rem;
}
.p-apply-flow-chart {
    max-width: 42rem;
    width: 77%;
}
.p-apply-link-navi {
    margin-top: 5rem;
}

/* Q&A */
.p-qa-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid #fff;
}
.p-qa-list {
    margin-bottom: 4rem;
}
.p-qa-list__block {
    margin-bottom: 2.4rem;
}
.p-qa-list__block .question {
    margin-bottom: .8rem;
    font-weight: 600;
}
.p-qa-list__block .answer {
    font-weight: 100;
}

@media only screen and (max-width: 992px) {
    /* フローチャート */
    .p-apply-flow-chart {
        width: 100%;
    }
    .p-apply-link-navi .c-button {
        font-size: 1.6rem;
    }

}

/*----------------------------------------
    NEWS 一覧
----------------------------------------*/
.p-news-list {
    margin-top: 10rem;
}
.p-news-list .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    max-width: 50rem;
}
.p-news-list a {
    text-decoration: none;
    transition: .4s;
}
.p-news-list a:hover {
    opacity: .6;
}
.p-news-list .item {
    width: 46%;
    display: block;
    margin-bottom: 6rem;
}
.p-news-list .item .meta {
    font-size: 1.1rem;
    margin-bottom: .8rem;
    text-indent: .2rem;
    display: flex;
    justify-content: space-between;
}
.p-news-list .item .meta .category {
    font-weight: 600;
}
.p-news-list .item .meta .date {
    font-family: 'Roboto', sans-serif;
    letter-spacing: .06em;
}
.p-news-list .item .title {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.p-news-list .item picture {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 64%;
    position: relative;
    margin-bottom: 1.4rem;
}
.p-news-list .item picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    position: absolute;
    top: 0;
    left: 0;
}
.p-news-list .item .summary {
    font-size: 1.2rem;
}
/* 記事一覧ページング */
.p-pagenation {
    display: flex;
    align-items: center;
    margin: 4rem auto;
    width: fit-content;
    max-width: 80%;
}
.p-pagenation a,
.p-pagenation span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    margin: 0 1rem;
    position: relative;
}
.p-pagenation span {
    font-weight: 600;
}
.p-pagenation a:hover::after,
.p-pagenation span::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #000;
    position: absolute;
    left: 0;
    bottom: 0;
}
/* 記事内ページング */
.p-paging {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8rem auto 0 auto;
}
.p-paging > div {
    width: 33.333%;
}
.p-paging > div a {
    display: flex;
    align-items: center;
    padding: .5rem;
}
.p-paging > div.next a {
    justify-content: end;
}
.p-paging > div.back a {
    justify-content: center;
}
/* 絞り込み状態 */
.p-search-status  {
    font-size: 1.2rem;
    margin-top: 3rem;
}
.p-search-status .inner {
    width: 80%;
    max-width: 50rem;
}
/* 絞り込み条件 */
.p-search-condition {
    border-bottom: 1px solid #000;
}
.p-search-condition.inner {
    width: 80%;
    max-width: 50rem;
    margin-top: 8rem;
}
.p-search-condition .label {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    letter-spacing: .32rem;
    padding: 2rem 1rem;
    cursor: pointer;
    position: relative;
    transition: .2s;
}
.p-search-condition .label::after {
    content: '';
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/common/icon_plus.svg) no-repeat center;
    background-size: contain;
    transition: .2s;
    transform-origin: center;
}
.p-search-condition .label:hover {
    opacity: .6;
}
.p-search-condition .label.open::after {
    transform: rotate(45deg);
    top: calc(50% - 0.7rem);
}
.p-search-condition .item {
    border-top: 1px solid #000;
}
.p-search-condition nav ul {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #000;
    border-left: 1px solid #343434;
    margin-bottom: 6rem;
}
.p-search-condition nav ul li {
    width: 33.3333%;
    padding: 1rem;
    border-bottom: 1px solid #343434;
    border-right: 1px solid #343434;
}
.p-search-condition nav ul li a {
    display: block;
    text-decoration: none;
    transition: .3s;
    font-size: 1.2rem;
}
.p-search-condition nav ul li a:hover {
    opacity: .6;
}
@media only screen and (max-width: 992px) {
    .p-search-condition nav ul li a {
        font-size: 1.1rem;
    }
    .p-news-list .item {
        width: 100%;
    }
    .p-news-list .inner {
        width: 77%;
        max-width: 44rem;
    }
}


/*----------------------------------------
	共通
----------------------------------------*/
.p-page-body {
    font-size: 1.4rem;
}
.p-page-body h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}
.p-page-body h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.p-page-body p {
    margin-bottom: 3rem;
    text-align: justify;
}
.p-page-body ul {
    margin-bottom: 3rem;
}
.p-page-body .check-list {
    margin-bottom: 2.5rem;
}
.p-page-body .check-list li {
    position: relative;
    padding: 0 0 0 1.6rem;
}
.p-page-body .check-list li::before {
    display: block;
    content: '';
    width: .8rem;
    height: .8rem;
    border: 1px solid #fff;
    position: absolute;
    left: 0;
    top: .65rem;
}
/* 説明図 */
.p-page-body .image-figure {
    display: block;
    margin: 6rem auto;
    max-width: 44rem;
}
/* イメージ画像 */
.p-page-body .image-picture {
    display: block;
    margin: 6rem auto;
    /* max-width: 32rem; */
    width: 77%;
}
/* Google Map 埋め込み */
.p-gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.p-gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .p-page-body .image-picture {
        width: 88%;
    }
}


/*----------------------------------------
	404ページ
----------------------------------------*/
.p-404 {
    text-align: center;
    font-weight: 500;
    padding: 14rem 0;
}
.p-404 h1 {
    line-height: 1;
    margin: 0 auto 8rem auto;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.p-404 h1 span {
    display: block;
    font-size: 2.4rem;
    letter-spacing: .08em;
}
.p-404 h1 span:first-of-type {
    font-size: 14rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: #00aa7b;
}
.p-404-content p {
    line-height: 2;
}
.p-404-back-navi {
    margin-top: 4rem;
}
.p-404-back-navi a {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8rem;
    background-color: #b5b5b6;
}
@media only screen and (max-width: 992px) {
    .p-404-back-navi a {
        font-size: 1.6rem;
        padding: 1.6rem 2rem 2rem 2rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-404 h1 span:first-of-type {
        font-size: 12rem;
        margin-bottom: 1rem;
    }
    .p-404 h1 span {
        font-size: 2.6rem;
    }
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none !important;
}