/*___________________________
Body
___________________________*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background: #fff;
    font-family: var(--familyNotoSans);
}

body.locked {
    overflow: hidden;
}

.ios-mac {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*
  Base common text style.
  Change to match design.
*/
p,
h5,
h4,
h3,
h2,
h1,
a,
dd,
dt,
th,
td,
li,
figcaption,
button {
    color: var(--colorBlack);
    font-family: var(--familyBase);
    font-size: var(--fontMax16Min14);
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.8;
}

/* 
  Small fade animation on hover for links 
  Change as required
*/
main a,
footer a {
    transition: opacity .4s cubic-bezier(.215, .610, .355, 1);
}

main a:not(.paginationGroup a):hover,
footer a:hover {
    opacity: .7;
}

@media screen and (max-width: 767px) {
    p,
    h5,
    h4,
    h3,
    h2,
    h1,
    a,
    dd,
    dt,
    th,
    td,
    li,
    figcaption,
    button {
        color: var(--colorBlack);
        font-family: var(--familyBase);
        font-size: var(--fontMax16Min14);
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.8;
    }
}

.h2__title {
    border-bottom: 4px solid var(--colorOrange);
    font-size: 2rem;
    font-weight: bold;
    padding-block: .5rem;
}

@media screen and (max-width: 767px) {
    .h2__title {
        font-size: 6vw;
    }
}

/*___________________________
Container
___________________________*/

.container {
    margin: 0 auto;
    max-width: 1080px;
}

.for-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .for-pc {
        display: none;
    }

    .for-sp {
        display: block;
    }

    a .for-sp {
        line-height: 0;
    }
}

.for-sp-1279 {
    display: none;
}

@media screen and (max-width: 1279px) {
    .for-pc-1279 {
        display: none;
    }

    .for-sp-1279 {
        display: block;
    }
}

/*___________________________
Link Buttons
___________________________*/
.btn--white {
    margin-top: 2.5rem;
    text-align: center;
}

.btn--white button {
    background-color: var(--colorSub2);
    border: 1px solid #ffe0b2;
    border-radius: 50px;
    color: var(--colorOrange);
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    padding: .625rem 3.125rem .625rem 1rem;
}

.btn--white button::before {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    color: var(--colorOrange);
    content: "\02190";
    display: inline-block;
    font-size: .8rem;
    font-weight: bold;
    height: 1.5rem;
    line-height: 1.5rem;
    margin-right: .7rem;
    text-align: center;
    width: 1.5rem;
}

@media (hover: hover) {
    .btn--white button:hover {
        background-color: var(--colorOrange);
        color: #fff;
    }
}

/*___________________________
Animation
___________________________*/
.js-fadeElement {
    opacity: 0;
    visibility: hidden;
}

/*___________________________
Breadcrumbs
___________________________*/
.breadcrumbs {
    display: flex;
    gap: 24px;
    margin: 0 auto;
    max-width: 1280px;
    padding: 80px 16px 24px;
}

.breadcrumbLink,
.breadcrumbCurrent {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 2;
}

.breadcrumbLink {
    color: #ababab;
    min-width: fit-content;
    position: relative;
}

.breadcrumbLink::after {
    background: #ababab;
    content: "";
    height: 12px;
    position: absolute;
    right: -13px;
    top: 7px;
    transform: rotate(45deg);
    transform-origin: center;
    width: 1px;
}

@media screen and (max-width: 767px) {
    .breadcrumbs {
        padding-top: 40px;
    }
}

/*___________________________
Header
___________________________*/

.header {
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

/*========================
  Navbar
========================*/

.navbar {
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: center;
    left: 0;
    padding: .375rem 1.25rem;
}

.navbar__inner {
    display: grid;
    gap: 40px;
    grid-template-columns: 200px auto;
    max-width: 1376px;
    width: 100%;
}

.navbar__logo img {
    max-width: 200px;
    padding-bottom: .94rem;
}

.navbar__list {
    align-self: center;
    display: flex;
    gap: 30px;
    height: fit-content;
    justify-content: flex-end;
    width: 100%;
}

.navbar__item {
    align-items: center;
    display: flex;
    width: fit-content;
}

.navbar__item a {
    color: #000;
    font-family: var(--familyNotoSans);
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.38;
    transition: opacity .3s ease-out;
}

.navbar__item:hover a {
    opacity: .7;
}

.navbar__item a.navbar__contact-link {
    background-color: var(--colorOrange);
    border: 1px solid var(--colorOrange);
    border-radius: 6.25rem;
    color: #fff;
    display: inline-block;
    padding: 1rem 2rem;
}

@media (hover: hover) {
    .navbar__item a.navbar__contact-link:hover {
        background-color: var(--colorSub2);
        border: 1px solid var(--colorSub);
        color: var(--colorOrange);
        opacity: 1;
    }
}

/*========================
  Hamburger
========================*/

.navbar__hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    height: 25px;
    position: relative;
    width: 30px;
}

.navbar__hamburger span {
    background: #000;
    height: 2px;
    position: absolute;
    transition: all .3s ease-in-out, background-color delay .3s;
    width: 100%;
}

.drawerOpen .navbar__hamburger span {
    background: #fff;
}

.navbar__hamburger span:nth-child(1) {
    left: 0;
    top: 0;
}

.drawerOpen .navbar__hamburger span:nth-child(1) {
    transform: translate(-1px, 12px) rotate(45deg);
}

.navbar__hamburger span:nth-child(2) {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.drawerOpen .navbar__hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.navbar__hamburger span:nth-child(3) {
    bottom: 0;
    left: 0;
}

.drawerOpen .navbar__hamburger span:nth-child(3) {
    transform: translate(-1px, -11px) rotate(-45deg);
}

/*========================
  NavDrawer
========================*/

.navdrawer {
    align-items: center;
    background: rgba(255, 108, 0, .9);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateX(100%);
    width: 100vw;
    z-index: 100;
}

.navdrawer__container {
    margin: 0 auto;
    width: fit-content;
}

.navdrawer__inner {
    display: grid;
    gap: 1.875rem;
    grid-template-columns: 1fr;
}

.navdrawerLink {
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-family: var(--familyNotoSans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 1.6;
    opacity: 0;
    visibility: hidden;
}

.navdrawerLink:last-child {
    border-bottom: none;
}

.close-btn {
    height: 2.5rem;
    position: absolute;
    right: 5.33vw;
    top: 5.33vw;
    width: 2.5rem;
}

.close-btn::before,
.close-btn::after {
    background-color: var(--colorWhite);
    content: "";
    height: .53vw;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 2.5rem;
}

.close-btn::after {
    transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 1080px) {
    .navbar__logo img {
        max-width: 150px;
    }

    .navbar {
        height: 60px;
    }

    .navbar__list {
        display: none;
    }

    .navbar__hamburger {
        align-self: center;
        display: block;
    }

    .navbar__inner {
        display: flex;
        justify-content: space-between;
        max-width: 1230px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 550px) {
    .navbar__logo img {
        max-width: 120px;
    }

    .navbar__inner {
        padding: 0;
    }
}

/*___________________________
下層ページタイトル
___________________________*/

#title_line {
    background-color: var(--colorWhite);
    background-image: url("../images/common/bg-title.png");
    background-position: left bottom;
    background-repeat: repeat-x;
    height: 323px;
}

#title_line .inner {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin-inline: auto auto;
    max-width: 1140px;
    padding-inline: 1.875rem 1.875rem;
}

.title_inner p {
    font-family: var(--familyMontserrat);
    font-size: .75rem;
    font-weight: bold;
}

.page_title {
    color: var(--colorBlack);
    font-size: 3.0rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    #title_line {
        background-size: 200vw;
        height: auto;
        min-height: 11.0rem;
        padding-bottom: 2.875rem;
        padding-top: 1rem;
    }

    .page_title {
        font-size: 8.0vw;
        line-height: 1.4;
        margin-top: 2vw;
    }
}

/*___________________________
パンくずリスト
___________________________*/

.pankslist {
    align-items: center;
    display: flex;
    height: 4.0625rem;
}

.pankslist li,
.pankslist li a {
    font-size: .875rem;
}

.pankslist li a {
    text-decoration: underline;
}

.pankslist li a:hover {
    text-decoration: none;
}

.pankslist li:before {
    content: url("../images/common/img-panks-arrow.png");
    margin-left: 1.0rem;
    margin-right: 1.0rem;
}

.pankslist li:first-child:before {
    content: "";
    display: none;
}

@media screen and (max-width: 767px) {
    .pankslist {
        height: 2.125rem;
        margin-top: .625rem;
    }

    .pankslist li,
    .pankslist li a {
        font-size: .625rem;
    }
}

/*___________________________
見出し
___________________________*/

.main_innerH2 {
    border-bottom: var(--colorOrange) solid 4px;
    color: var(--colorBlack);
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    margin-top: 2.25rem;
    padding-bottom: .625rem;
}

.main_innerH3 {
    display: block;
    font-family: var(--familyNotoSans);
    font-size: 1.50rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.main_innerH3 span {
    background: #ffe0b2;
    display: inline-block;
    padding: .5rem 1.5rem;
}

.main_innerH3wide {
    background: #ffe0b2;
    display: block;
    font-family: var(--familyNotoSans);
    font-size: 1.50rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding: .5rem 1.5rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .main_innerH2 {
        font-size: 1.50rem;
        line-height: 1.4;
    }

    .main_innerH3,
    .main_innerH3wide {
        font-size: 1.25rem;
        line-height: 1.7;
        text-align: left;
    }

    .main_innerH3 span {
        padding: 1.125rem 1.125rem;
    }
}

/*___________________________
共通
___________________________*/

a {
    color: var(--colorOrange);
}

.is_center {
    text-align: center;
}

.is_right {
    text-align: right;
}

.is_left {
    text-align: left;
}

.link-btn {
    background-color: var(--colorOrange);
    border: 1px solid var(--colorOrange);
    border-radius: 6.25rem;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    padding: .97rem 3.125rem;
    position: relative;
    text-align: center;
}

@media (hover: hover) {
    .link-btn:hover,
    main a:not(.paginationGroup a).link-btn:hover {
        background-color: var(--colorSub2);
        background-position: center center;
        background-size: 9px 10px;
        border: 1px solid var(--colorSub);
        color: var(--colorOrange);
        opacity: 1;
    }
}

.link-with-arrow {
    background-color: var(--colorOrange);
    border: 1px solid #fff;
    border-radius: 6.25rem;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    min-width: 16.25rem;
    padding: .97rem 3.125rem;
    position: relative;
    text-align: center;
}

.link-with-arrow::before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 1.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
}

.link-with-arrow::after {
    background: url(../images/common/arrow-orange.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 9px 10px;
    content: "";
    display: inline-block;
    height: 1.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
}

@media (hover: hover) {
    main a:not(.paginationGroup a).link-with-arrow:hover {
        background-color: var(--colorSub2);
        border: 1px solid var(--colorSub);
        color: var(--colorOrange);
        opacity: 1;
    }
}

.search-link {
    align-items: center;
    display: flex;
    font-size: .875rem;
    font-weight: 500;
    margin-inline: auto 0;
    margin-top: .5rem;
    padding: .4rem .97rem;
    width: fit-content;
}

.search-link::before {
    background: url(../images/common/ico-search.svg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: inline-block;
    height: 1.25rem;
    margin-right: .19rem;
    width: 1.25rem;
}

@media (hover: hover) {
    main a.search__link:not(.paginationGroup a):hover {
        background-color: var(--colorSub2);
        border: 1px solid var(--colorSub);
        color: var(--colorOrange);
        opacity: 1;
    }

    .search-link:hover::before {
        background: url(../images/common/ico-search_on.svg);
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media screen and (max-width: 767px) {
    .search-link {
        font-size: 3.74vw;
        padding: 2vw 3.5vw;
    }

    .search-link::before {
        height: 5.33vw;
        margin-right: 1.33vw;
        width: 5.33vw;
    }
}

/*___________________________
手数料0円
___________________________*/

.infozero_line {
    background: url("../images/common/bg-zero.png");
    padding-bottom: 2.0rem;
    padding-top: 2.0rem;
}

.infozero_line .inner {
    margin-inline: auto auto;
    max-width: 81.25rem;
    padding-inline: 1.875rem 1.875rem;
}

.infozero_line .is_center {
    font-size: 1.50rem;
    font-weight: bold;
    line-height: 1.4;
}

.infozero_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: .625rem;
    text-align: center;
}

.border_bottom {
    border-bottom: #000 solid 1px;
    padding-bottom: .625rem;
}

.text_zero {
    display: inline-block;
    line-height: 1.8;
    margin-left: .625rem;
    margin-right: .625rem;
    vertical-align: text-bottom;
}

.text_zero img {
    height: auto;
    width: 112.5px;
}

.info_zero_list {
    display: flex;
    justify-content: space-between;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: 2.75rem;
}

.info_zero_list > li {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: 50%;
}

.info_zero_box_left {
    background: var(--colorWhite);
    border: #abaaa6 solid 2px;
    border-radius: .75rem;
    padding-bottom: .625rem;
}

.info_zero_box_right {
    background: var(--colorWhite);
    border: #ff602e solid 2px;
    border-radius: .75rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.info_zero_box_left > dt,
.info_zero_box_right > dt {
    font-size: 1.125rem;
    font-weight: bold;
    margin-top: -1.25rem;
    text-align: center;
}

.info_zero_box_left > dd {
    display: flex;
    margin-top: .1875rem;
}

.info_zero_box_left > dt span {
    background: #41403b;
    border-radius: 999px;
    color: var(--colorWhite);
    display: inline-block;
    padding: .375rem 2.875rem;
}

.info_zero_box_right > dt span {
    background: #ff602e;
    border-radius: 999px;
    color: var(--colorWhite);
    display: inline-block;
    padding: .375rem 2.875rem;
}

.cost_list {
    margin-left: auto;
    margin-right: auto;
}

.cost_list li {
    line-height: 1.6;
}

.cost_value:after {
    content: url("../images/common/img-triangle-right.png");
    margin-left: .625rem;
    margin-right: .625rem;
}

.cost_value span {
    font-family: var(--familyInter);
    font-size: 1.75rem;
    font-weight: bold;
    margin-right: 5px;
    position: relative;
}

.cost_price span {
    font-family: var(--familyInter);
    font-size: 2.75rem;
    font-weight: bold;
    margin-left: .3125rem;
    margin-right: .3125rem;
}

.info_zero_innerbox {
    align-items: last baseline;
    display: flex;
    justify-content: center;
}

.info_zero_innerbox dt {
    font-size: 3.625rem;
    font-weight: bold;
    line-height: 1.6;
}

.info_zero_innerbox dt span {
    display: block;
    font-size: 1.75rem;
}

.info_zero_innerbox dd {
    color: var(--colorOrange);
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.0;
    margin-left: .625rem;
    margin-top: 1.0rem;
}

.info_zero_innerbox dd span {
    font-family: var(--familyInter);
    font-size: 10.0rem;
    line-height: 1.0;
}

.info_link {
    margin-top: 1.50rem;
}

.info_link a {
    background: var(--colorOrange);
    border: #fff solid 1px;
    border-radius: 999px;
    color: var(--colorWhite);
    display: block;
    font-weight: bold;
    line-height: 3.75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 22.75rem;
    position: relative;
    text-align: center;
}

.info_link a:after {
    background: url("../images/common/icon-arrow-orange.png") center center no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 25px;
    position: absolute;
    right: 1.0rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 25px;
}

@media (hover:hover) {
    .info_link a:hover {
        background-color: var(--colorSub2);
        border: 1px solid var(--colorSub);
        color: var(--colorOrange);
    }
}

@media screen and (max-width: 1279px) {
    .info_zero_list {
        align-items: center;
        flex-direction: column;
    }

    .info_zero_list > li {
        width: 31.875rem;
    }

    .info_zero_box_right {
        margin-top: 1.75rem;
    }
}

@media screen and (max-width: 991px) {
    .sns_link {
        flex-direction: column;
    }

    .sns_lineBox {
        margin-top: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .info_zero_innerbox dd span {
        font-size: 6.0rem;
    }

    .info_zero_innerbox dt {
        font-size: 2.2rem;
    }

    .info_zero_innerbox dt span {
        font-size: 1.125rem;
    }

    .info_zero_innerbox dd {
        font-size: 2.0rem;
    }

    .infozero_line .is_center {
        font-size: 4.27vw;
    }
}

/*___________________________
問い合わせ、SNS
___________________________*/

#contact_line {
    background: var(--colorSub2);
    padding-bottom: 2.5rem;
    padding-top: 3.0rem;
}

#contact_line .inner {
    margin-inline: auto auto;
    max-width: 77.5rem;
    padding-inline: 2rem 2rem;
}

.contact_telbox dt {
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
}

.contact_telnumber {
    text-align: center;
}

.contact_telnumber a {
    background: url("../images/common/icon-call.png") left center no-repeat;
    color: var(--colorBlack);
    display: inline-block;
    font-family: var(--familyMontserrat);
    font-size: 3.0rem;
    font-weight: bold;
    padding-left: 3.0rem;
}

.contact_time {
    text-align: center;
}

.contact_time span {
    font-size: .75rem;
}

.snslink_line {
    margin-top: 2.50rem;
}

.sns_link {
    align-items: center;
    display: flex;
    justify-content: center;
}

.sns_link dl {
    align-items: center;
    display: flex;
}

.sns_link dl dt {
    width: 138px;
}

.sns_link dl > dd {
    padding-left: .875rem;
    width: calc(100% - 52px);
}

.sns_link > li {
    margin-left: .75rem;
    margin-right: .75rem;
    width: 22.5rem;
}

#contact_line .sns_link {
    align-items: stretch;
    display: flex;
    margin-inline: auto auto;
}

#contact_line .sns_link > li {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: auto;
}

.check span img {
    height: auto;
    max-width: 100%;
    width: auto;
}

.sns_link dl dl {
    display: block;
}

.sns_instaBox {
    background-image: linear-gradient(90deg, #dd5252, #ffab58);
    border-radius: .625rem;
    box-shadow: 2px 4px 14px 0 #ccc;
    padding: 1.6rem 1.125rem 1.6rem 1.125rem;
}

.sns_lineBox {
    background-image: linear-gradient(90deg, #05c754, #65c33e);
    border-radius: .625rem;
    box-shadow: 2px 4px 14px 0 #ccc;
    height: 100%;
    padding: 1.125rem;
}

.inner .sns_instaBox p {
    color: var(--colorWhite);
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
}

.check {
    font-size: .8125rem;
    position: relative;
    white-space: nowrap;
}

.check:before {
    background: url("../images/common/img-decoration.png") center center no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 28px;
    left: -10px;
    position: absolute;
    top: -15px;
    width: 43px;
}

.check span {
    display: inline-block;
    height: 20px;
    margin-left: .1875rem;
    width: 56px;
}

.sns_instaText {
    font-weight: bold;
}

.sns_instaText span {
    font-family: var(--familyPoppins);
    font-size: 1.875rem;
    font-weight: 400;
}

.inner .sns_link_innerbox dt {
    background: #ffe852;
    border-radius: 999px;
    color: var(--colorGreen);
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.4;
    padding: 5px 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.sns_link_innerbox dt:after {
    background: url("../images/common/img-decoration2.png") center center no-repeat;
    background-size: cover;
    bottom: -10px;
    content: "";
    display: block;
    height: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 10px;
}

.inner .sns_link_innerbox > dd {
    color: var(--colorWhite);
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.4;
    padding-left: 0;
    text-align: center;
    width: auto;
}

.sns_link_innerbox > dd span {
    font-family: var(--familyPoppins);
    font-size: 2.625rem;
    font-weight: 400;
}

@media (hover: hover) {
    .sns_link a:hover {
        opacity: .7;
    }
}

.inner #contact_line {
    padding-bottom: 0;
    padding-top: 0;
}

@media screen and (max-width: 767px) {
    .infozero_title {
        font-size: 5.33vw;
        line-height: 2.5;
        margin-top: 6vw;
    }

    .text_zero {
        margin-left: .3125rem;
        margin-right: .3125rem;
    }

    .text_zero img {
        height: auto;
        width: 94.5px;
    }

    .info_zero_box_left > dt span {
        font-size: .875rem;
    }

    .info_zero_list > li {
        width: 90vw;
    }

    .cost_value span {
        font-size: 1.50rem;
    }

    .cost_price span {
        font-size: 2.50rem;
    }

    .info_zero_box_right > dt span {
        font-size: .875rem;
    }

    .contact_telnumber a {
        background-size: 1.5rem;
        font-size: 2.0rem;
        padding-left: 2rem;
    }

    .contact_time span {
        display: block;
    }

    .sns_link {
        margin-left: -.625rem;
        margin-right: -.625rem;
    }

    .sns_link > li {
        width: 100%;
    }

    #contact_line .sns_link > li {
        margin: 0;
    }

    .sns_link dl dt {
        width: auto;
    }

    .inner .sns_instaBox p {
        font-size: 3.47vw;
        white-space: initial;
    }

    .check span {
        width: 14vw;
    }

    .sns_instaText span {
        font-size: 8vw;
    }

    .inner .sns_link_innerbox dt {
        font-size: 3.73vw;
    }

    .sns_link_innerbox > dd span {
        font-size: 11.2vw;
    }

    .inner .sns_link_innerbox > dd {
        font-size: 4vw;
    }
}

/*========================
  Pagination
========================*/
.pageOpen {
    display: flex;
    justify-content: space-between;
}

.pageOpen a {
    color: var(--colorBlack);
    font-weight: bold;
}

.pageOpen__prev {
    margin-inline: 0 auto;
    max-width: 50%;
}

.pageOpen__next {
    margin-inline: auto 0;
    max-width: 50%;
}

.pageOpen__prev::before {
    border: 1px solid var(--colorOrange);
    border-radius: 50%;
    box-sizing: border-box;
    color: var(--colorOrange);
    content: "\02190";
    display: inline-block;
    font-size: .8rem;
    height: 1.2rem;
    line-height: 1.2rem;
    margin-right: 1.25rem;
    text-align: center;
    width: 1.2rem;
}

.pageOpen__next::after {
    border: 1px solid var(--colorOrange);
    border-radius: 50%;
    box-sizing: border-box;
    color: var(--colorOrange);
    content: "\02192";
    display: inline-block;
    font-size: .8rem;
    height: 1.2rem;
    line-height: 1.2rem;
    margin-left: 1.25rem;
    text-align: center;
    width: 1.2rem;
}

@media screen and (max-width: 767px) {
    .pageOpen {
        gap: 3vw;
        position: relative;
        text-align: center;
    }

    .pageOpen__prev::before {
        left: 0;
        position: absolute;
        top: -50%;
        transform: translateX(-25%);
    }

    .pageOpen__next::after {
        position: absolute;
        right: 0;
        top: -50%;
        transform: translateX(-25%);
    }
}

/*___________________________
Footer
___________________________*/

.footer {
    display: block;
}

.footer_line {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    padding-bottom: 8rem;
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    padding-top: 2.25rem;
    width: 100%;
}

.footer_inner {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.footer_logoBox dd {
    font-size: .875rem;
    margin-top: 2.50rem;
}

.footer_menuList {
    margin-top: 2.0rem;
}

.footer_menuList ul {
    display: flex;
    flex-wrap: wrap;
}

.footer_menuList ul li {
    margin-left: .75rem;
    margin-right: .75rem;
}

.footer_menuList ul li:last-child {
    margin-right: 0;
}

.footer_menuList ul li a {
    color: var(--colorBlack);
    font-size: .875rem;
}

.footer_menuList ul li a:hover {
    text-decoration: underline;
}

.footer_link {
    margin-top: 4.5rem;
}

.footer_link ul {
    display: flex;
    justify-content: flex-end;
}

.footer_link ul li {
    margin-left: 1.0rem;
}

.footer_link ul li:first-child {
    margin-left: 0;
}

.footer_link ul li a {
    color: var(--colorBlack);
    font-size: .75rem;
}

.footer_link ul li a:hover {
    text-decoration: underline;
}

.footer_copyright p {
    color: var(--colorGray);
    font-size: .625rem;
    text-align: right;
}

@media screen and (max-width: 1279px) {
    .footer_inner {
        flex-direction: column;
    }

    .footer_link {
        margin-top: 1.75rem;
    }

    .footer_logoBox {
        margin-top: 1.75rem;
    }

    .footer_logoBox dd {
        margin-top: 1.25rem;
    }

    .footer_copyright {
        margin-top: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .footer_line {
        padding-bottom: 5rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .footer_menuList {
        margin-top: 0;
    }

    .footer_link {
        margin-top: 1.25rem;
    }

    .footer_menuList ul {
        justify-content: center;
    }

    .footer_logoBox {
        margin-left: auto;
        margin-right: auto;
        width: 13.125rem;
    }

    .footer_logoBox dd {
        text-align: center;
    }

    .footer_link {
        width: 100%;
    }

    .footer_link ul {
        justify-content: center;
    }

    .footer_copyright p {
        text-align: center;
    }
}


/*============================================
  FAQ
============================================ */
.faq__container {
    margin-bottom: 6rem;
    margin-top: 4rem;
}

.faqBox {
    margin-bottom: 50px;
}

.faqHead {
    align-items: center;
    background: none;
    border: none;
    border-bottom: 1PX solid #cfcdcb;
    cursor: pointer;
    display: flex;
    gap: 12px;
    padding: 15px 0;
    position: relative;
    width: 100%;
}

.faqHead::after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    content: "";
    height: 10px;
    margin-top: -6px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: rotate(45deg);
    transition: transform .3s ease;
    width: 10px;
}

.faqHead.is-active::after {
    transform: rotate(-135deg);
}

.faqHead__img {
    height: 50px;
    width: 50px;
}

.faqHead__text {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: bold;
    text-align: left;
}

.faqAnswer {
    background-color: #fff;
    font-size: 1.4rem;
    line-height: 1.8;
}

.faqAnswer p + p {
    padding-top: 24px;
}

.faqAnswer__top {
    color: var(--colorOrange);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    padding-top: 16px;
}

.faqAnswer__text {
    font-size: clamp(12px, 2vw, 16px);
    padding-bottom: 15px;
}

.faqAnswer__note {
    color: #ff2f00;
    font-weight: bold;
}

/* アコーディオン本体 */
.js-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

@media screen and (max-width: 767px) {
    .faqBox {
        margin-bottom: 10px;
        padding-inline: 1.25rem 1.25rem;
    }

    .faqHead {
        gap: 2.67vw;
    }

    .faqHead__img {
        height: 9.33vw;
        width: 9.33vw;
    }

    .faqHead__text {
        font-size: 4.8vw;
        line-height: 1.5;
        width: calc(100% - 21.33vw);
    }

    .js-accordion-content {
        padding-inline: 1.25rem 1.25rem;
    }

    .faqAnswer__top {
        font-size: 4.27vw;
    }

    .faqAnswer__text {
        font-size: 3.73vw;
    }
}

/* 物件共通 */
.swiper.propertie__swiper {
    margin-left: 6.25rem;
    overflow: visible;
    position: relative;
}

.propertie__swiper::before {
    aspect-ratio: 164 / 106;
    background: url(../images/top/free-flag.png);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: inline-block;
    left: 2.5rem;
    max-width: 10.25rem;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    width: 12%;
}

.propertie__swiper .swiper-button-next,
.propertie__swiper .swiper-button-prev {
    background: url(../images/common/ico-swiper-btn.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 2.5rem;
    width: 2.5rem;
}

.propertie__swiper .swiper-button-prev {
    transform: rotate(180deg);
}

.propertie__swiper .swiper-button-next:after,
.propertie__swiper .swiper-button-prev:after {
    content: none;
}

.propertie__item {
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, .1));
    flex-direction: column;
    max-width: 20rem;
}

.propertie__info {
    flex-grow: 1;
    font-size: .875rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.propertie__area {
    align-items: center;
    column-gap: .25rem;
    display: grid;
    font-size: 1rem;
    font-weight: 700;
    grid-template-columns: .81rem 1fr;
}

.propertie__area::before {
    background: url(../images/common/ico-place.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 1.06rem;
    width: .81rem;
}

.propertie__image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.propertie__image img {
    aspect-ratio: 640/428;
    max-width: 20rem;
    object-fit: cover;
    width: 100%;
}

.propertie__price-layout {
    display: flex;
    flex-wrap: wrap;
    margin-top: .16rem;
}

.propertie__price,
.propertie__layout {
    width: 50%;
}

@media screen and (max-width: 1200px) {
    .propertie__price,
    .propertie__layout {
        width: 100%;
    }
}


.propertie__point-title {
    align-items: center;
    color: var(--colorOrange);
    display: flex;
    font-weight: 700;
    margin-inline: auto 0;
    margin-top: .5rem;
}

.propertie__point-title::before {
    background: url(../images/common/ico-point.svg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: inline-block;
    height: .97rem;
    margin-right: .25rem;
    width: 1.25rem;
}

.propertie__point-text {
    line-height: 1.5;
    margin-top: .25rem;
}

.propertie__link-area {
    margin-top: auto;
}

/*============================================
  pagination2
============================================ */

.wp-pagenavi {
    margin-top: 40px;
    text-align: center;
}

.pages {
    display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
    border: none !important;
    color: #000;
    margin: 2px 7px !important;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    color: var(--colorOrange);
}

.wp-pagenavi span.current {
    border-bottom: 2px solid var(--colorOrange) !important;
    font-weight: normal !important;
}


/* 固定nav */
.fix-nav {
    bottom: 1rem;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 1rem;
    transition: all .8s;
    width: 37.5rem;
    z-index: 10;
}

.fix-nav.show {
    opacity: 1;
    pointer-events: initial;
}

.fix-nav__list {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    overflow: hidden;
}

.fix-nav__item {
    font-size: .9375rem;
    font-weight: 700;
    width: calc(100%/3);
}

.fix-nav__link {
    color: #fff;
    display: inline-block;
    font-weight: 700;
    height: 100%;
    line-height: 1.5;
    padding: .53rem;
    text-align: center;
    width: 100%;
}

.fix-nav__item-text--en {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 500;
}

.nav-line .fix-nav__link {
    background: linear-gradient(to right, #06c755 0, #06c755 3%, #66c33e 100%);
    padding-top: 1rem;
}

.nav-insta .fix-nav__link {
    background: linear-gradient(to right, #dc515a 0, #dd545a 3%, #ffac58 100%);
    font-size: .875rem;
}

.nav-insta .fix-nav__item-text--en {
    font-size: 1.56rem;
}

.nav-search .fix-nav__link {
    align-items: center;
    background-color: #fff;
    color: #dd545a;
    column-gap: .625rem;
    display: flex;
    font-size: 1.25rem;
    justify-content: center;
}

.nav-search .fix-nav__link::before {
    aspect-ratio: 24/19;
    background: url(../images/common/ico-house.svg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: inline-block;
    width: 1.5rem;
}

/* swiperの高さをあわせる */
.swiper-slide.propertie__item {
    height: auto;
}

@media screen and (max-width: 767px) {
    .fix-nav {
        width: calc(100% - 2rem);
    }

    .nav-line .fix-nav__link,
    .nav-insta .fix-nav__link,
    .nav-search .fix-nav__link {
        padding: .2rem;
    }

    .fix-nav__item-text--en {
        font-size: 4.2vw;
    }

    .nav-line .fix-nav__link {
        font-size: 4vw;
    }

    .nav-insta .fix-nav__link {
        font-size: 3vw;
    }

    .nav-insta .fix-nav__item-text--en {
        font-size: 4vw;
    }

    .nav-search .fix-nav__link {
        column-gap: 2vw;
        font-size: 4vw;
    }

    .nav-search .fix-nav__link::before {
        width: 6vw;
    }

    .propertie__item {
        max-width: unset;
    }

    .propertie__image img {
        max-width: unset;
    }
}
