@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
	font-family: "游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #06C;
	text-decoration: none;
}
.pc, .nobr {
	display: none!important;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
	width: 100%;
	height: 60px;
	display: flex;
	z-index: 10000;
	background: url("../images/nav_bg_sp.webp") no-repeat left top;
	background-size: 100%;
	transition: all .5s;
}
header .inner {
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	z-index: 10000;
}
header h1.logo {
	width: 60%;
	height: 60px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 0 5px;
	box-sizing: border-box;
	transition: all 200ms;
}
header h1.logo a {
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	background: url("../images/name_yoko.svg") no-repeat left 35px center;
	background-size: 80%;
	box-sizing: border-box;
}
header h1.logo a::before {
	content: '';
	width: 30px;
	aspect-ratio: 1/1;
	display: block;
    background: url("../images/kamon.png") no-repeat center center;
	background-size: contain;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 20000;
}
.btn_nav {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 10px;
	right: 10px;
}
.open_nav,
.close_nav {
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	cursor: pointer;
}
.open_nav .line1,
.open_nav .line2,
.open_nav .line3 {
	position: absolute;
	width: 24px;
	height: 1px;
	left: calc(50% - 12px);
    display: block;
	background: #fff;
	transform: rotate(0deg);
    transition: all 200ms;
}
.open_nav .line1 {
	top: 14px;
}
.open_nav .line2,
.close_nav .line2 {
	top: 20px;
}
.open_nav .line3 {
	top: 26px;
}
.close_nav .line1,
.close_nav .line3 {
	position: absolute;
    width: 30px;
	height: 1px;
    top: 20px;
	left: calc(50% - 15px);
    display: block;
	background: #fff;
    transition: all 200ms;
}
.close_nav .line1 {
	transform: rotate(-45deg);
}
.close_nav .line2 {
	display: none;
}
.close_nav .line3 {
	transform: rotate(45deg);
}
.sp_nav_wrap {
	position: absolute;
	width: 100%;
    height: 100vh;
	top: 0;
	right: 0;
	display: none;/*表示／非表示*/
	z-index: 20000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background: url("../images/nav_bg_sp.webp") no-repeat left top;
	background-size: cover;
	box-sizing: border-box;
}
.sp_nav {
	width: 90%;
	height: auto;
	overflow-y: auto;
	margin: 40px auto 100px;
}
.sp_nav ul.sp_nav_menu {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
.sp_nav ul.sp_nav_menu li {
	position: relative;
    width: 100%;
	display: block;
}
.sp_nav ul.sp_nav_menu li+li {
	border-top: solid 1px rgba(255,255,255,0.5);
}
.sp_nav ul.sp_nav_menu li a {
    position: relative;
    width: 100%;
	height: 60px;
    display: flex;
        justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 0 auto;
	padding: 0 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1em;
	color: #fff;
    box-sizing: border-box;
	transition: all 200ms;
}
.sp_nav ul.sp_nav_menu li a::after {
    position: absolute;
	content: '';
    width: 16px;
	aspect-ratio: 1/1;
	right: 5px;
    display: block;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(99%) sepia(0%) saturate(198%) hue-rotate(43deg) brightness(113%) contrast(100%);
}
header .openMenu .sns {
    position: absolute;
	width: auto;
	top: 20px;
	right: 55px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	z-index: 1000;
}
header .openMenu .sns a {
    width: 20px;
	aspect-ratio: 1/1;
    display: block;
	margin: 0 10px;
}
header .openMenu .sns a img {
    filter: invert(99%) sepia(0%) saturate(198%) hue-rotate(43deg) brightness(113%) contrast(100%);
}
/*
header .openMenu .sns a:hover img {
    filter: invert(95%) sepia(9%) saturate(934%) hue-rotate(25deg) brightness(93%) contrast(98%);
	transition: all 200ms;
}
*/


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin-top: 60px;
	background: url("../images/bg.webp") no-repeat top center #f2f1f0;
	background-size: 100%;
}
.wrap {
    position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 20px 0;
}
.block {
    position: relative;
    width: 80%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 5% 0 15%;
	box-sizing: border-box;
}
.reverse {
	
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】ページタイトル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.pageTitle {
	position: relative;
	width: 100%;
	height: 70px;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-content: flex-start;
        flex-wrap: wrap;
    box-sizing: border-box;
}
.pageTitle::before {
	position: absolute;
	content: '';
	width: 70%;
	aspect-ratio: 2/1;
	top: -120px;
	right: -20%;
	display: block;
	z-index: 1000;
	background: url("../images/title_sakura.svg") no-repeat right top;
	background-size: contain;
}
.pageTitle::after {
	position: absolute;
	content: '';
	width: 40%;
	aspect-ratio: 5/2;
	top: 10%;
	display: block;
	z-index: 1000;
	background: url("../images/title_hanabira.svg") no-repeat right top;
	background-size: contain;
}
.pageTitle h2 {
	position: relative;
	width: 100%;
	height: 70px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 0 20px;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1em;
	color: #fff;
	background: linear-gradient(to right, #b17fbe 0%, #d5e9af 50%, rgba(213,233,175,0) 100%);
	box-sizing: border-box;
}
.pageTitle h2::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	bottom: 20px;
	left: 0;
	display: block;
	background: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】中タイトル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.midTitle {
    position: relative;
	width: 80%;
	display: block;
	z-index: 1000;
	margin: 0 5% 0 15%;
}
.midTitle::after {
    position: absolute;
	content: '';
	width: 3px;
	height: 300px;
	top: -20px;
	left: -15px;
	display: block;
    background: linear-gradient(to bottom, #d5e9af 20%, #b17fbe 60%, rgba(177,127,190,0));
}
.midTitle img {
    position: absolute;
	width: 20px;
	top: -20px;
	left: -40px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】各種ボタン
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.btnBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 10px 0;
}

/*【共通】矢印付テキストリンク*/
a.linkArrow {
	position: relative;
	width: auto;
	height: 20px;
	display: flex;
		justify-content: flex-end;
        align-content: center;
		align-items: center;
	font-size: 1.2em;
	line-height: 1em;
	box-sizing: border-box;
}
a.linkArrow::after {
    content: '';
    width: 20px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(60%) sepia(51%) saturate(326%) hue-rotate(242deg) brightness(85%) contrast(87%);
}
a.linkArrow:hover {
	color: #0095de;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】ページ内メインテキスト
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonText {
	position: relative;
	justify-content: center;
	z-index: 1000;
	margin: 0 auto !important;
	box-sizing: border-box;
}
.commonText .copy {
	width: 100%;
	display: block;
	margin: 10px 0;
	font-size: 1.8em;
	line-height: 1.4em;
	text-align: center;
	font-feature-settings: "palt";
}
.commonText .text,
.commonText.withPhoto .text {
	width: 100%;
	display: block;
	margin: 5px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}
.commonText.withPhoto figure {
	position: relative;
	width: 100%;
	display: block;
	margin: 20px 0;
}
.commonText.withPhoto figure::after {
    position: absolute;
	content: '';
	width: calc(100%);
	height: 100%;
	bottom: -10px;
	right: -10px;
	display: block;
	background: linear-gradient(to top left, #d5e9af 0%, #b17fbe 60%);
}
.commonText.withPhoto figure img {
	position: relative;
	width: 100%;
	display: block;
    z-index: 1;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home {
	background-image: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	overflow: hidden;
	background: url("../images/top/main_bg.webp") no-repeat bottom right;
	background-size: cover;
    box-sizing: border-box;
}
#home .mainVisual figure,
#home .mainVisual .slide {
	position: relative;
	display: block;
	margin: 20px 0;
}
#home .mainVisual figure::after,
#home .mainVisual .slide::before {
    position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	bottom: -10px;
	display: block;
}
#home .mainVisual img.copy {
    position: absolute;
	width: 36%;
	max-width: 160px;
	top: calc(50% - 35%);
	/*left: calc(50% - 18%);*/
	display: block;
	z-index: 1000;
}
#home .mainVisual .text {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 20px 0 0;
	padding-bottom: 30px;
}
#home .mainVisual .text p {
	width: auto;
	display: block;
	font-size: clamp(1em, 3.6vw, 1.6em);
	line-height: clamp(2em, 2.4vw, 2.8em);
	writing-mode: vertical-rl;
}
#home .mainVisual .text a.linkArrow {
	position: absolute;
	bottom: 0;
	right: 5%;
}
#home .mainVisual figure img {
    position: relative;
	z-index: 1;
}
#home .mainVisual figure img.photo {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
#home .mainVisual figure.ranzan {
	width: 40%;
	margin: 20px auto 20px 5%;
}
#home .mainVisual figure.ranzan::after {
	width: calc(100% + 30px);
	right: -30px;
    background: linear-gradient(to top left, #d5e9af 0%, #b17fbe 60%);
}
#home .mainVisual figure.ranzan img.name {
	position: absolute;
	width: 8%;
	top: 20px;
	right: -20px;
}
#home .mainVisual figure.tetsuzan2 {
	width: 25%;
	margin: 300px 5% 20px auto;
}
#home .mainVisual figure.tetsuzan2::after {
	width: calc(100% + 20px);
	left: -30px;
    background: linear-gradient(to bottom left, #d5e9af 40%, #b17fbe 100%);
}
#home .mainVisual figure.tetsuzan2 img.name {
	position: absolute;
	width: 12%;
	top: 20px;
	left: -20px;
}

/*スライド*/
#home .mainVisual .slide {
	width: 90%;
	top: calc(50% + 10%);
}
#home .mainVisual .slide::before {
	right: -10px;
    background: linear-gradient(to top left, #d5e9af 0%, #b17fbe 60%);
}
#home .mainVisual .slide .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background: #fff;
}
#home .mainVisual .slide ul.bxslider {
	position: relative;
	z-index: 1;
	background: #fff;
}
#home .mainVisual .slide ul.bxslider li img {
	width: 100%;
	display: block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】哲山流について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeAbout {
	padding: 40px 0;
}
#home .homeAbout .title {
	position: relative;
	width: 100%;
	height: 100px;
	display: flex;
		justify-content: space-between;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	overflow: hidden;
	background: linear-gradient(to right, #b17fbe 0%, #d5e9af 100%);
    box-sizing: border-box;
}
#home .homeAbout .title::after {
	position: absolute;
	content: '';
	width: 25%;
	max-width: 360px;
	height: 240px;
	top: 0;
	right: 0;
	display: block;
	background: url("../images/top/about_sakura.svg") no-repeat right top 20px;
	background-size: contain;
	opacity: 0.5;
}
#home .homeAbout .title h3 {
	position: relative;
	width: 80%;
	height: 240px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	margin: 0 5% 0 15%;
	font-size: clamp(1.6em, 3vw, 4em);
	line-height: 1.4em;
	color: #fff;
    box-sizing: border-box;
}
#home .homeAbout .text {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	margin: 20px auto 0;
    box-sizing: border-box;
}
#home .homeAbout .text p {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#home .homeAbout .text ul {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-bottom: 10px;
	border-top: solid 1px #c7b299;
}
#home .homeAbout .text ul li {
	width: 100%;
	display: block;
	border-bottom: solid 1px #c7b299;
}
#home .homeAbout .text ul li a {
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	padding: 0 5px;
	font-size: 1.3em;
	line-height: 1em;
	box-sizing: border-box;
}
#home .homeAbout .text ul li a::after {
    position: absolute;
	content: '';
    width: 20px;
	aspect-ratio: 1/1;
	right: 0;
    display: block;
	margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(60%) sepia(51%) saturate(326%) hue-rotate(242deg) brightness(85%) contrast(87%);
}
#home .homeAbout .text ul li a:hover {
	color: #000;
	background: #fff;
	transition: all 200ms;
	opacity: 0.5;
}
#home .homeAbout figure {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 20px auto;
}
#home .homeAbout figure img {
	width: 100%;
	display: block;
}
#home .homeAbout figure img.p2 {
	margin-top: 10px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonContact {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-left: auto;
	padding: 40px 0;
	background: url("../images/contact_bg.webp") no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
}
.commonContact .midTitle {
	top: -40px
}
.commonContact .block {
	justify-content: center;
}
.commonContact .box {
	width: 80%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
}
.commonContact .box .title {
	position: relative;
	width: 100%;
	height: 40px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	margin-bottom: 10px;
	font-size: clamp(1em,1.4vw,1.4em);
}
.commonContact .box .title::before {
	position: absolute;
	content: '';
	width: 24px;
	aspect-ratio: 1/1;
	left: -30px;
	display: block;
	background-size: contain;
}
.commonContact .tel .title::before {
	background: url("../images/icon_tel.svg") no-repeat center center;
}
.commonContact .web .title::before {
	background: url("../images/icon_web.svg") no-repeat center center;
}
.commonContact .tel {
	margin-bottom: 20px;
}
.commonContact .tel a {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: clamp(2.4em,3vw,4em);
	line-height: 1em;
	text-align: center;
}
.commonContact .tel span {
	width: 100%;
	display: block;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
}
.commonContact .web a.btnMail {
	position: relative;
	width: 100%;
    height: 60px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	padding: 0 5px 0 25px;
	font-size: 1.1em;
	line-height: 1em;
	text-align: center;
	color: #fff;
	border: solid 1px #fff;
	border-radius: 4px;
	background: linear-gradient(to right, #b17fbe 0%, #d5e9af 100%);
	box-sizing: border-box;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
	transition: all .2s;
}
.commonContact .web a.btnMail::before {
	position: absolute;
	content: '';
    width: 20px;
    aspect-ratio: 1/1;
	left: 10px;
    display: block;
	background: url("../images/icon_mail.svg") no-repeat center center;
    background-size: contain;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(52deg) brightness(101%) contrast(104%);
}
.commonContact .web a.btnMail:hover {
	transition: all 200ms;
	opacity: 0.5;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-left: auto;
	background: url("../images/footer_bg.webp") no-repeat right bottom;
    background-size: cover;
    box-sizing: border-box;
}
footer #page-top{
	position: fixed;
	width: 40px;
	right: 5px;
	bottom: 0;
	z-index: 30000;
    border-radius: 20px;
	background: #b17fbe;
}
footer .inner {
	position: relative;
    width: 90%;
	height: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 0 auto;
}
footer img.copy {
	position: absolute;
	width: 30%;
	top: 20%;
    display: block;
}
footer address {
	position: absolute;
	width: 100%;
	bottom: 80px;
	left: 0;
    display: block;
	font-size: 1em;
	line-height: 1.4em;
	color: #fff;
}
footer address a {
	color: #fff;
}
footer ul.menu {
	position: absolute;
	width: auto;
	bottom: 30px;
	left: 0;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
}
footer ul.menu li {
	display: inline-block;
	padding-right: 10px;
}
footer ul.menu li+li {
	padding-left: 10px;
	border-left: solid 1px rgba(255,255,255,0.5);
}
footer ul.menu li a {
	font-size: 0.9em;
	line-height: 1em;
	color: #fff;
}
footer ul.menu li a:hover {
	text-decoration: underline;
    color: #0095de;
}
footer .copyright {
	position: absolute;
	width: auto;
	bottom: 15px;
	left: 0;
    display: block;
	font-size: 0.8em;
	line-height: 1em;
	color: #fff;
}