@charset "UTF-8";
:root {
	--c_black: #333;
	--c_pink: #E2706C;
	--c_blue: #2366D1;
	--c_red: #C22D2D;
    --gothic: "游ゴシック体", YuGothic, "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
	--futura: futura-pt, sans-serif;
	--fz15: clamp(1.3rem, .9vw, 1.5rem);
	--fz16: clamp(1.4rem, 1vw, 1.6rem);
	--fz17: clamp(1.5rem, 1vw, 1.7rem);
	--fz18: clamp(1.6rem, 1.1vw, 1.8rem);
	--fz19: clamp(1.6rem, 1.1vw, 1.9rem);
	--fz20: clamp(1.7rem, 1.2vw, 2rem);
	--fz21: clamp(1.8rem, 1.3vw, 2.1rem);
	--fz22: clamp(1.8rem, 1.3vw, 2.2rem);
	--fz23: clamp(1.9rem, 1.4vw, 2.3rem);
	--fz24: clamp(1.9rem, 1.5vw, 2.4rem);
	--fz25: clamp(2rem, 1.5vw, 2.5rem);
	--fz26: clamp(2rem, 1.6vw, 2.6rem);
	--fz27: clamp(2.1rem, 1.6vw, 2.7rem);
	--fz28: clamp(2.2rem, 1.7vw, 2.8rem);
	--fz30: clamp(2.5rem, 1.8vw, 3rem);
	--fz33: clamp(2.7rem, 2vw, 3.3rem);
}

body {
    position: relative;
    width: 100%;
    color: var(--c_black);
    font-size: 1.6em;
    font-family: var(--gothic);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0;
    background-color: #fff;
}
@media only screen and (max-width: 850px) {
    body {
        font-size: 1.6em;
    }
}
@media only screen and (max-width: 650px) {
    body {
        font-size: 1.5em;
    }
}
@media only screen and (max-width: 450px) {
    body {
        font-size: 1.4em;
    }
}
.post_img {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.post_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
a.post_img img, a .post_img img {
    transition: all .3s ease;
}
a.post_img:hover img, a .post_img:hover img {
    transform: translate(-50%, -50%) scale(1.03);
}
.txt {
    width: 100%;
}
/*//common*/


/*pagetop*/
.pagetop {
    bottom: 60px;
    position: fixed;
    right: 20px;
    z-index: 998 !important;
}
.pagetop > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    color: var(--black);
    font-size: 2rem;
    background-color: #fff;
    border: 2px solid var(--black);
    border-radius: 0;
    transition: all .3s ease;
    box-sizing: border-box;
}
.pagetop > a:hover {
    color: #fff;
    background-color: var(--black);
}
/*//pagetop*/


/*footer*/
#footer {
    width: 100%;
    margin-top: 100px;
}
.f_top {
    width: 100%;
    padding: 30px 0;
    background: rgba(0, 0, 0, .05);
}
.f_top_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    width: 92%;
    margin: auto;
}
.f_sns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}
.f_sns .h {
    margin-right: 40px;
    font-size: var(--fz17);
    font-family: var(--futura);
    font-weight: 600;
}
.f_sns .wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.f_sns .wrap > a {
    opacity: 1;
    margin-right: 20px;
	color: var(--c_black);
	font-size: 1.5em;
	line-height: 1;
    transition: all .3s ease;
}
.f_sns .wrap > a img {
	width: 1em;
}
.f_sns .wrap > a:hover {
    opacity: .6;
}
.f_tac {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
}
.f_tac .mail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 15px 40px;
    margin-right: 30px;
    color: #fff;
	font-size: var(--fz18);
	font-family: var(--futura);
    background: #D6D6D6;
    border: 2px solid #D6D6D6;
    border-radius: 9999px;
    transition: all .3s ease;
}
.f_tac .mail:hover {
    color: #D6D6D6;
    background: #fff;
	text-decoration: none;
}
.f_tac .mail::before {
	content: '\f0e0';
	margin-right: 10px;
	font-size: 1.4em;
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	line-height: 1;
}
.f_tac .num {
    width: auto;
    font-family: var(--futura);
    text-align: right;
}
.f_tac .num .tel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 0 5px;
    font-size: var(--fz26);
    font-weight: 500;
    line-height: 1;
}
.f_tac .num .tel a {
	color: var(--c_black);
}
.f_tac .num .tel::before {
    content: '\f879';
    margin-right: 7px;
	font-size: .6em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	line-height: 1;
}
.f_tac .num .time {
    font-size: var(--fz16);
    font-weight: 600;
}
.f_member {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1092px;
    width: 92%;
    padding: 65px 1.5em 70px;
    margin: auto;
    border-bottom: 1px solid #D4D4D4;
}
.f_member .btn_member {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 25px 70px;
    margin-right: 25px;
    font-size: var(--fz16);
    font-weight: 700;
    line-height: 1;
	background: #fff;
    border: 1px solid #D4D4D4;
    border-radius: 9999px;
	transition: all .3s ease;
}
.f_member .btn_member:hover {
	text-decoration: none;
	background: #D4D4D4;
}
.f_member .btn_member::before {
    content: '';
    display: block;
    width: 22px;
    height: 25px;
    margin-right: 10px;
    background: url(https://sunartshop8787.itembox.design/item/img2023/icon_user.svg) center center/contain no-repeat;
}
.f_member .link {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
}
.f_member .link > a {
	opacity: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    margin: 10px 0;
    font-size: var(--fz16);
    line-height: 1;
	transition: all .3s ease;
}
.f_member .link > a::before {
    content: '\f0da';
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.f_member .link > a:hover {
	opacity: .6;
	text-decoration: none;
}
.f_nav_wrap {
    width: 100%;
    padding: 70px 1.5em;
}
#fnav {
    width: 100%;
    margin-bottom: 65px;
}
.fnav_li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
	margin: 0;
	padding-left: 0;
	list-style: none;
}
.fnav_li > li {
    margin: 0 30px;
}
.fnav_li > li > a {
    opacity: 1;
    font-size: var(--fz15);
    line-height: 1;
    transition: all .3s ease;
}
.fnav_li > li > a:hover {
    opacity: .6;
}
.f_logo {
    opacity: 1;
    width: 146px;
    margin: 0 auto 55px;
    transition: all .3s ease;
}
.f_logo:hover {
    opacity: .6;
}
.f_logo a, .f_logo img {
    display: block;
    width: 100%;
}
.copyright {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    text-align: center;
}
.f_member a, .f_nav_wrap a {
    color: var(--c_black);
}
@media only screen and (max-width: 767px) {
	#footer {
		margin-top: 70px;
	}
	.f_top_wrap {
		flex-direction: column;
		justify-content: flex-start;
	}
	.f_sns {
		flex-direction: column;
		width: 100%;
		padding-bottom: 25px;
		margin-bottom: 30px;
		border-bottom: 1px solid #DBDBDB;
	}
	.f_sns .h {
		margin: 0 auto 20px;
		font-size: 1.7rem;
		line-height: 1;
	}
	.f_sns .wrap > a {
		margin: 0 15px;
	}
	.f_tac {
		flex-direction: row-reverse;
	}
	.f_tac .mail {
		padding: 10px 40px;
		margin: 0 0 0 55px;
	}
	.f_tac .num .tel {
		margin-bottom: 0;
	}
	.fnav_li {
		flex-wrap: wrap;
		width: 92%;
		margin: auto;
	}
	.fnav_li > li {
		width: 50%;
		margin: 0;
	}
	.f_nav_wrap {
		padding: 40px 1.5em;
	}
	.f_member {
		padding: 40px 1.5em 50px;
	}
	#fnav {
		margin-bottom: 45px;
	}
	.f_logo {
    	margin-bottom: 30px;
	}
}
@media only screen and (max-width: 550px) {
	.f_member {
		flex-direction: column;
		padding: 25px 1.5em 25px;
	}
	.f_member .btn_member {
		padding: 15px 45px;
		margin: 0 0 15px;
	}
	.f_member .link {
		flex-direction: row;
		justify-content: center;
	}
	.f_member .link > a {
		margin: 0 10px;
	}
	.f_nav_wrap {
		padding: 20px 1.5em 10px;
	}
	.fnav_li {
		width: 100%;
	}
	.f_top {
		padding: 20px 0 25px;
	}
	.f_tac {
		flex-direction: column-reverse;
	}
	.f_sns {
		padding-bottom: 20px;
		margin-bottom: 25px;
	}
	.f_tac .mail {
		margin: 10px 0 0 0;
	}
	.f_tac .num {
		text-align: center;
	}
	.f_tac .num .tel {
		font-size: 2.6rem;
	}
	.f_tac .num .time {
		font-size: 1.6rem;
	}
	.fnav_li > li {
		width: 100%;
	}
}
/*//footer*/