@charset “UTF-8”;


/* common.css　に移動したい。
----------------------------------------------------------- */

html {
    scroll-padding-top: 100px;
}

.container--underline {
	padding-bottom: 30px;
    border-bottom: 1px solid var(--color-gray-300);
}

@media only screen and (min-width: 768px) {
	.container--underline {
		padding-bottom: 60px;
	}
}


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

 housecleaning / ranking

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

/* title / ttl
----------------------------------------------------------- */

.page-head {
    margin-bottom: 20px;
}

.page_ttl {
    margin-bottom: 15px;
}
.page_ttl_sp {
    padding: 2vw 3.33vw;
    margin: 0 0 4.2vw 0!important;
    border-radius: 3px;
    background: #E0F1DF;
    font-size: 4.2vw!important;
    font-weight: 600;
}

.page_sub_ttl {
    margin-bottom: 15px;
    font-size: 116%;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .page_sub_ttl img {
        max-width: none;
        width: auto;
        height: 2em;
    }    
}
@media only screen and (min-width: 768px) {
    .page-head {
        margin-bottom: 40px;
    }    
    .page_sub_ttl {
        margin-bottom: 20px;
    }    
}


/* ランクングタイトル
----------------------------------------------------------- */

.ranking h2 {
    position: relative;
    margin-bottom: 2em;
    padding: .75em 1em;
    background-color: var(--color-gray-100);
    font-size: min(2.4rem,5vw);
    font-weight: 600;
    text-align: center;
}
.ranking h2::before, .ranking h2::after {
    content: '';
    position: absolute;
    top: 100%;
    border-style: solid;
    border-color: transparent;
}
.ranking h2::before {
    left: 0;
    border-width: 0 15px 15px 0;
    border-right-color: var(--color-gray-300);
}
.ranking h2::after {
    right: 0;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-top-color: var(--color-gray-300);
}


/* page-nav
----------------------------------------------------------- */

.page-nav {
    margin-bottom: 30px;
}
.page-nav__list {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .page-nav {
        margin-bottom: 40px;
    }
}


/* item-list
----------------------------------------------------------- */

.item-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1.6;
}
.item-list--raking {
	counter-reset: number 0;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.item-list--raking li {
    width: calc((100% - 30px) / 2);
}
.item-list--raking li:nth-child(-n+3) {
    width: 100%;
}

.item-list a {
    display: block;
    text-decoration: none;
}
.item-list--raking a::before {
	counter-increment: number 1;
	content: counter(number) '位';
    display: block;
    margin-bottom: 10px;
    padding: 2px;
    background: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
}
.item-list--raking li:nth-child(1) a::before {
    background: #B59B00;
}
.item-list--raking li:nth-child(2) a::before {
    background: #9A9A9A;
}
.item-list--raking li:nth-child(3) a::before {
    background: #CB918F;
}
.item-list__image {
    text-align: center;
}
.item-list__image.border {
    padding: 10px;
    border: 4px solid var(--color-gray-100);
}
.item-list__name {
    display: block;
    margin-top: 10px;
    color: var(--color-secondary);
    font-size: 110%;
    font-weight: 600;
    text-decoration: underline;
}
.item-list__title {
    display: block;
    margin-top: 10px;
    color: var(--color-secondary);
    text-decoration: underline;
}
a:hover .item-list__name ,
a:hover .item-list__title {
    text-decoration: none;
}

.item-list__text {
    font-size: min(1.4rem,3.5vw);
}

@media only screen and (min-width: 768px) {
    .item-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    .item-list li {
        width: calc((100% - 30px) / 2);
    }
    .item-list--raking li {
        width: calc((100% - 30px * 3) / 4);
    }
    .item-list--raking li:nth-child(-n+3) {
        width: calc((100% - 30px * 2) / 3);
    }
    .item-list__image.border {
        border: none;
    }
}



/* rankingLink / externalLink
----------------------------------------------------------- */

.rankingLink a {
    display: inline-block;
    font-size: 114%;
    color: var(--color-secondary);
}
.rankingLink a::before {
    content: '\2192';
}

a.externalLink::after {
    content: '';
    display: inline-block;
    width: .8em;
    height: .8em;
    margin-left: .35em;
    background: center / contain url(../images/common/icon_blank.gif) no-repeat;
    vertical-align: middle;
}

@media only screen and (min-width: 768px) {
}



/* large
----------------------------------------------------------- */

.large-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 20px;
}
.large-step li {
    position: relative;
    padding: 15px;
    border: 1px solid var(--color-gray-300);
}
.large-step li:not(:last-child)::after {
    position: absolute;
    content: '';
    bottom: -35px;
    right: calc(50% - 25px);
    width: 50px;
    height: 20px;
    background: var(--color-gray-800);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.large-step__title {
    margin-bottom: 10px;
    padding: 5px 10px;
    background: var(--color-gray-100);
    font-size: 116%;
    font-weight: 600;
}

@media only screen and (min-width: 768px) {
    .large-step {
        flex-direction: row;
        gap: 40px;
    }
    .large-step li {
        width: calc((100% - 40px * 3) / 4);
        padding: 0;
        border: none;
    }
    .large-step li:not(:last-child)::after {
        bottom: auto;
        top: 45px;
        right: -25px;
        width: 10px;
        height: 20px;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
    }
    .large-step__title {
        padding: 40px 10px;
        border: 2px solid var(--color-gray-300);
        background: none;
        font-size: inherit;
        text-align: center;
    }
    .large-step__text {
        font-size: 1.4rem;
    }
}


/* seminar
----------------------------------------------------------- */

.seminar__item {
    margin-bottom: 40px;
    padding: 10px;
    border: 5px solid var(--color-gray-300);
}
.seminar__item h4 {
    margin-bottom: 10px;
    padding: 10px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}
.seminar__item a {
    color: var(--color-secondary);
    text-decoration: underline;
}


.tbl--seminar {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}
.tbl--seminar th {
    width: 20%;
	padding: 10px 5px;
	border-bottom: 1px solid var(--color-gray-200);
	text-align: left;
    vertical-align: top;
	white-space: nowrap;
}
.tbl--seminar td {
	padding: 10px 5px;
	border-bottom: 1px solid var(--color-gray-200);
}

@media only screen and (min-width: 768px) {
    .seminar__item {
        padding: 20px;
    }
}


/* shop
----------------------------------------------------------- */

.shop-box p.nowclose {
    text-align: center;
    font-size: min(5.5rem,10vw);
    color: var(--color-primary);
    margin: 2rem;
    font-weight: bold;
    text-decoration: underline;
}

.shop-point {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}
.shop-point li {
    padding: 15px;
    border: 5px solid var(--color-gray-300);
}
.shop-point__title {
    font-size: min(1.6rem,5vw);
    font-weight: 600;
}

.map-wraper iframe {
    display: block;
    width: 100%;
    height: 360px;
}

@media only screen and (min-width: 768px) {
    .shop-point {
        flex-direction: row;
        gap: 15px;
    }
    .shop-point li {
        width: calc((100% - 15px * 2) / 3);
    }
    .shop-point__title {
        margin-bottom: .5em;
        text-align: center;
    }
    .shop-point__text {
        font-size: 1.5rem;
    }
}





/* xxxxxxx
----------------------------------------------------------- */


@media only screen and (min-width: 768px) {
}


