/*
Theme Name:2025_Luana
Theme URI:
Version: 1.0
Author: imawaka
Author URI: https://yoshida-designbu.com/
License: imawaka
*/


/*リセットcss*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	line-height: 1;
    scroll-padding-top: var(--space-40);
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}

img {
	vertical-align: bottom;
}

a img {
	border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

input[type="button"], input[type="submit"] {
	-webkit-appearance: none;
}

br.clear {
	clear: both;
}

/*リセットcssここまで*/


/*--------------
common
--------------*/
html {
    font-size: 62.5%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --width-85:85%;
    --space-80:80px;
    --space-60:60px;
    --space-40:40px;
    --space-30:30px;
    --space-20:20px;
    --color-Brown:#4f2a1a;
    --color-Cream:#eae6cd;
    --color-White:#ffffff;
    --font-16px:16px;
    --font-14px:14px;
    --font-12px:12px;
    --font-regular:400;
    --font-medium:500;
    --font-bold:700;
    --font-black:800;
    --font-ShipporiMincho: "Shippori Mincho", serif;
    --font-CrimsonPro: "Crimson Pro", serif;
}

body {
	background-color: var(--color-Cream);
	color: var(--color-Cream);
	font-family: "Shippori Mincho", serif;
	font-size: 13px;
	line-height: 1.8;
	font-weight: 400;
	font-feature-settings: "palt";
}

a {
    text-decoration: none;
    transition: all 0.5s;
	color: var(--color-Black);
}

img, video {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

picture {
    display: block;
}

.hidden {
    visibility: hidden;
    height: 0!important;
    margin: 0!important;
    border: 0!important;
    padding: 0!important;
}

.link {
    display: block;
}

.spanblock {
    display: block;
}

.pc {
    display: none;
}
.tab {
    display: none;
}
.sp {
    display: block;
}

.body-container {
    position: relative;
}

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

    body {
        font-size: 14px;
    }

    :root {
        --font-16px:17px;
        --font-14px:15px;
        --font-12px:13px;
    }

}

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

    a:hover {
        opacity: 0.6;
    }

    .tab {
        display: block;
    }
    .sp {
        display: none;
    }

}

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

    body {
        font-size: 16px;
    }

    :root {
        --space-80:90px;
        --space-60:70px;
        --space-40:50px;
        --space-30:40px;
        --space-20:30px;
        --font-16px:18px;
        --font-14px:16px;
        --font-12px:14px;
    }

}


/*--------------
header
--------------*/

/* loading */

div.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--color-Cream);
    z-index: 20;
    animation: loading 2s forwards;
    animation-delay: 0.2s;
}

@keyframes loading {

    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }

}

/* 動き */

header h1, 
div.hamburger, 
.home div.pcNav-inner, 
.home div.pcAside-logo, 
div.topNews {
    animation: topKv-fadeIn 1.2s forwards;
    animation-delay: 1.4s;
    opacity: 0;
}

div.topKv-logo {
    animation: topKv-fadeIn 1.2s forwards;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes topKv-fadeIn {

    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }

}

/* header */

nav.globalMenuSp {
    display: none;
}

header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    z-index: 9;
    transition: 0.6s;
}

header.header-bg {
    background-color: rgba(234, 230, 205, 0.9);
}

header h1 {
    width: 100px;
    position: absolute;
    top: 20px;
    left: 7.5%;
    z-index: 9;
}

.hamburger {
    display: block;
    position: fixed;
    z-index: 11;
    cursor: pointer;
    text-align: center;
    top: 25px;
    right: 7.5%;
    width: 40px;
    height: 22px;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 1px;
    right: 0;
    background: var(--color-Brown);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
    
.hamburger.active span {
    background: var(--color-Cream);
}

.hamburger span:nth-child(1) {
    width: 100%;
    top: 0;
}
.hamburger span:nth-child(2) {
    width: 90%;
    top: 49%;
}
.hamburger span:nth-child(3) {
    width: 80%;
    bottom: 0;
}
    
.hamburger.active span:nth-child(1) {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 50%;
    width: 100%;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : translateY(-50%) rotate(45deg);
}

nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background: var(--color-Brown);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}
nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
}

div.globalMenuSp-wrapper {
    position: relative;
    height: 100%;
}

div.gMenu-logo, 
ul.gMenu-list, 
div.gMenu-instagram, 
div.gMenu-reservation {
    position: absolute;
}

div.gMenu-logo, ul.gMenu-list {
    left: 50%;
    transform: translateX(-50%);
}

div.gMenu-logo {
    width: 35%;
    min-width: 180px;
    top: 10%;
}

ul.gMenu-list {
    width: 100px;
    bottom: 10%;
}

ul.gMenu-list li a {
    display: block;
    padding-left: 30px;
    margin-bottom: 25px;
    position: relative;
}

ul.gMenu-list li a::before {
    content: "";
    height: 1px;
    width: 18px;
    background-color: var(--color-Cream);
    position: absolute;
    top: 15px;
    left: 0;
    opacity: 0.6;
}

ul.gMenu-list li.gMenu-faq a {
    margin-top: 30px;
}

ul.gMenu-list li.gMenu-faq:last-child a {
    margin-bottom: 0;
}

ul.gMenu-list li.gMenu-faq a::before {
    top: 10px;
}

div.gMenu-reservation {
    width: 25px;
    left: 20px;
    bottom: 25px;
}

div.gMenu-instagram {
    width: 25px;
    right: 20px;
    bottom: 25px;
}

/* ハンバーガー内の動き */

nav.globalMenuSp.active div.gMenu-logo, 
nav.globalMenuSp.active div.gMenu-reservation, 
nav.globalMenuSp.active div.gMenu-instagram {
    opacity: 0;
    filter: blur(5px);
    animation: gMenu-fadeIn1 0.8s forwards;
    animation-delay: 0.2s;
}

@keyframes gMenu-fadeIn1 {

    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }

}

nav.globalMenuSp.active ul.gMenu-list li {
    opacity: 0;
    filter: blur(5px);
    animation: gMenu-fadeIn2 0.6s forwards;
    animation-delay: 0.4s;
}

nav.globalMenuSp.active ul.gMenu-list li:nth-child(2) {
    animation-delay: 0.45s;
}

nav.globalMenuSp.active ul.gMenu-list li:nth-child(3) {
    animation-delay: 0.5s;
}

nav.globalMenuSp.active ul.gMenu-list li:nth-child(4) {
    animation-delay: 0.55s;
}

nav.globalMenuSp.active ul.gMenu-list li:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes gMenu-fadeIn2 {

    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }

}

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

    header h1, .hamburger {
        display: none;
    }

    header.header-bg {
        background-color: initial;
    }

}


/*--------------
pcサイド画面
--------------*/

aside.pcAside, nav.pcNav {
    display: none;
}

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

    div.mainArea, .footer-container {
        box-sizing: border-box;
        width: calc(100% - 200px);
        margin-right: 200px;
        overflow: hidden;
    }

    /* pcNav(pc画面 右メニュー) */

    nav.pcNav {
        box-sizing: border-box;
        display: block;
        max-width: 200px;
        width: 100%;
        height: 100%;
        border-left: 1px solid var(--color-Cream);
        position: fixed;
        top: 0;
        right: 0;
        background-color: #4f2a1a;
    }

    div.pcNav-inner {
        position: relative;
        height: 100%;
    }

    h1.pcNav-textLogo, 
    ul.pcNav-list, 
    div.pcNav-instagram {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    h1.pcNav-textLogo {
        width: 130px;
        top: 40px;
    }

    ul.pcNav-list {
        width: 120px;
        bottom: 100px;
    }

    ul.pcNav-list li {
        width: 100%;
        margin-bottom: 20px;
    }

    ul.pcNav-list li.pcNav-faq {
        margin-top: 30px;
    }

    ul.pcNav-list li:last-child {
        margin-bottom: 0;
    }

    div.pcNav-instagram {
        width: 24px;
        bottom: 40px;
    }

}

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

    div.mainArea, .footer-container {
        width: calc(100% - 250px);
        margin-right: 250px;
    }

    /* pcNav(pc画面 右メニュー) */

    nav.pcNav {
        max-width: 250px;
    }

    ul.pcNav-list li {
        margin-bottom: 20px;
    }

}

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

    div.mainArea, .footer-container {
        max-width: 500px;
        width: 100%;
        margin-left: calc(100% - 750px);
    }

    /* pcAside(pc画面 左メニュー) */

    aside.pcAside {
        box-sizing: border-box;
        display: block;
        width: calc(100% - 750px);
        height: 100%;
        border-right: 1px solid var(--color-Cream);
        position: fixed;
        top: 0;
        left: 0;
        color: var(--color-Brown);
    }

    ul.pcAside-slide, 
    .slick-list, 
    .slick-track, 
    ul.pcAside-slide li, 
    ul.pcAside-slide li img {
        height: 100%;
    }

    ul.pcAside-slide li {
        width: 100%;
        overflow: hidden;
    }

    ul.pcAside-slide li img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* ↓ここから動き */

    .add-animation {
        animation: zoomOut 15s linear 0s normal both;
    }

    @keyframes zoomOut {
        0% {
          transform: scale(1.2);
        }
        100% {
          transform: scale(1); /* 拡大率 */
        }
    }

    /* ↑ここまで動き */

    div.pcAside-logo {
        position: absolute;
        top: 30px;
        left: 30px;
        width: 120px;
    }

}

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

    div.mainArea, .footer-container {
        max-width: 600px;
        margin-left: calc(100% - 850px);
    }

    /* pcAside(pc画面 左メニュー) */

    aside.pcAside {
        width: calc(100% - 850px);
    }

}


/*--------------
main
--------------*/

/* ↓ここから 動き */

.scrollImage-fadeIn, .scrollText-fadeIn1,  .scrollText-fadeIn2 {
    opacity: 0;
}

.scrollImage-fadeIn {
    filter: blur(5px);
}

.scrollImage-fadeIn-animation {
    animation: scrollImage-fadeIn 1.4s forwards;
}

@keyframes scrollImage-fadeIn {

    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }

}

.scrollText-fadeIn1 {
    filter: blur(5px);
}

.scrollText-fadeIn1-animation {
    animation: scrollText-fadeIn1 0.8s forwards;
}

@keyframes scrollText-fadeIn1 {

    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }

}

.scrollText-fadeIn2-animation {
    animation: scrollText-fadeIn2 1s forwards;
}

@keyframes scrollText-fadeIn2 {

    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ↑ここまで 動き */


/* KV(キービジュアル) */

div.topKv {
    position: relative;
    width: var(--width-85);
    margin: 0 auto 20px;
}

ul.topKv-slide {
    height: 70vh;
}

.slick-list, 
.slick-track, 
ul.topKv-slide li, 
ul.topKv-slide li img {
    height: 100%;
}

ul.topKv-slide li {
    height: 100%;
    overflow: hidden;
    --top-left-right-radius: 220;
    border-top-left-radius: calc(var(--top-left-right-radius)* 1.2em / 16);
    border-top-right-radius: calc(var(--top-left-right-radius)* 1.2em / 16);
    position: relative;
}

ul.topKv-slide li::before {
    content: "";
    background-color: rgba(79, 42, 26, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

ul.topKv-slide li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

div.topKv-logo {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

    ul.topKv-slide {
        height: 80vh;
    }

}

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

    div.topKv-logo {
        width: 40%;
    }

}


/* topNews(トップお知らせ) */

div.topNews {
    width: var(--width-85);
    margin: 0 auto 60px;
}

dl.topNews-list dt, dl.topNews-list dd {
    color: var(--color-Brown);
}

dl.topNews-list dd a {
    font-weight: var(--font-bold);
}

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

    div.topNews {
        margin-bottom: 80px;
    }

}


/* mainArea(メインエリア) */

div.mainArea {
    overflow: hidden;
    padding-top: 80px;
}

div.mainArea-bg {
    overflow: hidden;
    position: relative;
}

div.mainArea-bg02 {
    background-color: var(--color-Brown);
}

div.mainArea-bgTop {
    height: 100px;
}

div.mainArea-bgBottom {
    height: 115px;
    transform: translateY(-1%);
}

div.mainArea-bg img {
    width: 600px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

div.mainArea-container {
    position: relative;
}

div.bg01 {
    background-color: var(--color-Brown);
    color: var(--color-Cream);
    padding-top: 2%;
}

div.bg02 {
    background-color: var(--color-Cream);
    color: var(--color-Brown);
}

section.topSec {
    position: relative;
    padding-bottom: 80px;
}

.border-title span {
    position: relative;
    display: block;
    width: 22px;
    padding-top: 70px;
}

.border-title span::before {
    content: "";
    width: 1px;
    height: 55px;
    background-color: var(--color-Cream);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
}

div.bg01 .border-title span::before {
    background-color: var(--color-Cream);
}

div.bg02 .border-title span::before {
    background-color: var(--color-Brown);
}

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

    div.mainArea {
        padding-top: 40px;
    }

    div.mainArea-bg {
        overflow: initial;
    }

    div.mainArea-bgTop {
        height: 131px;
    }
    
    div.mainArea-bgBottom {
        height: 141px;
    }
    
    div.mainArea-bg img {
        width: 750px;
    }

    div.mainArea-inner {
        max-width: 450px;
        width: 80%;
    }

}

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

    div.mainArea {
        padding-top: 45px;
    }

    div.mainArea-bgTop {
        height: 88px;
    }

    div.mainArea-bgBottom {
        height: 98px;
    }

    div.mainArea-bg img {
        width: 500px;
    }

    section.topSec {
        padding-top: 70px;
    }

}

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

    div.mainArea-bgTop {
        height: 105px;
    }

    div.mainArea-bgBottom {
        height: 115px;
    }

    div.mainArea-bg img {
        width: 600px;
    }

    section.topSec {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .border-title span {
        width: 28px;
    }

}


/* top共通 */

div.topSec-title, section.topPF {
    display: flex;
    justify-content: space-between;
    width: 92.5%;
    margin: 0 auto 0 0;
    position: relative;
}

div.topSec-image {
    width: var(--width-85);
    position: relative;
}

div.topSec-text {
    width: var(--width-85);
    margin: 0 auto;
    padding-top: var(--space-30);
}

div.ViewMore {
    text-align: right;
}

div.ViewMore a {
    position: relative;
    display: inline-flex; /* inline-flexに変更 */
    align-items: center;
    gap: 10px;
}

span.ViewMore-text {
    display: block;
    width: 90px;
    padding-bottom: 5px;
    line-height: 1;
}

span.ViewMore-arrow {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: 0.5s;
}
 
div.ViewMore01 span.ViewMore-arrow {
    background-color: var(--color-Cream);
}

div.ViewMore02 span.ViewMore-arrow {
    background-color: var(--color-Brown);
}

span.ViewMore-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 5px;
    z-index: 1;
    transition: 0.3s;
}

div.ViewMore01 span.ViewMore-arrow::after {
    background: url(./img/common/view-more-arrow01.png) center no-repeat;
    background-size: 10px;
}

div.ViewMore02 span.ViewMore-arrow::after {
    background: url(./img/common/view-more-arrow02.png) center no-repeat;
    background-size: 10px;
}

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

    span.ViewMore-text {
        width: 100px;
    }

    span.ViewMore-arrow {
        width: 20px;
        height: 20px;
    }

    span.ViewMore-arrow::after {
        width: 12px;
        height: 6px;
    }
    
    div.ViewMore01 span.ViewMore-arrow::after {
        background: url(./img/common/view-more-arrow01.png) center no-repeat;
        background-size: 12px;
    }
    
    div.ViewMore02 span.ViewMore-arrow::after {
        background: url(./img/common/view-more-arrow02.png) center no-repeat;
        background-size: 12px;
    }

    div.ViewMore a:hover {
        opacity: 1;
    }
    
    div.ViewMore a:hover span.ViewMore-arrow {
        transform: scale(0.5);
    }
    
    div.ViewMore a:hover span.ViewMore-arrow::after {
        opacity: 0;
    }

}

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

    div.topSec-image {
        width: 87%
    }

    p.ViewMore a {
        width: 170px;
    }

}


/* topAbout(私たちについて) */

section.topAbout div.topSec-title {
    flex-direction: row-reverse;
}

div.topAbout-image img {
    border-radius: 0 20px 20px 0;
}

p.topAbout-text {
    line-height: 2.2;
}

section.topAbout div.ViewMore {
    margin-top: var(--space-20);
    text-align: left;
}


/* topService(サービス) */

section.topService-item {
    margin-bottom: var(--space-60);
}

section.topService-item:last-child {
    margin-bottom: 0;
}

section.topService div.topSec-title {
    margin: 0 0 0 auto;
}

section.topService-item:nth-of-type(even) div.topSec-title {
    flex-direction: row-reverse;
    margin: 0 auto 0 0;
}

section.topService-item a:hover {
    opacity: 1;
}

div.topService-image {
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

section.topService-item:nth-of-type(even) div.topService-image {
    border-radius: 0 20px 20px 0;
}

div.topService-image img {
    transition: 0.8s;
}

div.topService-button {
    background-color: var(--color-Brown);
    width: max(50px, 4vw);
    height: max(50px, 4vw);
    border-radius: 50%;
    position: absolute;
    right: 7.5%;
    bottom: -25px;
    transition: 0.5s;
}

div.topService-button::after {
    content: "";
    background: url(./img/common/view-more-arrow02.png) center no-repeat;
    background-size: max(20px, 0.8vw);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max(20px, 0.8vw);
    height: max(10px, 0.4vw);
    z-index: 1;
    transition: 0.5s;
}

section.topServiceHotel-item div.topService-button {
    right: -7%;
}

div.topService-button a {
    display: block;
}

dl.topService-text {
    width: var(--width-85);
    margin: 25px auto 0;
}

dl.topService-text dt {
    font-size: var(--font-16px);
    font-weight: var(--font-bold);
    margin-bottom: 5px;
}

dl.topService-text dd {
    line-height: 2;
}

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

    section.topService-item a:hover div.topService-image img {
        transform: scale(1.1);
    }
    
    section.topService-item a:hover div.topService-button {
        background-color: var(--color-White);
    }
    
    section.topService-item a:hover div.topService-button::after {
        background: url(./img/common/view-more-arrow01.png) center no-repeat;
        background-size: 20px;
    }

}

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

    dl.topService-text {
        margin: 35px auto 0;
    }

    dl.topService-text dt {
        margin-bottom: 10px;
    }

}


/* topPF(料金・よくあるご質問) */

section.topPF {
    flex-direction: row-reverse;
}

section.topPF-Sec {
    width: 90%;
    padding: 30px 7.5%;
    border-radius: 0 20px 20px 0;
    margin-bottom: 30px;
    background-color: var(--color-Cream);
    color: var(--color-Brown);
}

section.topPF-Sec:last-child {
    margin-bottom: 0;
}

section.topPF-Sec h3 {
    width: 50px;
}

p.topPF-Text {
    margin: 10px 0;
}

section.topPF-Sec div.ViewMore a {
    justify-content: flex-end;
}

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

    section.topPF-Sec {
        padding: 40px 7.5%;
        margin-bottom: 40px;
    }

    section.topPF-Sec h3 {
        width: 60px;
    }

    p.topPF-Text {
        margin: 20px 0;
    }

}


/* topInstagram(インスタグラム) */

section.topInstagram {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 0;
}

div.topInstagram-container {
    width: 82%;
    padding-bottom: 10px;
}

div#sb_instagram, div#sbi_images {
    padding: 0!important;
}

div#sbi_images {
    padding: 0;
}

section.topInstagram div.ViewMore {
    margin-top: 20px;
}

section.topInstagram div.ViewMore a {
    justify-content: flex-end;
}

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

    section.topInstagram {
        padding-top: 0;
        padding-bottom: 70px;
    }

    div.topInstagram-container {
        width: 85%;
    }

}


/*--------------
下層ページ
--------------*/

/* kv */

div.underKv {
    display: flex;
    justify-content: space-between;
    width: 92.5%;
    margin: 0 auto 0 0;
    position: relative;
}

div.underKv-reverse {
    flex-direction: row-reverse;
    margin: 0 0 0 auto;
}

div.underKv-image {
    width: var(--width-85);
}

div.underKv-top div.underKv-image {
    padding-bottom: 12%;
}

div.underKv-image img {
    border-radius: 0 20px 20px 0;
}

div.underKv-reverse div.underKv-image img {
    border-radius: 20px 0 0 20px;
}

div.underKv .border-title span {
    width: 24px;
    padding-top: 50px;
}

/* priceページh2 */

div.underKv .price-Title span {
    width: 26px;
}

/* ここまで */

div.underKv .border-title span::before {
    height: 35px;
}

div.underKv .border-title02 span::before {
    background-color: var(--color-Brown);
}

div.underKv .border-title01 span::before {
    background-color: var(--color-Cream);
}

/* 動き */

div.underKv-top {
    animation: topKv-fadeIn 1.2s forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.under-scrollText-fadeIn {
    filter: blur(5px);
    opacity: 0;
}

.under-scrollText-fadeIn-animation {
    animation: under-scrollText-fadeIn 1s forwards;
    animation-delay: 0.2s;
}

@keyframes under-scrollText-fadeIn {

    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }

}

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

    /* kv */

    div.underKv-top div.underKv-image {
        padding-bottom: 15%;
    }

    div.underKv .border-title span {
        width: 28px;
    }

    /* bg */

    div.mainUnderArea div.mainArea-bg {
        overflow: hidden;
    }

    div.mainUnderArea div.mainArea-bgTop {
        height: 110px;
    }

}

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

    /* kv */

    div.underKv-top div.underKv-image {
        padding-bottom: 13%;
    }

    /* bg */

    div.mainUnderArea div.mainArea-bgTop {
        height: 87px;
    }

}

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

    /* kv */

    div.underKv .border-title span {
        width: 30px;
    }

    /* bg */

    div.mainUnderArea div.mainArea-bgTop {
        height: 105px;
    }

}


/* 共通 */

div.mainUnderArea-container {
    background-color: var(--color-Brown);
    padding-bottom: 2%;
}

div.mainUnderArea-container div.mainArea-bg {
    background-color: var(--color-Cream);
}

.underSec {
    margin-top: var(--space-80);
}

.underSec:first-of-type {
    margin-top: 0;
}

.underSec-inner {
    width: var(--width-85);
    margin: 35px auto 0;
}

.underSec h3, .underSec h4 {
    font-size: var(--font-16px);
    font-weight: var(--font-bold);
}

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

    .underSec:first-of-type {
        margin-top: 30px;
    }

    .underSec:last-of-type {
        padding-bottom: 60px;
    }

    .underSec-inner {
        margin: 45px auto 0;
    }

}

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

    .underSec-inner {
        margin: 50px auto 0;
    }

}


/*--------------
about
--------------*/

/* コンセプト */

div.aboutSec-concept {
    padding: 0px 7.5% 48%;
    position: relative;
    z-index: 1;
}

div.aboutSec-concept p {
    color: var(--color-Brown);
    font-weight: var(--font-medium);
}

div.aboutSec-concept p.concept-text01 {
    font-size: var(--font-14px);
    font-weight: var(--font-bold);
    margin-bottom: 15px;
}

div.concept-image {
    position: absolute;
    right: 0;
    bottom: -30%;
    width: 92.5%;
}

div.concept-image img {
    border-radius: 25px 0 0 25px;
}

section.about-topSec {
    padding-top: 16%;
}

div.about-topSec-inner:first-child {
    margin-top: 0;
}

div.about-topSec-text {
    width: var(--width-85);
    margin: var(--space-30) auto 0;
}

p.about-topSec-text01 {
    font-size: 15px;
    font-weight: var(--font-bold);
    margin-bottom: 15px;
}

div.about-topSec-image01, div.about-topSec-image02 {
    width: 92.5%;
}

div.about-topSec-image01 {
    margin: var(--space-40) auto 0 0;
}

div.about-topSec-image01 img {
    border-radius: 0 25px 25px 0;
}

div.about-topSec-image02 {
    margin: var(--space-40) 0 0 auto;
}

div.about-topSec-image02 img {
    border-radius: 25px 0 0 25px;
}

/* ショップ */

div.shop-list dl {
    display: flex;
    padding-bottom: var(--space-20);
    border-bottom: 1px solid rgba(234, 230, 205, 0.3);
    margin-bottom: var(--space-20);
}

div.shop-list dt, div.shop-list dd {
    font-size: var(--font-14px);
}

div.shop-list dt {
    width: 80px;
    font-weight: var(--font-bold);
}

div.shop-list dd {
    width: calc(100% - 80px);
    text-decoration: none; /* 下線を消す */
}

div.shop-list dd a {
    text-decoration: none; /* 下線を消す */
}

div.shop-list dl:last-child {
    display: block;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

div.shop-list dl:last-child dt, 
div.shop-list dl:last-child dd {
    width: 100%;
}

div.shop-list dl:last-child dt {
    margin-bottom: 5px;
}

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

    /* コンセプト */

    div.aboutSec-concept {
        padding: 0 7.5% 50%;
    }

    section.about-topSec {
        padding-top: 13%;
    }

}

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

    /* コンセプト */

    div.aboutSec-concept {
        padding: 0 7.5% 51%;
    }

    p.about-topSec-text01 {
        font-size: 17px;
    }

}

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

    div.aboutSec-concept p.concept-text01, 
    p.about-topSec-text01 {
        font-size: 18px;
    }

}


/*--------------
service
--------------*/

section.serviceSec-inner {
    margin-top: var(--space-40);
}

div.icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

div.icon-title div.icon-image {
    width: 27px;
}

p.serviceSec-text {
    margin: 15px 0 20px;
}

section.serviceSec div.ViewMore {
    margin-top: var(--space-20);
}

/* シャンプーカット */

dl.course-content {
    padding: 4% 4% 5%;
    border: 1px solid var(--color-Cream);
    border-radius: 5px;
}

dl.course-content dt {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-Cream);
    margin-bottom: 15px;
    font-size: var(--font-14px);
    font-weight: var(--font-bold);
}

div.course-content-inner {
    margin-bottom: 15px;
}

div.course-content-inner:last-child {
    margin-bottom: 0;
}

p.course-content-title {
    font-size: var(--font-14px);
    font-weight: var(--font-bold);
}

p.course-content-title::before {
    content: "・";
}

p.course-content-text {
    padding-left: 1em;
    font-size: var(--font-12px);
}

/* ペットホテル */

section.service-hotelSec div.ViewMore {
    margin-top: 15px;
}

dl.hotel-accordion {
    padding: 4% 4% 5%;
    border-radius: 5px;
    margin-top: 15px;
    background-color: var(--color-Cream);
    color: var(--color-Brown);
}

dl.hotel-accordion:first-of-type {
    margin-top: 20px;
}

dl.hotel-accordion dt {
    font-size: var(--font-14px);
    font-weight: var(--font-bold);
    cursor: pointer;
}

dl.hotel-accordion dt span {
    display: block;
    font-size: var(--font-12px);
    line-height: 1.2;
}

/* 共通になるかも(アコーディオン+) */

dt.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

div.accordion-plus {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--color-Brown);
    position: relative;
}

div.accordion-plus::before, div.accordion-plus::after {
    content: '';
    width: 10px;
    height: 1px;
    position: absolute;
    background-color: var(--color-Brown);
}

div.accordion-plus::before {
    top: 48%;
    right: calc(50% - 5px);
    transform: rotate(0deg);
}

div.accordion-plus::after {
    top: 48%;
    right: calc(50% - 5px);
    transform: rotate(90deg);
}

/*closeというクラスがついたら形状変化*/

dt.accordion-title.close div.accordion-plus::before {
	transform: rotate(0deg);
}

dt.accordion-title.close div.accordion-plus::after {
	transform: rotate(0deg);
}

dd.accordion-content {
    display: none;/*はじめは非表示*/
}

/* ここまで */

dl.hotel-accordion dd {
    padding-top: 15px;
    border-top: 1px solid var(--color-Brown);
    margin-top: 15px;
    font-weight: var(--font-medium);
}

dl.hotel-accordion01 dd li {
    background: url(./img/service/checkbox-icon.png) left 2.5px no-repeat;
    background-size: 1em;
    padding-left: 1.5em;
    line-height: 1.4;
    margin-bottom: 5px;
}

div.hotel-note {
    margin-bottom: 15px;
}

div.hotel-note p {
    font-weight: var(--font-bold);
    line-height: 1.4;
    margin-bottom: 8px;
}

div.hotel-note li {
    font-size: var(--font-12px);
    line-height: 1.5;
    margin-bottom: 4px;
}

dl.hotel-accordion02 dd li {
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
    margin-bottom: 4px;
}

dl.hotel-accordion02 dd li::before {
    content: "・";
}

/* その他のサービス */

.service-othersSec p.serviceSec-text span {
    display: block;
    margin-top: 2%;
    font-size: 90%;
    padding-left: 1em;
    text-indent: -1em;
}


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

    section.serviceSec div.ViewMore {
        margin-top: 30px;
    }

    /* シャンプーカット */

    div.icon-title div.icon-image {
        width: 30px;
    }

    p.course-content-text {
        font-size: 13px;
    }

    /* ペットホテル */

    section.service-hotelSec {
        margin-top: 50px;
    }

    section.service-hotelSec:first-of-type {
        margin-top: 40px;
    }

    /* その他のサービス */
     
    section.service-othersSec div.ViewMore {
        margin-top: 20px;
    }

    section.service-othersSec {
        margin-top: 30px;
    }

    section.service-othersSec:first-of-type {
        margin-top: 40px;
    }

}

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

    /* シャンプーカット */

    p.course-content-text {
        font-size: 14px;
    }

}


/*--------------
price
--------------*/

h3.border-h3 {
    width: 92.5%;
    padding-right: 7.5%;
    padding-bottom: 5px;
    margin: 0 0 0 auto;
    border-bottom: 1px solid var(--color-Cream);
}

section.priceSec {
    margin-top: var(--space-60);
}

section.priceSec h3 span {
    display: block;
    padding: 5px 0;
    font-size: 12px;
    font-weight: initial;
    line-height: 1.5;
}

/* シャンプー・カット料金 */

div.price-scTitle {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-20);
}

div.price-scTitle-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.price-scTitle-icon {
    width: 55px;
}

div.price-scTitle-text {
    width: calc(100% - 70px);
}

table.sc-price-table {
    margin-top: var(--space-30);
}

/* sc料金表 */

table.sc-price-table {
    width: 100%;
}

table.sc-price-table tr {
    position: relative;
    border-bottom: 1px solid var(--color-Cream);
}

table.sc-price-table tr:last-child {
    border-bottom: none;
}

table.sc-price-table th, 
table.sc-price-table td {
    padding: 18px 5px;
    position: relative;
    font-size: min(14px, 3.2vw);
}

table.sc-price-table th::after, 
table.sc-price-table td::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: var(--color-Cream);
    opacity: 0.2;
}

table.sc-price-table th:last-child, 
table.sc-price-table td:last-child {
    border-right: none;
}

table.sc-price-table th:last-child::after, 
table.sc-price-table td:last-child::after {
    display: none;
}

table.sc-price-table th {
    font-weight: var(--font-bold);
}

th.tableMenu-course {
    text-align: center;
    line-height: 1.4;
}

td.tablePrice {
    text-align: center;
}

td.tablePrice span {
    font-size: 80%;
}

td.tablePrice-none::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 1px;
    background: var(--color-Cream);
}

/* ↑ここまで(sc料金表) */

p.price-note {
    font-size: var(--font-12px);
    line-height: 1.5;
    margin-top: 15px;
    padding-left: 1em;
    text-indent: -0.8em;
}


div.price-dl {
    margin-top: var(--space-20);
}

div.price-dl dl {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(234, 230, 205, 0.3);
    margin-bottom: 15px;
}

div.price-dl dl:last-child {
    margin-bottom: 0;
}

div.price-dl dl dt span {
    display: block;
    font-size: var(--font-12px);
}

div.price-dl dl dd {
    letter-spacing: 1px;
}

div.price-dl dl dd span {
    font-size: 85%;
}

/* ペットホテル料金 */

section.price-hotelSec h4 {
    font-size: 15px;
    line-height: 1;
    margin-bottom: 10px;
}

p.price-hotelSec-text {
    margin-bottom: 15px;
}

dl.hotel-size-dl dt {
    font-weight: var(--font-bold);
}

dt.price-dl-iconText {
    display: flex;
    align-items: center;
    gap: 15px;
}

dt.price-dl-iconText span:first-child {
    width: 28px;
}

div.price-hotelImage {
    margin: 15px 0;
}

div.price-hotelImage img {
    border-radius: 20px;
}

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

    /* sc料金表 */

    table.sc-price-table th, 
    table.sc-price-table td {
        padding: 18px 5px;
        font-size: min(15px, 2vw);
    }

    /* ペットホテル料金 */

    div.price-hotelImage img {
        border-radius: 30px;
    }

}

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

    /* ペットホテル料金 */

    section.price-hotelSec h4 {
        margin-bottom: 5px;
        font-size: 18px;
    }

}

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

    section.priceSec h3 span {
        font-size: 13px;
    }

    /* ペットホテル料金 */

    section.price-hotelSec h4 {
        margin-bottom: 8px;
    }

}


/* その他の有料サービス料金 */

section.price-othersSec {
    margin-top: var(--space-40);
}

ul.price-others-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-20);
    margin-top: var(--space-20);
}

ul.price-others-list li {
    width: 46%;
}

ul.price-others-list li p {
    font-size: var(--font-14px);
    font-weight: var(--font-bold);
}

ul.price-others-list div.price-dl {
    margin-top: 15px;
}


/*--------------
faq
--------------*/

section.faqSec {
    margin-top: var(--space-60);
}

div.faqSec-inner {
    width: 92.5%;
    margin: var(--space-30) 0 0 auto;
}

div.faqSec-inner dl {
    padding-bottom: var(--space-20);
    padding-right: 7.5%;
    border-bottom: 1px solid rgba(234, 230, 205, 0.3);
    margin-bottom: var(--space-20);
}

div.faqSec-inner dl:last-child {
    margin-bottom: 0;
}

div.faqSec-inner dt div:first-child {
    width: calc(100% - 40px);
    line-height: 1.4;
}

div.faqSec-inner dt div:first-child, div.faqSec-inner dd {
    padding-left: 1.4em;
    text-indent: -1.2em;
    font-size: var(--font-14px);
}

div.faqSec-inner dt div:first-child::before {
    content: "Q  ";
    font-size: 1.2em;
}

div.faqSec-inner dd::before {
    content: "A  ";
    font-size: 1.2em;
}

div.faqSec-inner div.accordion-plus {
    border: 1px solid var(--color-Cream);
}

div.faqSec-inner div.accordion-plus::before, 
div.faqSec-inner div.accordion-plus::after {
    background-color: var(--color-Cream);
}

div.faqSec-inner dd {
    margin-top: 12px;
}

div.faqSec-inner dd a {
    text-decoration: underline;
    font-weight: var(--font-bold);
}

div.faq-inner-list p {
    font-weight: var(--font-bold);
}

div.faq-inner-list {
    text-indent: initial;
    margin: 10px 0;
}

div.faq-inner-list ul li {
    text-indent: -1em;
    padding-left: 1em;
}

div.faq-inner-list ul li::before {
    content: "・";
}


/*--------------
news
--------------*/

/* archive */

div.archiveSec {
    width: var(--width-85);
    margin: 0 auto;
}

div.archive-list {
    padding-bottom: var(--space-20);
    border-bottom: 1px solid rgba(234, 230, 205, 0.3);
    margin-bottom: var(--space-20);
}

div.archive-list h3 {
    margin-top: 5px;
}

div.archive-nav {
    display: flex;
    justify-content: space-between;
}

/* single */

p.single-days {
    margin-left: 7.5%;
}

div.singleSec h3 {
    line-height: 1.6;
    padding: 5px 7.5% 15px 0;
}

div.single-text p, div.single-text img {
    margin-bottom: var(--space-20);
}

div.single-text p:last-child {
    margin-bottom: 0;
}

div.single-text strong {
    font-weight: var(--font-bold);
}

div.single-text a {
    font-weight: var(--font-bold);
    text-decoration: underline;
}

div.singleSec div.ViewMore {
    width: var(--width-85);
    margin: 0 auto;
    padding-top: var(--space-40);
    text-align: center;
}


/*--------------
404
--------------*/

section.page404 {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-Cream);
    z-index: 10;
}

div.page404-container {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-Brown);
    text-align: center;
}

div.page404-container h2 {
    font-size: 70px;
    line-height: 1;
}

p.page404-text {
    font-size: 14px;
    margin: 30px 0;
}

p.page404-button a {
    max-width: 200px;
    margin: 0 auto;
    display: block;
    color: var(--color-Cream);
    background-color: #4f2a1a;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 14px;
}

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

    div.page404-container h2 {
        font-size: 100px;
    }

    p.page404-text {
        font-size: 20px;
        margin: 40px 0;
    }

    p.page404-button a {
        font-size: 18px;
    }

}


/*--------------
footer
--------------*/

div.footer-container {
	color: #4f2a1a;
}

div.footer-inner {
	width: var(--width-85);
	margin: 0 auto;
	padding-top: 80px;
}

/* ご予約について */

#reservation {
    padding: 30px 0;
    border: 1px solid var(--color-Brown);
    border-radius: 20px;
    margin-bottom: 50px;
}

div.topReservation-inner {
    width: var(--width-85);
    margin: 0 auto 20px;
}

div.topReservation-inner:last-child {
	margin-bottom: 0;
}

#reservation h2 {
    text-align: center;
    font-size: var(--font-16px);
    font-weight: var(--font-bold);
    margin-bottom: 15px;
}

div.topReservation-inner h3 {
    width: 100%;
    padding: 8px 0;
    border-radius: 10px;
    font-size: var(--font-14px);
    font-weight: var(--font-bold);
    text-align: center;
    background-color: var(--color-Brown);
    color: var(--color-Cream);
}

p.topReservation-text {
    margin-top: 10px;
    font-size: var(--font-12px);
    text-align: center;
}

p.topReservation-link a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

p.topReservation-link a span.tel-deco {
    width: 16px;
}

p.topReservation-link a span.tel-link {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
    padding-bottom: 5px;
}

/* footer-info */

div.footer-info {
	position: relative;
}

div.footer-logo {
    width: 140px;
    margin-bottom: 30px;
}

ul.footer-registration {
    margin: 30px 0 25px;
}

ul.footer-registration li {
    line-height: 2.1;
}

div.footer-list dl {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

div.footer-list dl dt {
    width: 50px;
    line-height: 1;
}

div.footer-list dd {
	width: calc(100% - 75px);
    font-size: var(--font-12px);
    text-decoration: none; /* 下線を消す */
}

div.footer-list dd a {
    text-decoration: none; /* リンクの下線も消す */
}

div.footer-instagram {
	width: 26px;
	position: absolute;
	right: 0;
	bottom: 0;
}

div.footer-map {
    width: 100%;
    height: 200px;
    margin-top: 30px;
}

div.footer-map iframe {
    width: 100%;
    height: 100%;
}

p.footer-copy {
    font-size: 12px;
    text-align: center;
    padding: 30px 0;
}

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

    div.footer-logo {
        width: 190px;
    }

    ul.footer-registration li {
        font-size: 13px;
    }

    div.footer-list dl {
        gap: 25px;
        margin-bottom: 10px;
    }

    div.footer-list dl:nth-child(4) {
        margin-bottom: 13px;
    }

    div.footer-list dl dt {
        width: 55px;
    }

    div.footer-list dl dd {
        width: calc(100% - 85px);
        font-size: 13px;
    }

    div.footer-instagram {
        width: 24px;
        right: 10px;
    }

    div.footer-map {
        height: 215px;
    }

}