@charset "UTF-8";

:root {
    --font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    --font-english: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN ", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif, sans-serif;
    /*英字見出し*/
    --text-color: #3f1c04;
    /*フォントカラー*/
    --main-color: #faf3d9;
    /*メインカラー*/
    /*背景ズレてるカラー*/
    --sub-color: #bd9454;
    /*英字１文字目*/
    --sub-color2: #e2d7b0;
    /*英字見出し*/
    --sub-color3: #ffffff;
    /*ヘッダー背景色*/
    --accent-color: #bd9454;
    /*お問い合わせボタン・ブログ一覧ボタン*/
    --accent-color2: #a9bd9f;
    /*ポイント③カラー*/
    --accent-color3: #bd9454;
    /*フォーム「任意」背景色*/
    --background-effect: #bd9454;
    /*fv背景色*/
    --staff-txt: #ffffff;
    /*スタッフフォントカラー*/
    --staff-title: #ffffff;
    /*スタッフ英字見出しカラー*/
    --staff-background: #a9bd9f;
    /*スタッフ背景カラー*/
    --footer-background: #bd9454;
    /*フッター背景*/
}

/* var(--font-family) */

body {
    font-family: var(--font-family);
}

.u-desktop {
    display: none;
}

@media screen and (min-width: 768px) {
    .u-desktop {
        display: block;
    }
}

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

/* リキッドレイアウト対応 */
html {
    font-size: 16px;
}

@media (max-width: 375px) {
    html {
        font-size: 4.2666666667vw;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 1.6vw;
    }
}

@media (min-width: 1000px) {
    html {
        font-size: 16px;
    }
}

html.addmin {
    margin-top: 0px !important;
    margin-top: 0rem !important;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/* ホバー */
a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core root defaults */
html {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    color: var(--text-color);
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
    width: 100%;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type=checkbox],
input[type=radio] {
    display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

.inner {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .inner {
        max-width: 1050px;
        padding-right: 25px;
        padding-left: 25px;
    }
}

.test {
    font-size: 20px;
    font-size: 1.25rem;
    background-color: #333333;
    color: var(--staff-txt);
}

.c-breadcrumb {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .c-breadcrumb {
        font-size: 1rem;
        margin-top: 7.5rem;
    }
}

.c-breadcrumb__home {
    position: relative;
    padding-left: 20px;
    padding-left: 1.25rem;
}

.c-breadcrumb__home::before {
    position: absolute;
    content: "";
    left: 0;
    display: inline-block;
    width: 16px;
    width: 1rem;
    height: 16px;
    height: 1rem;
    background: url(../images/top/clarity_house-line.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-button-black {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: var(--accent-color);
    border: 1px solid #ffffff;
    position: relative;
    color: var(--staff-txt);
    font-weight: 800;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: inherit;
}

.c-button-black:hover {
    color: var(--accent-color);
    background-color: #ffffff;
    border: 1px solid var(--accent-color);
}

.c-button-white {
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #ffffff;
    position: relative;
    color: var(--accent-color);
    font-weight: 800;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: inherit;
}

.c-button-white:hover {
    color: var(--staff-txt);
    background-color: var(--accent-color);
    border: 1px solid #ffffff;
}

.c-button {
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-hamburger {
    z-index: 9999;
}

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

.c-hamburger span {
    position: relative;
    display: block;
    height: 2px;
    width: 32px;
    background: #333333;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
    border-radius: 20px;
}

.c-hamburger span:nth-child(1) {
    top: 0;
}

.c-hamburger span:nth-child(2) {
    margin: 8px 0;
}

.c-hamburger span:nth-child(3) {
    top: 0;
}

/*OPEN時の動き*/
.c-hamburger.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.c-hamburger.open span:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.c-hamburger span.color {
    background: #333333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.c-hamburger.hamburgerColor span {
    background: #333333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hamburgerColor.color span {
    background: #333333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.c-pagination {
    margin-top: 32px;
    margin-top: 2rem;
}

@media screen and (min-width: 768px) {
    .c-pagination {
        margin-top: 4rem;
    }
}

.c-pagination__inner {
    text-align: center;
}

.wp-pagenavi span.current {
    font-size: 16px;
    font-size: 1rem;
    border: 1px solid #ffffff;
    background-color: var(--accent-color);
    color: var(--staff-txt);
    padding: 5px 10px;
    padding: 0.3125rem 0.625rem;
    display: inline-block;
    margin-right: 4px;
    margin-right: 0.25rem;
    margin-left: 4px;
    margin-left: 0.25rem;
    text-align: center;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .wp-pagenavi span.current {
        width: 2rem;
        font-size: 1.25rem;
        padding: 0.3125rem 0.625rem;
        display: inline-block;
        min-width: 40px;
        min-width: 2.5rem;
        text-align: center;
        text-decoration: none;
    }
}

.page.larger {
    font-size: 16px;
    font-size: 1rem;
    border: 1px solid #333333;
    background-color: transparent;
    color: #333333;
    padding: 5px 10px;
    padding: 0.3125rem 0.625rem;
    display: inline-block;
    margin-right: 4px;
    margin-right: 0.25rem;
    margin-left: 4px;
    margin-left: 0.25rem;
    text-align: center;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .page.larger {
        width: 2rem;
        font-size: 1.25rem;
        padding: 0.3125rem 0.625rem;
        min-width: 40px;
        min-width: 2.5rem;
        text-align: center;
        text-decoration: none;
    }
}

.page.smaller {
    font-size: 16px;
    font-size: 1rem;
    border: 1px solid #333333;
    background-color: transparent;
    color: #333333;
    padding: 5px 10px;
    padding: 0.3125rem 0.625rem;
    display: inline-block;
    margin-right: 4px;
    margin-right: 0.25rem;
    margin-left: 4px;
    margin-left: 0.25rem;
    text-align: center;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .page.smaller {
        width: 2rem;
        font-size: 1.25rem;
        padding: 0.3125rem 0.625rem;
        min-width: 40px;
        min-width: 2.5rem;
        text-align: center;
        text-decoration: none;
    }
}

.previouspostslink,
.nextpostslink {
    font-size: 16px;
    font-size: 1rem;
    border: 1px solid #333333;
    background-color: transparent;
    color: #333333;
    padding: 5px 10px;
    padding: 0.3125rem 0.625rem;
    display: inline-block;
    margin-right: 4px;
    margin-right: 0.25rem;
    margin-left: 4px;
    margin-left: 0.25rem;
    text-align: center;
    text-decoration: none;
}

@media screen and (min-width: 768px) {

    .previouspostslink,
    .nextpostslink {
        width: 2rem;
        font-size: 1.25rem;
        padding: 0.3125rem 0.625rem;
        min-width: 40px;
        min-width: 2.5rem;
        text-align: center;
        text-decoration: none;
    }
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
    border: none;
    min-width: 0;
    min-width: initial;
    width: auto;
}

.c-subtitle {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-color);
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-family);
}

@media screen and (min-width: 768px) {
    .c-subtitle {
        font-size: 1rem;
    }
}

.c-title {
    font-size: 28px;
    font-size: 1.75rem;
    color: var(--sub-color2);
    position: relative;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    text-align: center;
    font-family: var(--font-english);
}

@media screen and (min-width: 768px) {
    .c-title {
        font-size: 3.125rem;
    }
}

.c-title::first-letter {
    color: var(--sub-color);
}

.l-footer {
    margin-top: 60px;
    margin-top: 3.75rem;
    margin-bottom: 48px;
    margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .l-footer {
        margin-top: 7.5rem;
        margin-bottom: 0;
    }
}

.l-header {
    position: fixed;
    z-index: 998;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.l-header.addmin {
    margin-top: 0px;
    margin-top: 0rem;
}

@media screen and (min-width: 768px) {
    .l-header.addmin {
        margin-top: 2rem;
    }
}

.l-article {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-article {
        margin-top: 7.5rem;
    }
}

.l-low-blog {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-low-blog {
        margin-top: 7.5rem;
    }
}

.l-about {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-about {
        margin-top: 7.5rem;
    }
}

.l-accent {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-accent {
        margin-top: 7.5rem;
    }
}

.l-blog {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-blog {
        margin-top: 7.5rem;
    }
}

.l-company {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-company {
        margin-top: 7.5rem;
    }
}

.l-concept {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-concept {
        margin-top: 11.25rem;
    }
}

.l-contact {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-contact {
        margin: 0 auto;
        margin-top: 7.5rem;
    }
}

.l-inner {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .l-inner {
        max-width: 1050px;
        padding-right: 25px;
        padding-left: 25px;
    }
}

.l-menu {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-menu {
        margin-top: 7.5rem;
    }
}

.l-message {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-message {
        margin-top: 7.5rem;
    }
}

.l-movie {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-movie {
        margin-top: 7.5rem;
    }
}

.l-mv {
    margin-top: 60px;
    margin-top: 3.75rem;
}

.l-news {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-news {
        margin-top: 7.9375rem;
    }
}

.l-point {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-point {
        margin-top: 7.5rem;
		overflow: hidden;
		padding-bottom: 45px;
    }
}

.p-drawer-menu {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 100;
    display: none;
    position: absolute;
    margin-top: 60px;
    margin-top: 3.75rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: scroll;
    padding-bottom: 72px;
    padding-bottom: 4.5rem;
    padding: 20px 24px;
    padding: 1.25rem 1.5rem;
}

.p-drawer-menu__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.p-drawer-menu__list {
    width: 100%;
    padding: 15px 0;
    padding: 0.9375rem 0;
}

.p-drawer-menu__list a {
    display: block;
    width: 100%;
}

.p-drawer-menu__link {
    width: 100%;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.04em;
    color: #333333;
    line-height: 1.75;
}

body.fixed {
    height: 100%;
    overflow: hidden;
}

.p-footer {
    background-color: var(--footer-background);
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-footer {
        padding-top: 7.5rem;
    }
}

.p-footer__inner {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-footer__inner {
        padding-top: 1.25rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (min-width: 768px) {
    .p-footer__top {
        width: 50%;
    }
}

.p-footer__top-img {
    width: 130px;
    width: 8.125rem;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .p-footer__top-img {
        margin-left: 0;
        width: 11.25rem;
    }
}

.p-footer__top-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    line-height: 1.5;
}

.p-footer__top-text p {
    color: var(--staff-txt);
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.4;
}

.p-footer__top-text p span {
    display: block;
}

@media screen and (min-width: 768px) {
    .p-footer__top-text p {
        font-size: 1rem;
    }

    .p-footer__top-text p span {
        font-size: 1rem;
        display: inline-block;
    }
}

.p-footer__bottom {
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-footer__bottom {
        margin-top: 0;
        width: 50%;
    }
}

.p-footer__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 20px;
    gap: 0 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-footer__sns {
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left;
    }
}

.sns-list {
    width: 40px;
    width: 2.5rem;
}

@media screen and (min-width: 768px) {
    .sns-list {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.sns-list:last-child {
    margin-right: 0;
}

.p-footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .p-footer__links {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 2.5rem;
    }
}

.p-footer__link {
    width: 140px;
    width: 8.75rem;
    margin-right: 20px;
    margin-right: 1.25rem;
    margin-top: 20px;
    margin-top: 1.25rem;
    height: 23px;
    height: 1.4375rem;
    height: 32px;
    height: 2rem;
}

.p-footer__link:last-child {
    margin-right: 0;
}

.p-footer__link a {
    font-size: 14px;
    font-size: 0.875rem;
}

.p-footer__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    margin-top: 1.25rem;
}

.p-footer__list {
    display: inline-block;
    color: var(--staff-txt);
    font-weight: 800;
    margin-right: 20px;
    margin-right: 1.25rem;
    height: 46px;
    height: 2.875rem;
    font-size: 12px;
    font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
    .p-footer__list {
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

.p-footer__list a {
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-self: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.p-footer__list a:after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #ffffff;
    bottom: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-footer__list a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}

.copy-light {
    text-align: center;
    color: var(--staff-txt);
    font-size: 12px;
    font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
    .copy-light {
        margin-top: 7.5rem;
    }
}

.p-fix-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
}

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

.fix-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 49px;
    height: 3.0625rem;
    border-top: 1px solid #fff;
}

.fix-item__link {
    width: 50%;
    height: inherit;
    line-height: 1.75;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--staff-txt);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--text-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    letter-spacing: 1.6px;
    letter-spacing: 0.1rem;
}

.fix-item__link:hover {
    color: var(--text-color);
    background-color: #ffffff;
}

.fix-item__link:first-child {
    border-right: 1px solid #fff;
}

.fix-footer-icon {
    margin-right: 8px;
    margin-right: 0.5rem;
}

.pc-menu {
    display: none;
}

@media screen and (min-width: 768px) {
    .pc-menu {
        display: block;
    }
}

.p-header {
    height: 60px;
    height: 3.75rem;
    background-color: var(--sub-color3);
}

.p-header__inner {
    height: inherit;
}

@media screen and (min-width: 768px) {
    .p-header__inner {
        max-width: 100%;
    }
}

.p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: inherit;
}

.p-header__img {
    width: 80px;
    width: 5rem;
    height: inherit;
	padding: 5px 0;
}

.p-header__img img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.pc-menu__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pc-menu__list {
    height: inherit;
    margin-right: 16px;
    margin-right: 1rem;
    position: relative;
}

.pc-menu__list a {
    font-size: 14px;
    font-size: 0.875rem;
    height: inherit;
    display: block;
    position: relative;
}

.pc-menu__list a::before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
	background: var(--main-color);
    bottom: -5px;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.pc-menu__list a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.l-low-mv {
    margin-top: 60px;
    margin-top: 3.75rem;
}

.p-low-mv {
    height: 180px;
    height: 11.25rem;
}

@media screen and (min-width: 768px) {
    .p-low-mv {
        height: 21.875rem;
    }
}

.p-low-mv__inner {
    height: inherit;
    position: relative;
}

@media screen and (min-width: 768px) {
    .p-low-mv__inner {
        max-width: auto;
        margin: 0 auto;
    }
}

.p-low-mv__inner::before {
    position: absolute;
    content: "";
    width: 80vw;
    min-width: 80vw;
    height: 90vh;
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
    .p-low-mv__inner::before {
        width: 80vw;
        min-width: auto;
        height: 120%;
        right: 0;
        bottom: auto;
    }
}

.p-low-mv__img {
    height: inherit;
    position: relative;
}

@media screen and (min-width: 768px) {
    .p-low-mv__img {
        width: 80vw;
    }
}

.p-low-mv__img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
}

.p-low-mv__img img {
    height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-low-mv__text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-size: 1.5rem;
    width: 100%;
    color: var(--staff-txt);
    font-weight: 300;
    padding: 0 30px;
    padding: 0 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-low-mv__text {
        width: 50%;
        font-size: 2.5rem;
        padding: 0;
        top: 50%;
        left: unset;
        right: 10%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 1440px) {
    .p-low-mv__text {
        width: 40%;
    }
}

@media screen and (min-width: 768px) {
    .p-low-blog__inner {
        max-width: 65rem;
    }
}

.mainContent__title {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.3em;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .mainContent__title {
        font-size: 1.5rem;
    }
}

.mainContent__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    position: relative;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .mainContent__meta {
        margin-top: 2.5rem;
    }
}

.mainContent__meta ::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 30px;
    width: 1.875rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #333333;
}

@media screen and (min-width: 768px) {
    .mainContent__meta ::before {
        width: 5rem;
    }
}

.meta-time {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 30px;
    margin: 0 1.875rem;
}

@media screen and (min-width: 768px) {
    .meta-time {
        font-size: 1rem;
        margin: 0 3.75rem;
    }
}

.meta-category {
    font-size: 14px;
    font-size: 0.875rem;
    background-color: var(--accent-color);
    color: var(--staff-txt);
    padding: 3px 14px;
    padding: 0.1875rem 0.875rem;
    margin: 0 30px;
    margin: 0 1.875rem;
}

@media screen and (min-width: 768px) {
    .meta-category {
        font-size: 1rem;
        margin: 0 3.75rem;
    }
}

.mainContent__text {
    margin-top: 30px;
    margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
    .mainContent__text {
        margin-top: 3.75rem;
    }
}

.mainContent__text p {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
    .mainContent__text p {
        text-align: center;
    }
}

.p-article__post-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0 auto;
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 100%;
    max-width: 1200px;
    max-width: 75rem;
}

@media screen and (min-width: 768px) {
    .p-article__post-link {
        margin-top: 5rem;
    }
}

.p-article__post-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 6px;
}

@media screen and (min-width: 768px) {
    .p-article__post-link a {
        font-size: 1.25rem;
    }
}

.p-article__post-link span {
    margin: 0 10px;
    margin: 0 0.625rem;
}

.back-arrow {
    -webkit-transform: scale(-1, 2);
    transform: scale(-1, 2);
    width: 32px;
    width: 2rem;
}

.next-arrow {
    -webkit-transform: scale(1, 2);
    transform: scale(1, 2);
    width: 32px;
    width: 2rem;
}

.back {
    font-size: 20px;
    font-size: 1.25rem;
    margin-left: 20px;
    margin-left: 1.25rem;
    letter-spacing: 6px;
}

.p-about__inner {
    display: block;
    position: relative;
    padding: 60px 15px;
    padding: 3.75rem 0.9375rem;
}

@media screen and (min-width: 768px) {
    .p-about__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0;
    }
}

@media screen and (min-width: 768px) {
    .p-about__top {
        position: relative;
        width: 37.5rem;
        height: 35.75rem;
        margin: 0 6.25rem;
        padding: 0 1.5625rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        left: -10%;
    }
}

@media screen and (min-width: 1024px) {
    .p-about__top {
        padding: 0 7.5rem;
        margin: 0;
    }
}

.p-about__top::before {
    position: absolute;
    content: "";
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    bottom: 0;
}

.p-about__top-inner {
    position: relative;
    z-index: 1;
}

.p-about__title {
    color: var(--sub-color2);
    text-align: center;
}

@media screen and (min-width: 768px) {
    .p-about__title {
        text-align: left;
    }
}

.p-about__subtitle {
    text-align: center;
    display: block;
}

@media screen and (min-width: 768px) {
    .p-about__subtitle {
        text-align: left;
    }
}

.p-about__text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-about__text {
        font-size: 1rem;
        margin-top: 2.75rem;
    }
}

@media screen and (min-width: 768px) {
    .p-about__bottom {
        position: absolute;
        bottom: 0;
        top: 3.75rem;
        z-index: -1;
        right: 0;
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .p-about__bottom {
        margin: 0 calc(50% - 49vw);
    }
}

@media screen and (min-width: 1440px) {
    .p-about__bottom {
        margin-right: -7%;
    }
}

.p-about__img {
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-about__img {
        position: relative;
        height: 35.75rem;
        width: 42rem;
        margin: 0 0 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .p-about__img img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right;
    }
}

.p-accent__img {
    position: relative;
    width: 100%;
    height: 180px;
    height: 11.25rem;
}

@media screen and (min-width: 768px) {
    .p-accent__img {
        height: 21.875rem;
    }
}

.p-accent__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 23%;
    object-position: 50% 23%;
}

@media screen and (min-width: 768px) {
    .p-blog__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .p-blog__title {
        text-align: left;
    }
}

@media screen and (min-width: 768px) {
    .p-blog__subtitle {
        text-align: left;
    }
}

.p-blog__lists {
    width: 100%;
    margin-top: 30px;
    margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-blog__lists {
        margin-top: 0;
    }

    .p-blog__lists.top_blog {
        margin-left: 6.25rem;
    }
}

.p-blog__list {
    position: relative;
    margin-top: 32px;
    margin-top: 2rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .p-blog__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

.p-blog__list::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333333;
}

.p-blog__list:first-child {
    margin-top: 0;
}

.p-blog__arrow {
    display: none;
}

@media screen and (min-width: 768px) {
    .p-blog__arrow {
        display: block;
        width: 7.5rem;
        height: 1.4375rem;
        position: absolute;
        bottom: 5%;
        right: 0;
    }
}

.p-blog__arrow img {
    margin-top: -10%;
}

.p-blog__img {
    width: 100%;
    position: relative;
    /*height: 163px;
    height: 10.1875rem;*/
	overflow: hidden;
}
.p-blog__img:after {
	content: "";
	display: block;
	padding-top: 100%;
}

.p-blog__img > img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {
    .p-blog__img {
        width: 9.375rem;
        /*height: 6.25rem;*/
        margin-right: 2.5rem;
    }
}

.p-blog__img img {
    /*position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;*/
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .p-blog__post {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-blog__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-blog__meta {
        margin-top: 0;
    }
}

.meta__time {
    font-size: 12px;
    font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
    .meta__time {
        font-size: 1rem;
    }
}

.meta__category {
    margin-left: 16px;
    margin-left: 1rem;
    position: relative;
    background-color: var(--main-color);
    color: #333333;
    width: 80px;
    width: 5rem;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
    .meta__category {
        font-size: 1rem;
        width: 6.25rem;
        margin-left: 1.25rem;
        height: 1.875rem;
    }
}

.meta__category a {
    width: 100%;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.p-blog__post-title {
    display: block;
    margin-top: 9.6px;
    margin-top: 0.6rem;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .p-blog__post-title {
        font-size: 1rem;
        margin-top: 1.25rem;
    }
}

.p-blog__btn {
    background-color: var(--accent-color);
    width: 176px;
    width: 11rem;
    height: 51px;
    height: 3.1875rem;
    margin: 0 auto;
}

.p-blog__btn.sp_btn {
    display: block;
    margin-top: 30px;
}

.p-blog__btn.pc_btn {
    display: none;
}

@media screen and (min-width: 768px) {
    .p-blog__btn {
        width: 12.5rem;
        height: 3.1875rem;
    }

    .p-blog__btn.sp_btn {
        display: none;
    }

    .p-blog__btn.pc_btn {
        display: block;
    }
}

.p-blog__btn a {
    position: relative;
    color: var(--staff-txt);
    height: 100%;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 10px 0 28.8px;
    padding: 0 0.625rem 0 1.8rem;
}

@media screen and (min-width: 768px) {
    .p-blog__btn a {
        font-size: 0.875rem;
        padding: 0 1.625rem;
    }
}

.p-blog__btn a:hover {
    opacity: 0.6;
}

.p-blog__btn a::before {
    position: absolute;
    content: "";
    background-image: url(../images/top/arrow-white@2x.png);
    width: 30px;
    width: 1.875rem;
    height: 10px;
    height: 0.625rem;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    top: 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    right: 0.9375rem;
}

@media screen and (min-width: 768px) {
    .p-blog__btn a::before {
        width: 3.3125rem;
        height: 0.625rem;
        right: 0;
    }
}

.p-company__wrap {
    width: 100%;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-company__wrap {
        width: 50rem;
        margin: 0 auto;
        margin-top: 3.75rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-company__wrap {
        width: 50rem;
        margin: 0 auto;
        margin-top: 3.75rem;
    }
}

.p-company__wrap tr {
    padding: 16px 0;
    padding: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--accent-color);
}

@media screen and (min-width: 768px) {
    .p-company__wrap tr {
        padding: 1.25rem 0;
    }
}

.p-company__wrap th {
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    width: 25%;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .p-company__wrap th {
        font-size: 1rem;
        width: 30%;
    }
}

.p-company__wrap td {
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    width: 60%;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .p-company__wrap td {
        font-size: 1rem;
    }
}

.p-company__map {
    margin-top: 20px;
    margin-top: 1.25rem;
    position: relative;
    width: 100%;
    height: 280px;
    height: 17.5rem;
}

@media screen and (min-width: 768px) {
    .p-company__map {
        max-width: 62.5rem;
        width: 100%;
        height: 25rem;
        margin: 0 auto;
        margin-top: 3.75rem;
    }
}

.p-company__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.p-concept__title {
    text-align: center;
}

.p-concept__subtitle {
    text-align: center;
}

.p-concept__text {
    line-height: 2.25;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-concept__text {
        text-align: center;
        font-size: 1rem;
        width: 80%;
        margin: 0 auto;
        margin-top: 3.75rem;
    }
}

.p-contact {
    position: relative;
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
    .p-contact {
        padding-top: 7.5rem;
        /*max-width: 87.5rem;*/
    }
}

.p-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80vw;
    min-width: 80vw;
    height: 40%;
    background-color: var(--main-color);
    z-index: -1;
}

@media screen and (min-width: 768px) {
    .p-contact::before {
        min-width: auto;
        width: 78.75rem;
        height: 50rem;
    }
}

@media screen and (min-width: 768px) {
    .p-contact__inner {
        width: 51.875rem;
    }
}

.p-contact__title {
    color: var(--staff-txt);
}

.p-conatct__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .p-conatct__text {
        margin-top: 2.5rem;
        font-size: 1rem;
    }
}

.p-contact__button {
    width: 180px;
    width: 11.25rem;
    height: 54px;
    height: 3.375rem;
    margin: 0 auto;
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .p-contact__button {
        width: 17.5rem;
        height: 4.125rem;
        margin-top: 2.5rem;
        font-size: 1rem;
    }
}

.p-contact__button a {
    font-weight: 300;
}

.p-contact__form {
    margin-top: 22px;
    margin-top: 1.375rem;
}

@media screen and (min-width: 768px) {
    .p-contact__form {
        margin-top: 2.5rem;
    }
}

.p-contact__form-text {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .p-contact__form-text {
        font-size: 1rem;
    }
}

.p-contact__privacy {
    width: 100%;
    height: 280px;
    height: 17.5rem;
    margin-top: 60px;
    margin-top: 3.75rem;
    padding: 20px;
    padding: 1.25rem;
    border: 1px solid #333333;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .p-contact__privacy {
        width: 37.5rem;
        height: 12.5rem;
        margin: 0 auto;
        margin-top: 3.75rem;
        font-size: 1rem;
    }
}

.p-contact__privacy-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    height: 200px;
    height: 12.5rem;
    overflow-y: scroll;
    line-height: 2.25;
}

@media screen and (min-width: 768px) {
    .p-contact__privacy-text {
        height: 7.25rem;
    }
}

.p-menu__wrap {
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-menu__wrap {
        margin-top: 3.75rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
		flex-wrap: wrap;
    }
	.p-menu__item:nth-child(3n) {
		margin-right: 0;
	}
}

.p-menu__item {
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-menu__item {
		width: calc(32.333% - 1.04167rem);
		margin-right: 2.125rem;
		margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .p-menu__item:last-child {
        margin-right: 0;
    }
}

.p-menu__img {
    position: relative;
    width: 100%;
    height: 250px;
    height: 15.625rem;
}

@media screen and (min-width: 1440px) {
    .p-menu__img {
        width: 18.75rem;
        height: 18.75rem;
    }
}

.p-menu__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-menu__item-title {
    font-size: 16px;
    font-size: 1rem;
    position: relative;
    margin-top: 20px;
    margin-top: 1.25rem;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .p-menu__item-title {
        font-size: 1.25rem;
        margin-top: 1.25rem;
    }
}

.p-menu__item-title::before {
    position: absolute;
    content: "";
    width: 50px;
    width: 3.125rem;
    height: 1px;
    background-color: var(--main-color);
    bottom: -10px;
    bottom: -0.625rem;
}

@media screen and (min-width: 768px) {
    .p-menu__item-title::before {
        bottom: -1.25rem;
    }
}

.p-menu__item-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
}

@media screen and (min-width: 768px) {
    .p-menu__item-text {
        margin-top: 2.5rem;
        font-size: 1rem;
    }
}

.p-menu__price-lists {
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-menu__price-lists {
        margin: 0 auto;
        width: 50rem;
        margin-top: 3.75rem;
    }
}

.p-menu__price-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    padding: 0.9375rem 0;
    border-bottom: 1px solid var(--accent-color);
}

.p-menu__price-list p {
    width: 60%;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .p-menu__price-list p {
        width: auto;
        font-size: 1rem;
    }
}

.p-menu__price-list p:last-child {
    text-align: right;
    width: 40%;
}

@media screen and (min-width: 768px) {
    .p-menu__price-list p:last-child {
        width: auto;
    }
}

.p-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-position: 80%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    padding: 3rem 0;
}

@media screen and (min-width: 768px) {
    .p-message {
        height: 30.9375rem;
    }
}

.p-message::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.p-message__inner {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .p-message__inner {
        max-width: 75rem;
    }
}

@media screen and (min-width: 768px) {
    .p-message__top {
        position: relative;
        z-index: 1;
        width: 42%;
    }
}

.p-message__title {
    text-align: center;
    color: var(--staff-title);
    padding-bottom: 0;
}

@media screen and (min-width: 768px) {
    .p-message__title {
        text-align: center;
    }
}

.p-message__title::first-letter {
    color: var(--staff-txt);
}

.p-message__subtitle {
    text-align: center;
    display: block;
    color: var(--staff-txt);
}

.p-message__text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
    margin-top: 20px;
    margin-top: 1.25rem;
    text-align: left;
    color: var(--staff-txt);
}

@media screen and (min-width: 768px) {
    .p-message__text {
        font-size: 1rem;
        margin-top: 3.125rem;
        text-align: center;
    }
}

.p-movie__text {
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 20px;
    margin-top: 1.25rem;
    line-height: 2.25;
}

@media screen and (min-width: 768px) {
    .p-movie__text {
        font-size: 1rem;
        margin-top: 2.5rem;
    }
}

.p-movie__youtube {
    position: relative;
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 100%;
    height: 250px;
    height: 15.625rem;
}

@media screen and (min-width: 768px) {
    .p-movie__youtube {
        width: 50rem;
        max-width: 100%;
        height: 28.125rem;
        margin: 0 auto;
        margin-top: 3.75rem;
    }
}

.p-movie__youtube iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.p-mv {
    height: 90vh;
}

.p-mv__inner {
    height: inherit;
    position: relative;
}


.p-mv__inner::before {
    position: absolute;
    content: "";
    width: 80vw;
    min-width: 80vw;
    height: 90vh;
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
    .p-mv__inner::before {
        width: 78.3%;
        min-width: auto;
        height: 100%;
        right: 0;
        bottom: 0;
    }
}

.p-mv__text {
    position: absolute;
    top: 40%;
    /*left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
    font-size: 24px;
    font-size: 1.5rem;
    width: 100%;
    color: var(--staff-txt);
    font-weight: 300;
    padding: 0 30px;
    padding: 0 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-mv__text {
        width: 70%;
        font-size: 2.5rem;
        padding: 0;
        top: 40%;
        left: 10%;
        right: unset;
        /*-webkit-transform: translateY(-50%);
        transform: translateY(-50%);*/
    }
}

@media screen and (min-width: 1440px) {
    .p-mv__text {
        width: 60%;
    }
}

.p-mv__img {
    height: inherit;
    position: relative;
    width: 85%;
    height: 80vh;
}

@media screen and (min-width: 768px) {
    .p-mv__img {
        height: 75vh;
        width: 78.3%;
    }
}

.p-mv__img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--background-effect);
    opacity: 0.4;
}

.p-mv__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.p-news {
    position: relative;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .p-news__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.p-news__title {
    text-align: left;
}

.p-news__subtitle {
    text-align: left;
}

.p-news__wrap {
    padding-bottom: 10px;
    padding-bottom: 0.625rem;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .p-news__wrap {
        margin-left: 6.25rem;
        padding-bottom: 1.875rem;
    }
}

.p-news__wrap::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333333;
}

.p-news__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .p-news__meta {
        margin-top: 0;
    }
}

.p-news__post {
    display: block;
    padding: 15px 0 10px;
}

@media screen and (min-width: 768px) {
    .p-news__post {
        margin-top: 1.25rem;
        padding: 0;
    }
}

@media screen and (min-width: 768px) {
    .p-point__inner {
        /*overflow: hidden;*/
    }
}

@media screen and (min-width: 1440px) {
    .p-point__inner {
        overflow: unset;
    }
}

.p-point__title {
    text-align: center;
}

.p-point__lists {
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-point__lists {
        margin-top: 3.5rem;
    }
}

.p-point__list {
    margin-top: 70px;
    margin-top: 4.375rem;
}

@media screen and (min-width: 768px) {
    .p-point__list {
        margin-top: 9.375rem;
    }
}

.p-point__list:first-child {
    margin-top: 0;
}

.p-point__list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .p-point__list-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
    }
}

@media screen and (min-width: 768px) {
    .p-point__list:nth-child(2n) .p-point__list-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

.p-point__wrap {
    position: relative;
}

@media screen and (min-width: 768px) {
    .p-point__wrap {
        margin-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding: 0;
    }
}

.p-point__wrap-title {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .p-point__wrap-title {
        font-size: 1.25rem;
    }
}

.p-point__wrap-title::before {
    position: absolute;
    content: "";
    width: 100px;
    width: 6.25rem;
    height: 1px;
    background-color: var(--main-color);
    bottom: -10px;
    bottom: -0.625rem;
}

@media screen and (min-width: 768px) {
    .p-point__wrap-title::before {
        bottom: -1.25rem;
    }
}

.p-point__wrap-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
}

@media screen and (min-width: 768px) {
    .p-point__wrap-text {
        margin-top: 2.5rem;
        font-size: 1rem;
    }
}

.p-point__img {
    position: relative;
    height: 250px;
    height: 15.625rem;
    margin-top: 30px;
    margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-point__img {
        margin: 0;
        width: 37.5rem;
        height: 26.5625rem;
    }
}

.p-point__img::before {
    position: absolute;
    content: "";
    height: 80%;
    bottom: -25px;
    bottom: -1.5625rem;
    right: 20px;
    background-color: var(--main-color);
    width: calc(50% + 50vw);
}

@media screen and (min-width: 768px) {
    .p-point__img::before {
        margin: 0;
        width: 100%;
        height: 100%;
    }
}

@media screen and (min-width: 768px) {
    .p-point__list:nth-child(2n+1) .p-point__img::before {
        width: 40.625rem;
        height: 18.75rem;
        left: 20px;
        right: 0;
        bottom: -2.8125rem;
    }
}

@media screen and (min-width: 768px) {
    .p-point__list:nth-child(2n) .p-point__img::before {
        width: 40.625rem;
        height: 18.75rem;
        right: 20px;
        bottom: -2.8125rem;
    }
}

@media screen and (min-width: 768px) {
    .p-point__list:nth-child(2n+1) .p-point__img {
        left: -10%;
    }
}

@media screen and (min-width: 768px) {
    .p-point__list:nth-child(2n) .p-point__img {
        right: -10%;
    }
}

.p-point__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.shutter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    z-index: 9999;
    -webkit-animation: byeShutter 2.6s forwards;
    animation: byeShutter 2.6s forwards;
}

.shutter:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: #fff;
    width: 0;
    height: 1px;
    -webkit-animation: shutterOpen 2.6s forwards;
    animation: shutterOpen 2.6s forwards;
}

.shutter:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

@-webkit-keyframes byeShutter {
    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        z-index: -1;
    }
}

@keyframes byeShutter {
    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        z-index: -1;
    }
}

@-webkit-keyframes shutterOpen {
    0% {
        width: 0;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    90% {
        width: 100%;
        height: 100%;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

@keyframes shutterOpen {
    0% {
        width: 0;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    90% {
        width: 100%;
        height: 100%;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

@keyframes shutterOpen {
    60% {
        width: 120%;
        height: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    90% {
        width: 120%;
        height: 100%;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        width: 120%;
        height: 100%;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.shutter.is-active {
    display: none;
}

.u-contact {
    width: 50%;
    height: 50px;
    height: 3.125rem;
    margin-top: 15px;
    margin-top: 0.9375rem;
}

@media screen and (min-width: 768px) {
    .u-contact {
        width: 6.875rem;
        height: 1.875rem;
        margin-top: 0;
    }
}

.u-contact a {
    display: block;
    text-align: center;
    color: var(--staff-txt);
    background-color: var(--accent-color);
    border: 1px solid transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 16px;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: inherit;
    font-weight: 800;
}

@media screen and (min-width: 768px) {
    .u-contact a {
        font-size: 0.875rem;
        font-weight: 400;
    }
}

.u-contact a::before {
    content: none;
}

.u-contact a:hover {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #333333;
}

.js-fadeIn {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 3s;
    transition: 3s;
}

.u-active {
    opacity: 1;
    visibility: visible;
}

.js-fadeIn-right {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 2s;
    transition: 2s;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.u-active-right {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.js-fadeIn-left {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 2s;
    transition: 2s;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.u-active-left {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.u-flex {
    display: block;
}

@media screen and (min-width: 768px) {
    .u-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.wpcf7 {
    margin-top: 24px;
    margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
    .wpcf7 {
        margin-top: 3rem;
    }
}

.form__wrap {
    margin-top: 30px;
    margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
    .form__wrap {
        margin-top: 3.125rem;
    }
}

.form__block {
    border-bottom: 1px solid var(--accent-color);
    padding: 20px 0;
    padding: 1.25rem 0;
}

@media screen and (min-width: 768px) {
    .form__block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.form__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    width: 11.25rem;
}

@media screen and (min-width: 768px) {
    .form__meta {
        width: 13rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.u-form__title {
    font-size: 14px;
    font-size: 0.875rem;
    margin-right: 8px;
    margin-right: 0.5rem;
}

@media screen and (min-width: 768px) {
    .u-form__title {
        font-size: 1rem;
        margin-right: 0;
    }
}

.cf7-form {
    margin-top: 8px;
    margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
    .cf7-form {
        margin-top: 0;
        margin-left: 0.3125rem;
        width: 100%;
    }
}

.cf7-form input {
    width: 100%;
    height: 40px;
    height: 2.5rem;
    padding: 0 10px;
    padding: 0 0.625rem;
    font-size: 14px;
    font-size: 0.875rem;
    border: 1px solid #cccccc;
    background-color: #ffffff;
}

@media screen and (min-width: 768px) {
    .cf7-form input {
        font-size: 1rem;
    }
}

.cf7-form textarea {
    width: 100%;
    height: 100px;
    height: 6.25rem;
    overflow-y: scroll;
    padding: 10px;
    padding: 0.625rem;
    border: 1px solid #DEDEDE;
    background-color: #ffffff;
}

@media screen and (min-width: 768px) {
    .cf7-form textarea {
        height: 6.25rem;
    }
}

.form__placeholder {
    color: #c4c4c4;
    font-size: 12px;
    font-size: 0.75rem;
}

.form__important {
    text-align: center;
    color: var(--staff-txt);
    background-color: var(--accent-color);
    width: 33px;
    width: 2.0625rem;
    font-size: 12px;
    font-size: 0.75rem;
    margin-right: 2px;
    margin-right: 0.125rem;
}

@media screen and (min-width: 768px) {
    .form__important {
        font-size: 0.875rem;
    }
}

.form__option {
    text-align: center;
    color: var(--staff-txt);
    background-color: #cccccc;
    width: 33px;
    width: 2.0625rem;
    font-size: 12px;
    font-size: 0.75rem;
    margin-right: 2px;
    margin-right: 0.125rem;
}

@media screen and (min-width: 768px) {
    .form__option {
        font-size: 0.875rem;
    }
}

.form__submit {
    text-align: center;
    width: 240px;
    width: 15rem;
    height: 50px;
    height: 3.125rem;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    position: relative;
}

@media screen and (min-width: 768px) {
    .form__submit {
        margin-top: 3.5rem;
        width: 15rem;
        max-width: 100%;
        position: relative;
    }
}

.form__submit-button {
    width: 280px;
    width: 17.5rem;
    max-width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    border: 1px solid #333333;
    font-weight: 300;
}

@media screen and (min-width: 768px) {
    .form__submit-button {
        width: 22.5rem;
        max-width: 100%;
        font-size: 1rem;
    }
}

.form__submit::after {
    position: absolute;
    content: "";
    top: 24%;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    right: 16px;
    right: 1rem;
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
}

@media screen and (min-width: 768px) {
    .form__submit::after {
        top: 30%;
    }
}

.form__privacy {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: #c4c4c4;
    display: block;
}

.form__check-block {
    margin-top: 24px;
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .form__check-block {
        margin-top: 2.5rem;
        font-size: 1rem;
    }
}

.form__check-block label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form__check-block input:hover {
    cursor: pointer;
}

.wpcf7-list-item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .wpcf7-list-item-label {
        font-size: 1rem;
    }
}

.form__check-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
    margin-right: 0.5rem;
}

.form__check-block p {
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .form__check-block p {
        font-size: 1rem;
    }
}

input[type=checkbox]+span:hover::after {
    background: #fff;
}

.form__check-claim {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .form__check-claim {
        font-size: 1rem;
    }
}

.form__check-claim {
    margin-top: 8px;
    margin-top: 0.5rem;
    height: 56px;
    height: 3.5rem;
}

@media screen and (min-width: 768px) {
    .form__check-claim {
        margin-top: 0;
        margin-left: 3rem;
        width: 33.75rem;
        height: 3.5rem;
    }
}

.form__check-claim input:hover {
    cursor: pointer;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form-control.wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

span.wpcf7-list-item {
    position: relative;
}

.wpcf7-list-item-label {
    /*項目の色や文字サイズ*/
    cursor: pointer;
}

input[type=checkbox] {
    position: absolute;
    opacity: 0;
    /*既存のチェックボックスを見えなくする*/
}

.wpcf7-list-item-label:before {
    /*チェックボックスの枠*/
    content: "";
    background-color: #ffffff;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
    margin-right: 0.625rem;
    border: 1px solid #DEDEDE;
}

input[type=checkbox]:checked+.wpcf7-list-item-label:after {
    /*チェックアイコン*/
    content: "";
    display: block;
    position: absolute;
    background-color: #ffffff;
    top: 0%;
    left: 0px;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-right: 0.625rem;
    background: url(../images/common/icon-check.svg) no-repeat center;
    background-size: contain;
}

.form__input-check+.wpcf7-list-item-label:before {
    top: -10px;
    width: 42px;
}

@media screen and (min-width: 768px) {
    .form__input-check+.wpcf7-list-item-label:before {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        width: 26px;
    }
}

.wpcf7-form-control-wrap {
    position: static;
}

.form__check-box {
    position: relative;
}

.form__check-block .wpcf7-not-valid-tip {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .form__check-block .wpcf7-not-valid-tip {
        width: auto;
    }
}

.u-line {
    width: 50%;
    height: 50px;
    height: 3.125rem;
    margin-right: 10px;
    margin-right: 0.625rem;
}

@media screen and (min-width: 768px) {
    .u-line {
        width: 6.875rem;
        height: 1.875rem;
    }
}

.u-line a {
    display: block;
    text-align: center;
    color: var(--staff-txt);
    background-color: #00b900;
    border: 1px solid transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 16px;
    font-size: 1rem;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: inherit;
    font-weight: 800;
}

@media screen and (min-width: 768px) {
    .u-line a {
        font-size: 0.875rem;
        font-weight: 400;
    }
}

.u-line a::before {
    content: none;
}

.u-line a:hover {
    background-color: #ffffff;
    color: #00b900;
    border: 1px solid #00b900;
}

/*# sourceMappingURL=styles.css.map */

.btn_back {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    color: var(--text-color);
    text-align: center;
    margin: auto;
}

.blog_icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
}

.blog_icon.back:before {
    content: "\f100";
    margin-right: 20px;
}

.pc_img {
    display: none;
}

.sp_img {
    display: block;
}

@media screen and (min-width: 768px) {
    .pc_img {
        display: block
    }

    .sp_img {
        display: none;
    }
}

.p-menu__item-title span {
	display: block;
	text-align: right;
	font-size: 1rem;
}

.grecaptcha-badge {
	display: none !important;
}