@charset "UTF-8";

:root {
    --font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    --text-color: #83705e;
/*フォントカラー*/
--text-color: #1f2937;
/*メインカラー*/
--main-color: #059669;
/*英字見出し*/
--sub-color: #6b7280;
/*ヘッダー背景色*/
--sub-color2: #ffffff;
/*サブ背景色*/
--accent-color: #f0fdf4;
/*お問い合わせ・送信ボタン・一覧はこちら*/
--accent-color2: #047857;
/*フォーム「任意」背景色*/
--accent-color3: #fb923c;
/*サイト全体背景色*/
--background-color: #ffffff;
/*シャッター背景*/
--shutter-effect: #059669;
/*シャッターライン*/
--shutter-line: #ffffff;
}

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

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

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

/* リキッドレイアウト対応 */
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 {
    background-color: var(--main-color);
    padding: 13px 0;
    padding: 0.8125rem 0;
    font-size: 14px;
    font-size: 0.875rem;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.c-button-accent .blog_icon.ichiran {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #ffffff;
}

.c-button-accent:hover .blog_icon.ichiran {
    color: var(--accent-color2);
}

.c-button-white {
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    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);
}

.c-button-bg {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    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;
    border: 1px solid var(--main-color);
    font-size: 18px;
    font-size: 1.125rem;
}

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

.c-button-bg:hover {
    color: #ffffff;
    background-color: var(--main-color);
}

.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: var(--main-color);
    -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: #a1c4bb;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

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

.hamburgerColor.color span {
    background: #a1c4bb;
    -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 {
    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;
}

.wp-pagenavi span.current {
    font-size: 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--main-color);
    color: var(--text-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) {
    .wp-pagenavi span.current {
        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.larger {
    font-size: 16px;
    font-size: 1rem;
    background-color: transparent;
    color: var(--text-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;
    background-color: transparent;
    color: var(--text-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;
    }
}

.nextpostslink {
    background-image: url(../images/top/page-next@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    width: 0.9375rem;
    height: 18px;
    height: 1.125rem;
}

.previouspostslink {
    background-image: url(../images/top/page-prev@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    width: 0.9375rem;
    height: 18px;
    height: 1.125rem;
}

.previouspostslink,
.nextpostslink {
    font-size: 16px;
    font-size: 1rem;
    border: 1px solid var(--main-color) !important;
    background-color: transparent;
    color: var(--text-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;
        border: 1px solid var(--main-color) !important;
    }
}

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

.c-subtitle {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    position: absolute;
    bottom: -56px;
    bottom: -3.5rem;
    color: var(--sub-color);
    display: block;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}

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

.c-title {
    font-size: 24px;
    font-size: 1.5rem;
    color: var(--text-color);
    position: relative;
    text-transform: uppercase;
    text-align: center;
}

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

.c-title::after {
    position: absolute;
    content: "";
    height: 30px;
    height: 1.875rem;
    width: 2px;
    width: 0.125rem;
    background-color: var(--sub-color);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
}

@media screen and (min-width: 768px) {
    .c-title::after {
        height: 2.5rem;
    }
}

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

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

@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: 16.875rem;
    }
}

.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-greeting {
    padding-top: 60px;
    padding-top: 3.75rem;
}

@media screen and (min-width: 768px) {
    .l-low-greeting {
        padding: 7.5rem 0;
    }
}

.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: 60px;
    margin-top: 3.75rem;
}

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

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

.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 {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
    .l-point {
        padding-top: 16.875rem;
        padding-bottom: 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-size: cover;
    background-repeat: no-repeat;
	background-position: center center;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    position: relative;
}

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

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

.p-footer__inner {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

@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;
    font-weight: 800;
}

.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: var(--main-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    letter-spacing: 1.6px;
    letter-spacing: 0.1rem;
}

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

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

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

.pc-menu {
    display: none;
}

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

.p-header {
    height: 60px;
    height: 3.75rem;
    background-color: #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-concept__low-wrap {
    margin-top: 60px;
    margin: 3.75rem 0;
}

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

.p-low-access__text {
    text-align: center;
    margin-top: 80px;
    margin-top: 5rem;
    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: 7.5rem;
        font-size: 1rem;
    }
}

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

@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 {
    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;
    color: var(--main-color);
}

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

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

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

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

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

.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%;
    text-align: center;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: capitalize;
}

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

.p-low-mv__subtext {
    display: block;
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.2em;
}

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

.p-low-menu__wrap {
    margin-top: 80px;
    margin-top: 5rem;
}

@media screen and (min-width: 768px) {
    .p-low-menu__wrap {
        margin-top: 9.1875rem;
        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 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    width: 100%;
    height: 400px;
    height: 25rem;
    padding: 0 30px;
    padding: 0 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-low-menu__item {
        width: 100%;
        height: 31.25rem;
        width: 33.333%;
    }
}

.p-low-menu__item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.p-low-menu__item-wrap {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
}

@media screen and (min-width: 768px) {
    .p-low-menu__item-wrap {
        width: 84%;
        top: 50%;
    }
}

.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: 20px;
    font-size: 1.25rem;
    position: relative;
    margin-top: 20px;
    margin-top: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}

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

.p-low-menu__item-title::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    height: 1.25rem;
    background-color: #ffffff;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

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

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

@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;
    color: #83705e;
}

@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;
    color: #83705e;
}

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

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

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

.p-low-point__lists {
    margin-top: 80px;
    margin-top: 5rem;
}

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

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

.p-low-point__list:nth-child(3n+2) {
    background-color: #ffffff;
}

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

.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 30px;
        position: relative;
        width: 100%;
    }
}

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

@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.3em;
    font-weight: 600;
}

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

.p-article__subtitle {
    bottom: -100px;
    bottom: -6.25rem;
}

@media screen and (min-width: 768px) {
    .p-article__subtitle {
        bottom: -6.875rem;
    }
}

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

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

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

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

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

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

.meta-category {
    font-size: 14px;
    font-size: 0.875rem;
    background-color: var(--main-color);
    color: #ffffff;
    margin: 0 auto;
    margin-top: 16px;
    margin-top: 1rem;
    width: 80px;
    width: 5rem;
    height: 25px;
    height: 1.5625rem;
}

@media screen and (min-width: 768px) {
    .meta-category {
        font-size: 0.875rem;
        margin: 0 auto;
        margin-top: 1rem;
        width: 5rem;
        height: 1.5625rem;
    }
}

.meta-category a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    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;
}

.mainContent__text {
    margin-top: 140px;
    margin-top: 8.75rem;
}

@media screen and (min-width: 768px) {
    .mainContent__text {
        margin-top: 11.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;
    color: #a1c4bb;
}

@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-article__button {
    width: 178px;
    width: 11.125rem;
    height: 60px;
    height: 3.75rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    position: relative;
    /*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-article__button {
        width: 18.75rem;
        margin-top: 3.75rem;
        margin-bottom: 16.875rem;
        font-size: 1.5rem;
        height: 5rem;
    }
}

/*.p-article__button::before {
    position: absolute;
    content: "";
    background-image: url(../images/top/back-arrow.png);
    background-size: cover;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 30px;
    left: 1.875rem;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 20px;
    width: 1.25rem;
    height: 15px;
    height: 0.9375rem;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (min-width: 768px) {
    .p-article__button::before {
        width: 1.25rem;
        height: 1.5625rem;
    }
}

.p-article__button:hover::before {
    background-image: url(../images/top/page-prev@2x.png);
    z-index: 1;
}*/

.p-low-greeting {
    background-color: var(--accent-color);
}

.p-low-greeting__inner {
    margin-top: 80px;
    margin-top: 5rem;
}

@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: 12.6875rem;
    }
}

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

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

.p-low-greeting__top {
    background-color: rgba(255, 255, 255, .8);
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 15px;
    padding: 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: var(--text-color);
    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);
}

@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: var(--text-color);
    margin-left: 11px;
    margin-left: 0.6875rem;
}

.p-low-staff__inner {
    margin-top: 80px;
    margin-top: 5rem;
}

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

@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;
	color: var(--text-color);
}

@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;
	color: var(--text-color);
}

@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 {
    background-color: var(--accent-color);
    position: relative;
}

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

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

.p-about__text {
    line-height: 2.25;
    font-size: 16px;
    font-size: 1rem;
    margin-top: 80px;
    margin-top: 5rem;
    color: var(--text-color);
}

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

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

@media screen and (min-width: 768px) {
    .p-about__wrap {
        position: absolute;
        bottom: -9.375rem;
        right: 0;
        margin-top: 0;
    }
}

.p-about__img {
    position: relative;
    width: 100%;
    height: 300px;
    height: 18.75rem;
}

@media screen and (min-width: 768px) {
    .p-about__img {
        width: 83.3333333333vw;
        height: 18.75rem;
    }
}

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

.p-about__img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, .6);
    z-index: 1;
}

.p-about__button {
    height: 43px;
    height: 2.6875rem;
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
}

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

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

.p-blog {
    position: relative;
}

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

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

@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: 2.5rem;
    }
}

.p-blog__lists {
    margin-top: 80px;
    margin-top: 5rem;
}

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

.p-blog__list {
    width: 100%;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 10px;
    padding-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
    .p-blog__list {
        padding-bottom: 0.9375rem;
    }
}

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

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

.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__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

.meta__time {
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
}

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

.meta__category {
    position: relative;
    background-color: var(--main-color);
    color: #ffffff;
    width: auto;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    margin-left: 20px;
    margin-left: 1.25rem;
}

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

.meta__category a {
    display: block;
    height: inherit;
    padding: 5px;
    padding: 0.3125rem;
}

@media screen and (min-width: 768px) {
    .meta__category a {
        padding: 0.5625rem;
    }
}

.p-blog__post-title {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
	color: var(--text-color);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 10px;
    margin-top: 0.625rem;
}

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

.p-blog__arrow {
    position: absolute;
    right: 0;
}

@media screen and (min-width: 768px) {
    .p-blog__arrow {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 1.25rem;
        height: 1.5625rem;
        z-index: -1;
    }
}

.p-blog__button {
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 14px;
    font-size: 0.875rem;
    position: relative;
}

@media screen and (min-width: 768px) {
    .p-blog__button {
        width: 18.75rem;
        margin-top: 3.75rem;
        font-size: 1.5rem;
        height: 5rem;
    }
}

.p-blog__button a {
    padding: 10px;
    padding: 0.625rem;
    font-weight: 300;
}

@media screen and (min-width: 768px) {
    .p-blog__button a {
        padding: 0;
        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__button::after {
    position: absolute;
    content: "";
    background-image: url(../images/top/submit@2x.png);
    background-size: cover;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 20px;
    width: 1.25rem;
    height: 15px;
    height: 0.9375rem;
}

@media screen and (min-width: 768px) {
    .p-blog__button::after {
        width: 1.25rem;
        height: 1.5625rem;
        right: 1.875rem;
    }
}

.p-blog__button:hover:after {
    background-image: url(../images/top/blog-arrow@2x.png);
}*/

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

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

.p-blog__img {
    width: 100%;
    position: relative;
    /*height: 163px;
    height: 10.1875rem;*/
	overflow: hidden;
	margin-bottom: 20px;
}

.p-blog__img:before {
	content: "";
	display: block;
	padding-top: 100%;
}

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

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

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

/*.p-blog__img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
	background-color: rgba(51, 51, 51, .6);
    z-index: 1;
}*/

.p-blog__text-long {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.p-company__wrap {
    width: 100%;
    margin-top: 80px;
    margin-top: 5rem;
}

@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: 9.25rem;
    }
}

.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;
	color: var(--taxt-color);
}

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

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

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

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

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

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

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

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

.p-concept {
    position: relative;
}

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

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

@media screen and (min-width: 768px) {
    .p-concept__subtitle {
        bottom: -4.375rem;
    }
}

.p-concept__text {
    line-height: 2.25;
    font-size: 16px;
    font-size: 1rem;
    margin-top: 80px;
    margin-top: 5rem;
    color: var(--text-color);
}

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

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

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

.p-concept__img {
    position: relative;
    width: 100%;
    height: 300px;
    height: 18.75rem;
}

@media screen and (min-width: 768px) {
    .p-concept__img {
        width: 83.3333333333vw;
        height: 18.75rem;
    }
}

.p-concept__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-concept__img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, .6);
    z-index: 1;
}

.p-concept__button {
    height: 43px;
    height: 2.6875rem;
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
}

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

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

.p-conatct__text {
    margin-top: 80px;
    margin-top: 5rem;
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
    font-size: 0.875rem;
    color: var(--taxt-color);
}

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

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

.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-conatct__subtext {
    margin-top: 40px;
    margin-top: 2.5rem;
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
    font-size: 0.875rem;
	color: var(--taxt-color);
}

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

.p-menu__wrap {
    margin-top: 80px;
    margin-top: 5rem;
}

@media screen and (min-width: 768px) {
    .p-menu__wrap {
        margin-top: 9.1875rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        flex-wrap: wrap;
    }
}

.p-menu__item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    width: 100%;
    height: 500px;
    height: 22rem;
    padding: 0 30px;
    padding: 0 1.875rem;
}

@media screen and (min-width: 768px) {
    .p-menu__item {
        width: 33.3333333333%;
        /*     margin-top: 1.25rem; */
        height: 31.25rem;
        padding: 0 1.875rem;
    }
}

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

.p-menu__item:first-child {
    background-position: left;
}

.p-menu__item-wrap {
    position: absolute;
    bottom: 30px;
    bottom: 1.875rem;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
}

@media screen and (min-width: 768px) {
    .p-menu__item-wrap {
        width: 84%;
    }
}

.p-menu__item-title {
    font-size: 24px;
    font-size: 1.5rem;
    position: relative;
    margin-top: 20px;
    margin-top: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

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

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

.p-menu__item-title::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 40px;
    height: 2.5rem;
    background-color: #ffffff;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.p-menu__item-text {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.25;
    color: #ffffff;
}

@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;
    padding: 0 15px;
    padding: 0 0.9375rem;
}

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

.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-message {
    background-color: var(--accent-color);
}

.p-message__top {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .p-message__top {
        position: relative;
        z-index: 1;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 43.75rem;
        max-width: 100%;
        margin-left: 3.75rem;
    }
}

.p-message__title {
    color: var(--text-color);
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 20px;
    margin-top: 1.25rem;
}

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

.p-message__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    color: var(--text-color);
    line-height: 2.25;
    font-size: 16px;
    font-size: 1rem;
}

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

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

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

.p-message__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: center;
    object-position: center;
}

.p-message__wrap {
    margin-top: 80px;
    margin-top: 5rem;
}

@media screen and (min-width: 768px) {
    .p-message__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 9.0625rem;
    }
}

.p-message__button {
    height: 43px;
    height: 2.6875rem;
    width: 178px;
    width: 11.125rem;
    margin: 0 auto;
    margin-top: 48px;
    margin-top: 3rem;
}

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

.p-movie__text {
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 80px;
    margin-top: 5rem;
    line-height: 2.25;
    color: var(--text-color);
}

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

.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;
    display: flex;
    align-items: center;
}

.p_mv__box {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    padding: 0 20px;
}

.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%;
    text-align: center;
    color: #ffffff;
    font-weight: 300;
    padding-bottom: 30px;
}

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

.p-mv__img {
    height: inherit;
    position: relative;
    width: 100%;
}

.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-mv__img.pc_img {
    display: none;
}
.p-mv__img.sp_img {
    display: block;
}

@media screen and (min-width: 768px) {
    .p-mv__img.pc_img {
        display: block
    }
    .p-mv__img.sp_img {
        display: none;
    }
}

.p-mv__button {
    /*position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);*/
    font-size: 18px;
    font-size: 1.125rem;
    width: 228px;
    width: 14.25rem;
    height: 60px;
    height: 3.75rem;
    margin: 0 auto;
    bottom: 215px;
    bottom: 22rem;
}

@media screen and (min-width: 768px) {
    .p-mv__button {
        width: 18.75rem;
        height: 5rem;
        font-size: 1.5rem;
    }
}

.p-news {
    position: relative;
    width: 100%;
    background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
    .p-news {
        height: 3.75rem;
        background-color: var(--main-color);
        margin-top: -3.75rem;
    }
}

.p-news__inner {
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    height: inherit;
}

@media screen and (min-width: 768px) {
    .p-news__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-top: 0.6875rem;
        padding-bottom: 0.6875rem;
    }
}

.p-news__top {
    width: 100%;
}

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

.p-news__title {
    color: #ffffff;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .p-news__title {
        font-size: 1.875rem;
        font-family: "Quicksand", sans-serif;
    }
}

.p-news__text {
    color: #ffffff;
    margin-top: 10px;
    margin-top: 0.625rem;
    font-size: 16px;
    font-size: 1rem;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .p-news__text {
        margin-top: 0;
        margin-left: 2.5rem;
        position: relative;
        font-size: 1.25rem;
    }
}

.p-news__text a {
    display: block;
}

.p-news__text a:hover {
    opacity: 0.8;
}

.p-other {
    background-color: var(--accent-color);
    height: 250px;
    height: 15.625rem;
    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-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;
    color: var(--text-color);
}

@media screen and (min-width: 768px) {
    .p-other__link-title {
        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.625rem;
    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: 0.625rem;
    font-size: 14px;
    font-size: 0.875rem;
}

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

.p-point {
    background-color: var(--accent-color);
}

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

.p-point__lists {
    margin-top: 80px;
    margin-top: 5rem;
}

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

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

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

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

@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: 20px;
    margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
    .p-point__wrap {
        margin-top: 0;
        position: relative;
        width: 31.25rem;
        margin-left: 6.25rem;
    }
}

@media screen and (min-width: 768px) {
    .p-point__list:nth-child(2n) .p-point__wrap {
        position: relative;
        left: auto;
        width: 31.25rem;
        margin-left: 0;
        margin-right: 6.25rem;
    }
}

.p-point__wrap-title {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    font-size: 1rem;
    color: var(--text-color);
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.025em;
    font-size: 20px;
    font-size: 1.25rem;
}

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

.p-point__wrap-title .number {
    color: var(--main-color);
    font-size: 34px;
    font-size: 2.125rem;
}

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

.p-point__wrap-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-point__wrap-title::before {
        bottom: 0rem;
    }
}

.p-point__wrap-sub-title {
	color: var(--text-color);
    font-weight: 600;
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
}

@media screen and (min-width: 768px) {
    .p-point__wrap-sub-title {
        margin-top: 0.9375rem;
        font-size: 1.5rem;
    }
}

.p-point__wrap-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.25;
    color: var(--text-color);
}

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

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

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

.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__button {
    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__button {
        width: 9.375rem;
        margin: 0 auto 0 0;
        margin-top: 3.25rem;
        font-size: 1rem;
        height: 3.125rem;
    }
}

.shutter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--shutter-effect);
    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: var(--shutter-line);
    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;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 0.625rem;
    }
}

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

.u-form__title {
    font-size: 14px;
    font-size: 0.875rem;
    margin-right: 8px;
    margin-right: 0.5rem;
	color: var(--taxt-color);
}

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

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

@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: 18.75rem;
        height: 5rem;
        max-width: 100%;
        position: relative;
    }
}

.form__submit-button {
    width: 280px;
    width: 17.5rem;
    max-width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 300;
    position: relative;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN ", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif, sans-serif;
}

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

.form__submit::after {
    position: absolute;
	color: #ffffff;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
    font-style: normal;
	content: "\f101";
    /*background-image: url(../images/top/submit@2x.png);
    background-size: cover;*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    right: 1.875rem;
    /*background-size: contain;
    background-repeat: no-repeat;*/
    display: inline-block;
    /*width: 20px;
    width: 1.25rem;
    height: 15px;
    height: 0.9375rem;*/
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (min-width: 768px) {
    .form__submit::after {
        width: 1.25rem;
        height: 1.5625rem;
    }
}

.form__submit:hover:after {
    /*background-image: url(../images/top/blog-arrow@2x.png);*/
	color: var(--accent-color2);
}

.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;
	color: var(--taxt-color);
}

@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: var(--main-color);
}

@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;
	color: var(--taxt-color);
}

@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 */

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

.blog_icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    color: var(--main-color);
}

.blog_icon:before {
    content: "\f101";
}

.blog_icon.detail {
    position: absolute;
    right: 0;
}

.blog_icon.ichiran {
    margin-left: 20px;
}

.blog_icon.back {
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

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

.c-button-main:hover .blog_icon.back {
    color: var(--main-color);
}

.l-low-staff {
	display: none;
}

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