@charset "utf-8";
/* 共通レイアウト　和泉町2506 */

body {
    background: #F8F8F8;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", メイリオ, meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	color: var(--base1-color);
	font-size: 1rem;
	line-height: 1.85;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
	font-feature-settings: "palt";
}

*{box-sizing: border-box;}

ul {
	margin:0;
	padding: 0;
	list-style: none;
}
a {
	color: var(--base1-color);
	text-decoration: none;
    outline: none;
}
img {
    width: 100%;
    height: auto;
}

.heading {
	font-family: 'Jost', sans-serif;
    font-size: 3vw;
    font-weight: 400;
	letter-spacing: 0.16em;
    color: var(--main-color);
    animation-delay: 0.3s;
}
@media screen and (max-width:960px) {
    .heading {
        font-size: 3rem;
		line-height: 1.4;
    }
}
@media screen and (max-width:600px) {
    .heading {
        font-size: 2rem;
		line-height: 1.4;
    }
}

h2,h3,h4 {
	font-weight: 500;
}

.bg-bk {
    background: #1A1A1A;
}
.bg-wh {
    background:#fff;
}
.text-center {
    text-align: center;
}
.tx-sm {
    font-size: 0.9rem;
}
.tx-xs {
    font-size: 0.8rem;
}
@media screen and (max-width:600px) {
	.tx-sm {
		font-size: 0.8rem;
	}
	.tx-xs {
		font-size: 0.7rem;
	}
}

.tx-lg {
    font-size: 1.3rem;
}
.tx-red {
    color: var(--red-color);
}
.tx-sky {
    color: var(--accent2-color);
}
.tx-ycolor {
    color: var(--accent-color);
}
.tx-lightgray {
    color: #ccc;
}

.tx-accent {
	background: -webkit-linear-gradient(transparent 70%, var(--accent-color) 70%);
	background: -o-linear-gradient(transparent 70%, var(--accent-color) 70%);
	background: linear-gradient(transparent 70%, var(--accent-color) 70%);
}

#content {
    overflow-x: hidden;
}


/* 共通レイアウト*/
.container {
 	max-width: 1080px;
	margin-inline: auto;
	padding: 0 24px;
}

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


/*各ページタイトル*/
.title-area {
	margin-top: 80px;
    height: 100px;
	background: #c2c9ce;
	background: radial-gradient(circle, rgba(243,245,246,.6) 0%, rgba(194,201,206,.6) 100%);/*あとで#fffに変更*/
    text-align: center;
}

h1.page-title {
    letter-spacing: 0.2em;
	padding-top: 26px;
    font-size: 1.6rem;
    color: var(--main-color);
	font-weight: 500;
}

.title-area .page-title .en {
  	display: block;
	font-family: 'Jost', sans-serif;
	text-transform: uppercase;
  	font-size: 2rem;
  	letter-spacing: 0.2em;
	font-weight: 400;
	line-height: 1;
}
h1.page-title span.en {/*グラデーション追加*/
  background: linear-gradient(-135deg, #4dae6d 0%, #dbdf76 40%, #4dae6d 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.title-area .page-title .ja {/*色変更*/
	color: #4dae6d;
  	display: block;
  	font-size: 1rem;
  	font-weight: 400;
	letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
	.title-area {
		margin-top: 60px;
		height: 76px;
	}
	h1.page-title {
		font-size: 1.2rem;
		padding-top: 15px;/*20px*/
	}
	.title-area .page-title .en {
		font-size: 1.7rem;/*1.6remx*/
	}
	.title-area .page-title .ja {
		font-size: .8rem;
	}
}


/* category-title位置は各cssで設定 */
.category-title {
	position: absolute;
	max-width: 286px;
}
@media screen and (max-width: 600px) {
	.category-title {
		max-width: 120px;
	}
}


/* header */
#header {
    background: var(--white-color);
  box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.15);
}
#header .site-logo {
    width: 275px;
	margin-top: 6px;
}

#g-nav ul {
    display: flex;
    padding: 0 0 0 2%;
}
#g-nav ul li {
    letter-spacing: 0.04em;/*0.06em*/
	font-size: .9rem;
    white-space: nowrap;
}
#g-nav ul li a {
    display: block;
    padding: 6px 8px;/*6px 10px*/
}

#g-nav ul li.coming a {
	color: #999;
	cursor: default;
}
#g-nav ul li.coming a:hover {
	color: #999;
}
#g-nav ul li.coming a::after {
	display: none;
}

@media screen and (max-width:1200px) {/*1300px*/
    #g-nav ul {
        display: block;
        padding: 0;
    }
    #g-nav ul li a {
        padding: 6px 15px;
    }
}

#g-nav ul li a {
	position: relative;
}
#g-nav ul li.current a,
#g-nav ul li a:hover {
	color:var(--base1-color);
}
#g-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: var(--white-color);
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
#g-nav ul li.current a::after,
#g-nav ul li a:hover::after {
    transform: scale(1, 1);
}

@media screen and (max-width:1200px) {/*1300px*/
	#g-nav ul li.current a {
		color: var(--white-color);
	}
}
@media screen and (min-width:1201px) {/*1301px*/
	#g-nav ul li a::after {
		background: var(--base1-color);
	}
}	


/*MAP・資料請求　utility-navi*/
#header ul#utility-navi {
    position: fixed;
    top:0;
    right:0;
    z-index: 999;
    display: flex;
    font-size: 0.8rem;
}
@media screen and (max-width:1200px) {/*1300px*/
    #header ul#utility-navi {
        right: 94px;
    }
}

#header ul#utility-navi li {
    text-align: center;
	font-weight: bold;
}
#header ul#utility-navi li span {
    display: block;
	font-size: .9rem;
}
#header ul#utility-navi li a {
    color: var(--base1-color);
    padding: 18px 0 12px;
    display: block;
    width: 100px;
	height: 80px;
    transition: all .5s;
	border-left: 1px solid rgba(255,255,255, .4);
}

#header ul#utility-navi li.navi-map img {
    width: 25%;
} 
#header ul#utility-navi li.navi-contact img {
    width: 25%;
}  
#header ul#utility-navi li.navi-yoyaku img {
    width: 26%;
	margin-top: -2px;
}

#header ul#utility-navi li:first-child a {/*資料請求*/
	background: #97c157;
	background-image: linear-gradient(to bottom left, #dbdf76 0%, #97c157 100%);
}
#header ul#utility-navi li:first-child a:hover {
	background: #97c157;
}
#header ul#utility-navi li:last-child a {/*来場予約*/
	background: #e95850;
	background-image: linear-gradient(to bottom left, #f6c0be 0%, #e95850 100%);
}
#header ul#utility-navi li:last-child a:hover {
    background: #e95850;
}

@media screen and (max-width:1200px) {/*1300px*/
	#header ul#utility-navi li::first-child a {
		background: #97c157;
		background-image: linear-gradient(to bottom left, #dbdf76 0%, #97c157 100%);
	}
	#header ul#utility-navi li::first-child a:hover {
		background: #97c157;
	}
	#header ul#utility-navi li:last-child a {
	background: #e95850;
	background-image: linear-gradient(to bottom left, #f6c0be 0%, #e95850 100%);
	}
	#header ul#utility-navi li:last-child a:hover {
		 background: #e95850;
	}
	#header ul#utility-navi li.navi-map img {
		width: 14%;
	}
}

@media screen and (max-width:768px) {
    #header .site-logo {
		width: 220px;
        margin-top: -8px;
    }

    #header ul#utility-navi li span {
        /*display:none;*/
		margin-top: -6px;
		font-size: .8rem;
    }
    #header ul#utility-navi li a {
        width: 60px;
        height: 60px;
        padding: 0;
    }
    #header ul#utility-navi li img {
        width: 45%;
        margin: 12px 0 0 0px;/*17px 0 0 0px*/
    }
	#header ul#utility-navi li.navi-map img {
		width: 20%;
	} 
	#header ul#utility-navi li.navi-contact img {
		width: 36%;
	}
	#header ul#utility-navi li.navi-yoyaku img {
		width: 38%;
		margin-top: 10px;
	}
    #header ul#utility-navi {
        right: 60px;/*71px位置調整*/
    }
}

@media screen and (max-width:530px) {
    #header .site-logo {
        width: 180px;
		margin-top: -12px;
    }
    #header ul#utility-navi li span {
		margin-top: -2px;
		font-size: .7rem;
    }
    #g-nav ul li:last-child{
        display: block;   
    }
}


/* contact */
#contact {
background: #c2c9ce;
background: radial-gradient(circle, rgba(243,245,246,.9) 0%, rgba(194,201,206,.9) 100%);
	padding: 48px 0;
	margin-bottom: 20px;
	color: var(--base5-color);
	text-align: center;
}
#contact h2 {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	font-weight: 500;
}
#contact .tel {
}
#contact .tel a {
	color: var(--base1-color);
}
#contact .tel img {
	width: 110px;
}

#contact .freed {
    font-family: 'Jost', sans-serif;
    font-size: 2.7rem;/*2.6rem*/
	letter-spacing: 0.08em;
}
#contact p {
	font-size: .9rem;
}

@media screen and (min-width:601px) {
	.tel-sp {
		display: none;
	}
}
@media screen and (max-width:600px) {
	#contact {
		padding: 32px 0;
	}
	#contact h2 {
		font-size: 1.3rem;
		margin-bottom: 8px;
	}
	#contact p {
		font-size: .8rem;
		line-height: 1.4;
	}
	#contact .tel img {
		width: 90px;
	}
	#contact .freed {
		font-size: 2.1rem;
		letter-spacing: 0.04em;
	}
}

/*資料請求バナー*/
.shiryo-box .btn-shiryo {
}
.btn-shiryo {
 	width: 42%;/*48%*/
 	display: inline-block;
 	background: #fff;
	font-weight: 500;
 	font-size: 1.2rem;
	letter-spacing: 0.1em;
  	color: var(--red-color);
  	margin-top: 12px;
  	padding: 1.3rem 0.5rem 1.3rem;
  	transition: all 0.3s ease-out;
	box-shadow: 4px 4px 4px 2px rgba(29, 32, 135, .1);
/*	border: 1px solid var(--base2-color);*/
	position: relative;
}
a.btn-shiryo:before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: '';
  border: 1px solid var(--base2-color);	
}
.btn-shiryo:hover {
	background: rgba(255, 255, 255, .6);
}
.shiryo_tx {
    font-size: 0.8rem;
    margin-left: 4px;
    color: #fff;
    font-weight: normal;
}
.btn-shiryo i {
    margin-right: 8px;
}

@media (max-width: 460px) {
    .btn-shiryo {
	 width: 84%;
      font-size: 1rem;
      padding: 1rem 0.3rem 1rem;
      letter-spacing: 0.1em;
    }
    .shiryo_tx {
        font-size: 0.7rem;
        margin-left: 3px;
    }
}


/*bw-brand*/
.bw-brand {
	padding-top: 20px;
	text-align: center;
	margin-bottom: 40px;
}
.bw-brand p {
	margin-bottom: 12px;
}
.bw-brand-item a:hover img {
	opacity: 0.6;
	transition: .3s;
}
@media screen and (min-width:990px) {
	.bw-brand-wrap {
		display: flex;
		justify-content: space-between;
	}
	.bw-brand-item {
		padding-top: 8px;
		padding-bottom: 8px;
		max-width: 330px;
	}
}
@media screen and (max-width:600px) {
	.bw-brand p {
		font-size: .9rem;
		text-align: left;
	}
}


/*breadcrumb*/
.breadcrumb {
    list-style: none;
    font-size: 0.9rem;
	margin-bottom: 16px;
}
.breadcrumb a {
    color: var(--base5-color);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--base3-color);
    text-decoration: none;
}
.breadcrumb li {
    display: inline-block;
}
.breadcrumb li::after {
    content: ">";
    padding: 0 4px;
    color: #888;
}
.breadcrumb li:last-child::after {
    content: none;
}
@media screen and (max-width:600px) {
	.breadcrumb {
		font-size: 0.8rem;
	}
}


/*attention-area*/
.attention-area {
	font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, メイリオ, meiryo, sans-serif;
	font-size: .8rem;
	line-height: 1.4;
	margin-bottom: 24px;
	color: var(--base5-color);
}
@media screen and (max-width:768px) {
	.attention-area {
		font-size: .75rem;
	}
}

/* footer */
#footer {
    background:var(--sub-color);
	position: relative;/*pagetop用*/
	font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, メイリオ, meiryo, sans-serif;
}
#footer .footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
	max-width: 1080px;
	margin: 0 auto;
}
#footer .footer-r {
    padding: 60px 24px 24px;
}

#footer h2 {
	color: var(--base1-color);
	font-size: 1.1rem;
	margin-bottom: 24px;
}
#footer .footer-link {
    font-size: 1rem;
    padding: 0;
	margin-bottom: 24px;
}
#footer .footer-link-wrap {
	max-width: 400px;
	display: flex;
	justify-content: space-between;	
}

#footer .footer-link ul {
    margin: 0;	
}
#footer .footer-link li {
    display: block;
    margin-bottom: 4px;
}

#footer .footer-link a {
    color: var(--base1-color);
}
#footer .footer-link a:hover {
     color: var(--base3-color);
	transition: .3s;
}
#footer .footer-l {
    padding: 60px 24px 24px;
}

#footer .footer-info p , #footer .footer-info address {
	font-size: .85rem;
	line-height: 1.5;
	color: var(--base1-color);
	font-style: normal;
}
#footer .logo-kano {
    max-width: 320px;
    margin-bottom: 5px;
}

#footer #copyright {
    color: var(--base5-color);
	font-size: .85rem;
}


/*#page-top*/
#footer #page-top {
    position: absolute;
    top:-80px;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--sub-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#footer #page-top span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-top: 1px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    transform: rotate(45deg);
}

@media screen and (max-width:1045px) {
    #footer .footer-r,
    #footer .footer-l {
        width:100%;
    }   
    #footer #copyright {
        padding: 24px 0;
    }   
}

@media screen and (max-width:768px) {
    #footer .footer-r, #footer .footer-l {
        padding: 40px 24px 4px;
    }
	#footer .footer-info p , #footer .footer-info address {
		font-size: .8rem;
	}
	#footer .footer-link {
		font-size: .9rem;
	}
    #footer #page-top {
        width: 50px;
        height: 50px;
	    top:-50px;
    }
}


/*space*/
.mb08 {
    margin-bottom: 8px;
}
.mb12 {
    margin-bottom: 12px;
}
.mb24 {
    margin-bottom: 24px;
}
.mb36 {
    margin-bottom: 36px;
}
.mb48 {
    margin-bottom: 48px;
}
.mb60 {
    margin-bottom: 60px;
}

.mt08 {
    margin-top: 8px;
}
.mt24 {
    margin-top: 24px;
}
.mt36 {
    margin-top: 36px;
}
.mt48 {
    margin-top: 48px;
}


/*sp-none pc-none*/
@media (max-width: 767px) {
	.sp-none {
	display: none;
	}
}
@media (min-width: 768px) {
	.pc-none {
	display: none;
	}
}

/* pc_br sp_br */
@media (min-width: 601px){   
  .pc_br { display:block; }
  .sp_br { display:none; }
}
@media (max-width: 600px){   
  .pc_br { display:none; }
  .sp_br { display:block; }
}