:root {
    --brown: #644E4E;
    --yellow: #EFCB6F;
    --yellow-alpha: rgba(250, 233, 201, 0.3);
    --salmon-pink: #FFA77D;
    --salmon-pink-alpha: rgba(255, 167, 125, 0.3);
    --red: #ED3F3F;
    --gray: #E5DEDB;
    --white: #FFFFFF;
    --bg-pink: #FEF5EF;
}

:root {
    --large-font-size: 1.8rem;
    --medium-font-size: 1.6rem;
    --normal-font-size: 1.4rem;
}

.bg-salmon-pink {
    background-color: var(--salmon-pink);
}

.bg-yellow {
    background-color: var(--yellow);
}

@media screen and (min-width: 769px) {
    :root {
        --large-font-size: 2.4rem;
        --medium-font-size: 2rem;
        --normal-font-size: 1.5rem;
    }
}

ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

.frame_outer {
    position: relative;
    top: 48px;
    overflow-x: hidden;
}

.ps-bg-new {
    background-color: var(--bg-pink);
}

.ps-new-container {
    margin: auto;
    padding: 0 6%;
}

.ps-content-header {
    position: relative;
    padding: 0 0 0.9em;
    margin: 0 0 2.5em;
    text-align: center;
}

.ps-content-header::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90px;
    height: 3px;
    content: "";
    background: var(--red);
    transform: translate(-50%);
}

.ps-row-header {
    font-weight: bold;
    padding: 1.05em 1.2em;
    border-radius: 12px;
    display: inline-block;
    position: relative;
    margin: 0 auto 1.5em;
}

.ps-row-header::after {
    content: "";
    background-color: inherit;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
    top: -12px;
    right: -12px;
}

.ps-index-header {
    font-size: var(--large-font-size);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    margin: 0 0 2em;
}

@media screen and (min-width: 769px) {
    .frame_outer {
        top: 62px;
    }
}

@media screen and (min-width: 1360px) {
    .frame_outer {
        top: 0;
    }

    .ps-bg-new {
        padding: 81px 0 0;
    }

    .ps-content-header {
        padding: 0 0 1.2em;
        margin: 0 0 3.5em;
    }

    .ps-content-header::after {
        width: 110px;
    }
}

/*--------------------  

common component

--------------------*/
.cta-btn {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    max-width: 270px;
    margin: auto;
    padding: 1.2em 1em;
    border-radius: 20px;
}

.cta-btn.btn-TypeA {
    background-color: var(--brown);
    border: solid 1px var(--brown);
    color: var(--white);
}

.cta-btn.btn-TypeA:hover {
    background-color: var(--white);
    color: var(--brown);
}

.cta-btn.btn-TypeB {
    background-color: var(--white);
    border: solid 1px var(--brown);
}

.cta-btn.btn-TypeB:hover {
    background-color: var(--brown);
    color: var(--white);
}

.cta-btn.btn-TypeC {
    background-color: var(--red);
    border: solid 1px var(--red);
    color: var(--white);
}

.cta-btn.btn-TypeC:hover {
    background-color: var(--white);
    color: var(--red);
}

.cta-btn.btn-TypeD {
    background-color: var(--white);
    border: solid 1px var(--red);
    color: var(--red);
}

.cta-btn.btn-TypeD:hover {
    background-color: var(--red);
    color: var(--white);
}

.cta-btn-s {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    max-width: 210px;
    margin: auto;
    padding: 0.9em 1em;
    border-radius: 12px;
    font-size: var(--normal-font-size);
}

.cta-btn-s.btn-TypeE {
    background-color: var(--brown);
    border: solid 1px var(--brown);
    color: var(--white);
}

.cta-btn-s.btn-TypeE:hover {
    background-color: var(--white);
    color: var(--brown);
}

.cta-btn-s.btn-TypeF {
    background-color: var(--white);
    border: solid 1px var(--brown);
}

.cta-btn-s.btn-TypeF:hover {
    background-color: var(--brown);
    color: var(--white);
}


/*--------------------  

header

--------------------*/
.l-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.l-header .header-logo {
    display: inline-block;
    width: 180px;
    margin: 0 20px;
}

.l-header .header-logo img {
    width: 100%;
}

.l-header .header-nav {
    background-color: var(--bg-pink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3px;
}

.l-header .header-sp-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.l-header .search-icon img {
    width: 27px;
}

.l-header .nav-open {
    background-color: var(--brown);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(1px);
}

.l-header .nav-open img {
    width: 27px;
}

.l-header .nav-open::after {
    content: "";
    background-color: var(--brown);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    bottom: -3px;
    right: -1px;
}

.l-header .header-pc-nav {
    display: none;
}

.l-header .global_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: none;
}

.l-header .global_nav.active {
    display: block;
}

.l-header :is(.global_nav,.overlay,.gnavi-inner,.gnavi-list-box) {
    height: 100svh;
    height: 100vh;
}

.l-header .global_nav .overlay {
    background-color: rgba(100, 78, 78, 0.5);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.l-header .global_nav .close-btn {
    position: absolute;
    top: 15px;
    left: -10px;
    transform: translateX(-100%);
}

.l-header .global_nav .gnavi-list-box {
    background-color: #FCF8F5;
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 50px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.2s ease-in-out;
}

.l-header .gnavi-list-box.slide-in  {
    transform: translateX(0); 
}

.l-header .global_nav .gnavi-box-primary {
    font-weight: bold;
    margin: 0 0 1.7em;
}

.l-header .global_nav .gnavi-menu a {
    display: inline-block;
    padding: 0.4em 0;
    margin: 0 0 0.7em;
}

.l-header .global_nav .user-menu {
    margin: 40px 46px 15px;
}

.l-header .global_nav .search-menu {
    margin: 0 35px;
    padding: 0 0 1em;
    border-bottom: solid 1px var(--brown);
}

.l-header .global_nav .search-menu img {
    margin-right: 13px;
}

.l-header .global_nav .gnavi-box-secondary {
    margin: 0 46px 20px;
} 

.l-header .global_nav .gnavi-box-forshop {
    background-color: var(--gray);
    padding: 43px 46px;
    border-radius: 0 0 0 50px;
    flex-grow: 1;
}

.l-header .global_nav .gnavi-box-forshop .forshop-ttl {
    font-weight: bold;
    font-size: var(--normal-font-size);
    margin: 0 0 1.2em;
    display: inline-block;
}

@media screen and (min-width: 769px) {
    
    .l-header .header-nav {
        padding: 0 10px 0 35px;
    }

    .l-header .header-logo {
        width: 215px;
        padding: 0;
    }

    .l-header .nav-open {
        width: 62px;
        height: 62px;
    }

    .l-header .nav-open::after {
        width: 22px;
        height: 22px;
        bottom: -6px;
        right: -1px;
    }

    .l-header .nav-open img,
    .l-header .search-icon img {
        width: 32px;
    }
}


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

    .l-header .header-nav {
        padding-top: 23px;
        padding: 23px 2.13% 0 2.6%;
        align-items: flex-start;
        background-color: transparent;
    }

    .l-header .header-logo {
        margin-top: 10px;
    }

    .l-header .header-sp-nav {
        display: none;
    }

    .l-header .header-pc-nav {
        display: block;
        font-weight: bold;
        font-size: var(--normal-font-size);
        background-color: var(--brown);
        border-radius: 20px;
        padding: 0.67em 1.1em;
        position: relative;
    }

    .l-header .header-pc-nav::after {
        content: "";
        background-color: var(--brown);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        position: absolute;
        top: -12px;
        right: -12px;
    }

    .l-header .header-pc-nav .nav-link {
        color: var(--white);
        display: inline-block;
        padding: 0.2em;
        transition: 0.2s;
    }

    .l-header .header-pc-nav .nav-link:hover {
        opacity: 0.8;
    }

    .l-header .header-pc-nav .login-link {
        background-color: #FCF8F5;
        border: solid 1px var(--white);
        border-radius: 12px;
        display: inline-block;
        padding: 0.45em 1.7em;
        transition: 0.2s;
    }

    .l-header .header-pc-nav .login-link:hover {
        background-color: var(--brown);
        color: var(--white);
        border: solid 1px #FCF8F5;
    }

    .l-header .header-pc-nav ul {
        display: flex;
        align-items: center;
        gap: 43px;
        padding-left: 1.5em;
    }
    
}

/*--------------------  

search menu

--------------------*/
.search-menu-wrap {
    position: fixed;
    width: 100%;
    height: 76%;
    bottom: 0;
    z-index: 99;
    /* display: none; */
}

.search-menu-wrap .close-btn {
    position: fixed;
    right: 2%;
    bottom: calc(76% + 5px);
    z-index: 1;
}

.search-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 78, 78, 0.5);
}

.search-menu-wrap a {
    transition: 0.2s;
}

.search-menu-wrap a:hover {
    opacity: 0.8;
}

.search-menu-wrap .main-tab-list {
    display: flex;
    border-bottom: solid 1px rgba(100, 78, 78, 0.5);
}

.search-menu-wrap .main-tab-list .tab {
    font-weight: bold;
    font-size: var(--normal-font-size);
    width: 170px;
    text-align: center;
    padding: 0.85em 0;
    background-color: var(--gray);
    color: rgba(100, 78, 78, 0.5);
}

.search-menu-wrap .main-tab-list .tab:hover {
    cursor: pointer;
}

.search-menu-wrap .main-tab-list .button-pet {
    border-radius: 12px 0 0 0;
}

.search-menu-wrap .main-tab-list .button-pet.-active {
    background: var(--yellow);
    color: var(--brown);
}

.search-menu-wrap .main-tab-list .button-shop {
    border-radius: 0 12px 0 0;
}

.search-menu-wrap .main-tab-list .button-shop.-active {
    background: var(--salmon-pink);
    color: var(--brown);
}

.search-menu-wrap .search-menu-content {
    background-color: var(--white);
    position: relative;
    padding: 2.5em 0 0;
    overflow-y: auto;
    height: 100%;
}

.search-menu-wrap .tab-panel {
    padding: 0 0 5.5em;
}

.search-menu-wrap .search-box {
    position: relative;
    width: 80%;
    margin: 0 auto 3.5em;
    max-width: 450px;
}

.search-menu-wrap .search-box input {
    width: 100%;
    background-color: #FCF8F5;
    border: solid 1px var(--brown);
    padding: 0.9em 1.2em;
}

.search-menu-wrap .search-box input::placeholder {
    font-size: var(--normal-font-size);
}

.search-menu-wrap .search-btn img {
    width: 27px;
}

.search-menu-wrap .search-box .search-btn {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}

.search-menu-wrap .sub-tab-list {
    /* border-top: solid 1px rgba(100, 78, 78, 0.5); */
    display: flex;
    font-size: var(--normal-font-size);
    font-weight: 500;
}

.search-menu-wrap .sub-tab-list .sub-tab.active {
    font-weight: bold;
    border-bottom: solid 3px var(--yellow);
}

.search-menu-wrap .sub-tab-list .sub-tab {
    width: calc(100% / 2);
    text-align: center;
    padding: 1em 0;
    transition: 0.2s;
}

.search-menu-wrap .sub-tab-list .sub-tab:hover {
    cursor: pointer;
    opacity: 0.8;
}

.search-menu-wrap .sub-tab-list .sub-tab:first-child {
    border-right: solid 1px rgba(100, 78, 78, 0.5);
}

.search-menu-wrap .search-pet-filters-wrap {
    padding: 0 0 5em;
}

.search-menu-wrap .search-content-ttl {
    padding: 0.95em 17px;
    background-color: var(--bg-pink);
    position: relative;
    border-top: solid 1px rgba(100, 78, 78, 0.5);
}

.search-menu-wrap .category-list-ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-menu-wrap .search-content-ttl h3 {
    font-size: var(--medium-font-size);
}

.search-menu-wrap .search-content-ttl .cta-all {
    font-size: var(--normal-font-size);
}

.search-menu-wrap .search-pet-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0.95em 50px 0.95em 17px;
    border-bottom: solid 1px rgba(100, 78, 78, 0.5);
    position: relative;
    font-size: var(--normal-font-size);
}

.search-menu-wrap .search-pet-list a .content-image {
    width: 45px;
}

.search-menu-wrap .search-pet-list a .content-image img {
    border-radius: 50%;
}

.search-menu-wrap .search-pet-list a .menu-name {
    flex-grow: 1;
}

.search-menu-wrap .search-pet-list a .result-number {
    font-size: 1.2rem;
    display: inline-block;
    background-color: var(--gray);
    border-radius: 5px;
    padding: 0.12em 0.7em;
    font-weight: 500;
}

.search-menu-wrap .search-pet-list a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/caret-right.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

.search-menu-wrap :is([type*=checkbox],[type*=radio]) {
    inline-size: 1.6rem;
    block-size: 1.6rem;
    margin-right: 5px;
    accent-color: var(--brown);
    vertical-align: middle;
}

.search-menu-wrap .search-filter-list {
    padding: 1.4em 17px 1em;
}

.search-menu-wrap .filter-list-ttl {
    position: sticky;
    top: -2.5em;
}

.search-menu-wrap .filter-list-ttl:hover {
    cursor: pointer;
}

.search-menu-wrap .filter-list-ttl::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/caret-down.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

.search-menu-wrap .filter-list-ttl.open::after {
    transform: rotate(180deg)translateY(50%);
    transition: .2s;
}

.search-menu-wrap .search-filter-list li {
    font-size: var(--normal-font-size);
    margin: 0 0 0.85em;
}

.search-menu-wrap .search-pet-filters-wrap .more-detail-ttl {
    font-weight: bold;
    font-size: var(--normal-font-size);
    padding: 2em 17px 0;
    margin: 0 0 1em;
}

.search-menu-wrap #tab-panel-shop .available-list h4 {
    margin: 0 0 1.5em;
}

.search-menu-wrap #tab-panel-shop .available-list .available-category:not(:last-child) {
    margin: 0 0 2em;    
}

.search-menu-wrap .price-list {
    font-size: var(--normal-font-size);
    padding: 2.2em 17px 2.5em;
    display: flex;
    gap: 30px;
    position: relative;
}

.search-menu-wrap .price-list::after {
    width: 14px;
    height: 1px;
    content: "";
    background: var(--brown);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.search-menu-wrap .price-list select {
    border: solid 1px rgba(100, 78, 78, 0.5);
    width: 100%;
    padding: .8em 1em;
    -webkit-appearance: none;
    appearance: none;
}

.search-menu-wrap .price-list li {
    position: relative;
    width: calc(100% / 2);
}

.search-menu-wrap .price-list li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/caret-down.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.search-menu-wrap .gender-list {
    font-size: var(--normal-font-size);
    padding: 2.2em 17px 2.5em;
    display: flex;
    gap: 26px;
}


.search-menu-wrap .content {
    display: none;
}

.search-menu-wrap .content.show {
    display: block;
}

.search-menu-wrap .main-content {
    display: none;
}

.search-menu-wrap .main-content.main-show {
    display: block;
}

.search-menu-wrap .search-submit {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px 0;
}

.search-menu-wrap .search-submit .cta-btn-s {
    width: 100%;
}

@media screen and (min-width: 600px) {
    .search-menu-wrap {
        left: 50%;
        height: auto;
        bottom: auto;
        top: 50%;
        max-width: 640px;
        transform: translate(-50%,-50%);
    }

    .search-menu-wrap .main-tab-list {
        position: relative;
        bottom: auto;
        border-bottom: none;
    }

    .search-menu-wrap .close-btn {
        position: absolute;
        bottom: auto;
    }

    .search-menu-wrap .search-menu-content {
        height: 625px;
        border: solid 1px rgba(100, 78, 78, 0.5);
        box-sizing: content-box;
    }

    .search-menu-wrap .search-menu-content::-webkit-scrollbar {
        width: 10px;
    }
    
    .search-menu-wrap .search-menu-content::-webkit-scrollbar-thumb{
        background-color: var(--gray);
    }

    .search-menu-wrap .search-submit {
        position: static;
        padding: 35px 0;
    }

    .search-menu-wrap .tab-panel {
        padding: 0 0 2.5em;
    }

    .search-menu-wrap .main-tab-list .tab {
        width: 260px;
    }

    .search-menu-wrap .search-pet-filters-wrap {
        padding: 0;
    }

}

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


    .search-menu-wrap .main-tab-list .tab {
        padding: 1.15em 0;
    }
    
    .search-menu-wrap .search-content-ttl h3 {
        font-size: 1.6rem;
    }

    .search-menu-wrap .search-content-ttl {
        padding: 0.95em 25px;
    }

    .search-menu-wrap .search-filter-list {
        padding: 1.4em 25px 1em;
    }

    .search-menu-wrap .search-pet-list a {
        padding: 0.95em 50px 0.95em 25px;
    }

    .search-menu-wrap .price-list {
        padding: 2.2em 25px 2.5em;
    }

    .search-menu-wrap .gender-list {
        padding: 2.2em 25px 2.5em;
    }
}
/*--------------------  

footer

--------------------*/

.footer {
    padding-top: 10em;
}

.footer .footer-container {
    padding: 0 14px 5em 4.67%;
    background-color: var(--brown);
    border-radius: 20px 20px 0 0;
}

.footer .page-top {
    font-weight: bold;
}

.footer .page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--salmon-pink);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    font-size: var(--normal-font-size);
    position: relative;
    margin-left: auto;
    transform: translateY(-50%);
}

.footer .page-top a::after {
    content: "";
    background-color: var(--salmon-pink);
    width: 43px;
    height: 43px;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: -23px;
}

.footer .page-top a:hover,
.footer .page-top a:hover::after {
    background-color: var(--yellow);
}

.footer .footer-row {
    margin: 0 0 5em;
}

.footer .footer-logo {
    width: 182px;
    margin: 0 0 2.5em;
}

.footer .footer-logo img {
    width: 100%;
}

.footer .footer-link-container {
    background-color: var(--yellow);
    border-radius: 50%;
    width: 400px;
    height: 412px;
    font-size: var(--normal-font-size);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-25%);
}

.footer .footer-link-inner {
    position: relative;
}

.footer .footer-link-inner::after {
    content: "";
    background-color: var(--yellow);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    position: absolute;
    bottom: -87px;
    right: -132px;
}

.footer .footer-link {
    padding: 0 1.2em;
}

.footer .footer-link a {
    font-weight: bold;
    display: inline-block;
    padding: 0.5em 0.2em;
    transition: 0.2s;
    margin: 0 0 0.5em;
}

.footer .footer-link a:hover {
    opacity: 0.8;
}

.footer .copyright {
    font-weight: bold;
    color: var(--white);
}

@media screen and (min-width: 600px) {
    .footer .footer-link-container {
        transform: translateX(-20%);
    }
}

@media screen and (min-width: 769px) {
    .footer .footer-link-container {
        width: 526px;
        height: 526px;
    }

    .footer .footer-link-inner::after {
        width: 155px;
        height: 155px;
        bottom: -123px;
        right: -188px;
    }

    .footer .footer-logo {
        width: 220px;
        margin: 0 0 3em;
    }

    .footer .page-top a {
        width: 152px;
        height: 152px;
    }

    .footer .page-top a::after {
        width: 55px;
        height: 55px;
    }
}

@media screen and (min-width: 1360px) {
    .footer .footer-container {
        padding: 0 9.84% 4em 8.43%;
    }

    .footer .footer-row {
        margin: 0 0 7em;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .footer .footer-link-container {
        transform: translate(0,-15%);
    }

    .footer .footer-link {
        padding: 0;
    }
}

/*--------------------  

index

--------------------*/
#Index .main-visual-wrap :is(.swiper,.swiper-wrapper) {
    z-index: 0;
}

#Index .main-visual-wrap {
    padding-left: 0.8%;
    padding-bottom: 2em;
}

#Index .main-visual-wrap .content-box {
    position: relative;
}

#Index .main-visual-wrap .content-box img {
    border-radius: 110px 0 0 110px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 372 / 320;
}

#Index .main-visual-wrap .content-txt {
    width: 142px;
    height: 142px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    left: 2%;
    transform: translateY(-50%);
}

#Index .main-visual-wrap .content-txt::before {
    content: "";
    display: inline-block;
    width: 130%;
    height: 130%;
    background: url(../images/index_main_txt.svg) no-repeat;
    background-size: contain;
    background-position: center;
    top: 48%;
    left: 51.5%;
    position: absolute;
    z-index: -1;
    transform: translate(-50%,-50%);
}

#Index .main-visual-wrap .content-txt h1 {
    font-size: var(--normal-font-size);
    font-weight: bold;
    line-height: 2.2;
}

#Index .search-panel-box {
    width: 90.66%;
    margin: auto;
    position: relative;
    top: -72px;
    max-width: 980px;
}

#Index .search-panel-box .tab-list {
    display: flex;
}

#Index .search-panel-box .tab {
    font-weight: bold;
    font-size: var(--normal-font-size);
    text-align: center;
    width: calc(100% / 2);
    padding: 0.83em 0;
}

#Index .search-panel-box .button-pet {
    border-radius: 12px 0 0 0;
}

#Index .search-panel-box .button-shop {
    border-radius: 0 12px 0 0;
}

#Index .search-panel-box .search-box-wap {
    border-left: solid 2px var(--yellow);
    border-right: solid 2px var(--yellow);
    border-bottom: solid 2px var(--yellow);
    background-color: var(--white);
    font-size: var(--normal-font-size);
    box-shadow: 3px 3px 6px rgba(100, 78, 78, 0.16);
    padding: 2.5em 5.8%;
}

#Index .search-panel-box .search-box {
    background-color: #FCF8F5;
    border: solid 1px rgba(100, 78, 78, 0.75);
    color: rgba(100, 78, 78, 0.5);
    padding: 0.8em 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1em;
}

#Index .search-panel-box .search-box img {
    width: 28px;
}

#Index .search-panel-box .more-detail-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 2em;
}

#Index .search-panel-box .more-detail-search .icon {
    border: solid 1px var(--brown);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Index .search-panel-box .more-detail-search .icon img {
    width: 22px;
}

#Index .search-panel-box .btn-TypeE {
    width: 100%;
}

#Index .content-inner {
    margin: 0 0 4.5em;
}

#Index .feature-content {
    position: relative;
    background-color: var(--white);
    border-radius: 20px 20px 0 0;
    top: -20px;
    padding: 3.5em 0 0;
}

#Index .feature-content::after {
    content: "";
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%; 
    position: absolute;
    top: 0;
    right: 6%;
    transform: translateY(-55%);
}

#Index .new-pet-ttl {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#Index .new-pet-ttl .new {
    border: solid 1px var(--salmon-pink);
    color: var(--salmon-pink);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.2em 0.4em;
    display: inline-block;
}

#Index .feature-pet-list {
    margin: 0 calc(50% - 50vw) 2.5em;
    padding: 0 6%;
}

#Index .feature-pet-list li {
    width: 240px;
}

#Index .feature-pet-list li:first-child img {
    border-radius: 20px 0 0 0;
}

#Index .feature-pet-list li:last-child img {
    border-radius: 0 20px 0 0;
}

#Index .feature-pet-list img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 240 / 200;
    margin: 0 0 1.2em;
}

#Index .feature-pet-list .pet-name {
    font-weight: bold;
    margin: 0 0 1em;
    font-size: var(--normal-font-size);
}

#Index .feature-pet-list .shop-info {
    color: rgba(100, 78, 78, 0.7);
    font-size: var(--normal-font-size);
}

#Index .category-search-content {
    background-color: #FAE9C9;
    position: relative;
    border-radius: 20px 20px 0 0;
    padding: 3.5em 6% 1em;
}

#Index .category-search-content::after {
    content: "";
    background-color: #FAE9C9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 6%;
    transform: translateY(-55%);
}

#Index .category-list {
    margin: 0 0 2.5em;
}

#Index .category-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1.5em;
}

#Index .category-list li {
    width: 46.36%;
    text-align: center;
    font-weight: bold;
    font-size: var(--normal-font-size);
}

#Index .category-list img {
    border-radius: 50%;
    margin: 0 0 1em;
}

#Index .area-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 17px;
}

#Index .area-list a {
    font-size: var(--normal-font-size);
    border: solid 1px var(--brown);
    border-radius: 12px;
    background-color: var(--white);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

#Index .area-list a .area-name {
    font-weight: bold;
    display: block;
}

#Index .area-list a .number {
    display: inline-block;
    background-color: var(--gray);
    border-radius: 5px;
    padding: 0.12em 0.7em;
    font-weight: 500;
}

#Index .shop-list {
    margin: 0 calc(50% - 50vw) 3.5em;
    padding: 0 6%;
}


#Index .shop-list li {
    width: 260px;
    height: auto;
}

#Index .shop-list a {
    display: inline-block;
    border-radius: 20px 20px 0 0;
    background-color: var(--white);
    box-shadow: 3px 3px 6px rgba(100, 78, 78, 0.16);
    height: 100%;
}

#Index .shop-list .content-image img {
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 260 / 170;
}

#Index .shop-list .content-txt {
    font-size: var(--normal-font-size);
    font-weight: 500;
    padding: 16px 15px 20px;
}

#Index .shop-list .shop-name {
    font-weight: bold;
    margin: 0 0 1.2em;
}

#Index .shop-list .shop-campaign {
    color: rgba(100, 78, 78, 0.7);
    margin: 0 0 1.8em;
}

#Index .shop-info {
    display: flex;
    justify-content: space-between;
}

#Index .shop-info .date {
    font-size: 95%;
    color: var(--white);
    background-color: rgba(100, 78, 78, 0.5);
    display: inline-block;
    padding: 0.12em 0.7em;
    border-radius: 5px;
}

#Index .shop-info .area {
    color: rgba(100, 78, 78, 0.7);
}

#Index .about-ps-wrap .content-box:not(:last-child) {
    margin: 0 0 4em;
}

#Index .about-ps-wrap .content-image img {
    width: 100%;
}

#Index .about-ps-wrap .content-txt {
    width: 88%;
    margin: auto;
    position: relative;
    top: -25px;
}

#Index .about-ps-wrap .content-txt dd {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 3px 3px 6px rgba(100, 78, 78, 0.16);
    padding: 2em 7.57% 2.5em;
    margin: 0;
}

#Index .about-ps-wrap .content-txt p {
    font-size: var(--normal-font-size);
    line-height: 2.2;
    margin: 0 0 2.5em;
    font-weight: 500;
}

#Index .about-ps-wrap .ps-row-header {
    position: relative;
    left: -10px;
    width: 260px;
    text-align: center;
    font-size: var(--large-font-size);
}

#Index .news-wrap {
    padding: 3.5em 0 8em;
}

#Index .news-list {
    font-size: var(--normal-font-size);
}

#Index .news-list a {
    display: flex;
    gap: 20px;
    padding: 0.2em 0;
    align-items: baseline;
}

#Index .news-list li {
    padding: 0 0 1em;
    border-bottom: solid 1px var(--brown);
}

#Index .news-list li:not(:last-child) {
    margin: 0 0 1em;
}

#Index .news-list .date {
    font-size: 95%;
    color: var(--white);
    background-color: rgba(100, 78, 78, 0.5);
    display: inline-block;
    padding: 0.15em 0.7em;
    font-weight: 500;
    border-radius: 5px;
}

#Index .news-list .ttl {
    font-weight: bold;
}

#Index .forshop-content-box {
    padding: 0 0 4em;
    position: relative;
    z-index: 0;
}

#Index .forshop-content-box::before {
    content: "";
    display: inline-block;
    width: 200%;
    height: 100%;
    background: url(../images/index_about_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 50%;
    position: absolute;
    z-index: -1;
    border-radius: 45%;
    transform: translateX(-50%);
}


#Index .forshop-wrap .ps-row-header {
    text-align: center;
    font-size: var(--large-font-size);
    line-height: 1.5;
    width: 280px;
    display: block;
    position: relative;
    transform: translateY(-40%);
    margin: 0 auto 1em;
}

#Index .forshop-ttl {
    font-weight: bold;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    margin: 0 0 3em;
}

#Index .forshop-ttl .main {
    font-size: 2rem;
}

#Index .forshop-ttl img {
    width: 26px;
}

#Index .forshop-ttl .sub {
    font-size: var(--medium-font-size);
}

#Index .forshop-list {
    color: var(--white);
    margin: 0 0 2.5em;
    padding: 0 12.6%;
}

#Index .forshop-list li {
    width: 84.84%;
}

#Index .forshop-list .number {
    font-weight: bold;
    font-size: 2.6rem;
    text-align: center;
    display: block;
    margin: 0 0 0.6em;
}

#Index .forshop-list .content-image img {
    border-radius: 12px;
    margin: 0 0 1.7em;
}

#Index .forshop-list .content-txt dt {
    margin: 0 0 1em;
    font-size: var(--large-font-size);
    font-weight: bold;
}

#Index .forshop-list .content-txt dd {
    font-size: var(--normal-font-size);
    line-height: 2.2;
    font-weight: 500;
}

#Index .forshop-list :is(.swiper-button-next,.swiper-button-prev)::after {
    color: var(--white);
    font-size: 140%;
}

#Index .forshop-cta-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#Index .forshop-cta-box a {
    width: 100%;
}

#Index .forshop-cta-box a.cta-btn-s.btn-TypeE {
    border-color: var(--gray);
}

#Index :is(.feature-pet-list,.category-list,.area-list,.shop-list,.news-list) a {
    transition: 0.2s;
}

#Index :is(.feature-pet-list,.category-list,.area-list,.shop-list,.news-list) a:hover {
    opacity: 0.8;
}

@media screen and (min-width: 600px) {
    #Index .main-visual-wrap .content-txt {
        width: 200px;
        height: 200px;
        left: 5%;
    }

    #Index .main-visual-wrap .content-txt h1 {
        font-size: 1.8rem;
    }

    #Index .category-list li {
        width: 30.36%;
    }

    #Index .area-list ul {
        gap: 24px;
        justify-content: flex-start;
    }

}

@media screen and (min-width: 769px) {
    #Index .main-visual-wrap .content-box img {
        height: 540px;
    }

    #Index .search-panel-box .tab {
        width: 260px;
        padding: 1.05em 0;
    }

    #Index .feature-pet-list li {
        width: 280px;
    }

    #Index .feature-pet-list img {
        aspect-ratio: 280 / 220;
    }

    #Index .new-pet-ttl {
        justify-content: flex-start;
        gap: 25px;
    }

    #Index .new-pet-ttl .new {
        font-size: 1.5rem;
    }

    #Index .area-list a {
        width: 120px;
        height: 120px;
    }

    #Index .shop-list li {
        width: 300px;
    }

    #Index .about-ps-wrap .ps-row-header {
        width: auto;
    }

    #Index .forshop-wrap .ps-row-header {
        width: fit-content;
    }

    #Index .forshop-wrap .ps-row-header br {
        display: none;
    }
}

@media screen and (min-width: 980px) {
    #Index .search-panel-box .search-box-wap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4em 5.8%;
        border-top: solid 2px var(--yellow);
    }

    #Index .search-panel-box .search-box {
        margin: 0;
        width: 50%;
    }

    #Index .search-panel-box .more-detail-search {
        margin: 0;
    }

    #Index .search-panel-box .btn-TypeE {
        margin: 0;
    }

    #Index .about-ps-wrap {
        padding: 6em 0 2em;
    }

    #Index .about-ps-wrap .content-box {
        display: flex;
    }

    #Index .about-ps-wrap .content-box:not(:last-child) {
        margin: 0 0 7em;
    }

    #Index .about-ps-wrap .content-box:last-child {
        flex-direction: row-reverse;
    }

    #Index .about-ps-wrap .content-image {
        width: 60%;
    }

    #Index .about-ps-wrap .content-image img {
        border-radius: 20px;
        object-fit: cover;
        object-position: center;
        width: 100%;
        max-height: 640px;
    }

    #Index .about-ps-wrap .content-txt {
        width: 38%;
        position: relative;
    }

    #Index .about-ps-wrap .content-box:first-child .content-txt {
        left: -20px;
    }

    #Index .about-ps-wrap .content-box:last-child .content-txt {
        right: -20px;
    }

    #Index .forshop-list {
        margin: 0 0 4.5em;
        padding: 0;
    }

    #Index .forshop-list li {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 50px;
    }

    #Index .forshop-list .content-image {
        width: 48.54%;
        max-width: 560px;
    }

    #Index .forshop-list .content-image img {
        margin: 0;
    }

    #Index .forshop-list .number {
        text-align: left;
        margin: 0 0 1em;
    }

    #Index .forshop-list .content-txt {
        width: 35.7%;
    }

    #Index .forshop-cta-box {
        flex-direction: row-reverse;
        justify-content: center;
    }

    #Index .forshop-cta-box a {
        margin: 0;
    }

}

@media screen and (min-width: 1200px) {
    #Index .main-visual-wrap {
        padding-left: 4.53%;
    }

    #Index .main-visual-wrap .content-box img {
        height: 780px;
        aspect-ratio: 1833 / 780;
    }

    #Index .search-panel-box {
        top: -178px;
    }
    
    #Index .main-visual-wrap .content-txt {
        width: 360px;
        height: 360px;
        left: 8%;
    }

    #Index .main-visual-wrap .content-txt h1 {
        font-size: 2.8rem;
    }

    #Index .feature-content::after,
    #Index .category-search-content::after {
        width: 100px;
        height: 100px;
    }

    #Index .feature-content {
        padding: 5em 0 0;
        border-radius: 50px 50px 0 0;
        top: -50px;
    }

    #Index .feature-pet-list {
        margin: 0 0 2.5em;
        padding: 0;
        overflow: visible;
    }

    #Index .category-search-content {
        border-radius: 50px 50px 0 0;
        padding: 5em 50px 1em;
    }

    #Index .category-search-content .content-inner {
        max-width: 1500px;
        margin: 0 auto 7.5em;
    }

    #Index .category-list {
        margin: 0 0 3.5em;
    }

    #Index .category-list ul {
        row-gap: 3.5em;
    }

    #Index .category-list li {
        width: 17.33%;
        font-size: 1.6rem;
    }

    #Index .category-list img {
        margin: 0 0 1.5em;
    }

    #Index .shop-list {
        margin: 0 0 3.5em;
        padding: 0;
        overflow: visible;
    }

    #Index .about-ps-wrap .ps-row-header {
        margin: 0;
        left: -25px;
        top: 15px;
        width: 360px;
    }

    #Index .about-ps-wrap .content-image {
        width: 55%;
    }

    #Index .about-ps-wrap .content-txt {
        width: 30%;
    }

    #Index .about-ps-wrap .content-txt dd {
        padding: 3em 7.57% 3.5em;
        font-size: 1.6rem;
    }

    #Index .news-wrap .ps-new-container {
        max-width: 1240px;
    }

    #Index .forshop-content-box {
        padding: 1em 6% 6em;
    }

    #Index .forshop-content-box::before {
        width: 150%;
    }

    #Index .forshop-wrap .ps-row-header {
        transform: translateY(-55%);
    }

    #Index .forshop-ttl {
        margin: 0 0 4em;
    }
    
    #Index .forshop-ttl .main {
        font-size: var(--large-font-size);
    }

    #Index .forshop-list {
        margin: 0 0 5.5em;
    }

    #Index .forshop-list .content-txt dt {
        font-size: 2rem;
    }

    #Index .forshop-cta-box {
        gap: 75px;
    }

    #Index .content-inner .cta-btn-s {
        max-width: 280px;
        padding: 1.15em 1em;
    }
}

@media screen and (min-width: 1360px) {
    #Index .main-visual-wrap {
        padding-top: 110px;
    }
}

/*--------------------  

info

--------------------*/
#Info .main-visual-wrap .content-box {
    position: relative;
    margin: 0 0 140px;
}

#Info .main-visual-wrap .content-image img {
    border-radius: 12px 12px 0 0;
}

#Info .main-visual-wrap .content-txt {
    position: relative;
    background-color: var(--white);
    left: 6%;
    display: inline-block;
    border-radius: 12px;
    padding: 0.95em 1.4em;
    position: absolute;
    bottom: -30%;
}

#Info .main-visual-wrap .content-txt::after {
    content: "";
    background-color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
    top: -12px;
    right: -12px;
}

#Info .main-visual-wrap .content-txt h1 {
    font-size: var(--medium-font-size);
    font-weight: bold;
    line-height: 2.4;
}

#Info :is(p,dd) {
    font-size: var(--normal-font-size);
    line-height: 2.4;
    font-weight: 500;
}

#Info .content-inner {
    margin: 0 auto 5.5em;
}

#Info .intro-content-wrap p {
    margin: 0 auto 3em;
    width: fit-content;
}

#Info h2 {
    font-size: var(--medium-font-size);
    font-weight: bold;
}

#Info .pet-type-wrap .pet-type-list {
    overflow: hidden;
    display: flex;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

#Info .pet-type-wrap .pet-type-list ul {
    display: flex;
    animation: infinity-scroll-L 65s infinite linear both;
}

#Info .pet-type-wrap .pet-type-list li {
    text-align: center;
    width: 153px;
    margin-right: 24px;
}

@keyframes infinity-scroll-L {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
}


#Info .pet-type-wrap .pet-type-list img {
    border-radius: 50%;
    margin: 0 0 1em;
}

#Info .recommend-content-wrap .content-txt ul {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin: 0 0 2em;
}

#Info .recommend-content-wrap .content-txt li {
    background-color: var(--white);
    border-radius: 12px;
    border: solid 1px var(--brown);
    font-size: var(--normal-font-size);
    text-align: center;
    padding: 1.25em 0;
}

#Info .recommend-content-wrap .content-txt li br {
    display: none;
}

#Info .recommend-content-wrap .content-image {
    width: 69.7%;
    margin: auto;
}

#Info .about-content-wrap img {
    border-radius: 12px;
}

#Info .about-content-wrap .content-txt {
    position: relative;
    top: -25px;
}

#Info .about-content-wrap .ps-row-header {
    position: relative;
    left: -10px;
}

#Info .about-content-wrap .content-box:last-child {
    padding: 3em 0 0;
}

#Info .flow-content-wrap .content-box {
    padding-left: 12.12%;
    padding-top: 2em;
}

#Info .flow-content-wrap .content-box li {
    border-left: solid 1px var(--brown);
}

#Info .flow-content-wrap .content-box li:last-child {
    border-left: none;
}

#Info .flow-content-wrap .flow-no-box {
    font-weight: bold;
    padding-left: 1em;
    position: relative;
    top: -15px;
}

#Info .flow-content-wrap .number {
    font-weight: bold;
    border-radius: 50%;
    border: solid 1px var(--brown);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    background-color: var(--bg-pink);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
}

#Info .flow-content-wrap .content-row dl {
    padding-left: 16%;
    position: relative;
}

#Info .flow-content-wrap .content-row:not(:last-child) dl {
    padding-bottom: 4em;
}

#Info .flow-content-wrap .content-image {
    width: 80%;
    margin: 0 auto 0.7em;
}

#Info .price-content-wrap :is(dl,dd) {
    margin-bottom: 0;
}

#Info .price-content-wrap .content-box {
    display: flex;
    flex-direction: column;
    gap: 3.5em;
}

#Info .price-content-wrap .content-row {
    border-radius: 20px;
    background-color: var(--white);
    padding: 2em 6.8% 3em;
}

#Info .price-content-wrap .free-plan {
    border: solid 1px var(--brown);
}

#Info .price-content-wrap .premium-plan {
    border: solid 2px var(--salmon-pink);
}

#Info .price-content-wrap .ttl {
    max-width: 210px;
    margin: auto;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    font-size: var(--large-font-size);
    padding: 0.48em 1em;
}

#Info .price-content-wrap .free-plan .ttl {
    background-color: var(--yellow-alpha);
}

#Info .price-content-wrap .premium-plan .ttl {
    background-color: var(--salmon-pink);
}

#Info .price-content-wrap .price {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 7px;
}

#Info .price-content-wrap .price .amount {
    font-size: 3.6rem;
}

#Info .price-content-wrap .price .amount::before {
    content: "¥";
    font-size: 2.2rem;
    margin-right: 7px;
}

#Info .price-content-wrap .price .tax {
    font-size: var(--normal-font-size);
}

#Info .price-content-wrap .list {
    margin: 0 auto 3.5em;
    width: fit-content;
}

#Info .price-content-wrap .free-plan .list li {
    margin: 0 0 0.5em;
}

#Info .price-content-wrap .free-plan .list li,
#Info .price-content-wrap .premium-plan .list dt,
#Info .price-content-wrap .premium-plan .list li:last-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

#Info .price-content-wrap .free-plan .list li::before,
#Info .price-content-wrap .premium-plan .list dt::before,
#Info .price-content-wrap .premium-plan .list li:last-child::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/check-circle.svg) no-repeat;
    background-size: contain;
}

#Info .price-content-wrap .premium-plan .list dt {
    margin: 0 0 0.2em;
}

#Info .price-content-wrap .sub-txt span {
    display: block;
    text-align: center;
}

#Info .price-content-wrap .premium-plan li {
    background-color: rgba(255, 167, 125, 0.2);
    border-radius: 12px;
    padding: 1em 6.1%;
    margin: 0 0 1.7em;
}

#Info .price-content-wrap .premium-plan .list li:last-child {
    font-weight: bold;
}

#Info .price-content-wrap .premium-plan .sub-txt {
    position: relative;
    top: -27px;
    margin: 0 0 -13px;
}

#Info .price-content-wrap .premium-plan .sub-txt .monthly {
    color: rgba(100, 78, 78, 0.5);
    margin: 0 0 1.5em;
}

#Info .price-content-wrap .premium-plan .sub-txt .campaign {
    font-size: var(--medium-font-size);
    font-weight: bold;
    width: fit-content;
    border-bottom: solid 3px var(--red);
    margin: 0 auto 2em;
}

#Info .faq-content-wrap {
    max-width: 980px;
}

#Info .faq-content-wrap dl {
    border-bottom: solid 1px var(--brown);
    margin: 0 0 1.1em;
}

#Info .faq-content-wrap :is(.faq-q,.faq-a) {
    position: relative;
    padding: 0 40px 1em 50px;
    line-height: 1.9;
}

#Info .faq-content-wrap .faq-q {
    font-size: var(--normal-font-size);
}

#Info .faq-content-wrap .faq-q:hover {
    cursor: pointer;
}

#Info .faq-content-wrap .faq-q::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/caret-down.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.2s;
}

#Info .faq-content-wrap .open::after {
    transform: rotate(180deg);
    transition: .2s;
}

#Info .faq-content-wrap .ttl {
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    width: 33px;
    color: var(--white);
    line-height: initial;
    padding: 0.3em 0;
    font-weight: bold;
    position: absolute;
    top: 2px;
    left: 0;
}

#Info .faq-content-wrap .faq-q .ttl {
    background-color: rgba(100, 78, 78, 0.5);
}

#Info .faq-content-wrap .faq-a .ttl {
    background-color: var(--brown);
}

@media screen and (min-width: 600px) {
    #Info .main-visual-wrap .content-box {
        margin: 0 0 100px;
    }

    #Info .main-visual-wrap .content-txt {
        bottom: -10%;
        padding: 1.5em 2.4em;
    }

    #Info .recommend-content-wrap .content-image {
        width: 52%;
    }

    #Info .flow-content-wrap .content-image {
        width: 52%;
    }

    #Info .flow-content-wrap .flow-no-box {
        padding-left: 0;
    }
}

@media screen and (min-width: 769px) {
    #Info .main-visual-wrap .content-box {
        margin: 0 0 140px;
    }

    #Info .main-visual-wrap .content-image {
        height: 495px;
    }

    #Info .main-visual-wrap .content-image img {
        object-fit: cover;
        object-position: 67% top;
        width: 100%;
        height: 100%;
    }

    #Info .main-visual-wrap .content-txt {
        bottom: -20%;
    }

    #Info .recommend-content-wrap .content-image {
        width: 380px;
    }

    #Info .recommend-content-wrap .content-txt ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
    }

    #Info .recommend-content-wrap .content-txt li {
        padding: 2.5em 1.5em;
        min-width: 280px;
        line-height: 1.8;
    }

    #Info .recommend-content-wrap .content-txt li br {
        display: block;
    }

    #Info .recommend-content-wrap .content-txt li:first-child {
        margin: 0 50%;
    }

    #Info .flow-content-wrap .number {
        width: 120px;
        height: 120px;
        font-size: 2.2rem;
        gap: 10px;
    }
}

@media screen and (min-width: 1200px) {
    #Info .content-inner {
        margin: 0 auto 8em;
    }

    #Info :is(p,dd) {
        font-size: 1.6rem;
    }

    #Info .main-visual-wrap .content-txt h1 {
        font-size: clamp(1.6rem, 0.267rem + 1.78vw, 2.4rem);
        line-height: 2.6;
    }

    #Info .pet-type-wrap .pet-type-list li {
        width: 260px;
        margin-right: 50px;
    }

    #Info .about-content-wrap .content-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9.33%;
    }

    #Info .about-content-wrap .content-image {
        width: 42.66%;
    }

    #Info .about-content-wrap .content-txt {
        width: 32%;
    }

    #Info .about-content-wrap .ps-row-header {
        left: 0;
        font-size: 1.8rem;
        margin: 0 0 2.5em;
    }

    #Info .about-content-wrap .content-box:last-child {
        padding: 9em 0 0;
        flex-direction: row-reverse;
    }

    #Info .flow-content-wrap .content-box {
        padding-left: 84px;
        max-width: 1200px;
        margin: auto;
    }

    #Info .flow-content-wrap .content-row dl {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-left: 120px;
        column-gap: 30px;
    }

    #Info .flow-content-wrap .content-row:not(:last-child) dl {
        padding-bottom: 6em;
    }

    #Info .flow-content-wrap .flow-no-box {
        width: 100%;
        font-size: 1.8rem;
        margin: 0 0 1em;
    }

    #Info .flow-content-wrap .content-image {
        width: 280px;
        margin: 0;
    }

    #Info .flow-content-wrap .content-txt {
        width: 56.66%;
    }

    #Info .price-content-wrap .content-box {
        max-width: 980px;
        margin: auto;
    }

    #Info .price-content-wrap .content-row {
        padding: 3em 5% 4em;
    }

    #Info .price-content-wrap .ttl {
        font-size: var(--medium-font-size);
        max-width: 280px;
    }

    #Info .price-content-wrap .price .amount {
        font-size: 4rem;
    }


    #Info .faq-content-wrap .ttl {
        width: 38px;
        padding: 0.35em 0;
        top: 0;
    }

    #Info .faq-content-wrap :is(.faq-q,.faq-a) {
        padding: 0 40px 1.5em 60px;
    }

    #Info .faq-content-wrap .faq-q {
        margin-top: 1.7em;
        font-size: 1.6rem;
    }

    #Info .faq-content-wrap .faq-q::after {
        width: 24px;
        height: 24px;
    }
}

@media screen and (min-width: 1360px) {
    #Info .main-visual-wrap {
        padding: 40px 0 0;
    }

    #Info .main-visual-wrap .content-txt {
        left: 12.29%;
        bottom: -10%;
        padding: 2.2em 4.3em;
    }

    #Info .main-visual-wrap .content-txt::after {
        width: 48px;
        height: 48px;
        top: -25px;
        right: -25px;
    }

    #Info .intro-content-wrap p {
        margin: 0 auto 5em;
    }

    #Info .recommend-content-wrap .content-txt li {
        font-size: 1.8rem;
    }

    .ps-new-container {
        max-width: 1600px;
        padding: 0 50px;
    }


    #Info .recommend-content-wrap .content-txt ul {
        column-gap: 444px;
        row-gap: 70px;
    }

    #Info .recommend-content-wrap .content-txt li {
        min-width: 388px;
        padding: 1.4em 1.5em;
    }

    #Info .recommend-content-wrap .content-image {
        margin-top: -120px;
    }
}

@media screen and (min-width: 1920px) {
    #Info .main-visual-wrap .content-image {
        height: auto;
    }
}