
/* ------------------------------------- */
/* ------------------PC/SP表示・非表------------------- */
.u-desktop {
    display: none;
}
.u-mobile {
    display: block;
}
@media (min-width: 768px) {
    .u-mobile {
        display: none;
    }
    .u-desktop {
        display: block;
    }
}



/* ------------------------------------- */
/* ------------------セクションタイトル------------------- */
.section-title__main{
    font-size: clamp(20px,4vw,70px);
}
.section-title{
    position: relative;
    line-height: 1.2;
    display:flex !important;
    flex-direction: column-reverse;
    align-items: flex-start;
    display:inline-block;
}
.section-title span{
    font-size: clamp(15px,2.5vw,20px);
    color: #747474;
    font-family: "Prompt", system-ui;
}
@media (min-width: 768px) {
        .section-title{
            gap: clamp(1rem,2vw,20px);
            line-height: 1;
            max-width: 100%;
            align-items:end;
        }
}

/* ------------------------------------- */
/* ------------------タイトルボーダー------------------- */

.right-border{
    position: relative;
    padding-right: min(280px,17vw);
    text-align: right;
    flex-wrap: wrap-reverse;
}
.right-border:before{
    content: "";
    position: absolute;
    top: 50%;
    right:0;
    background-color: #333;
    transform: translateY(-50%);
    width: 16vw;
    height: 1px;
}

.left-border{
    position: relative;
    padding-left:min(280px,17vw);

}
.left-border:before{
    content: "";
    position: absolute;
    top: 50%;
    left:0;
    background-color: #333;
    transform: translateY(-50%);
    width: 16vw;
    height: 1px;
}
@media (min-width: 768px) {
    .right-border{
        flex-direction: row;
        justify-content: flex-end;
        display:flex;
    }
    .left-border{
        display:flex;
        flex-direction: row !important;
        align-items: end;
    }
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーTOPメッセージアニメーションーーーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.char {
    transform: translateY(140px);
    transition: transfrom 0.5s;
  }

  #textAnime {
    color: #555555; /*お好きなフォントカラーを選んでください*/
    font-size: clamp(30px, 4.5vw, 50px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

/* ------------------------------------- */
/* ------------------幅ー------------------- */

.l-inner {
    max-width: 960px;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}


/* ------------------------------------- */
/* ------------------TOP------------------- */
.top{
   position: relative;
   z-index: -1;
   width: 100%;
   margin-top:-224px
}
.top-left figure, .top-right figure {
    margin: 0;
    position: relative;
    width: 300px; /* 画像の幅 */
    height: 250px; /* 画像の高さ */
}

.top-left figure img, .top-right figure img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;  /* フェードアニメーション */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-left figure img.active, .top-right figure img.active {
    opacity: 1;  /* 表示される画像 */
}

.top-left figure img.hidden, .top-right figure img.hidden {
    opacity: 0;  /* 非表示状態の画像 */
}
.hidden {
    opacity: 0;
    transition: opacity 2s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.active {
    opacity: 1;
    transition: opacity 2s ease;
}

.top-left figure
.top-right figure {
    position: relative;
}

.top-message{
    margin-top: 74px;
    position: relative;
    z-index: 2;
    line-height: 60px;
    color: #555555;
}
.top-message__text{
    overflow: hidden;
    transform:translateY(-100%);
}
.top-message__text-anime {
    opacity: 0;
    transform: translateY(100px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    visibility: hidden;
    line-height: 50px;
  }
  
  .top-message__text-anime.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: 2s;
  }
  
.top-message__scroll{
    width: 5%;
}
.top-message__scroll{
    position: relative;
    display: inline-block;
    background-color: transparent;  /* 背景は透明 */
}

.top-message__wrapper{
    display:flex;
    flex-direction: column-reverse;
    gap: clamp(1rem,.5vw,40px);
    padding:1rem;
}
.top-message__scroll img{
    position: relative;
    object-fit: contain;
}
.top-message__scroll::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 1px; /* 線の幅 */
    height: 100px; /* 線の高さ */
    background-color: #666; /* 線の色 */
    transform-origin: bottom;  /* 上から下に伸びる */
    animation: scroll-line 2s infinite; /* 線のアニメーション */
    transform: rotate(-180deg);
}

.top-message__scroll::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 6px; /* 矢印の幅 */
    height: 6px; /* 矢印の高さ */
    border-left: 1px solid #666; /* 矢印の細い線 */
    border-bottom: 1px solid #666; /* 矢印の細い線 */
    animation: scroll-arrow 2s infinite; /* 矢印のアニメーション */
    transform: translateX(-42%) rotate(-45deg);
}


.top-message__text span {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.5s forwards, color-change 2s linear infinite; /* フェードインと色変化のアニメーションを適用 */
    margin-right: 2px;
}
.top-message__pc{
    display:none;
}
.top-message__sp{
    display:block;
    margin-top: 20px;
}
.top-right figure{
    margin-left: auto;
}
.top-right {
    margin-top: -150px;
}
@media (min-width: 768px) {
    .top-message__sp{
        display:none;
    }
    .top-message__pc{
        display:block;
    }
    .top-message__wrapper{
        flex-direction: row;
        margin-left: clamp(3rem,3.5vw,80px);
    }
}


/* フェードインアニメーション */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* カラー変化アニメーション */
@keyframes color-change {
    0%, 100% {
        color: #555555;
    }
    25% {
        color: #7fff00;
    }
    50% {
        color: #0091EA;
    }
    75% {
        color: #9400d3;
    }
}

/* 線が上から下に移動しながら消えるアニメーション */
@keyframes scroll-line {
    0% {
        height: 0;
        opacity: 1;
    }
    50% {
        height: 100px; /* 線が下に伸びる */
        opacity: 1;
    }
    100% {
        height: 100px;
        opacity: 0; /* 線が消える */
    }
}
/* 線が上から下に移動しながら消えるアニメーション */
@keyframes scroll-line02 {

    0% {
        height: 60%;
        opacity: 1;
    }
    50% {
        height: 10%;
    }
    100% {
        height: 0%;
        opacity: 0; /* 最後に消える */
    }
}


/* 矢印が線と一緒に移動するアニメーション */
@keyframes scroll-arrow {
    0% {
        bottom: -90px;
        opacity: 1;
    }
    50% {
        bottom: -110px; /* 下に移動 */
        opacity: 1;
    }
    100% {
        bottom: -110px;
        opacity: 0; /* 矢印が消える */
    }
}
@keyframes scroll-arrow02 {
    0% {
        bottom: 100px;
        opacity: 1;
    }
    50% {
        bottom: -146px; /* 下に移動 */
        opacity: 1;
    }
    100% {
        bottom: -200px;
        opacity: 0; /* 矢印が消える */
    }
}

@media screen and (min-width: 768px) {
    @keyframes scroll-line02 {
        0% {
            height: 60%;
            opacity: 1;
        }
        50% {
            height: 10%;
        }
        100% {
            height: 0%;
            opacity: 0; /* 最後に消える */
        }
    }
    .top__wrapper {
        display: flex;
        justify-content: space-between;
        gap: clamp(3rem, 5.5vw, 80px);
        position: relative;
    }
    
    .top-left {
        width: 50%;
        align-self: flex-start;  /* 左側の画像を一番上に固定 */
    }
    
    .top-right {
        width: 50%;
        align-self: flex-start;  /* 右側の画像も最上部に */
        position: relative;
        top: 240px;  /* 右側の画像を上部から240px離す */
        margin-top:unset;
    }
    
    .top-left figure, .top-right figure {
        width: 100%;
        height: 100%;
        aspect-ratio: 680 / 570;  /* アスペクト比を固定 */
    }
    
}
@media (max-width: 768px) {
    .top{
        margin-top: -122px;
    }
}
@media (min-width: 567px) {
    .top{
        margin-top: -112px;
    }
}
@media (max-width: 485px) {
    .top{
        margin-top: -154px;
    }
}
@media (max-width: 436px) {
    .top{
        margin-top: -184px;
    }
}
@media (max-width: 400px) {
    .top{
        margin-top: -215px;
    }
}

#scroll-container {
    /* position: absolute; */
    width: 100%;
  }

  #luxy {
    position: fixed; /* PC 用 */
    width: 100%;
    
}

@media (max-width: 768px) {
    #luxy {
        position: relative; /* スマートフォン用 */
    }
}
/* ---------------------------------------------------- */
/* ------------TOPへお問い合わせ----------------------- */
/* ---------------------------------------------------- */
.contact-fixed{
    display:flex;
    gap: 20px;
    position: fixed;
    top: unset;
    bottom: 0;
    right: 0;
    z-index: 99;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    /* max-width: 60px; */
}
.top-contact__body{
    position: relative;
    max-width: 200px;
    width: 100%;
    transition: .75s;
    z-index: 99;
}
.top-contact__body a{
    max-width: 60px;
}
.top-contact__body:hover{
    opacity: .6;
}
.top-contact__body span{
    color: white;
    writing-mode: vertical-rl; /* テキストを縦書きに設定 */
    text-orientation: upright;  /* 文字を上下に表示 */
    display: inline-block;
}
.contact-insta{
    background-color: #967137;
}
.contact-tel{
    background-color: #234455;
}
.top-contact__body a img{
    object-fit: cover;
}
.p-contact-wrapper__text{
    text-align: center;
}
@media screen and (min-width: 768px) {
    .top-contact__body{
        max-width: 80px;
    }
    
}
@media screen and (min-width: 500px) {
    .top-contact__body{
        max-width: 60px;
    }
    .contact-fixed{
        bottom: unset;
        top: 105px;
        flex-direction: column;
        align-items: end;
        max-width: 60px;
    }
    .top-contact__body a img{
        height: 200px;
    }
}



/* ------------------------------------------------ */
/* ----------------------family---------------------- */
/* ------------------------------------------------ */
.l-family{
    margin-top: 50px;
    padding-bottom: 80px;
}

.p-family_card img{
    object-fit: contain;
    height: auto;
}
.p-family__wrapper{
    position: relative;
    background-color:unset;
}
.p-family_card01{
    position: relative;
}
.p-family_card01:after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 104%;
    transform: translate(-50%, -50%);
    background-color: #333;
    z-index: -1;
}
.p-family__wrapper:before{
    content:none;
}
.p-family__wrapper__arrowBottom{
    position: relative;
    
}
.family-card01--line{
    position: relative;
}

.family-card01--line:after{
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    animation: scroll-arrow 3s infinite;
    transform: translateX(-42%) rotate(-45deg);
}

.p-family__wrapper__arrowBottom > .family-card01{
    position: relative;
}

.family-card02 {
    padding:20px 1rem 16px  !important;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #222222B8;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease; 
    color: white;
    padding: 1rem;
    z-index: 10;
    /* pointer-events: none; */
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
}
.family-card02 a{
    background-color: white;
    padding: .5rem;
    display:inline-block;
    position: relative;
    color: #333;
    text-decoration: none;
    max-width: 140px;
    width: 100%;
    transition: .6s;
    line-height: 1;
    font-size: 14px;
}
.family-card02 a:hover{
    background-color: #333;
    color: #fff;
}
.family-card02 p{
    display:none;
}

.family-card01{
    position: relative;
    transition: .7s;
}
.family-card01:hover .family-card02 {
    opacity: 1;
    visibility: visible;
}

.p-family_card h3{
    font-size: 2.25rem;
}
.p-family__btn{
    text-align: center;
    margin-top: 30px;
}
.p-family__cards {
    /* display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    grid-auto-rows: 1fr;
    justify-content: center;
    gap: clamp(1.5rem, 2.5vw, 40px); */
    margin-top: 25px;
  }
  .p-family__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .p-family__card h3 {
    text-align: center;
    margin-top: 10px;
  }
  .p-family__containers{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 2.5vw, 40px);
    position: relative;
  }
  .p-family__containers:nth-child(2){
    margin-top: 40px;
    position: relative;
  }
  .p-family__containers:nth-child(2):before{
    content: '';
    position: absolute;
    bottom: -14%;
    left: 50%;
    width: 1px;
    height: auto;
    background-color: #666;
    animation: scroll-line02 1.5s infinite ease;
    transform: translateX(-50%) rotate(-180deg);
  }
  .p-family__containers:nth-child(2):after{
    content: '';
    position: absolute;
    top: 112%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    animation: scroll-arrow02 1.5s infinite ease-in-out;
    transform: translateX(-50%) rotate(-45deg);
  }
  @media (max-width: 768px) {
    /* .p-family__cards {
      grid-template-columns: repeat(2, 180px);
      grid-auto-rows: 180px;
    } */
  }
  .p-family__containers:nth-child(2):before{
    height: 55%;
  }

.p-family__item h3{
    font-size: clamp(2rem,4vw,2rem);
}

.color01::first-letter{
    color:orange;
}
.color02::first-letter{
    color:rgb(122, 122, 241);
}
.color03::first-letter{
    color:rgb(236, 106, 210);
}
.color04::first-letter{
    color:pink;
}
.color05::first-letter{
    color:yellow;
}
.p-family__item.hover {
    opacity: 1;
    transform: translateY(0);
}


.p-family__item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* width: 170px; */
    height: auto;
    margin:auto;
}

.p-family__body{
    position: relative;
}
.p-family__body:before{
    content: "";
    display:inline-block;
    background-image: url(../img/pc/child/child-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 172px;
    position: absolute;
    top: 60%;
    left:0;
    transform: translateY(-50%);
    background-color: #7B7B7B;
}
.p-family__content{
    position: relative;
    background-color: unset;
    margin:auto;
}

.p-family__content:before{
    content: none;
}
.family-card02__radius{
    border-radius: 40px;
}
.p-child__bt{
    text-align: center;
    margin-top: 2rem;
}
.p-child__btn{
    margin-top: 30px;
    text-align: center;
}
.family-card02 h3{
    font-size: clamp(1.5rem,2.7vw,36px);
    text-align: center;
}
.p-family__title{
    text-align: right;
}
.p-family__item:hover{
    opacity: .7;
}
.family-item{
    padding:40px 20px 20px;
}
.family-item p{
    display:none;
}
.family-card02__inner{
    display:flex;
    flex-direction: column;
    justify-content: center;
}
.p-family__item{
    max-width: 180px;
    width: 100%;
    margin: auto;
}
@media (min-width: 768px) {
   
    .family-card02 a{
        padding: .7rem .65rem .7rem .65rem;
        max-width: 180px;
        line-height: 1.8;
        font: 1rem;
    }
    .p-family__item{
        max-width: 100%;
    }
    .p-family__btn{
        margin-top: 60px;
    }
    .family-card02 h3{
        text-align: left;
    }
    .p-family__item img {
        max-width: 100%; /* 幅を親要素に合わせる */
        height: auto; /* 自動で高さを調整 */
        object-fit: contain; /* 画像のトリミング */
        /* width: clamp(170px,25vw,400px); */
        height: 100%;
        margin:auto;
    }
   
    .p-family__container{
        display:flex;
        flex-wrap: wrap;
    }
    .p-family__body:before{
        height: 506px;
    }
    
    .family-card02.p-family_card {
        padding:80px 4.3rem 20px  !important;
    }
    
    .family-wrapper{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }   
    .p-family_card img{
        object-fit: cover;
    }

    .p-family__items{
        display:flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
        width: 100%;
        margin: auto;
    }
    .p-family__content{
       width: 26vw;
    }
   
    .p-family__childWrapper{
        display:flex;
        justify-content: center;
        gap:clamp(3rem,4vw,70px)
    }
}

/* 768px以下の無限スクロール */
@media (max-width: 768px) {
    .p-family__items {
        display: flex;
        overflow: hidden; /* コンテンツがはみ出ないように */
        position: relative;
    }

    .p-family__items .family-container {
        height: 400px;
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        animation: scroll 20s linear infinite; /* スクロール速度を20秒に設定 */
    }

    .p-family__content {
        flex: 0 0 auto;
        /* width: calc(100% / 2); 2枚のカードを横並びに */
    }
    
    .family-card02{
        display:flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (min-width: 900px) {
    .family-item p{
        display:block;
    }
}
@media (min-width: 1100px) {
    .p-family_card p{
        display:block;
    }
    .family-card02{
        padding:25px 4.3vw 50px  !important;
    }
    .p-child__btn{
        margin-top: 60px;
    }
    .family-card02 a:before{
        content: "";
        position:absolute;
        right: -42px;
        top: 0;
        width: 50px;
        height: 48px;
        background-color: #333;
    }
    .family-card02 a span:before{
        content: "";
        display: inline-block;
        width: 20px;
        height: 3px;
        position: absolute;
        top: 50%;
        right: -25px;
        background-color: #fff;
        transition: .6s;
    }
    .family-card02 a span:after{
        content: "";
        display: inline-block;
        width: 3px;
        height: 20px;
        position: absolute;
        top: 35%;
        right: -17px;
        background-color: #fff;
        transition: .6s;
    }
    .family-card02 a:hover:before{
        background-color: #fff;
    }
    .family-card02 a:hover span:before {
        background-color: #333;
    }
    
    .family-card02 a:hover span:after {
        background-color: #333;
    }
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ------ーーーーーーーーー------サムネイルスライダー */
.p-family__modalArea{
    max-height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
}

 .p-family__modalArea-inner{
    max-width: 1290px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #474747E0;
    border-radius: 40px;
    padding-top: 86px;
    padding-bottom: 80px;
    overflow: hidden;
    margin: auto;
    position: relative;
    max-height: 100%;
    overflow-y: auto; 
 }

.modal-closeBtn{
    position: absolute;
    top: 50px;
    right: 0px;
    color: #fff;
   
}

.line1{
    width: 36px;
    height: 1px;
    background-color: #fff;
    display:inline-block;
    transform: rotate(45deg);
}
.line2{
    width: 1px;
    height: 36px;
    background-color: #fff;
    display:inline-block;
    transform: rotate(45deg);
}

.p-thumbnailBtn{
    margin-top: 48px !important;
}

.slide__content--info{
    display:flex;
}
.slide__content--info dt{
    width: 100px;
}
.slide__content--info dd{
    width: 70%;
}
.slide__content dl{
    color: #fff;
}
.slide__content{
    margin-top: 1rem;
}
.modal-swiperImg{
    /* max-width: 150px; */
    width: 100%;
}


@media (min-width: 768px) {
    .modal-swiperImg{
        /* max-width: 350px; */
    }
    .slide__content{
        margin-top: 30px;
    }
    .modal-closeBtn{
        top: 50px;
        right: 3px;
    }
}
/* -------------------------------------------------- */
/* ------------------------feature-------------------------- */
/* -------------------------------------------------- */
.l-features{
    margin-top: 50px;
}
.p-feature__title{
    justify-content: flex-start;
    /* flex-direction: row-reverse; */
}
.p-feature__inner{
    max-width: 1100px;
    margin: auto;
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
}


.slide__image {
    object-fit: cover;
    /* max-width: 400px; */
    margin: auto;
}
.p-feature__inner {
    padding-top: 32px;
}

@media (min-width: 768px) {
    .l-features{
        margin-top: 100px;
    }
    .p-feature__inner {
        padding-top: 42px;
    }
    .p-family__modalArea-inner{
        padding-top: 70px;
    }
}

/* ------------------------------------- */
/* -----------------------flow-------------- */
/* ------------------------------------- */
.l-flow{
    margin-top: 50px;
}
.p-flow__inner{
    padding-right: 20px;
    padding-left: 20px;
}

.p-flow__item.visible {
    opacity: 1;
    transform: translateY(0);
}

.p-flow__item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.p-flow__body{
    background-color: #7B7B7B;
    color: #fff;
    padding:1.5rem 3.5rem;
    position: relative;
    z-index: -1;
}

.p-flow__item--revers img{
    margin-right: 0;
}
.p-flow__item--revers{
    flex-direction: column-reverse;
}
.p-flow__item figure{
    margin-right: auto;
    margin-bottom:-24px;
}
.p-flow__item--revers figure{
    margin-left: auto;
    margin-right: unset !important;
}

.p-flow__body p{
    font-size: clamp(15px,1.5vw,18px);
    line-height: 30px;
}
.p-flow__body h3 span{
    font-size: clamp(30px, 4vw,70px);
}
.p-flow__body h3{
    font-size: clapm(24px,3vw,30px);
}
.p-flow__item{
    margin-top: 30px;
}
.p-flow__item img{
    width: 300px;
    height: 200px;
}

@media (min-width: 768px) {
    .l-flow{
        margin-top: 150px;
    }
    .p-flow__item figure{
        margin-bottom: 0;
    }
    .p-flow__item--revers .p-flow__body{
        margin-left:-46px
    }
    .p-flow__inner{
        max-width: 1170px;
        width: 100%;
        margin: auto;
    }
    .p-flow__body p{
        line-height: 50px;
    }
    .p-flow__item img{
        width: 465px;
        height: auto;
    }
    .p-flow_wrapper{
        margin-top: 100px;
    }
    .p-flow__item:nth-child(n + 1){
        margin-top: 70px;
    }
    .p-flow__item{
        flex-direction: row;
    }
    .p-flow__body{
        width: 65%;
        max-width: 718px;
        padding:3.5rem 7rem;
    }
    .p-flow__item--revers{
        flex-direction:row-reverse;
    }
    .p-flow__item figure:nth-of-type(odd) {
        margin-left: -46px;
    }
    .p-flow__item--revers figure {
        margin-right: -23px;
        margin-left:unset !important;
    }
}

/* ------------------------------------------------- */
/* ---------------Dogkennel---------------------------------- */
/* ------------------------------------------------- */
.l-dogkennel{
    margin-top: 50px;
}
.p-dogkennel__wrapper{
    margin-top: 30px;
}
.p-dogkennel__inner{
    padding-right: 20px;
    padding-left: 20px;
}
.p-dogkennel__wrapper figure img{
    object-fit: contain;
    aspect-ratio: 300 / 200;
    height: auto;
}
.p-dogkennel__body figure{
    margin: auto;
}
.p-dogkennel__body p{
    font-size: clamp(15px,2.3vw,18px);
    line-height: 30px;
}
.p-dogkennel__body figure img{
    max-width: 100px;
    width: 100%;
    height: 76px;
    margin: auto;
}

@media (min-width: 768px) {
    .p-dogkennel__inner{
        max-width: 1250px;
        margin: auto;
    }
    .l-dogkennel{
        margin-top: 150px;
    }
    .p-dogkennel__wrapper{
        margin-top: 122px;
        display: flex;
        gap: clamp(1.5rem,3vw,52px);
    }
    .p-dogkennel__wrapper figure{
        width: 67%;
    }
    .p-dogkennel__body{
        width: 30%;
    }
    .p-dogkennel__body p{
        line-height: 45px;
    }
    .p-dogkennel__body figure img{
        max-width: 174px;
        width: 100%;
        height: 124px;
    }
}

/* -------------------------------------------- */
/* ---------------information---------------------------- */
/* -------------------------------------------- */
.p-information__title.section-title{
    flex-direction: column-reverse;
    display:flex;
}
.p-information__content{
    background-color: #fff;
    padding: 50px min(7vw,70px) 80px;
}

.p-infomration__bwrapper dt{
    max-width: 260px;
    margin: auto;
}

.p-infomration__bwrapper{
    text-align: center;
    font-size:clamp(15px,2vw,18px);
}
.p-infomration__bwrapper:nth-child(n + 2){
    margin-top: 15px;
    margin-bottom: 15px;
}
.p-infomration__bwrapper dd:nth-child(n + 2){
    margin-top: 10px;
}

.p-information__access{
    margin-top: 35px;
}
.p-information__title{
    margin: auto;
    text-align: center;
    align-items: center;
}
.p-information__body{
    margin-top: 30px;
    font-family: "Prompt", sans-serif;
}
.p-information__body dl{
    font-size: clamp(15px, 2.3vw, 18px);
}
.p-infomration__bwrapper dt{
    background-color: #D9D9D9;
    color: #3C3C3C80;
    text-align: center;
}
.p-infomration__bwrapper:last-child dt{
    margin-top: 0;
}
.p-information__access iframe{
    aspect-ratio: 300 / 200;
}
.p-information__access {
    position: relative;
    overflow-y: hidden;
    width: 100%;
    padding-top: 75%;
  }
  
  .p-information__access iframe {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: calc(100% + (150px * 2));
  }
 .l-information{
    margin-top: 50px;
 }

 .p-infomration__bwrapper-small{
    font-size: 10px;
 }
 .p-infomration__dtTitle{
    text-align: center;
 }
 .p-infomration__ddTitle{
    text-align: center;
 }
 .p-infomration__message{
    text-align: left;
 }
 @media (min-width: 768px) {
    .p-infomration__message{
       margin-bottom: 15px;
    }
    .p-infomration__bwrapper{
        border-bottom: 1px solid #3C3C3C;
        text-align: left;
    }
    .p-infomration__bwrapper dt{
        width: 30%;
        background-color: unset;
        text-align: left;
        color: #333;
    }
    .p-infomration__bwrapper dd{
        width: 70%;
        text-align: left;
    }
    
    .l-information{
        margin-top: 150px;
    }
    .p-information__access{
        margin-top: 58px;
    }
    .p-infomration__bwrapper{
        display: flex;
    }
    .p-infomration__bwrapper dd:nth-child(n + 2){
        margin-top: unset;
    }
}

/* -------------------------------------------- */
/* --------------お問い合わせボタンエリア------------------------------ */
/* -------------------------------------------- */
.p-contactArea a span{
    display:inline-block;
    padding-left: clamp(40px,6vw,62px);
    position: relative;
    font-size: clamp(14px,2vw,20px);
}
.p-contactArea a span:before{
    content:"";
    display:inline-block;
    width: 24px;
    height: 18px;
    background-image:url(../img/pc/icon/mail.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.p-contactArea a{
    display: inline-block;
    padding: 20px min(4vw,80px);
    background-color: #717171;
    border-radius: 4px;
    color: #fff;
}
.p-contactArea a:hover{
    opacity: .7;
}
.p-contactArea{
    margin-top: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .p-contactArea{
        margin-top: 100px;
    }
    .p-contactArea a span:before{
        width: 37px;
        height: 30px;
    }
}

/* ------------------------------------- */
/* ------------Instagram------------------------- */
/* ------------------------------------- */
.l-Instagram{
    margin-top: 50px;
}

.p-instagram__inner{
    max-width: 1200px;
    padding-right: 20px;
    padding-left: 20px;
    margin: auto;
}

/* .p-instagram__items { */
    /* margin-top: 25px; */
    /* display:grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); カードの幅を120pxに調整 */
/* } */

.p-instagram__item a img{
    height: auto;
    aspect-ratio: 255 / 255;
}
.p-instagram__title{
    display:flex;
    flex-direction: column;
}
.p-instagram__item{
    transition: .7s;
}
.p-instagram__item:hover{
    opacity: .7;
}
.p-instagram__items {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); カードの幅を255pxに固定し、画面幅に応じて自動調整 */
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: clamp(20px, 5vw, 30px) clamp(20px, 5vw, 46px);
    justify-content: center;
    margin-top: 30px;
}

.p-instagram__item:nth-child(n + 7){
    display:none;
}

/* スマートフォンで2行3列にする */
@media (min-width: 768px) {
    .p-instagram__title{
        flex-direction: column-reverse;
    }
    .p-instagram__inner{
        max-width: 1200px;
        margin: auto;
    }
    .l-Instagram{
        margin-top: 134px;
    }
   
    .p-instagram__items {
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); カードの幅を255pxに固定し、画面幅に応じて自動調整 */
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: clamp(20px, 5vw, 30px) clamp(20px, 5vw, 46px);
        justify-content: center;
        margin-top: 70px;
    }
    
    .p-instagram__item {
        width: 100%; /* グリッドの幅に合わせてサイズを調整 */
    }
    .p-instagram__item:nth-child(n + 7){
        display:block;
    }
}

/* ---------------------------------------------------- */
/* ------------------contact---------------------------------- */
/* ---------------------------------------------------- */
.contact-form{
    max-width: 535px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-form__list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}
.contact-form__wrapper{
    display:flex;
    margin-top: 20px;
    gap: 5px;
    line-height:1.3
}
.contact-form__wrapper label,
.contact-form__wrapper p{
    font-size: 15px;
}
.contact-form__item {
    margin-bottom: 10px;
}
.contact-form__item__column > .contact-form__wrapper{
    display:flex;
    flex-direction: column;
}
.contact-form__item p{
    text-align: left;
}
.contact-form__item h3{
    font-size: 15px;
}
.contact-form__label{
    font-size: 15px;
    justify-content: center;
}
.contact-form__label {
    margin-bottom: 5px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.contact-form__label span{
    display:inline-block;
    background-color: red;
    font-size: 10px;
    padding:2px 10px;
    color: white;
}
.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #EDEDED;
}

.contact-form__textarea {
    height: 100px;
}

.contact-form__submit {
    background-color: #717171;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    max-width: 295px;
    width: 100%;
    font-size: 1rem;
}

.contact-form__submit:hover {
    background-color: #0056b3;
}
/* チェックボックスのコンテナ */
.contact-form__checkbox {
    display: flex;
    align-items: center;
    margin-top: 10px;
    flex-direction: column;
    align-items:flex-start;
}
.contact-form__checkbox p{
    display:flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.contact-form__checkbox p span{
    display: inline-block;
    background-color: red;
    font-size: 10px;
    padding: 2px 10px;
    color: white;
}
.contact-form__checkbox--noflex{
    flex-direction: row;
}
.contact-form__checkbox input[type="checkbox"] {
    /* display: none; デフォルトのチェックボックスを非表示に */
}

/* カスタムチェックボックスのラベル */
.custom-checkbox-label {
    position: relative;
    padding-left: 8px;
    cursor: pointer;
    font-size: 14px;
    user-select: none; /* テキスト選択を無効に */
}

/* チェックが入った時のスタイル */
.contact-form__checkbox input[type="checkbox"]:checked + .custom-checkbox-label:after {
    display: block; /* チェック時にレ点を表示 */
}
.contact-form__checkbox input{
    width: 15px;
    height: 15px;
}
.contact-info__textArea{
    background-color: #EDEDED;
    font-size: 12px;
    text-align: left;
    padding:8px 5vw 8px 10px
}
.l-contact{
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #fff;
}
.p-contact__title{
    align-items: center;
}
.p-contact__wrapper{
    margin-top: 30px;
    font-size: clamp(12px,2vw,1rem);
}

.contact-form__item--red{
    color: red;
    text-align: left !important;
}
.contact-form__itemBtn{
    text-align: center;
    margin-top: 36px;
}
@media (min-width: 768px) {
    .contact-form__item__column{
        display:flex;
        flex-direction: row;
        flex-direction: column;
    }
    .contact-form__label{
        justify-content: flex-start;
    }
    .contact-form__wrapper{
        flex-direction: row !important;
    }
    .contact-form__item{
        margin-top: 42px;
    }
    .l-contact{
        margin-top: 150px;
        background-color: #fff;
        max-width: 984px;
        margin: 150px auto 86px;
        padding-bottom: 86px;
        padding-top: 50px;
    }
    .p-contact__title{
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }
    .p-contact__wrapper{
        margin-top: 30px;
        text-align: left;
    }
    .contact-form__list{
        margin-top: 35px;
    }
}


/* ===============================================
# ロゴアニメーション
=============================================== */
.opening{
    width: 100%;
    height: 100vh;
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.opening__mask{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #E9E9E9;;
    z-index: 102;
}
.opening__logo{
    display: block;
    width: 140px;
    height: 140px;
    z-index: 103;
    clip-path: inset(0 100% 0 0);/*予め切り取り*/
    transform: scale(1.1);/*予め大きくしておく*/
    opacity: 0;/*予め透明に*/
    object-fit: contain;
}
.zIndex{
    z-index: 0;
    visibility: hidden;
}

@media (min-width: 768px) {
    .opening__logo{
        display: block;
        width: 200px;
        height: 200px;
    }
}