/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/



:root {
    --color-primary: #FF899C;
    --ff-shi: "Shippori Mincho", serif;
    --ff-cor: "Cormorant", serif;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    background: #FFF5F3;
}
* {
    box-sizing: border-box;
}
header {
    padding: 20px;
}
p {
    line-height: 2;
    font-size: 1.6rem;
    color: #4B403A;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
ul,
li>ul {
    margin: 0;
    padding: 0;
}
ol,
ul {
    margin: 0;
}
.separate-containers .site-main {
    margin: 0;
}

.inner {
    padding-left: 11vw;
    padding-right: 11vw;
}

.h-logo {
    width: 100px;
    display: block;
    position: relative;
}
.h-logo img {
    width: 100%;
}


/* slick */
.slick-slide {
    width: 32vw;
    margin: 0.3vw;
    height: auto !important;
}
.slick-slide img {
    width: 100%;
}







/*============
nav
=============*/
.header {
    position: relative;
    /* padding: 20px; */
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 55px;
    height: 55px;
    border: none;
    background: #fff !important;
    cursor: pointer;
    border-radius: 100px;
    transition: .3s;
}
.hamburger:hover {
    background: #fbe3e3;
}
.hamburger__line {
    position: absolute;
    left: 15px;
    width: 26px;
    height: 2px;
    background-color: #333;
    transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
    top: 17px;
}
.hamburger__line:nth-of-type(2) {
    top: 26px;
}
.hamburger__line:nth-of-type(3) {
    top: 35px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
    opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    background-color: #FFE7E7;
    transform: translateX(-100%);
    transition: transform .4s;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__inner {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    overflow-y: scroll;
    height: 100dvh;
    padding-top: 10rem;
}
.nav.active {
    transform: translateX(0);
}
.nav__list {
    margin: 0;
    padding: 100px 0 0;
    list-style: none;
}
.nav__list--l {
    width: 50%;
    list-style: none;
    padding: 0;
}
.nav__list--l .nav__item {
    padding: 0;
    margin-bottom: 2rem;
}
.nav__cta.cta-list li {
    width: 47vw;
    margin-bottom: 20px;
    margin-left: 0;
    text-align: center;
    max-width: 450px;
}
.nav__link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 2.4rem;
    font-family: var(--ff-shi);
    transition: all .4s;
}
.nav__link:hover {
    opacity: .5;
}
.nav__link span {
    display: block;
    color: var(--color-primary);
    font-family: var(--ff-cor);
    font-size: 1.6rem;
}
.nav__cta.cta-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.nav__list--r .sns-list {
    justify-content: flex-start;
    width: 100%;
}
.nav__list--r .sns-list li:first-child {
    margin-left: 0;
}

.nav__list--r {
    width: 50%;
    list-style: none;
    padding: 0;
}
.nav__list__ttl {
    color: #695B53;
    font-family: var(--ff-shi);
    font-size: 2rem;
}
.nav__list__ttl span {
    color: var(--color-primary);
    font-size: 1.6rem;
}

.fixed-btn {
    background: var(--color-primary);
    writing-mode: vertical-rl;
    color: #fff;
    text-decoration: none;
    padding: 4rem 1.5rem 4rem;
    border-radius: 100rem;
    font-size: 1.8rem;
    position: fixed;
    right: 1.5%;
    top: 70vh;
    z-index: 50;
    transition: all 0.5s ease;
}
.fixed-btn::before {
    content: "";
    background: url(/wp-content/uploads/2025/11/nikukyu.png);
    width: 25px;
    height: 20px;
    background-size: cover;
    display: inline-block;
    margin-bottom: 1rem;
}
.fixed-btn:hover {
    background: #4B403A;
    color: #fff;
}

.fixed-btn.hide {
    opacity: 0;
}
.nav__link-list li {
    margin-bottom: 1rem;
}
.nav__link-list a {
    color: #333;
    text-decoration: bisque;
    font-size: 1.6rem;
    font-family: var(--ff-shi);
    text-decoration: none;
}
.nav__link-list a:hover {
    opacity: .5;
}




/* top */
h2 {
    font-size: 4rem;
    font-family: var(--ff-shi);
    color: #4B403A;
    font-weight: normal;
    margin: 0;
}
.en-h {
    font-size: 2rem;
    color: var(--color-primary);
    font-family: var(--ff-cor);
    margin: 0 0 10px;
    margin: 0;
}
#top section {
    padding-bottom: 10rem;
}
.top-hdg {
    margin-bottom: 50px;
    text-align: center;
}
.view-btn {
    display: block;
    max-width: 100%;
    border-radius: 12rem;
    padding: 2rem 3rem;
    margin: 0 auto;
    width: 270px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    transition: all .4s;
    background: var(--color-primary);
}
.view-btn:hover {
    background: #fff;
    color: var(--color-primary);
}
.view-btn svg {
    padding-left: 10px;
}

.view-btn:hover svg path {
    stroke: var(--color-primary);
}




.mv-top {
    position: relative;
    padding: 6vw 10vw 7vw 10vw;
}
.mv-top::after {
    position: absolute;
    content: "Pet Art Tokyo";
    color: #FFE5E5;
    font-size: 10vw;
    font-family: var(--ff-cor);
    font-weight: 600;
    right: 0;
    top: 30%;
    z-index: -1;
}

.mv-ttl {
    font-family: var(--ff-shi);
    font-size: 4.1rem;
    margin: 0 0 10px 0;
}
.mv-txt {
    font-family: var(--ff-shi);
    font-size: 2.4rem;
    margin: 0;
}

/* top-studio */
#top-studio {
    position: relative;
}
#top-studio h1 {
    font-size: 2.4rem;
    font-family: var(--ff-shi);
    color: var(--color-primary);
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
}
.studio-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.studio-l {
    width: 50%;
    padding: 0 3vw;
}
.studio-r {
    width: 50%;
}
.studio-r img {
    width: 100%;
}
#top-studio h1 span {
    font-size: 8rem;
    font-family: var(--ff-cor);
}
.studio-txt {
    color: #4B403A;
    font-size: 1.6rem;
    line-height: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 3rem;
}
.sns-list {
    display: flex;
    justify-content: center;
    list-style: none;
    width: 80%;
    margin: 0 auto;
    padding: 0;
}

#top-studio .sns-list {
    margin: 2rem auto 0;
}
#top-studio .view-btn {
    width: 350px;
}

.sns-list li {
    margin: 15px;
    width: 35px;
}
.sns-list img {
    width: 100%;
}



#top-about .en-h {
    font-size: 3rem;
}
.wave-block {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    left: 0;
    height: 50vw;
    width: 100%;
    z-index: -1;
}



:root {
    --page: #FFF3F3;
    /* 外側色 */
    --panel: #FBE3E3;
    /* ブロック色 */
    --block-h: 750px;
    /* ブロック高さ */
    --wave-h: 2vw;
    /* 波高さ */
}

body {
    background: var(--page);
    margin: 0;
}

.wave-block {
    /* position: relative; */
    background: var(--panel);
    height: var(--block-h);
    overflow: hidden;
}

/* 上下の波は擬似要素で作る */
.wave-block::before,
.wave-block::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--wave-h);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

/* 上の波 */
.wave-block::before {
    top: -1px;
    background-image: url('data:image/svg+xml;utf8,\ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none">\ <path fill="%23FFF3F3" d="M0,0 L0,30 C20,20 1120,100 1440,60 L1440,0 Z"/>\ </svg>');
}

/* 下の波（反転） */
.wave-block::after {
    bottom: -1px;
    transform: scaleY(-1);
    background-image: url('data:image/svg+xml;utf8,\ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none">\ <path fill="%23FFF3F3" d="M0,0 L0,60 C320,40 1120,30 1440,90 L1440,0 Z"/>\ </svg>');
}


/* top-about */

#top-about p {
    text-align: left;
}
#top-about h2 {
    text-align: left;
    font-size: 4rem;
    font-family: var(--ff-shi);
    color: #695B53;
    line-height: 1;
    font-weight: normal;
    margin: 0;
}
.top-about__flex {
    display: flex;
}
.top-about__img {
    width: 45%;
}
.top-about__img img {
    width: 100%;
}
.top-about__txt {
    width: 55%;
    padding-left: 5vw;
}
.top-about__txt--ttl {
    font-size: 2.7vw;
    font-family: var(--ff-shi);
    color: #695B53;
    margin-bottom: 2rem;
}

.top-about__txt .txt {
    font-size: 1.7rem;
    color: #4B403A;
    line-height: 2.8;
    margin-bottom: 50px;
}


/* top-design */

#top-design h2 {
    text-align: center;
    margin-bottom: 2rem;
}
#top-design .txt {
    text-align: center;
}
#top-design .en-h {
    text-align: center;
}

.top-design__txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.top-design__gallery {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 3rem;
}
.top-design__gallery li {
    width: calc((100% - (1% * 4)) / 5);
    margin: 0 1% 1% 0;
}
.top-design__gallery li:nth-child(5n) {
    margin-right: 0;
}
.top-design__gallery li a {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.top-design__gallery li a:hover img {
    transform: scale(1.07);
    opacity: 0.9;
}
.top-design__gallery li a img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), opacity 0.4s ease;
}

#top-design .view-btn {
    margin: 0 auto;
    display: block;
}
/* top-voice */
#top-voice h2 {
    margin-bottom: 2rem;
}
#top-voice .top-voice__txt {
    text-align: center;
}
#top-voice .slick-track {
    display: flex;
    align-items: stretch;
}
#top-voice .slick-slide {
    position: relative;
    background: #fff;
    padding: 130px 3vw 1vw;
    border-radius: 25px;
    margin: 1vw;
    height: auto;
}
#top-voice .slick-list {
    padding-top: 5rem;
}
#top-voice li img {
    position: absolute;
    top: -40px;
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    border-radius: 100px;
}
.top-voice__slide--txt {
    line-height: 2.4;
}
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slide-arrow:hover {
    background: #ffa6b5;
    /* ホバー時に淡い色 */
}
.prev-arrow {
    left: -60px;
}
/* スライダーの外側に配置 */
.next-arrow {
    right: -60px;
}

/* top-price */
#top-price {
    position: relative;
}
#top-price .top-hdg {
    text-align: center;
}
#top-price .txt {
    text-align: center;
}
.top-price__list {
    position: relative;
    list-style: none;
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
}
.top-price__list li {
    box-shadow: 0px 3px 20px #00000029;
}
.top-price__list li:first-child {
    margin-bottom: 50px;
}

.top-price__list h3 {
    background: var(--color-primary);
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    padding: 10px;
    font-family: var(--ff-shi);
    font-weight: normal;
    margin: 0;
}
.top-price__list__inner {
    display: flex;
    justify-content: space-between;
    background: #fff;
}
.top-price__list__inner__copy {
    margin: 10px 0;
}
.top-price__list__inner--txt {
    padding: 10px 30px 10px;
    width: 75%;
}
.top-price__list__inner picture {
    width: 25%;
}
.top-price__list__inner picture img {
    width: 100%;
    height: 100%;
}
.top-price__list__main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
picture.top-price__old-img {
    width: 40%;
}
.top-price__list__inner .top-price__new-img {
    width: 65%;
}

.price-dog {
    position: absolute;
    top: 0;
    display: block;
    right: 10%;
    width: 280px;
}
.price-dog img {
    width: 100%;
}
.top-price__new-txt {
    color: var(--color-primary);
    font-family: var(--ff-shi);
    font-size: 2.2rem;
    margin: 0;
}
.top-price__new-price {
    font-family: var(--ff-shi);
    color: var(--color-primary);
    font-weight: bold;
    font-size: 3rem;
    margin: 0;
}
.top-price__new-price span {
    font-size: 7.5rem;
    line-height: 0.6;
}
.top-price__new-ex {
    margin: 0;
}
.top-price__old-img {
    width: 40%;
}
.top-price__old-price {
    font-family: var(--ff-shi);
    color: #aeaaaa;
    font-weight: bold;
    font-size: 2rem;
    position: relative;
}
.top-price__old-txt {
    font-family: var(--ff-shi);
    color: #7D7D7D;
    font-size: 1.8rem;
    margin: 0;
}
.top-price__old-price span {
    font-size: 4.7rem;
    margin: 0;
    line-height: 1;
}
.top-price__old-price::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 60%;
    height: 3px;
    background: #ff899c;
    transform: rotate(12deg);
    transform-origin: center;
}
.sankaku {
    width: 15px;
    margin: 0 1rem;
}

/* top-flow */

#top-flow .inner {
    display: flex;
    justify-content: space-between;
}
#top-flow h2,
#top-flow .en-h {
    text-align: left;
}
.flow-l {
    width: 30%;
}
.flow-r {
    width: 65%;
}
.flow-list {
    padding: 0 0 0 10vw;
    margin: 0;
    list-style: none;
    border-left: 1px solid #74665f;
}
.flow-list li {
    display: flex;
    margin-bottom: 50px;
    flex-direction: column;
}
.flow-hdg {
    display: flex;
    align-items: end;
    margin-bottom: 20px;
}
.flow-step {
    font-size: 2.1rem;
    color: var(--color-primary);
    font-family: var(--ff-cor);
    margin: 0;
    line-height: 0.7;
    position: relative;
}
.flow-step span {
    font-size: 7rem;
}
.flow-step::after {
    position: absolute;
    content: '';
    top: 50%;
    width: 44px;
    height: 1px;
    background-color: #695B53;
    transform: rotate(-60deg);
}
#top-flow h3 {
    font-size: 2.5rem;
    font-family: var(--ff-shi);
    font-weight: normal;
    margin: 0;
    padding: 0 0 0 50px;
}

/* top-video */
.movie-wrap {
    margin-bottom: 10rem;
    position: relative;
}
.movie-wrap::before {
    content: "";
    width: 100%;
    height: 80%;
    position: absolute;
    display: block;
    background: #ffe7e7;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.tattoo-movie {
    object-fit: cover;
    width: 50%;
    height: 50vh;
    display: block;
    margin: 0 auto;
}

/* top-faq */
#top-faq .top-hdg {
    text-align: center;
}
.top-faq-box {
    margin-bottom: 5rem;
}

@keyframes rotation {
    0% {
        transform: rotateZ(0);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.circle {
    width: 200px;
    height: 200px;
    animation: 10s linear infinite rotation;
    position: absolute;
    left: 19%;
    top: -16%;
}


/* FAQアコーディオン */

.accordion-006 {
    max-width: 1090px;
    width: 100%;
    margin: 0 auto 15px;
    background-color: #ffe7e7;
    border-radius: 5px;
    transition: all .4s;
}
.accordion-006:hover {
    background-color: #ffd9d9;
}
.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 40px;
    color: #4a3f39;
    font-size: 2.4rem;
    font-family: var(--ff-shi);
    cursor: pointer;
}


.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::before,
.accordion-006 summary::after {
    width: 2px;
    height: 1em;
    border-radius: 5px;
    background-color: #cfb7b7;
    content: '';
}

.accordion-006 summary::before {
    position: absolute;
    right: 1.7em;
    rotate: 90deg;
}

.accordion-006 summary::after {
    position: absolute;
    right: 1.7em;
    transition: rotate .3s;
}

.accordion-006[open] summary::after {
    rotate: 90deg;
}

.faq-q {
    font-size: 3rem;
    font-family: var(--ff-cor);
    margin-right: 20px;
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 40px;
    font-size: 1.8rem;
    color: #4a3f39;
    background-color: #fff;
    transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
}

/* cta */


#cta,
#cta-mdl {
    position: relative;
    text-align: center;
    padding: 0 0 50px;
    margin-top: 100px;
}
#cta {
    margin-top: 20rem;
}
#cta .txt,
#cta-mdl .txt {
    font-size: 1.8rem;
    line-height: 2.3;
    margin: 0 auto 50px;
}
#cta h2,
#cta-mdl h2 {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}
#cta h2::before,
#cta-mdl h2::before {
    content: "Reservation";
    font-size: 16rem;
    color: #FFD9DF;
    font-family: var(--ff-cor);
    position: absolute;
    top: -150px;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}
#cta h2::after,
#cta-mdl h2::after {
    display: inline-block;
    position: absolute;
    content: '';
    bottom: -40px;
    left: 50%;
    width: 80px;
    height: 1px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #666666;
}
#cta-mdl {
    padding-bottom: 150px;
}
#cta-mdl .inner {
    background: #FFE7E7;
    padding-bottom: 50px;
}

#cta-mdl h2 {
    padding-top: 50px;
}
#cta-mdl h2::before {
    top: -60px;
    z-index: -1;
}

#cta .wave-block {
    background: #FFE8E8;
    top: 48%;
    height: 150%;
}
.cta-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-list li {
    background: #fff;
    margin: 0 10px;
    width: 450px;
}
.cta-list li a {
    position: relative;
    display: block;
    padding: 40px 0;
    font-size: 2.4rem;
    font-family: var(--ff-shi);
    text-decoration: none;
    color: #4B403A;
    transition: .3s;
}
.cta-list li a:hover {
    background: #ffd9df;
}
.cta-list li a span {
    position: relative;
    margin-left: 25px;
}
.cta-list li:first-child a::before {
    content: "";
    background-image: url(/wp-content/uploads/2025/10/instagram.png);
    width: 20px;
    height: 20px;
    background-size: cover;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}
.cta-list li:last-child a::before {
    content: "";
    background-image: url(/wp-content/uploads/2025/10/line.png);
    width: 20px;
    height: 20px;
    background-size: cover;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}


/* footer */

footer {
    background: #4B403A;
}
.footer-inner {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ft-logo {
    width: 160px;
}
.ft-txt {
    color: #fff;
    font-size: 1.4rem;
    font-family: var(--ff-shi);
}
.ft-l {
    width: 40%;
}
.ft-r {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: end;
}
footer .sns-list {
    margin: 0;
    justify-content: space-between;
    width: 200px;
}
footer .sns-list li {
    margin: 0;
}
footer .sns-list li a {
    transition: all .4s;
}

footer .sns-list li a:hover {
    opacity: .7;
}

.ft-link-list {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: end;
    padding: 0;
}
.ft-link-list li {
    padding: 0 1vw;
}
.ft-link-list li a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
    font-family: var(--ff-shi);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}
.ft-link-list a:hover {
    opacity: .7;
}
.ft-link-list li span {
    font-size: 1.8rem;
    font-family: var(--ff-cor);
}
.ft-btn {
    background: #fff;
    padding: 20px 40px;
    text-decoration: none;
    color: #4b403a;
    display: inline-block;
    margin: 20px 0 30px;
    transition: .3s;
}
.ft-btn:hover {
    background: #c1c1c1;
}
small {
    color: #fff;
    text-align: center;
    display: block;
    padding-bottom: 20px;
}


.sp_only {
    display: none;
}
.pc_only {
    display: block;
}

/*===================================================

TOP TABLET CSS 

====================================================*/

@media (max-width: 1024px) {

    .sp_only {
        display: block;
    }
    .pc_only {
        display: none;
    }
    html {
        font-size: 58%;
        /* タブレット：1rem ≒ 9.3px */
    }
    #top-studio h1 span {
        font-size: 6.6rem;
    }
    .studio-txt {
        font-size: 1.6rem;
        width: 100%;
        max-width: 500px;

    }
    #top-voice .slick-slide {
        padding: 15vw 10vw 3vw;
    }
    .cta-list li a {
        font-size: 1.8rem;
    }
    .nav__inner {
        width: 100%;
        flex-direction: column;
        padding: 10vw 8vw;
        height: 100%;
        overflow-y: scroll;
    }
}
/*===================================================

TOP SP CSS 

====================================================*/

@media (max-width: 767px) {

    .sp_only {
        display: block;
    }
    .pc_only {
        display: none;
    }


    html {
        font-size: 50%;
    }
    .inner {
        padding: 0 6vw;
    }
    .txt {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 3rem;
    }
    .top-hdg {
        margin-bottom: 30px;
    }
    section {
        padding-bottom: 100px;
    }


    .h-logo {
        width: 70px;
    }
    header {
        width: 100%;
    }
    .h-logo {
        z-index: 10;
    }

    .nav__list--l {
        width: 100%;
        margin-bottom: 4rem;
    }

    .nav__list--r {
        width: 100%;
    }
    .nav__list--r li {
        margin-bottom: 20px;
    }
    .nav__list--l .nav__item {
        margin-bottom: 20px;
    }
    .nav__link {
        padding: 0;
    }
    .nav__cta.cta-list li {
        width: 100%;
        margin-bottom: 10px;
    }
    #nav-menu .cta-list li a {
        font-size: 2rem;
    }
    .nav__list__ttl {
        margin: 0;
    }
    .fixed-btn {
        writing-mode: unset;
        padding: 1.1rem 2rem;
        font-size: 1.8rem;
        top: 90vh;
        right: 4vw;
    }
    .fixed-btn::before {
        margin: 0 0.7rem 0 0;
        width: 20px;
        height: 15px;
    }
    .nav__link-list {
        list-style: none;
        padding: 3rem 0 2rem;
        border-bottom: 1px dotted #6a5c54;
    }

    .nav__link-list a {
        text-decoration: none;
    }

    #top h2 {
        margin-bottom: 2rem;
    }

    .mv-top::after {
        color: var(--color-primary);
        writing-mode: sideways-lr;
        height: 100vw;
        z-index: 1;
        font-size: 14vw;
        top: -25%;
    }
    #top-studio {
        margin-top: 10rem;
    }
    #top-studio h1 {
        margin-bottom: 2rem;
    }
    #top-studio h1 span {
        font-size: 6rem;
    }
    #top-studio .wave-block {
        top: 45%;
    }


    .studio-flex {
        flex-direction: column;
    }
    .studio-l {
        width: 100%;
        padding: 0 4vw;
    }
    .studio-l img {
        width: 100%;
    }
    .studio-txt {
        margin: 30px auto;
        width: 100%;
        font-size: 1.8rem;
        line-height: 2;
        padding: 0 2rem;
    }
    #top-studio .view-btn {
        width: 80%;
    }
    .wave-block {
        height: 100%;
        top: 42%;
    }



    .mv-top {
        padding: 3vw;
    }
    .mv-txt {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .mv-ttl {
        font-size: 3.7rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .slick-slider {
        padding-left: 4vw;
    }
    .slick-slide {
        width: 55vw;
    }

    .sns-list li {
        width: 30px;
    }



    #top-about .en-h {
        font-size: 2.3rem;
    }
    #top-about h2 {
        font-size: 3.5rem;
    }
    .top-about__txt--ttl {
        margin: 2rem 0;
    }
    .top-about__flex {
        flex-direction: column;
    }
    .top-about__img {
        width: 100%;
    }
    .top-about__img img {
        width: 100%;
        object-fit: cover;
        height: 260px;
    }
    .top-about__txt {
        width: 100%;
        padding: 0 2vw;
    }
    .top-about__txt--ttl {
        font-size: 3rem;
    }
    .top-about__txt .txt {
        font-size: 1.8rem;
        line-height: 2.4;
        color: #695B53;
    }
    .view-btn {
        display: block;
        margin: 0 auto;
        width: 60vw;
    }


    #top-design .top-hdg {
        padding: 0 4vw;
        margin-bottom: 20px;
    }
    .top-design .txt {
        padding: 0 4vw;
        margin-bottom: 40px;
    }
    .top-design__gallery li {
        width: calc((100% - (1%)) / 2);
    }



    #top-voice .slick-slide {
        padding: 20vw 10vw 5vw;
    }
    #top-voice .slick-list {
        padding-top: 70px;
    }
    .top-voice__slide {
        padding: 0;
    }
    #top-voice li img {
        width: 30vw;
        top: -50px;
    }
    .top-voice__slide--txt {
        font-size: 1.8rem;
        line-height: 2.6;
    }
    .prev-arrow {
        left: -3%;
        top: 60%;
        width: 50px;
        height: 50px;
    }
    .next-arrow {
        top: 60%;
        right: -10px;
        width: 50px;
        height: 50px;
    }


    .top-price__list {
        padding: 0;
    }
    .top-price__list li:first-child {
        margin-bottom: 30px;
    }
    .top-price__list__inner {
        flex-direction: column;
    }
    .top-price__list__inner picture {
        width: 100%;
    }
    .top-price__list__inner picture img {
        width: 100%;
    }
    .top-price__list__inner--txt {
        padding: 2vw 6vw 5vw;
        width: 100%;
    }
    .top-price__list__inner__copy {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .top-price__list__main {
        flex-direction: column;
        align-items: center;
    }
    .top-price__new-ex {
        font-size: 1.8rem;
    }
    picture.top-price__img img {
        height: 40dvw;
        object-fit: cover;
        width: 100%;
    }
    .top-price__list__inner img {
        width: 60%;
    }
    .top-price__list__inner .top-price__new-img {
        width: 100%;
    }
    .top-price__new-price span {
        font-size: 8rem;
    }
    .top-price__new-price {
        font-size: 3rem;
    }
    picture.top-price__old-img {
        width: 60%;
    }
    .top-price__old-img {
        width: 100%;
    }
    .top-price__old-price {
        margin: 0;
    }
    .top-price__old-price span {
        font-size: 6rem;
    }
    .top-price__list__inner .sankaku {
        width: 20px;
        transform: rotate(90deg);
        margin: 0;
    }
    .price-dog {
        position: unset;
        top: unset;
        display: block;
        right: unset;
        width: 85%;
        margin: 0 auto;
    }
    .price-dog img {
        width: 100%;
    }

    #top #cta {
        margin-top: 8rem;
    }
    #cta {
        margin-top: 15rem;
    }

    #cta h2,
    #cta-mdl h2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }
    #cta-mdl {
        margin: 0;
    }
    #cta h2::before {
        font-size: 9rem;
        top: -55px;
    }
    #cta-mdl h2::before {
        font-size: 9rem;
        top: -20px;
    }

    #cta h2::after,
    #cta-mdl h2::after {

        bottom: -20px;

    }
    #cta .txt,
    #cta-mdl .txt {
        font-size: 1.8rem;
        margin: 40px auto;
        line-height: 2;
        text-align: justify;
    }

    .cta-list {
        padding: 0;
        flex-direction: column;
    }
    .cta-list li {
        width: 100%;
        margin-bottom: 10px;
    }
    .cta-list li a {
        padding: 30px 4vw;
        font-size: 2rem;
    }
    #top section {
        padding-bottom: 10rem;
    }
    #cta .wave-block {
        top: 48%;
        height: 110%;
    }



    #top-flow .inner {
        flex-direction: column;
    }
    #top-flow h2,
    #top-flow .en-h {
        text-align: center;
    }
    .flow-l {
        width: 100%;
    }
    .flow-r {
        width: 100%;
    }
    .flow-hdg {
        margin-bottom: 2rem;
        align-items: end;
    }
    .flow-txt .txt {
        font-size: 1.9rem;
    }
    .flow-list {
        padding: 0;
        border: none;
    }
    .flow-list li {
        margin-bottom: 30px;
    }
    .flow-list li:last-child {
        margin: 0;
    }
    .flow-list li:last-child p {
        margin: 0;
    }
    .flow-txt {
        padding-left: 5vw;
    }


    .tattoo-movie {
        height: 60vh;
        width: 100%;
    }
    .movie-wrap {
        margin-bottom: 5rem;
    }



    #top-faq {
        padding-bottom: 0;
    }
    .accordion-006 p {
        padding: 6vw;
    }
    .accordion-006 summary {
        padding: 5vw;
        font-size: 2rem;
        width: 95%;
    }
    .faq-q {
        font-size: 2.5rem;
        margin-right: 10px;
    }

    .accordion-006 summary::before {
        right: 19px;
    }

    .footer-inner {
        padding: 10vw 5vw;
        flex-direction: column;
    }
    .ft-link-list {
        flex-direction: column;
    }
    .ft-l {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ft-l a img {
        width: 40%;
        display: block;
        margin: 0 auto 2rem;
    }
    .ft-txt {
        font-size: 1.7rem;
    }
    footer .sns-list {
        width: 40%;
        margin-bottom: 30px;
    }
    footer .sns-list li {
        margin: 0 10px;
    }
    footer .sns-list img {
        width: 100%;
    }
    .ft-r {
        width: 100%;
        display: contents;
    }
    .ft-link-list {
        align-items: baseline;
        padding-left: 5vw;
        order: 1;
    }
    .ft-link-list li a {
        font-size: 1.7rem;
    }
    .ft-link-list li {
        margin-bottom: 20px;
        position: relative;
        padding-left: 20px;
    }
    .ft-link-list li::before {
        content: "";
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 2px;
        width: 5px;
        height: 5px;
        border-top: 3px solid #000;
        border-right: 3px solid #000;
        transform: rotate(45deg);
        color: #fff;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    .ft-btn {
        display: block;
        margin: 0 auto;
        width: 60%;
        text-align: center;
        font-size: 1.8rem;
        padding: 15px 0;
        order: 3;
    }
    small {
        font-size: 1.6rem;
    }


}
/*===================================================

COMMON

====================================================*/
.breadcrumb {
    font-size: 1.4rem;
    padding-left: 3vw;
    margin-bottom: 7rem;
    color: var(--color-primary);
}
.breadcrumb a {
    color: #6F6F6F;
    transition: all .4s;
}
.breadcrumb a:hover {
    opacity: .6;
}
.breadcrumb span {
    color: #6F6F6F;
}
section {
    padding-bottom: 50px;
}
.hdg-area__txt {
    padding-left: 11vw;
    padding-right: 11vw;
    text-align: center;
    margin: 50px auto 0;
}
.hdg-area__hdg {
    padding: 0 0 0 10vw;
    margin: 0;
}

h1 {
    font-size: 4rem;
    font-family: var(--ff-shi);
    font-weight: normal;
    margin: 0;
}
h3 {
    font-family: var(--ff-shi);
    font-weight: normal;
    font-size: 2.7rem;
    margin: 0;
    color: #4B403A;
    line-height: 1.3;
}

.hdg-area__img {
    width: 95%;
    margin: 0 auto;
    display: block;
}

.hdg-area picture img {
    margin-top: 2rem;
}

.in-link-area {
    padding-bottom: 100px;
}
.in-link-list {
    margin: 0;
    padding: 0;
    display: flex;
    background: #fff;
    list-style: none;
}
.in-link-list li {
    width: 50%;
    position: relative;
}
.in-link-list li:last-child::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 7vw;
    margin: auto;
    background: #A7A7A7;
}

.in-link-list li a {
    padding: 5vw;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all .4s;
}
.in-link-list li a:hover {
    opacity: 0.5;
}
.in-link-ttl {
    font-family: var(--ff-shi);
    font-size: 2.8rem;
    color: #6F6F6F;
}


@media (max-width: 767px) {
    .breadcrumb {
        margin-bottom: 3rem;
    }
    .hdg-area__hdg {
        padding: 0 5vw;
        margin-bottom: 20px;
    }
    h1 {
        font-size: 2.8rem;
    }
    .hdg-area__img {
        width: 100%;
        object-fit: cover;
        height: 150px;
    }
    .page-header,
    .sidebar .widget,
    .site-main>* {
        margin: 0;
    }
    .in-link-area {
        padding: 0 0 3rem;
    }
    .in-link-list {
        flex-direction: column;
    }
    .in-link-list li {
        width: 100%;
    }
    .in-link-list li a {
        padding: 7vw 10vw;
        position: relative;
    }
    .in-link-list li a::after {
        content: "";
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 7%;
        width: 5px;
        height: 5px;
        border-top: 3px solid #000;
        border-right: 3px solid #000;
        transform: rotate(45deg);
        color: #fff;
        border-top: 1px solid #FF899C;
        border-right: 1px solid #FF899C;
    }
    .in-link-ttl {
        font-size: 2.1rem;
    }
    .in-link-list li:last-child::before {
        content: none;
    }
    .in-link-list li:last-child .en-h {
        position: relative;
    }
    .in-link-list li:last-child .en-h::before {
        border-top: 1px dotted #707070;
        position: absolute;
        content: "";
        width: 100%;
        top: -130%;
    }
}

/*===================================================

ABOUT

====================================================*/

#about section {
    padding-bottom: 10rem;
}
.about-point__list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.about-point__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}
.about-point__img {
    width: 30%;
}
.about-point__img img {
    width: 100%;
}
.about-point__ex {
    width: 65%;
}
.about-point__ttl {
    display: flex;
    align-items: end;
    margin-bottom: 30px;
}

.about-point__num {
    font-family: var(--ff-cor);
    color: var(--color-primary);
    font-weight: bold;
    font-size: 7rem;
    margin: 0;
    line-height: 0.5;
}
.about-point__txt {
    line-height: 2.7;
}
.about-point__num::after {
    position: relative;
    display: inline-block;
    content: "";
    background: var(--color-primary);
    width: 1px;
    height: 1em;
    margin: 0 0.5em;
    margin-top: -.2em;
    vertical-align: middle;
    transform: rotate(35deg);
}




@media (max-width: 767px) {
    #about section.hdg-area {
        margin: 0;
        padding-bottom: 5rem;
    }
    section.hdg-area {
        padding-bottom: 60px;
    }
    .about-point__img {
        object-fit: cover;
        height: 20dvh;
        width: 100%;
    }
    .about-point__list li {
        flex-direction: column;
        margin-bottom: 5rem;

    }
    .about-point__img {
        width: 100%;
    }
    .about-point__ex {
        width: 100%;
    }
    h3 {
        font-size: 2.6rem;
        line-height: 1;
    }
    .about-point__ttl {
        align-items: center;
        margin-bottom: 2rem;
    }
    .about-point__num {
        margin-right: 20px;
    }
    .about-point__num::after {
        content: unset;
    }
    .about-point__txt {
        font-size: 1.8rem;
        margin: 2rem 0 0;
        line-height: 2;
    }

    .accordion-006 summary::before {
        right: 11px;
    }
    .accordion-006 summary::after {
        right: 11px;
    }


}



/*===================================================

MESSAGE

====================================================*/
.message-main {
    margin-top: 2rem;
    margin-bottom: 5rem;
}
#message .hdg-area {
    padding-bottom: 0;
}
.message-wrap {
    background: #fff;
    padding: 4vw;
}
.message-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
}
.message-btm {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.message-top--artist {
    width: 40%;
}
.message-btm .message-img {
    width: 40%;
}
.message__txt {
    width: 55%;
}
.messag-img img {
    width: 100%;
}
.message-btm .message-img img {
    width: 100%;
}
.message__txt h2 {
    font-size: 3.2rem;
    margin: 30px 0;
}
.message-top__name .en-h {
    font-size: 1.7rem;
}
.message-top__take {
    font-family: var(--ff-cor);
    margin: 0;
    line-height: 0.9;
}
.message-top__take span {
    font-size: 2.8rem;
}


.safe-h2 {
    margin-bottom: 2rem;
}
.safe-list li {
    display: flex;
    justify-content: space-between;
    background: #ffe8e8;
    padding: 5rem;
    align-items: center;
}
.safe-list li:nth-child(2) {
    flex-direction: row-reverse;
}
.safe-list li:not(:nth-child(3)) {
    margin-bottom: 10rem;
}

.safe-img {
    width: 45%;
    display: flex;
    align-items: center;
    margin-left: -10rem;
}
.safe-list li:nth-child(2) .safe-img {
    margin-left: 0;
    margin-right: -10rem;
}
.safe-ex {
    width: 55%;
}
.safe .en-h span {
    font-size: 8rem;
    line-height: 0;
}
.safe-ttl {
    margin-bottom: 3rem;
}


@media (max-width: 767px) {
    #message .inner {
        padding: 0 4vw;
    }
    #message section {
        padding-bottom: 0;
        margin-bottom: 5rem;
    }
    .message-wrap {
        padding: 5vw;
    }
    .message-top {
        flex-direction: column;
        margin-bottom: 50px;
    }
    .message-top--artist {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    .message-top__name {
        padding: 20px 0;
    }
    .message__txt {
        width: 100%;
    }
    .message__txt h2 {
        font-size: 2.3rem;
        margin: 30px 0 20px;
    }
    .message__txt .txt {
        font-size: 1.8rem;
    }
    .message-btm {
        flex-direction: column-reverse;
    }
    .message-btm .message-img {
        width: 100%;
    }

    .safe-h3 {
        line-height: 1.5;
    }
    .safe-list li {
        padding: 5vw;
        flex-direction: column;
        align-items: baseline;
    }
    .safe-list li:not(:nth-child(3)) {
        margin-bottom: 3rem;
    }
    .safe-list li:nth-child(2) {
        flex-direction: column;
    }
    .safe-img {
        width: 100%;
        margin: 0;
        order: 2;
    }
    .safe-ex {
        width: 100%;
        display: contents;
    }
    .safe .txt {
        order: 3;
        font-size: 1.8rem !important;
        margin-top: 2rem;
    }
    .safe-img img {
        object-fit: cover;
        height: 70vw;
        width: 100%;
    }
    .safe .en-h span {
        font-size: 5rem;
        line-height: 0;
    }

}

/*===================================================

DESIGN

====================================================*/

#dl section.hdg-area {
    padding-bottom: 2rem;
}
.insta-bnr {
    max-width: 750px;
    width: 80vw;
    display: block;
    margin: 5rem auto;
    transition: all .4s;
}
.insta-bnr:hover {
    opacity: .7;
}
.insta-bnr img {
    width: 100%;
}
.cat-list {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    list-style: none;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.cat-list li a {
    padding: 1rem;
    background: #ffe8e8;
    border-radius: 10rem;
    text-decoration: none;
    color: #ff5e78;
    font-size: 1.4rem;
    font-weight: ;
}
.cat-list li {
    margin: 0 0.5rem 0 0;
}
.cat-list li a:hover {
    background: #fff;
}
/* pagenation */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-numbers {
    background: #fff;
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 100%;
    line-height: 2;
    text-align: center;
    font-family: var(--ff-cor);
    font-size: 2.3rem;
    margin: 0 0.5rem;
    text-decoration: none;
}
.prev.page-numbers,
.next.page-numbers {
    line-height: 2.3;
    color: #6f6f6f;
}
a.page-numbers {
    color: #6f6f6f;
}
a.page-numbers:hover {
    background: #eee;
}
.page-numbers.current {
    background: #FFD9DF;
    color: #787878;
}
@media (max-width: 767px) {
    .hdg-area__txt {
        padding: 4vw;
        margin: 20px auto 0;
        font-size: 1.8rem;
        text-align: left;
    }
    .hdg-area__txt p {
        font-size: 1.8rem;
    }
    #design section {
        padding-bottom: 20px;
    }
    .cat-list li a {
        padding: 0.5rem 1rem;
    }
    .insta-bnr {
        width: 100%;
        margin: 0;
    }
    .pagination {
        margin-bottom: 4rem;
    }
    .page-numbers {
        font-size: 2.5rem;
        margin: 0 0.5rem;
        line-height: 2.4;
    }
    .prev.page-numbers,
    .next.page-numbers {
        width: 50px;
        height: 50px;
        line-height: 2.7;
    }
    .cat-list {
        margin-bottom: 1rem;
        justify-content: unset;
    }
    .cat-list li {
        margin-bottom: 1.5rem;
    }
    .design-main .inner {
        padding: 0 4vw;
    }
}

/*===================================================

DESIGN DETAIL

====================================================*/
#dd .hdg-area {
    padding-bottom: 0;
}
.pet-cat {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.6rem;
}
.dd-h1 {
    font-size: 4rem;
    font-family: var(--ff-shi);
    font-weight: normal;
    margin: 0;
}
.dd-main {
    margin-top: 5rem;
}
.dd-wrap {
    background: #fff;
    padding: 4vw;
    margin: 0 auto;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
}
.dd__img-box {
    width: 50%;
}
.dd__img-box img {
    width: 100%;
}
.dd__ex {
    width: 45%;
}
/* #dd h1 {
    font-size: 2.5rem;
    color: #4B403A;
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 20px;
} */
.dd__comment {
    font-family: var(--ff-shi);
    color: var(--color-primary);
    font-size: 2rem;
    margin: 20px 0 0;
}
.dd__comment::before {
    content: "●";
    padding-right: 10px;
}
.dd__tbl {
    border-collapse: collapse;
    width: 100%;
    max-width: 400px;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.dd__tbl th,
.dd__tbl td {
    border: 1px solid #f2f2f2;
    padding: 12px 16px;
    text-align: left;
    font-size: 15px;
    color: #333;
}
.dd__tbl th {
    background-color: #fff3f3;
    font-weight: 500;
    width: 35%;
}
#dd .cat-list {
    justify-content: flex-start;
    margin-top: 2rem;
}


.post-nav {
    margin-bottom: 10rem;
}
.post-nav .inner {
    display: flex;
    justify-content: center;
}
.prev,
.next {
    display: block;
    margin: 1rem;
}
.prev a,
.next a {
    font-family: var(--ff-cor);
    display: block;
    text-align: center;
    width: 200px;
    padding: 1.5vw 2vw;
    background: #fff;
    text-decoration: none;
    color: #000;
    font-size: 2rem;
}

@media (max-width: 767px) {
    #dd .inner {
        padding: 0 4vw;
    }
    .dd-h1 {
        line-height: 1.4;
        font-size: 3rem;
    }
    .dd-main {
        margin-top: 0;
    }
    .dd-wrap {
        flex-direction: column;
        padding: 8vw 4.5vw;
    }
    .dd__img-box {
        width: 100%;
        order: 2;
    }
    .dd__img-box img {
        width: 100%;
        object-fit: cover;
        height: 300px;
    }
    .dd__ex {
        width: 100%;
        display: contents;
    }
    .dd__tbl th,
    .dd__tbl td {
        font-size: 1.6rem;
    }
    /* #dd h1 {
        padding: 0 0 20px;
        font-size: 2.2rem;
        order: 1;
        border: none;
    } */
    .dd__ex__other {
        order: 3;
    }
    .dd__comment {
        margin: 20px 0 10px;
    }
    #dd .txt {
        margin: 0 0 30px;
        font-size: 1.8rem;
    }
    .dd__tbl th,
    .dd__tbl td {
        font-size: 1.8rem;
    }
    #dd section {
        padding-bottom: 2rem;
    }
    #dd section.dd-other {
        padding: 0;
    }
    .prev,
    .next {
        width: 100%;
    }
    .prev a,
    .next a {
        width: 100%;
        padding: 3vw 2vw;
    }
    .top-design__gallery li a img {
        height: 100%;
    }
    .top-design__gallery li:nth-child(5n) {
        margin-right: 1%;
    }
    .top-design__gallery li:nth-child(2n) {
        margin-right: 0;
    }
    #top .top-design__gallery li:nth-child(n+9) {
        display: none;
    }
    #about .top-design__gallery li:nth-child(n+9) {
        display: none;
    }


}

/*===================================================

COLUMN LIST

====================================================*/

.column-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
#cl .hdg-area {
    margin: 0;
}
.column-list li {
    max-width: calc((100% - 4%) / 3);
    /* 余白2つぶん引く */
    margin-bottom: 5rem;
}
.column-list li:not(:last-child) {
    margin-right: 2%;
}
.cl-link {
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all .4s;
}
.cl-link:hover {
    opacity: .7;
}
.cl-link img {
    width: 100%;
    height: 17dvw;
    object-fit: cover;
}
#cl .cl-tag,
#cd .cl-tag {
    background: var(--color-primary);
    color: #fff;
    display: inline-block;
    padding: 0px 8px;
    /* font-family: var(--ff-shi); */
    font-size: 1.4rem;
    margin: 5px 0;
    line-height: 1.7;
}

#cl .cl-tag {
    height: unset;
    width: unset;
    margin-right: 1rem;
    text-decoration: none;
}
#cl .cat-list {
    margin-bottom: 3rem;
}
#cl h2 {
    font-size: 1.8rem;
    color: #4a4a4a;
}
#cl .column-main {
    padding-bottom: 10rem;
}
@media (max-width: 767px) {
    #cl .inner {
        padding: 0 4vw;
    }
    #cl .hdg-area {
        padding: 0 0 2rem;
    }
    #cl .hdg-area__hdg {
        margin: 0;
    }
    s .column-list {
        flex-wrap: wrap;
    }
    .column-list li {
        width: 49%;
        max-width: unset;
    }
    .column-list li:not(:last-child) {
        margin-right: unset
    }
    .column-list li:not(:nth-child(2n)) {
        margin-right: 2%;
    }
    .cl-link img {
        height: 110px;
    }
    #cl h2 {
        font-size: 1.7rem;
    }
    #cl .cat-list {
        margin-bottom: 2rem;
    }
    #cl .cl-tag {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }
    .column-list li:last-child {
        margin: 0;
    }

}


/*===================================================

COLUMN DETAIL

====================================================*/
.cd-wrap {
    background: #fff;
    padding: 4vw 7vw;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.cd-hdg {
    margin-bottom: 2rem;
}
#cd .cd-tag {
    margin: 0 auto 1rem;
    background: var(--color-primary);
    color: #fff;
    display: inline-block;
    padding: 0px 8px;
    font-family: var(--ff-shi);
    font-size: 1.4rem;
    line-height: 1.7;
    text-decoration: none;
}
#cd h1 {
    font-size: 2.6rem;
    color: #3c3c3c;
}
data {
    font-size: 2rem;
    font-family: var(--ff-cor);
    color: var(--color-primary);
}
.cd-wrap img {
    object-fit: cover;
    width: 100%;
    height: 450px;
}
.cd-main {
    padding-top: 5rem;
}
#cd h2 {
    font-size: 2.4rem;
    margin: 3rem 0;
    padding: 1rem 2rem;
    background: #fff3f3;
    border-left: 5px solid var(--color-primary);
}
#cd h3 {
    font-size: 2.2rem;
    margin: 3rem 0 5rem;
    border-bottom: 2px dotted #d0d0d0;
    padding: 0 0 1rem;
}
#cd h3::before {
    content: "●";
    color: var(--color-primary);
    margin-right: 1rem;
}
#cd h4 {
    font-size: 2rem;
    border-bottom: 2px solid #ff899c;
    padding: 0 0 0.7rem 1rem;
}
#cd p {
    margin: 0 auto 3rem;
    line-height: 3;
    font-size: 1.8rem;
}
.wp-block-list {
    padding-left: 5rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    margin-top: -3rem;
}
.wp-block-list li {
    line-height: 2.2;
    color: #4B403A;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.cd-back-btn {
    background: #fff;
    max-width: 360px;
    display: block;
    margin: 0 auto;
    padding: 2rem;
    color: #707070;
    font-family: var(--ff-shi);
    text-align: center;
    text-decoration: navajowhite;
    font-size: 2rem;
}
.cd-other-list {
    margin: 8rem auto 3rem;
    padding: 0;
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.cd-other-list::before {
    content: "";
    display: block;
    width: 30%;
    order: 1;
}

.cd-other-list li {
    width: 30%;
}

.cd-other-list li a {
    text-decoration: none;
}
.wp-block-image img {
    width: 100%;
    height: unset;
}

#cd .cl-other__ttl {
    line-height: 1.6;
}
.cd-other-list img {
    width: 100%;
    height: 15dvw;
    object-fit: cover;
}
.cl-other__ttl {
    font-family: var(--ff-shi);
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 767px) {
    #cd .inner {
        padding: 0 4vw;
    }
    .cd-wrap {
        padding: 7vw 4vw;
        margin: 0;
    }
    #cd p {
        line-height: 2.2;
    }
    #cd h1 {
        font-size: 2.4rem;
        line-height: 1.6;
    }
    #cd h2 {
        font-size: 2.2rem;
        line-height: 1.6;
        margin: 5rem 0 2rem;
    }
    #cd h3 {
        line-height: 1.6;
        margin: 5rem 0;
    }
    #cd .cd-tag {
        margin-bottom: 1rem;
    }
    #cd .cl-tag {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    .cd-wrap img {
        height: 50vw;
    }
    #cd section {
        padding-bottom: 2rem;
    }
    .cd-other-list img {
        height: 110px;
    }
    #cd .cl-other__ttl {
        margin: 0;
    }

    #cd .txt {
        font-size: 1.8rem;
        line-height: 2.4;
    }
    .cd-back-btn {
        max-width: unset;
        width: 70%;
    }
    .cd-other-list {
        flex-wrap: wrap;
    }
    .cd-other-list li {
        width: 48%;
        margin-bottom: 3rem;
    }
    .cl-other__ttl {
        font-size: 2.1rem;
    }
    .wp-block-list {
        padding-left: 3rem;
    }

}



/*===================================================

FAQ

====================================================*/
.faq-cat-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq-h2 {
    font-size: 2.2rem;
    padding-left: 2rem;
    border-left: 5px solid var(--color-primary);
    max-width: 1090px;
    margin: 0 auto 2rem;
    width: 100%;
}
.faq-cat-list li {
    margin-bottom: 10rem;
}
.faq-cat-list li:last-child {
    margin-bottom: 0;
}


/*===================================================

PRIVACY

====================================================*/
.privacy-wrap {
    background: #fff;
    padding: 4vw;
}
#privacy h2 {
    font-size: 2.4rem;
    margin: 3rem 0;
    padding: 1rem 2rem;
    background: #fff3f3;
    border-left: 5px solid var(--color-primary);
}
#privacy ol {
    padding-left: 4rem;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    line-height: 2.2;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
#privacy p {
    margin-bottom: 1rem;
}
@media (max-width: 767px) {
    #privacy .inner {
        padding: 0 4vw;
    }
    .privacy-wrap {
        padding: 5vw;
    }
    #privacy .hdg-area {
        padding: 0;
    }
    #privacy ol {
        font-size: 1.6rem;
        padding-left: 3rem;
    }
}
/*===================================================

SITE MAP

====================================================*/

.sitemap h4 {
    font-size: 2.4rem;
    margin: 1rem 0 3rem;
    padding: 1rem 2rem;
    background: #fff3f3;
    border-left: 5px solid var(--color-primary);
    font-family: var(--ff-shi);
    ;
}
.sitemap a {
    color: #4B403A;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.sitemap ul {
    padding-left: 3rem;
}
@media (max-width: 767px) {
    .sitemap ul {
        font-size: 1.8rem;
    }
    .sitemap h4 {
        margin: 0 auto 3rem;
    }
}