@charset "UTF-8";

:root {
    --font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    --font-min: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN ", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif, sans-serif;
    /*英字見出し*/
    --text-color: #374151;
    /*フォントカラー - 読みやすいダークグレー*/
    --main-color: #00BB55;
    /*メインカラー - 指定のフレッシュグリーン*/
    --back-color: #f0fdf4;
    /*背景ズレてるカラー - 薄いグリーン背景*/
    --sub-color: #1f2937;
    /*見出し１文字目 - 力強いダークグレー*/
    --sub-color2: #6b7280;
    /*英字見出し - ミディアムグレー*/
    --sub-color3: #ffffff;
    /*ヘッダー背景色 - 清潔な白*/
    --accent-color: #059669;
    /*お問い合わせボタン・ブログ一覧ボタン - 深めのグリーン*/
    --accent-color2: #10b981;
    /*ポイント③カラー - エメラルドグリーン*/
    --accent-color3: #f59e0b;
    /*フォーム「任意」背景色 - ウォームオレンジ*/
    --background-effect: #1f2937;
    /*fv背景色 - 深いグレー*/
    --staff-txt: #ffffff;
    /*スタッフフォントカラー - 白文字*/
    --staff-title: #ffffff;
    /*スタッフ英字見出しカラー - 白文字*/
    --staff-background: rgba(0, 187, 85, 0.8);
    /*スタッフ背景カラー - メイングリーン半透明*/
    --footer-background: #1f2937;
    /*フッター背景 - 深いグレー*/
    --shutter-color: #00BB55;
    /*シャッターカラー - ミディアムグレー*/
    --back-color3: #d1fae5;
    /*下層ポイント背景カラー3 - 薄いグリーン*/
    --back-color2: #ecfdf5;
    /*下層ポイント背景カラー2 - 非常に薄いグリーン*/
}

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

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

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

.c-breadcrumb__home {
    position: relative;
    padding-right: 20px;
    padding-right: 0.3rem;
}

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

.current-item {
    padding-left: 20px;
    padding-left: 0.3rem;
}

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

.taxonomy.category {
    padding: 0 10px !important;
    padding: 0 0.3rem !important;
}

.c-button-black {
    background-color: var(--main-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #ffffff;
    position: relative;
    color: #ffffff;
    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(--main-color);
    background-color: #ffffff;
    border: 1px solid var(--main-color);
}

.c-button-white {
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid var(--main-color);
    position: relative;
    color: var(--main-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: #ffffff;
    background-color: var(--main-color);
    border: 1px solid #ffffff;
}

.c-button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    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-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 var(--main-color);
    background-color: var(--main-color);
    color: #ffffff;
    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 var(--main-color);
    background-color: transparent;
    color: var(--main-color);
    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 var(--main-color);
    background-color: transparent;
    color: var(--main-color);
    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 var(--main-color);
    background-color: transparent;
    color: var(--main-color);
    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-min);
}

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

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

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

@media screen and (min-width: 768px) {
    .l-footer {
        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;
    }
}

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

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

@media screen and (min-width: 768px) {
    .l-low-concept {
        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-low-menu {
    margin-top: 60px;
    margin-top: 3.75rem;
}

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

.l-low-point {
    margin-top: 40px;
    margin-top: 2.5rem;
}

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

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

@media screen and (min-width: 768px) {
    .l-low-staff {
        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-other {
    margin-top: 60px;
    margin-top: 3.75rem;
}

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

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

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

.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: #ffffff;
    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 {
        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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #333333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    letter-spacing: 1.6px;
    letter-spacing: 0.1rem;
}

.fix-item__link:hover {
    color: #333333;
    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: #ffffff;
}

.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: 8rem;
    height: inherit;
}

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

.p-low-about__title {
    text-align: center;
    margin-top: 3.75rem;
}

.p-low-about__subtitle {
    text-align: center;
}

.p-low-about__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-low-about__text {
        text-align: center;
        font-size: 1rem;
        width: 37.25rem;
        margin: 0 auto;
        margin-top: 3.75rem;
    }
}

.p-low-about__btn {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 43px;
    height: 2.6875rem;
}

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

.p-low-concept {
    background-size: cover;
    padding: 60px 0;
    padding: 3.75rem 0;
    position: relative;
}

@media screen and (min-width: 768px) {
    .p-low-concept {
        padding: 9.375rem 0 7.1875rem 0;
    }
}

.p-low-concept::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0.8;
}

.p-low-concept__inner {
    position: relative;
    z-index: 1;
}

.p-low-concept__title {
    text-align: center;
    color: var(--text-color);
}

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

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

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

.p-low-concept__btn {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 43px;
    height: 2.6875rem;
}

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

.p-low-access__text {
    text-align: center;
    margin-top: 30px;
    margin-top: 1.875rem;
    line-height: 1.8;
    font-size: 14px;
    font-size: 0.875rem;
}

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

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

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

@media screen and (min-width: 768px) {
    .p-low-blog__postList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 29.9375rem;
        margin: 0 auto;
    }
}

.p-low-blog__btn {
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-low-blog__btn {
        width: calc(53.8888% - 2.5rem);
        margin: 0;
        margin-right: 2.5rem;
        margin-top: 1.25rem;
    }
}

@media screen and (min-width: 768px) {
    .p-low-blog__btn:nth-child(2n) {
        margin-right: 0;
    }
}

.p-low-blog__btn a {
	color: var(--main-color);
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 16px 0;
    padding: 1rem 0;
    display: inline-block;
    border: 1px solid var(--main-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (min-width: 768px) {
    .p-low-blog__btn a {
        width: 100%;
        padding: 0.6875rem 0;
        font-size: 1.125rem;
    }
}

.p-low-blog__btn a:hover {
    color: #ffffff;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.p-low-blog__btn.active {
    background-color: var(--main-color);
    color: #ffffff;
}

.p-low-blog__btn.active a {
    color: #ffffff;
}

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

@media screen and (min-width: 768px) {
    .p-low-blog__lists {
        margin-top: 3.75rem;
        margin-left: 6.25rem;
    }
}

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

@media screen and (min-width: 768px) {
    .p-low-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-low-blog .p-low-blog__lists {
	margin-left: 0;
}
}

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

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

.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(--back-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.6;
}

.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: #ffffff;
    font-weight: 300;
    padding: 0 30px;
    padding: 0 1.875rem;
    text-transform: uppercase;
    text-align: center;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN ", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif, sans-serif;
}

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

.p-low-mv__subtext {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .p-low-mv__subtext {
        font-size: 1.125rem;
    }
}

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

@media screen and (min-width: 768px) {
    .p-low-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;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.p-low-menu__item {
    margin-top: 48px;
    margin-top: 3rem;
}

@media screen and (min-width: 768px) {
    .p-low-menu__item {
        margin-top: 2.0625rem;
        width: calc(31.666% - 1.04167rem);
        margin-right: 3.125rem;
    }
}

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

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

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

.p-low-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-low-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-low-menu__item-title {
        font-size: 1.25rem;
        margin-top: 1.25rem;
    }
}

.p-low-menu__item-title::before {
    position: absolute;
    content: "";
    width: 50px;
    width: 3.125rem;
    height: 1px;
    background-color: #333333;
    bottom: -10px;
    bottom: -0.625rem;
}

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

.p-low-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-low-menu__item-text {
        margin-top: 2.5rem;
        font-size: 1rem;
    }
}

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

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

.p-low-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 #333333;
}

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

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

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

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

.p-low-menu__btn {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 43px;
    height: 2.6875rem;
}

@media screen and (min-width: 768px) {
    .p-low-menu__btn {
        width: 12.5rem;
        margin-top: 4.4375rem;
        font-size: 1rem;
        height: 3.75rem;
    }
}

.p-low-menu__table-title {
    margin-top: 60px;
    margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .p-low-menu__table-title {
        margin-top: 6.25rem;
    }
}

.p-low-menu__table-title {
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
}

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

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

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

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

.p-low-point__list {
    padding: 30px 0;
    padding: 1.875rem 0;
}

@media screen and (min-width: 768px) {
    .p-low-point__list {
        padding: 3.75rem 0;
    }
}

.p-low-point__list:nth-child(3n+1) {
    background-color: var(--back-color);
}

.p-low-point__list:nth-child(3n+2) {
    background-color: var(--back-color2);
}

.p-low-point__list:nth-child(3n+3) {
	background-color: var(--back-color3);
}

.p-low-point__img {
    position: relative;
    height: 150px;
    height: 9.375rem;
    width: 100%;
}

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

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

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

.p-low-point__list-title {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    font-size: 1rem;
    color: #ffffff;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

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

.p-low-point__wrap {
    background-color: #ffffff;
    position: relative;
    padding: 30px 20px;
    padding: 1.875rem 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-low-point__wrap {
        padding: 3.75rem 0;
        position: relative;
        width: 100%;
    }
}

.p-low-point__wrap-text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
    text-align: left;
}

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

.mainContent__title {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    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: #333333;
    color: #ffffff;
    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-low-greeting__inner {
    margin-top: 30px;
    margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-low-greeting__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 75rem;
        padding: 0;
        margin-top: 3.75rem;
    }
}

.p-low-greeting__title {
    text-align: center;
    margin-top: 60px;
    margin-top: 3.75rem;
}

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

.p-low-greeting__subtitle {
    text-align: center;
    color: #333333;
}

.p-low-greeting__top {
    background-color: rgba(255, 255, 255, .8);
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 15px;
    padding: 0 0.9375rem;
}

@media screen and (min-width: 768px) {
    .p-low-greeting__top {
        margin: 0;
        position: relative;
        z-index: 1;
        padding: 5vw 4.1666666667vw;
        margin-right: -8%;
        width: 43.75rem;
    }
}

@media screen and (min-width: 1440px) {
    .p-low-greeting__top {
        padding: 3.75rem 3.125rem;
    }
}

.p-low-greeting__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    color: #333333;
    line-height: 2.25;
    font-size: 14px;
    font-size: 0.875rem;
}

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

.p-low-greeting__img {
    position: relative;
    height: 250px;
    height: 15.625rem;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 20px;
    margin-top: 1.25rem;
}

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

.p-low-greeting__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-low-greeting__btn {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 43px;
    height: 2.6875rem;
}

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

.p-low-greeting__top a {
    margin-top: 20px;
    margin-top: 1.25rem;
    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-low-greeting__top a {
        margin-top: 1.25rem;
    }
}

.p-low-greeting__instagram-icon {
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
}

.p-low-greeting__instagram {
    color: #333333;
    margin-left: 11px;
    margin-left: 0.6875rem;
}

.p-low-staff__inner {
    margin-top: 30px;
    margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-low-staff__inner {
        max-width: 75rem;
        margin-top: 3.75rem;
    }
}

@media screen and (min-width: 768px) {
    .p-low-staff__lists {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

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

@media screen and (min-width: 768px) {
    .p-low-staff__list {
        width: calc(25% - 1.3125rem);
        margin-right: 1.75rem;
    }
}

@media screen and (min-width: 768px) {
    .p-low-staff__list:nth-child(4n) {
        margin-right: 0;
    }
}

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

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

.p-low-staff__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: top;
    object-position: top;
}

.p-low-staff__list-name {
    margin-top: 15px;
    margin-top: 0.9375rem;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .p-low-staff__list-name {
        margin-top: 0.9375rem;
        font-size: 1.125rem;
    }
}

.p-low-staff__list-text {
    margin-top: 15px;
    margin-top: 0.9375rem;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
}

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

.p-low-staff__sns {
    margin-top: 20px;
    margin-top: 1.25rem;
    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-low-staff__sns {
        margin-top: 1.9375rem;
    }
}

.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;
        /*     padding-right: 1.5rem; */
    }
}

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

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

.p-about__title {
    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: 41rem;
        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-about__btn {
    height: 43px;
    height: 2.6875rem;
    width: 178px;
    width: 11.125rem;
    margin: 0 auto 0 0;
    margin-top: 48px;
    margin-top: 3rem;
}

@media screen and (min-width: 768px) {
    .p-about__btn {
        margin-top: 3.3125rem;
        width: 12.5rem;
        height: 3.75rem;
    }
}

.p-about__btn a {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

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

.p-about__btn a:hover {
    color: #ffffff;
    background-color: var(--main-color);
}

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

@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: #ffffff;
    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(--main-color);
    width: 176px;
    width: 11rem;
    height: 51px;
    height: 3.1875rem;
    margin: 0 auto;
}

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

.p-blog__btn a {
    position: relative;
    color: #ffffff;
    height: 100%;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 10px 0 28.8px;
    padding: 0 0.625rem 0 1.8rem;
    font-weight: 300;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}

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

@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-concept__btn {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 43px;
    height: 2.6875rem;
}

@media screen and (min-width: 768px) {
    .p-concept__btn {
        width: 12.5rem;
        margin-top: 3.75rem;
        font-size: 1rem;
        height: 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(--back-color);
    z-index: -1;
}

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

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

.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-conatct__phone {
    font-weight: 600;
    text-align: center;
    font-size: 28px;
    font-size: 1.75rem;
    margin-top: 20px;
    margin-top: 1.25rem;
}

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

.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;
        flex-wrap: wrap;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.p-menu__item {
    margin-top: 40px;
    margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
    .p-menu__item {
        width: calc(33.3333333% - 6.25rem);
        margin-right: 3.125rem;
        margin-top: 0;
    }
}

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

    .p-menu__item:nth-child(n + 4) {
        margin-top: 2rem;
    }
}

.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: 0.8rem;
    }
}

.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: -0.8rem;
    }
}

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

.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-menu__btn {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 43px;
    height: 2.6875rem;
}

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

.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: 60px 0;
}

.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: #ffffff;
    padding-bottom: 0;
}

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

.p-message__title::first-letter {
    color: #ffffff;
}

.p-message__subtitle {
    text-align: center;
    display: block;
    color: #ffffff;
}

.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: #ffffff;
}

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

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

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

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

@media screen and (min-width: 768px) {
    .p-mv__inner::before {
        width: 78.3%;
        min-width: auto;
        height: 100%;
        right: 0;
        bottom: 0;
        top: 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: #ffffff;
    font-weight: 300;
    padding: 0 30px;
    padding: 0 1.875rem;
	font-family: var(--font-min);
}

@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: 80%;
    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: #000000;
    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: 1rem;
    }
}

.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;
    margin-bottom: 6px;
}

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

.p-news__post {
    display: block;
    line-height: 1.8;
}

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

.p-other {
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    height: 250px;
    height: 15.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
}

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

@media screen and (min-width: 768px) {
    .p-other__wrap {
        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-other__button {
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-other__button {
        margin: 0 1.875rem;
    }
}

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

.p-other__link {
    background-color: rgba(255, 255, 255, .8);
    display: block;
    text-align: center;
    padding: 10px 0;
    padding: 0.625rem 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-other__link {
        color: #333333;
        padding: 1.125rem 0;
        width: 20rem;
    }
}

.p-other__link:hover {
    opacity: 0.8;
}

.p-other__link-title {
    position: relative;
    font-weight: 800;
    line-height: 1.2;
    font-size: 24px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .p-other__link-title {
        color: var(--text-color);
        font-size: 1.875rem;
    }
}

.p-other__link-title::before {
    position: absolute;
    content: "";
    background-color: var(--main-color);
    width: 50px;
    width: 3.125rem;
    height: 1px;
    bottom: -10px;
    bottom: -0.8rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.p-ohet__link-subtitle {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 10px;
    margin-top: 1.2rem;
    font-size: 14px;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .p-ohet__link-subtitle {
        font-size: 1.125rem;
        margin-top: 1.2rem;
    }
}

@media screen and (min-width: 768px) {
    .p-point {
        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: 40px;
    margin-top: 2.5rem;
}

@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: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    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;
    margin-top: 40px;
    margin-top: 2.5rem;
}

@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(--back-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;
    background-color: var(--back-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: 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: 0;
        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;
}

.p-point__btn {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 43px;
    height: 2.6875rem;
}

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

.shutter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--shutter-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: #ffffff;
    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: #ffffff;
    background-color: var(--main-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: var(--main-color);
    border: 1px solid var(--main-color);
}

.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 #333333;
    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: #ffffff;
    background-color: var(--main-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: #ffffff;
    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 var(--main-color);
    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: #ffffff;
    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;
}

/* QAページ */
.p-low-qa {
    margin-top: 3.75rem;
}

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

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

.p-question__icon-wrap {
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    width: 38px;
    height: 38px;
}

.question__content {
    position: relative;
}

.icon {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.icon::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 4px;
    width: 16px;
    width: 1rem;
    height: 1px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #333333;
}

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

.icon.close::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 4px;
    width: 16px;
    width: 1rem;
    height: 1px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #333333;
}

@media screen and (min-width: 768px) {
    .icon.close::before {
        width: 1.8rem;
    }
}

.icon:after {
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background: #333333;
    top: 50%;
    right: 0;
    width: 16px;
    width: 1rem;
    height: 1px;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (min-width: 768px) {
    .icon:after {
        right: 1.7%;
        width: 1.8rem;
    }
}

.icon.close:after {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}


.question {
    border-bottom: 1px solid #333333;
    padding-bottom: 1.56rem;
    margin-top: 1.375rem;
}

.question:hover {
    cursor: pointer;
}

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

.question__content-question span {
    font-weight: 800;
    font-size: 1.25rem;
    margin-right: 1rem;
    color: var(--main-color);
}

@media screen and (min-width: 768px) {
    .question__content-question span {
        font-weight: 800;
        font-size: 1.75rem;
        margin-right: 1.25rem;
    }
}

.question__content-question {
    display: flex;
    align-items: center;
}

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

.question__content-answer span {
    font-weight: 800;
    font-size: 1.25rem;
    margin-right: 1rem;
    color: #eeeeee;

}

@media screen and (min-width: 768px) {
    .question__content-answer span {
        font-size: 1.75rem;
        margin-right: 1.25rem;
        margin-top: -0.6rem;
    }
}

.question__answer {
    margin-top: 2.1rem;
    display: none;
}

.question__content-answer {
    display: flex;
    align-items: flex-start;

}

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

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

.pc_img {
    display: none;
}

.sp_img {
    display: block;
}

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

    .sp_img {
        display: none;
    }
}

/* area */

.area-title {
	position: relative;
    padding-bottom: 20px;
    padding-bottom: 2.25rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
	.area-title {
		padding-bottom: 30px;
	}
}

.p-low-service-area01 {
	max-width: 1000px;
	margin: auto;
	padding: 120px 20px;
}

@media screen and (max-width: 768px) {
	.p-low-service-area01 {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.p-low-service-area01 .txt_box .p-service__text {
	font-size: 1rem;
    line-height: 2.25;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.p-low-service-area01 .txt_box .p-service__text {
		font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
    margin-top: 20px;
    margin-top: 1.25rem;
		text-align: left;
		padding: 0 20px;
	}
}

.p-low-service-area02 {
	/*padding-top: 120px;*/
}

@media screen and (max-width: 768px) {
	.p-low-service-area02 {
	padding-top: 60px;
}
}

.p-low-service-area02 .main_box {
	display: flex;
	flex-direction: column;
}

.p-low-service-area02 .main_box .box_area02:nth-of-type(even) .img_box {
	order: 2;
}

.p-low-service-area02 .main_box .box_area02 {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}


.p-low-service-area02 .main_box .img_box {
	width: 48%;
}

.p-low-service-area02 .main_box .txt_box {
	width: 48%;
}

@media screen and (max-width: 768px) {
	.p-low-service-area02 .main_box {
	flex-direction: column;
}
	.p-low-service-area02 .main_box .img_box {
	width: 100%;
}

.p-low-service-area02 .main_box .txt_box {
	width: 100%;
}
	.p-low-service-area02 .main_box .box_area02:nth-of-type(even) .img_box {
	order: 0;
}
}

.p-low-service-area02 .p-service__text {
	font-size: 1rem;
    line-height: 2.25;
	/*margin-left: 50px;*/
}

.p-low-service-area02 .p-service__text span.title_list02 {
	display: table;
	font-size: 1.2rem;
	font-weight: 600;
	position: relative;
	color: var(--main-color);
	padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.p-low-service-area02 .p-service__text {
	font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.25;
    margin-top: 20px;
    margin-top: 1.25rem;
		margin-left: 0;
}
	.p-low-service-area02 .main_box .box_area02 {
		flex-direction: column;
	}
}

.p-low-service-area03 {
	padding-top: 120px;
}

@media screen and (max-width: 768px) {
	.p-low-service-area03 {
	padding-top: 60px;
}
}

.p-low-service-area03 .txt_box .p-service__text {
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
	.p-low-service-area03 .txt_box .p-service__text {
		text-align: left;
		margin-bottom: 30px;
}
}

.p-low-service-area04 {
	padding-top: 120px;
}

@media screen and (max-width: 768px) {
	.p-low-service-area04 {
	padding-top: 60px;
}
}

.p-low-service-area04 .p-low-service__item {
	margin-bottom: 30px;
	padding: 40px 40px 0 40px;
	border: 1px solid var(--main-color);
	border-radius: 30px;
	box-sizing: border-box;
}

.p-low-service-area04 .p-low-service__item:last-of-type {
	margin-bottom: 0;
}

.p-low-service-area04 .p-low-service__item-title {
	font-weight: 700;
}

.p-low-service-area04 .p-low-service__item-text {
	padding-top: 10px;
	padding-bottom: 30px;
	font-size: 1rem;
    line-height: 2.25;
}

.p-low-service-area05 {
	padding-top: 120px;
}

@media screen and (max-width: 768px) {
	.p-low-service-area05 {
	padding-top: 60px;
}
}

.p-low-service-area05 .p-low-service__wrap {
	display: flex;
	justify-content: space-evenly;
}

.p-low-service-area05 .p-low-service__wrap li {
	width: 23%;
	position: relative;
}

.p-low-service-area05 .p-low-service__wrap li .p-low-service__item-title {
	text-align: center;
	color: var(--main-color);
	font-weight: 600;
	font-size: 1.4rem;
	padding-top: 10px;
}

.p-low-service-area05 .p-low-service__wrap li .p-low-service__item-text {
	padding-top: 10px;
    font-size: 1rem;
    line-height: 2.25;
}

.p-low-service-area05 .p-low-service__wrap li .number {
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--main-color);
	color: #ffffff;
	line-height: 70px;
	text-align: center;
	position: absolute;
	top: 0;
	font-weight: 600;
	font-size: 1.6rem;
	z-index: 1;
}

.p-low-service-area05 .p-low-service__wrap li .img_box {
	border-radius: 50%;
	border: 5px solid var(--main-color);
	overflow: hidden;
}

.p-low-service-area05 .p-low-service__wrap li .img_box figure {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.p-low-service-area05 .p-low-service__wrap li .img_box figure:after {
	content: "";
	display: block;
	padding-top: 100%;
}

.p-low-service-area05 .p-low-service__wrap li .img_box figure > img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
	.p-low-service-area05 .p-low-service__wrap {
		flex-direction: column;
	}
	.p-low-service-area05 .p-low-service__wrap li {
		width: 90%;
		margin: auto;
		margin-bottom: 30px;
	}
}

.p-low-check-box {
	padding-top: 60px;
	position: relative;
}

.p-low-check-box h4 {
	display: inline-block;
	color: #ffffff;
	background: var(--main-color);
	font-weight: 600;
	padding: 15px 20px;
	position: absolute;
    top: 30px;
    left: 50px;
}

.p-low-check-box ul {
	border: 3px solid var(--sub-color);
	padding: 50px;
}

.p-low-check-box ul li {
	padding: 10px 10px 10px 40px;
	background: url("../images/common/check.png") left 10px no-repeat;
	background-size: 30px auto;
}
@media screen and (max-width: 768px) {
	.p-low-check-box ul {
		padding: 30px 20px;
	}
}

.p-low-service-area06 {
	padding-top: 120px;
}

@media screen and (max-width: 768px) {
	.p-low-service-area06 {
	padding-top: 60px;
}
}

.p-low-service-area06 .main_box {
	display: flex;
	justify-content: space-between;
}

.p-low-service-area06 .main_box .inner_con {
	width: 48%;
	text-align: center;
	border: 3px solid var(--main-color);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-content: space-between;
	flex-direction: column;
}

.p-low-service-area06 .main_box .inner_con h4 {
	background: var(--main-color);
	padding: 10px;
	font-size: 18px;
	color: #ffffff;
}

.p-low-service-area06 .main_box .inner_con p {
	padding: 15px 0;
}

.p-low-service-area06 .main_box .inner_con a {
	background-color: var(--main-color);
	background-image: url("../images/common/pdf_img.png");
	background-position: 30px center;
	background-repeat: no-repeat;
	background-size: 60px auto;
	color: #ffffff;
	display: inline-block;
	    width: 80%;
	padding: 10px;
    margin: auto;
    margin-bottom: 10px;
	border-radius: 10px;
	font-weight: 600;
	position: relative;
	line-height: 60px;
}

.p-low-service-area06 .main_box .left_box a {
	background-image: url("../images/common/entry_icon.png");
}

.p-low-service-area06 .main_box .right_box a {
	background-image: url("../images/common/mail_icon.png");
}

.p-low-service-area06 .main_box .inner_con a:after {
	display: block;
	content: "";
	 border-top: 10px solid transparent;
  border-right: 10px solid var(--sub-color);
  border-bottom: 10px solid var(--sub-color);
  border-left: 10px solid transparent;
	width: 10px;
	height: 10px;
	    position: absolute;
    bottom: 10px;
    right: 20px;
}

.p-low-service-area06 .main_box .inner_con a.tel_icon {
	background-image: url("../images/common/tel_icon.png");
	font-size: 1.2rem;
	padding: 20px 0;
}

.p-low-service-area06 .main_box .inner_con a.mail_icon {
	background-image: url("../images/common/mail_icon.png");
	font-size: 1.2rem;
	padding: 20px 0;
}

@media screen and (max-width: 768px) {
	.p-low-service-area06 .main_box {
	flex-direction: column;
}
	.p-low-service-area06 .main_box .inner_con {
		width: 100%;
		margin-bottom: 30px;
	}
	.p-low-service-area06 .main_box .inner_con p {
		font-size: 14px;
	}
	.p-low-service-area06 .main_box .inner_con a {
		width: 90%;
		font-size: 14px;
    background-position: 20px center;
	}
	.p-low-service-area06 .main_box .inner_con a.tel_icon {
	font-size: 1rem;
	padding: 25px 0;
		padding-left: 30px;
}

.p-low-service-area06 .main_box .inner_con a.mail_icon {
	font-size: 1rem;
	padding: 25px 0;
	padding-left: 30px;
}
}

.p-low-service-area02._left .main_box {
	justify-content: space-between;
}

.p-low-service-area02._left .main_box .img_box {
	order: 1;
}

.p-low-service-area02._left .main_box .txt_box {
	order: 0;
}

.p-low-service-area07 {
	padding: 120px 20px 0;
}

.p-low-service-area07 .boshu_box {
	max-width: 800px;
	margin: auto;
}

.p-low-service-area07 .boshu_box dl {
	display: flex;
	border-bottom: 1px solid #333;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.p-low-service-area07 .boshu_box dl dt {
	width: 20%;
	font-weight: 600;
}

@media screen and (max-width: 768px) {
.p-low-service-area02._left .main_box .img_box {
	order: -1;
}
	.p-low-service-area07 {
	padding: 60px 20px 0;
}
	.p-low-service-area07 .boshu_box dl {
	flex-direction: column;
}
	.p-low-service-area07 .boshu_box dl dt {
		width: 100%;
	padding-bottom: 10px;
}
}
.grecaptcha-badge {
	display: none !important;
}