@charset "utf-8";

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

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

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

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

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

/*----------------------------------------
	Components
----------------------------------------*/
.c-input-text,
.c-input-textarea {
    width: 100%;
    padding: 1.2rem .8rem;
    border: none;
    border-radius: .4rem;
    background-color: #EDEDED;
    font-size: inherit;
}
.c-input-textarea {
    min-height: 18rem;
}
.c-input-year {
    width: 80px !important;
}
.c-input-month {
    width: 60px !important;
}
.c-input-radio {
    padding: 0.7rem 0;
    display: block;
}
.c-input-select {
    max-width: 100%;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    background-color: #EDEDED;
    padding: 1.2rem .8rem;
    border-radius: .4rem;
    vertical-align: middle;
    border: none;
    font-size: inherit;
}
.c-button {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #EA5514;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    color: #fff;
    width: 100%;
    padding: 1.6rem 5rem 2rem 5rem;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
    width: fit-content;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.c-button span {
    height: 15px;
    display: flex;
    align-items: center;
}
.c-button img {
    display: inline-block;
    height: 13px;
}
.c-button::after {
    content: "";
    width: 15px;
    height: 15px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/common/allow_button_w.svg) no-repeat 50% center;
    background-size: .9rem auto;
}
.c-button:hover:after {
    animation: arrow-rotate .4s ease-out;
}
.c-button:hover {
    opacity: .75;
    color: #fff;
    text-decoration: none;
}
.c-button[type=submit] {
    padding: 2.2rem 0 2.2rem 0;
}
.c-button.out-link::after {
    background: url(../img/common/icon_link_out_w.svg) no-repeat 50% center;
    background-size: 1.6rem auto;
}

.c-required {
    font-size: 1.4rem;
    color: #E74400;
}
.c-input-unit {
    margin: 0 2rem 0 .4rem;
}
@keyframes arrow-rotate {
    0% {
        opacity: 1;
        background-position: 50% center;
    }
    40% {
        opacity: .2;
        background-position: 180% center;
    }
    41% {
        opacity: 0;
        background-position: 180% center;
    }
    59% {
        opacity: 0;
        background-position: -180% center;
    }
    60% {
        opacity: .2;
        background-position: -180% center;
    }
    100% {
        opacity: 1;
        background-position: 50% center;
    }
}
@media only screen and (max-width: 767px) {
    .c-input-unit {
        margin: 0 1rem 0 0.2rem;
    }
    .c-button {
        font-size: 1.6rem;
        padding: 1.6rem 3rem 2rem 3rem
    }
}

/*----------------------------------------
	Layout
----------------------------------------*/
.l-main {
    min-width: 100rem;
}
@media only screen and (max-width: 767px) {
    .l-main {
        min-width: initial;
    }
}

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

/*----------------------------------------
	Header
----------------------------------------*/
header {
    width: 100vw;
    height: 20rem;
    position: relative;
    z-index: 3;
}
.p-header {
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.p-header .logo {
    width: 36rem;
    height: 38rem;
    background: url(../img/common/bg_header_logo.svg) no-repeat left top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}
.p-header .logo a {
    width: 26.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.p-header .logo a:hover {
    opacity: .75;
}
.p-header .logo a img {
    display: block;
}
.p-header .logo a img:first-of-type {
    width: 15.6rem;
    margin-bottom: 3rem;
}
.p-header .logo a img:last-of-type {
    width: 26.4rem;
}
.p-header__navi {
    width: calc( 100% - 36rem );
    height: 21rem;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    background: url(../img/common/bg_header_navi.svg) no-repeat left top;
    background-size: cover;
    padding: 0 2rem 0 0;
}
.p-header__navi ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 11rem 5rem 0 0;
}
.p-header__navi ul li {
    border-right: 1px solid #F8B62D;
    padding: 0 2rem;
}
.p-header__navi ul li:last-of-type {
    border-right: none;
}
.p-header__navi a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.p-header__navi a:hover {
    opacity: .75;
}
.p-header-bunner {
    width: 32rem;
    margin-top: 3rem;
}
.p-header-bunner a {
    display: block;
}
.p-header-bunner a img:first-of-type {
    margin-bottom: .4rem;
}

.p-header-entry-btn {
    background: #fff;
}
.p-header-entry-btn a {
    width: 12rem;
    height: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-header-entry-btn a img {
    width: 52px;
}

/* スマボメニューボタン */
.p-header-sp-btn {
    display: none;
    width: 9rem;
    height: 8rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    cursor: pointer;
    transition: .4s ease-in-out;
}
.p-header-sp-btn span {
    display: block;
    width: 5rem;
    height: 4px;
    position: absolute;
    left: calc(50% - 2.5rem);
    transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-header-sp-btn span.l1 {
    top: 4.4rem;
}
.p-header-sp-btn span.l2 {
    top: 5rem;
}
.p-header-sp-btn p {
    width: 100%;
    position: absolute;
    font-size: 1rem;
    text-align: center;
    top: 5rem;
    text-align: center;
}
.p-header-sp-btn p img {
    width: 3.2rem;
}
.sp-menu-open .p-header-sp-btn .l1 {
    top: 3.6rem;
    transform: rotate(16deg);
}
/* スマホメニュー */
.p-header-sp-menu {
    width: 42rem;
    max-width: 100vw;
    height: 100vh;
    background-color: #fff;
    padding: 8%;
    position: fixed;
    top: 7rem;
    right: -100vw;
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: .2s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 9rem 0 4rem 0;
}
.sp-menu-open .p-header-sp-menu {
    right: 0;
}
.p-header-sp-menu nav {
    width: 84%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.p-header-sp-menu nav a {
    display: flex;
    align-items: center;
    transition: .4s cubic-bezier(0,0,0,1);
    opacity: 0;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1rem 0;
    position: relative;
    text-decoration: none;
}
.p-header-sp-menu nav a::before {
    content: '';
    display: block;
    width: 1rem;
    height: 0.1rem;
    border-bottom: 3px solid #EA5514;
    margin-right: 1rem;
}
/* スマホメニュー内LINE */
.p-header-sp-menu__line {
    padding: 2rem 0 2.4rem 0;
    margin: 3rem 0 2rem 0;
    background-color: #06C755;
    color: #fff;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-header-sp-menu__line .heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.4rem;
}
.p-header-sp-menu__line .heading img {
    width: 3.6rem;
    margin-right: 1.4rem;
}
.p-header-sp-menu__line .heading h3 {
    flex: 1;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px dotted #fff;
}
.p-header-sp-menu__line p {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
}


/* スマホメニュー内電話番方 */
.p-header-sp-menu .p-contact-info-unit {
    width: 84%;
    margin: 0 auto;
}

/* @media only screen and (max-width: 999px) {
    header {
        height: 17rem;
    }
    .p-header .logo {
        width: 26rem;
        height: 27rem;
    }
    .p-header .logo a {
        width: 18.4rem;
    }
    .p-header__navi {
        width: calc( 100% - 26rem );
        height: 17rem;
    }
    .p-header__navi ul {
        margin: 8rem 2rem 0 0;
    }
    .p-header__navi ul li {
        padding: 0 1.4rem;
    }
    .p-header-bunner {
        width: 26rem;
    }
} */
@media only screen and (max-width: 1100px) {
    header {
        height: 12rem;
    }
    .p-header {
        width: 100vw;
    }
    .p-header .logo {
        width: 33rem;
        height: 34rem;
    }
    .p-header__navi {
        width: calc( 100% - 33rem );
        height: 13rem;
    }
    .p-header__navi ul {
        display: none;
    }
    .p-header-bunner {
        display: none;
    }
    /* スマボメニューボタン */
    .p-header-sp-btn {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    header {
        height: 9rem;
    }
    .p-header .logo {
        display: block;
        width: 23rem;
        height: 16rem;
        background: url(../img/common/bg_header_logo_sp.svg) no-repeat left top;
        background-size: cover;
    }
    .p-header .logo a {
        width: 15rem;
        height: 16rem;
    }
    .p-header .logo a img:first-of-type {
        width: 9.3rem;
        margin-bottom: 0;
    }
    .p-header .logo a img:last-of-type {
        display: none;
    }
    .p-header__navi {
        width: calc( 100% - 23rem );
        height: 8.2rem;
        background: url(../img/common/bg_header_navi_sp.svg) no-repeat left top;
        background-size: cover;
        padding: 0;
    }
    .p-header-sp-menu {
        z-index: 1000;
    }
}


/*----------------------------------------
	Footer
----------------------------------------*/
footer {
    background-color: #FAF9F3;
    padding: 8rem 0 4rem 0;
    margin-top: 18rem;
}

.p-footer .inner {
    width: 90%;
    max-width: 148rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.p-footer__left {
    width: 32rem;
}
.p-footer__right {
    width: calc(100% - 36rem);
    display: flex;
    justify-content: end;
    align-items: flex-start;
}
.p-footer__left .logo {
    display: block;
    width: 32rem;
    margin-bottom: 6rem;
}
.p-footer-navi {
    display: flex;
}
.p-footer-navi .item {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}
.p-footer-navi .item a {
    display: inline-block;
    text-decoration: none;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2.4rem;
}
.p-footer-banner {
    width: 27rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-footer-banner a,
.p-footer-banner a img {
    display: block;
    width: 12rem;
    height: auto;
}
.p-footer-bottom {
    font-size: 1.2rem;
    color: #3C3C3C;
}
.p-footer-bottom .inner {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
}
.p-footer-bottom a {
    color: #707070;
}
.p-footer-sns {
    display: flex;
    margin-bottom: 1rem;
}
.p-footer-sns a {
    display: block;
    width: 3.6rem;
    height: 3.6rem;
}
.p-footer-sns a:hover {
    opacity: .75;
}
.p-footer-bottom__aside {
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    footer {
        margin-top: 8rem;
    }
    .p-footer .inner {
        flex-flow: column;
        width: 80%;
    }
    .p-footer__left {
        width: 100%;
        margin-bottom: 4rem;
    }
    .p-footer__right {
        width: 100%;
        justify-content: center;
        margin-bottom: 4rem;
    }
    .p-footer-navi {
        display: none;
    }
    .p-footer__left .logo {
        width: 22rem;
        margin: 0 auto 5rem auto;
    }
    .p-footer-bottom .inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: end;
    }
    .p-footer-sns {
        margin-bottom: 0.4rem;
    }
}


/*----------------------------------------
	共通パーツ
----------------------------------------*/
/* 電話番号表示 */
.p-contact-info-unit {

}
.p-contact-info-unit {
    line-height: 1;
}
.p-contact-info-unit dt {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: .6rem;
}
.p-contact-info-unit dd {
}
.p-contact-info-unit dd .tel {
    font-size: 4rem;
    display: block;
    letter-spacing: 0;
    font-family: "Gill Sans", sans-serif;
    font-weight: bold;
    color: #F8B62D;
    margin-bottom: 0.3rem;
    text-decoration: none;
}
.p-contact-info-unit dd .time {
    font-size: 1.4rem;
    color: #707070;
}
/* LINE固定バナー */
.p-fixed-line-banner {
    background-color: #06C755;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21rem;
    height: 10rem;
    position: fixed;
    bottom: 2rem;
    right: 0;
    z-index: 2;
    border-radius: 1rem 0 0 1rem;
    display: none;
}
.p-fixed-line-banner img {
    width: 15rem;
}

@media only screen and (max-width: 767px) {
    .p-fixed-line-banner {
        width: 11rem;
        height: 6.4rem;
    }
    .p-fixed-line-banner img {
        width: 7.5rem;
    }
}

/*----------------------------------------
	トップページ
----------------------------------------*/
.page-top {
}
/* VISUAL */
.p-top-visual {
    /* min-height: 77rem; */
    position: relative;
}
.p-top-visual__news {
    position: absolute;
    right: 0;
    bottom: 6rem;
    z-index: 1;
    background-color: #fff;
    border-radius: 10rem 0 0 10rem;
    display: flex;
    align-items: center;
    padding: 2rem 4rem 2.3rem 4rem;
    max-width: 83rem;
}
.p-top-visual__news span {
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 2rem;
}
.p-top-visual__news a {
    max-width: 41rem;
    line-height: 1.5;
    text-decoration: underline;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    font-weight: 500;
}
/* くくるデリプロジェクトとは */
.p-top-about {
    text-align: center;
    padding: 13rem 0 13.5rem 0;
}
.p-top-about h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 3.4rem;
    line-height: 1;
    margin-bottom: 6rem;
}
.p-top-about p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.2;
    margin-bottom: 4rem;
}
.p-top-about .c-button {
    margin: 0 auto;
}
/* ギャラリー */
.p-buy-gallery,
.p-top-gallery {
    overflow: hidden;
}
.p-buy-gallery .swiper-wrapper,
.p-top-gallery .swiper-wrapper {
    transition-timing-function: linear;
}
/* サービスガイド */
.p-top-guide {
    background-color: #FAF9F3;
    padding: 19rem 0;
}
.p-top-guide-item {
    background-color: #fff;
    border-radius: 4rem;
    padding: 11rem 12% 7rem 12%;
}
.p-top-guide-item:first-of-type {
    margin-bottom: 4rem;
}
.p-top-guide-item h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    margin-bottom: 3.6rem;
    position: relative;
    width: fit-content;
}
.p-top-guide-item h2::after {
    content: '';
    display: block;
    height: 0.1rem;
    width: 100%;
    border-bottom: 3px solid #EA5514;
    position: absolute;
    bottom: 0;
}
.p-top-guide-item .p-top-guide-item__body {

}
.p-top-guide-item .p-top-guide-item__body > .heading {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}
.p-top-guide-item .p-top-guide-item__body > .body {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
}
.p-top-guide-item .p-top-guide-item__body .c-button {
    margin: 0 auto;
}
.p-top-guide-list {
    display: flex;
    justify-content: space-between;
    max-width: 82rem;
    margin: 0 auto 4rem auto;
}
.p-top-guide-list li {
    border: 2px solid #8FC31F;
    border-radius: 1.4rem;
    text-align: center;
    overflow: hidden;
    width: calc( ( 100% - 4rem ) / 4 );
    display: flex;
    flex-direction: column;
}
.p-top-guide-list li > .heading {
    background: #8FC31F;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    letter-spacing: 0;
    line-height: 1.3;
}
.p-top-guide-item.support .p-top-guide-list li {
    border: 2px solid #FDB620;
}
.p-top-guide-item.support .p-top-guide-list li > .heading {
    background: #FDB620;
}
.p-top-guide-list li > .heading img {
    
}
.p-top-guide-list li > .heading span {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-top: 0.2rem;
}
.p-top-guide-list li > .body {
    padding: 2rem 0 2.5rem 0;
    background-color: #fff;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
/* リンク */
.p-top-links {
    padding: 14rem 0 0 0;
}
.p-top-links .inner {
    max-width: 100rem;
}
.p-top-links dl {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.p-top-links dl:first-of-type {
    margin-bottom: 10rem;
}
.p-top-links dl dt {
    width: 40%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 2rem;
}
.p-top-links dl dt::after {
    content: '';
    display: block;
    height: .1rem;
    width: 20rem;
    border-bottom: 3px solid #EA5514;
    position: absolute;
    bottom: 0;
}
.p-top-links dl dd {
    width: 50%
}
.p-top-links__col2 {
    display: flex;
    align-items: center;
}
.p-top-links__col2 a {
    display: inline-block;
    width: 35%;
}
.p-top-links__col2 a img {
    width: 100%;
}
.p-top-links__col2 a:first-of-type {
    margin-right: 7%;
}
.p-top-links__special {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}
.p-top-links__special a img {
    width: 100%;
}
.p-top-links__special a.banner-s {
    width: 32%;
}
.p-top-links__special a.banner-l {
    width: 60%;
}
.p-top-links dl dd ul li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.p-top-links__group:not(:last-of-type) {
    margin-bottom: 8rem;
}
.p-top-links__group h4 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.p-top-links__group h4::before {
    content: '';
    display: block;
    width: 2rem;
    height: .1rem;
    border-bottom: 3px solid #EA5514;
    margin-right: 1rem;
}
.p-top-links__group a img {
    width: 100%;
    max-width: 44rem;
}
.p-top-links__group .c-button {
    margin-top: 3.2rem;
}
.p-top-links__attention {
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}


@media only screen and (max-width: 767px) {
    /* VISUAL */
    .p-top-visual__news {
        padding: 2rem 2rem 2.3rem 4rem;
        align-items: baseline;
        bottom: 4rem;
    }
    .p-top-visual__news a {
        max-width: 20rem;
        -webkit-line-clamp: 2;
    }
    /* くくるデリプロジェクトとは */
    .p-top-about {
        padding: 10rem 0 6rem 0;
    }
    .p-top-about h2 {
        font-size: 2.2rem;
        margin-bottom: 6rem;
    }
    .p-top-about p {
        font-size: 1.5rem;
        margin-bottom: 5.5rem;
    }
    /* サービスガイド */
    .p-top-guide {
        padding: 9rem 0 5rem 0;
    }
    .p-top-guide-item {
        padding: 9rem 2rem 7rem 2rem;
    }
    .p-top-guide-item h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .p-top-guide-item .p-top-guide-item__body > .heading {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .p-top-guide-item .p-top-guide-item__body > .body {
        font-size: 1.4rem;
        margin-bottom: 3.5rem;
    }
    .p-top-guide-list {
        flex-wrap: wrap;
        margin: 0 auto 1.6rem auto;
    }
    .p-top-guide-list li {
        width: calc( ( 100% - 1rem ) / 2 );
        margin-bottom: 1rem;
    }
    .p-top-guide-list li > .heading span {
        font-size: 1.6rem;
    }
    .p-top-guide-list li > .body {
        font-size: 1.4rem;
    }
    /* リンク */
    .p-top-links {
        padding: 11rem 0 0 0;
    }
    .p-top-links .inner {
        width: 80%;
    }
    .p-top-links dl {
        flex-direction: column;
    }
    .p-top-links dl dt {
        width: 100%;
        font-size: 2rem;
        padding-bottom: 1rem;
        margin-bottom: 5rem;
    }
    .p-top-links dl dt::after {
        width: 15rem;
    }
    .p-top-links dl dd {
        width: 100%;
    }
    .p-top-links dl dd ul li {
        margin-bottom: 2rem;
        font-size: 1.6rem;
        line-height: 1.6;
    }
    .p-top-links__attention {
        font-size: 1.4rem;
    }
    .p-top-links__group {
        margin-bottom: 6rem;
    }
    .p-top-links__group .c-button {
        margin-left: auto;
        margin-right: auto;
    }

}

/*----------------------------------------
	下層ページ共通
----------------------------------------*/
.p-sub-page-heading {
    margin-top: 12rem;
    margin-bottom: 10rem;
}
.p-sub-page-heading h1 {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.p-sub-page-heading h1 .jp {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}
.p-sub-page-heading h1 .jp::after {
    content: '';
    display: block;
    height: 0.1rem;
    width: 100%;
    max-width: 20rem;
    border-bottom: 2px dotted #EA5514;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.p-sub-page-heading h1 .en {
    font-family: 'Gill Sans', sans-serif;
    font-size: 2.2rem;
    letter-spacing: .02em;
    font-weight: 600;
    margin-top: 0.6rem;
}

@media only screen and (max-width: 767px) {
    .p-sub-page-heading {
        margin-bottom: 6rem;
    }
    .p-sub-page-heading h1 .jp {
        font-size: 2.4rem;
        padding-bottom: 1.2rem;
    }
    .p-sub-page-heading h1 .en {
        font-size: 2rem;
    }
}


/*----------------------------------------
	お問い合わせ
----------------------------------------*/
.p-contact-qr {
    background-color: #06C755;
    color: #fff;
    padding: 6rem 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
}
.p-contact-qr .inner {
    max-width: 100rem;
    display: flex;
    align-items: center;
}
.p-contact-qr__heading {
    margin-right: 5rem;
    display: flex;
    align-items: center;
}
.p-contact-qr__heading img {
    display: block;
    width: 4rem;
    margin-right: 2rem;
}
.p-contact-qr__heading h3 {
    flex: 1;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px dotted #fff;
}
.p-contact-qr p {
    font-size: 2.2rem;
    font-weight: 700;
}
.p-contact-navi {
    margin: 6rem 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
}
.p-contact-navi .inner {
    max-width: 90rem;
}
.p-contact-navi__col2 {
    display: flex;
    justify-content: space-around;
}
.p-contact-navi__col2 .item {
    text-align: center;
}
.p-contact-navi__col2 .item dt {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}
.p-contact-navi__col2 .item dd {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .p-contact-qr {
        padding: 3rem 0 3.4rem 0;
    }
    .p-contact-qr .inner {
        flex-direction: column;
    }
    .p-contact-qr__heading {
        margin-right: 0;
        margin-bottom: 1.4rem;
    }
    .p-contact-qr__heading img {
        width: 3.6rem;
        margin-right: 1.4rem;
    }
    .p-contact-qr p {
        font-size: 1.8rem;
        line-height: 1.6;
    }
    .p-contact-navi__col2 {
        flex-direction: column;
    }
    .p-contact-navi__col2 .item dt {
        font-size: 2rem;
    }
    .p-contact-navi__col2 .item:first-of-type {
        margin-bottom: 5rem;
    }
}

/*----------------------------------------
	プライバシーポリシー
----------------------------------------*/
.p-privacy-content {
    margin-bottom: 6rem;
}
.p-privacy-content .inner {
    max-width: 100rem !important;
}
.p-privacy-content .inner h2 {
    font-size: 2.6rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}
.p-privacy-content .inner p {
    margin-bottom: 2rem;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .p-privacy-content {
        font-size: 1.4rem;
    }
    .p-privacy-content .inner h2 {
        font-size: 2rem;
    }
}

/*----------------------------------------
	お知らせ（一覧）
----------------------------------------*/
.p-news-list {

}
.p-news-list .inner {
    max-width: 60rem;
}
.p-news-list ul {
    
}
.p-news-list ul li {
    display: flex;
    align-items: center;
    padding: 2.2rem .2rem;
    border-bottom: 1px solid #F8B62D;
    font-weight: 700;
}
.p-news-list ul li .date {
    font-size: 1.6rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: .1rem;
    margin-right: 12rem;
}
.p-news-list ul li a {
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
/* ページ送り */
.p-pagenation {
}
.p-pagenation .inner {
    max-width: 99rem;
    display: flex;
    justify-content: space-around;
    margin: 4rem auto;
    font-weight: bold;
    font-size: 2rem;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.p-pagenation__prev a,
.p-pagenation__next a {
    display: flex;
    text-decoration: none;
    color: #683023;
}
.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp-pagenavi a {
    color: #B2B2B2;
}
.wp-pagenavi a:not(.nextpostslink),
.wp-pagenavi span:not(.extend) {
    text-decoration: none;
    border: none;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: .5rem;
}
/* 検索結果０件 */
.p-search-result-none {
    margin-top: 7rem;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-news-list ul li {
        display: flex;
        flex-direction: column;
        align-items: initial;
        padding: 1.8rem 0 2.4rem 0;
    }
    .p-news-list ul li .date {
        margin-right: inherit;
        margin-bottom: 0.6rem;
    }
    .p-news-list ul li a {
        font-size: 1.6rem;
        line-height: 1.5;
        display: block;
        overflow: initial;
        -webkit-box-orient: initial;
        -webkit-line-clamp: initial;
    }
}

/*----------------------------------------
	くくるデリプロジェクトとは
----------------------------------------*/
.p-about__intro {
    margin-bottom: 14rem;
    text-align: center;
}
.p-about__intro figure {
    margin-bottom: 10rem;
}
.p-about__intro h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.6;
}
.p-about__intro p {
    line-height: 2.2;
    font-weight: 700;
    margin-top: 5rem;
}
/* 特徴 */
.p-about-feature {
    background-color: #FAF9F3;
    padding: 15rem 0;
}
.p-about-feature .item {
    display: flex;
    justify-content: space-between;
}
.p-about-feature .item.reverse {
    flex-direction: row-reverse;
}
.p-about-feature .item:not(:last-of-type) {
    margin-bottom: 15rem;
}
.p-about-feature .item figure {
    width: 45%;
}
.p-about-feature__content {
    width: 48%;
}
.p-about-feature__content h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    font-size: 3rem;
    display: flex;
    margin-bottom: 5rem;
}
.p-about-feature__content h2 img {
    display: block;
    height: 8rem;
    width: auto;
    margin-right: 2rem;
}
.p-about-feature__content p {
    font-weight: 500;
}
/* 仕組み */
.p-about-system {
    padding: 11rem 0;
}
.p-about-system .inner {
    max-width: 900px;
}
.p-about-system .item:not(:last-of-type) {
    margin-bottom: 10rem;
}
.p-about-system .item h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.75;
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
}
.p-about-system .item h2::after {
    content: '';
    display: block;
    height: 0.1rem;
    width: 20rem;
    border-bottom: 3px solid #EA5514;
    position: absolute;
    bottom: 0;
}
.p-about-reference {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.p-about-reference h2 {
    width: fit-content;
}
.p-about-reference ul li {
    margin-bottom: 2rem;
}
.p-about-reference ul li a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .p-about__intro {
        margin-bottom: 10rem;
    }
    .p-about__intro h2 {
        font-size: 1.8rem;
    }
    .p-about-feature {
        padding: 10rem 0;
    }
    .p-about-feature .item {
        flex-direction: column;
    }
    .p-about-feature .item:not(:last-of-type) {
        margin-bottom: 10rem;
    }
    .p-about-feature .item figure {
        width: 100%;
        margin-bottom: 4rem;
    }
    .p-about-feature__content {
        width: 100%;
    }
    .p-about-feature__content h2 {
        font-size: 1.8rem;
        margin-bottom: 2.6rem;
    }
    .p-about-feature__content h2 img {
        height: 5rem;
    }
    .p-about-feature .item.reverse {
        flex-direction: column;
    }
    .p-about-system {
        padding: 10rem 0 4rem 0;
    }
    .p-about-system .item h2 {
        font-size: 2rem;
        padding-bottom: 1.4rem;
    }
    .p-about-reference {
        flex-direction: column;
    }
    .p-about-reference ul li a {
        font-size: 1.6rem;
    }
}


/*----------------------------------------
	支援
----------------------------------------*/
.p-support {
}
.p-support-guide {
    margin-top: 10rem;
}
.p-support-guide .inner {
    max-width: 100rem;
}
.p-support-guide-list {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
}
.p-support-guide-list li {
    width: 46%;
    margin-bottom: 4rem;
    border: 2px solid #FDB620;
    border-radius: 1.4rem;
    overflow: hidden;
}
.p-support-guide-list li .heading {
    text-align: center;
    background-color: #FDB620;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 3rem 0;
    letter-spacing: 0;
    line-height: 1.3;
}
.p-support-guide-list li .heading img {
    width: 10rem;
}
.p-support-guide-list li .heading h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
}
.p-support-guide-list li .heading h3 .t-small {
    font-size: 1.8rem;
    margin-top: .5rem;
}
.p-support-guide-list li .body {
    padding: 3.5rem 2.5rem 3.5rem 2.5rem;
    background-color: #fff;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.p-support-guide-list li .body p {
    font-size: 1.8rem;
    line-height: 1.75;
}
.p-support-guide-list li .body blockquote {
    
}
.p-support-guide-list li .body blockquote {
    font-size: 1.4rem;
    border-left: 3px solid #EA5514;
    padding: 0 0 0 2rem;
    margin:  3.5rem 2rem 0 2rem;
}
.p-support-guide-list li .body .c-button {
    margin-top: 3.5rem;
}

@media only screen and (max-width: 767px) {
    .p-support-guide-list {
        flex-direction: column;
    }
    .p-support-guide-list li {
        width: 100%;
        margin-bottom: 6rem;
    }
    .p-support-guide-list li .body {
        padding: 3rem 2.5rem 3.5rem 2.5rem;
    }
    .p-support-guide-list li .body blockquote {
        margin: 3.5rem 0 0 0;
    }
    .p-support-guide-list li .body p {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	くくるデリを利用したい方へ
----------------------------------------*/
.p-buy {

}
.p-buy-visual {
    padding-bottom: 4rem;
    position: relative;
}
.p-buy-visual::after {
    content: '';
    display: block;
    width: 100%;
    height: 50%;
    background-color: #FAF9F3;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
/* 特徴 */
.p-buy-feature {
    background: #FAF9F3;
    padding: 10rem 0;
    font-size: 1.8rem;
    font-weight: 700;
}
.p-buy-feature .inner {
    max-width: 118rem;
}
.p-buy-feature .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-buy-feature .item:first-of-type {
    margin-bottom: 10rem;
}
.p-buy-feature .item:first-of-type .p-buy-feature__left figure {
    margin-top: 6rem;
}
.p-buy-feature__left {
    width: 42%;
}
.p-buy-feature__right {
    width: 50%;
}
.p-buy-feature__left h2 {
    font-size: 2.6rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.p-buy-feature__left h2 img {
    margin-right: 2rem;
    width: 7rem;
}
.p-buy-feature__left p {
    text-align: justify;
    text-justify: inter-ideograph;
}
.p-buy-feature__attention {
    margin-top: 4rem;
    font-size: 1.4rem;
}
.p-buy-feature__list > li {
    display: flex;
    margin-bottom: 2rem;
    border: 2px solid #8FC31F;
    border-radius: 1.4rem;
    overflow: hidden;
}
.p-buy-feature__list > li .heading {
    text-align: center;
    background-color: #8FC31F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
    width: 40%;
    padding: 2rem 2rem 2rem 0;
    letter-spacing: 0;
    line-height: 1.3;
}
.p-buy-feature__list > li .heading img {
    width: 6rem;
}
.p-buy-feature__list > li .body {
    padding: 2rem 2rem 2.6rem 2rem;
    background-color: #fff;
    line-height: 1.5;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.p-buy-feature__list > li .body p {
    font-size: 1.8rem;
    line-height: 1.75;
}
.p-buy-feature__list > li .body ul li:not(:last-of-type) {
    margin-bottom: 1.8rem;
}
/* お弁当 */
.p-buy-gallery__content {
    padding: 10rem 0 6rem 0;
    font-weight: 700;
}
.p-buy-gallery__content .inner {
    max-width: 105rem;
    display: flex;
    justify-content: space-between;
}
.p-buy-gallery__content h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.6rem;
    width: fit-content;
    margin-right: 5rem;
}
.p-buy-gallery__content p {
    font-size: 1.8rem;
    flex: 1;
    max-width: 59rem;
}
/* アンケート */
.p-buy-questionnaire {
}
.p-buy-questionnaire__heading {
    text-align: center;
    margin: 10rem auto 5rem auto;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
}
.p-buy-questionnaire__heading img {
    width: 6.5rem;
    margin-bottom: 1rem;
}
.p-buy-questionnaire__heading h3 {
    font-size: 2.6rem;
}
.p-buy-questionnaire__heading p {
    font-size: 2rem;
}
.p-buy-questionnaire__body {
    background: #FAF9F3;
    padding: 5rem 0;
}
.p-buy-questionnaire__body ul {
    max-width: 70rem;
    margin: 0 auto;
}
.p-buy-questionnaire__body ul li {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 700;
}
.p-buy-questionnaire__body ul li .t-small {
    font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
    /* 特徴 */
    .p-buy-feature {
        font-size: 1.5rem;
        padding: 7rem 0;
    }
    .p-buy-feature .item {
        flex-direction: column;
    }
    .p-buy-feature .item:first-of-type {
        margin-bottom: 6rem;
    }
    .p-buy-feature__left,
    .p-buy-feature__right {
        width: 100%;
    }
    .p-buy-feature__left {
        margin-bottom: 4rem;
    }
    .p-buy-feature__left h2 {
        font-size: 1.9rem;
        justify-content: center;
    }
    .p-buy-feature__left h2 img {
        margin-right: 1rem;
        width: 5rem;
    }
    .p-buy-feature .item:first-of-type .p-buy-feature__left figure {
        margin-top: 4rem;
    }
    .p-buy-feature__list > li {
        margin-bottom: 1.2rem;
    }
    .p-buy-feature__list > li .heading {
        font-size: 1.5rem;
        width: 37%;
        padding: 2rem 1rem 2rem 0;
    }
    .p-buy-feature__list > li .heading img {
        width: 4rem;
    }
    .p-buy-feature__list > li .heading h3 {
        font-size: 1.4rem;
    }
    .p-buy-feature__list > li .body {
        padding: 1rem 0.5rem 1.6rem 0.5rem;
        font-size: 1.3rem;
    }
    .p-buy-feature__list > li .body p {
        font-size: 1.3rem;
        letter-spacing: 0;
        line-height: 1.5;
    }
    /* お弁当 */
    .p-buy-gallery__content {
        padding: 8rem 0 4rem 0;
    }
    .p-buy-gallery__content .inner {
        flex-direction: column;
    }
    .p-buy-gallery__content h2 {
        font-size: 2rem;
        width: fit-content;
        margin-right: 0;
        margin-bottom: 2.6rem;
    }
    .p-buy-gallery__content p {
        font-size: 1.5rem;
    }
    /* アンケート */
    .p-buy-questionnaire__heading {
        margin: 8rem auto 4rem auto;
    }
    .p-buy-questionnaire__heading h3 {
        font-size: 2rem;
    }
    .p-buy-questionnaire__heading p {
        font-size: 1.6rem;
    }
    .p-buy-questionnaire__body {
        padding: 5rem 2rem;
        width: 100%;
        left: initial;
        right: initial;
        margin-left: auto;
        margin-right: auto;
    }
    .p-buy-questionnaire__body ul li {
        margin-bottom: 2.2rem;
        font-size: 1.4rem;
    }
    .p-buy-questionnaire__body ul li .t-small {
        font-size: 1.2rem;
    }
}



/*----------------------------------------
	404ページ
----------------------------------------*/
.p-404 {
    text-align: center;
    font-weight: 500;
    padding: 10rem 0 6rem 0;
}
.p-404 h1 {
    line-height: 1;
    margin: 0 auto 8rem auto;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
}
.p-404 h1 span {
    display: block;
    font-size: 3rem;
    letter-spacing: .05em;
}
.p-404 h1 span:first-of-type {
    font-size: 16rem;
    margin-bottom: 2rem;
    color: #EA5514
}
.p-404-back-navi {
    margin-top: 4rem;
}
.p-404-back-navi a {
    margin-left: auto;
    margin-right: auto;
}


/*----------------------------------------
	投稿ページ
----------------------------------------*/
.p-post {
}
.p-post .inner {
    max-width: 66rem;
}
.p-post-head {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    margin-bottom: 2.4rem;
}
.p-post-head .date {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1.8rem;
    display: block;
}
.p-post-head h1 {
    font-size: 2.8rem;
    line-height: 1.5;
}

/* カラム */
.p-post-body .wp-block-columns {
    margin-bottom: 2rem;
}
/* 見出し */
.p-post-body h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.p-post-body h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.p-post-body h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.p-post-body h4 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* キャプション共通 */
figcaption {
    font-size: 1.3rem;
    color: #696969;
    text-align: center;
}
/* 段落 */
.p-post-body p {
    margin-bottom: 2rem;
}

/* 画像 */
.p-post-body .wp-block-image figcaption {
    margin-top: 0.4rem;
}

/* 引用 */
.p-post-body .wp-block-quote {
    margin-bottom: 2rem;
}
.p-post-body .wp-block-quote p {
    margin-bottom: 0;
    padding: 0 0 0 1.6rem;
    border-left: 4px solid #F8B62D;
    font-size: 1.4rem;
}
.p-post-body .wp-block-quote cite {
    font-size: 1.3rem;
    color: #696969;
}
/* ギャラリー */
.p-post-body figure.wp-block-gallery.has-nested-images {
    align-items: normal;
    margin-bottom: 2rem;
}
.p-post-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: none;
    bottom: initial;
    left: initial;
    margin-bottom: inherit;
    max-height: initial;
    overflow: inherit;
    padding: initial;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.3rem;
    color: #696969;
}
.p-post-body .wp-container-9 {
    gap: 4rem;
}
.p-post-body .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    /* width: 30%; */
}
.p-post-body .wp-container-13,
.p-post-body .wp-container-11 {
    gap: 4rem;
}
.p-post-body .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
.p-post-body .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image) {
    width: 44%;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
    font-size: 1.3rem;
    color: #696969;
}

/* メディアとテキスト */
.wp-block-media-text .wp-block-media-text__content {
    padding-right: 0 !important;
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding-left: 0 !important;
    padding-right: 8% !important;
}

/* 表 */
.p-post-body .wp-block-table {
}
.p-post-body .wp-block-table table {
    border-top: 1px solid #683023;
    border-left: 1px solid #683023;
}
.p-post-body .wp-block-table table tr {
    border-bottom: 1px solid #683023;

}
.p-post-body .wp-block-table table tr td {
    border-right: 1px solid #683023;
    padding: 0.3rem 0.8rem 0.5rem 0.8rem;
}
.p-post-body .wp-block-table figcaption {
    margin-top: 0.4rem;
}

/* リスト */
.p-post-body ol,
.p-post-body ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}
.p-post-body ol li,
.p-post-body ul li {
    list-style: inherit;
}
.p-post-body ol {
    margin-left: 2rem;
}
/* 区切り */
.p-post-body .wp-block-separator {
    border-top: 2px dotted #F8B62D;
    border-bottom: none;
    margin: 2.4rem 0 2rem 0;
}
/* 詩（罫線付き補足） */
.p-post-body .wp-block-verse {
    font-size: 1.3rem;
    padding: 1rem 1.6rem;
    border: 1px solid #B8B8B8;
    margin-bottom: 2rem;
}

/* 添付ファイル */
.p-post-body .wp-block-file .wp-block-file__button {
    background-color: #E74400;
    border-radius: 4rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.4rem 1rem 0.6rem 1rem;
}

/* 動画 */
.p-post-body .wp-block-embed {
    width: fit-content;
    margin: 0 0 2rem;
}
.p-post-body .wp-block-embed figcaption {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.3rem;
    text-align: center;
}

/* ボタン */
.p-post-body .wp-container-1 {
}
.p-post-body .wp-block-buttons>.wp-block-button {
}
.p-post-body .wp-block-button__link {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #E74400;
    border: 3px solid rgba(255, 255, 255, .8);
    border-radius: 4rem;
    line-height: 1;
    text-decoration: none;
    padding: 1.4rem 2.4rem 1.6rem 2.4rem;
    letter-spacing: .14rem;
    font-weight: 500;
    min-width: 17rem;
    max-width: fit-content;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
}
/* ページ送り */
.p-post-paging {
    display: flex;
    justify-content: space-between;
    margin-top: 8rem;
}
.p-post-paging span {
    opacity: .2;
    cursor: none;
}
.p-post-paging span,
.p-post-paging a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    font-weight: 700;
}
.p-post-paging span.paging-back::before,
.p-post-paging a.paging-back::before {
    content: '';
    display: block;
    width: 0.8rem;
    height: 1.5rem;
    margin-right: 1.4rem;
    background: url(../img/common/icon_allow_back.svg) no-repeat center;
    background-size: contain;
}
.p-post-paging span.paging-next::after,
.p-post-paging a.paging-next::after {
    content: '';
    display: block;
    width: 0.8rem;
    height: 1.5rem;
    margin-left: 1.4rem;
    background: url(../img/common/icon_allow_next.svg) no-repeat center;
    background-size: contain;
}


@media only screen and (max-width: 767px) {
    .p-post-head h1 {
        font-size: 2.4rem;
    }
    /* メディアとテキスト */
    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
        padding: 0 !important;
    }
    /* 引用 */
    .p-post-body .wp-block-quote cite {
        font-size: 1.2rem;
    }
    /* キャプション */
    .p-post-body figcaption,
    .p-post-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
        font-size: 1.2rem;
        text-align: left;
        line-height: 1.4;
    }
}