@charset "utf-8";
/* CSS Document */

.en{
	font-family: josefin-slab, serif;
	font-weight: 600;
	font-style: normal;
}
.en_light{
	font-family: josefin-slab, serif;
	font-weight: 300;
	font-style: normal;
}

body {
	margin: 0;
	font-family: "游ゴシック体","游ゴシック Medium", "Yu Gothic Medium","Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.2em;
}
section {
	position: relative;
	padding: 5em 0;
}

/************************ common ************************/

.sp {
	display:none;
}
.pc {
	display:block;
}
.m{
	display:block;
}
.mob{
	display: none;
}
/************************ flexbox ************************/

.f_box{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
  flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 15px;
}
.f_box_r{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
		-webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
		margin-top: 15px;
}

.inner1000{
	width: 1000px;
	margin: 0 auto;
}
.inner900{
	width: 900px;
	margin: 0 auto;
	position: relative;
}
.inner700{
	width: 700px;
	margin: 0 auto;
	position: relative;
}
.inner1200{
	width: 1160px;
	margin: 0 auto;
}
.bg{
	background-color: #efefef;
}
.bg_orange{
	background: #ece2df;
}
.bg_blue{
	background: #e6e9ed;
}
.tex_color01{
	color: #5880a8;
}
.tex_color02{
	color: #b97053;
}
.tex_color01_span{
	color: #5880a8;
	text-decoration: underline;
}
.tex_color02_span{
	color: #b97053;
	text-decoration: underline;
}
/************************ ヘッダー ************************/
.inner {
    width: 100%;
    margin: 0 auto;
		min-width: 1200px;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}

/* header */
#top-head {
    position: relative;
    z-index: 999;
		width: 100%;
    position: fixed;
    background: #fff;
}

#top-head .inner {
    position: relative;
		align-items: center;
}

#global-nav{
	width: 71%;
	margin-top: 0;
}
#global-nav .f_box{
	justify-content: space-around;
}
#global-nav ul.f_box{
	justify-content: flex-end;
}
#global-nav ul {
	width: 55%;
	align-items: center;
}
#global-nav ul li{
	width: 15%;
	font-size: 14px;
	line-height: 1.5rem;
}
#global-nav ul li a{
	color: #4d4d4d ;
	text-decoration: none ;
	background-color: transparent ;
	-webkit-text-decoration-skip: objects ;
}
#global-nav ul li a span{
	font-size: 20px;
}
#global-nav ul li a span:hover{
	opacity: 0.6;
}
#mobile-head{
	width: 27%;
	margin-left: 1em;
}
#mobile-head h1{
	padding-top: 20px;
}
#global-nav dl {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}
#global-nav dl dd{
	font-size: 28px;
}
#global-nav dl dd a{
	color: #4d4d4d ;
	text-decoration: none ;
	background-color: transparent ;
	-webkit-text-decoration-skip: objects ;
}

#global-nav .contact-nav{
	width: 20%;
  margin-top: 5px;
  margin-bottom: 10px;
}
#global-nav .contact-nav li a{
	display: flex;
  flex-direction: column;
}
#global-nav .contact-nav li{
	width: 100%;
	background: #d71d74;
	font-size: 12px;
	text-align: center;
	padding: 0.5em 0;
	margin-top: 7px;
	display: flex;
	justify-content: center;
  align-items: center;
}
#global-nav .contact-nav li.nav_contactlink{
	background: #d17053;
}
#global-nav .contact-nav li.yoyaku{
	background: #5885c4;
}
#global-nav .contact-nav li:hover{
	opacity: 0.6;
}
#global-nav .contact-nav li a p{
	margin-top: auto;
	color: #fff;
	font-size: 14px;
	margin-bottom: 0;
}

/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #b97053;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
/************************ button ************************/


.buttons {
	display: block;
  padding: 0.5em 0;
  background: #d17053;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  text-align: center;
  width: 400px;
  margin: 0 auto;
	position: relative;
	letter-spacing: 0.2em;
}
.buttons :hover {
  opacity: 0.6;
}
.top_b::before {
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 11px;
	height: 4px;
	background-image: url(../images/rakusyo-yajirusi01.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	left: 20%;
	top:0;
	bottom: 0;
	margin: auto;
}
.buttons::after {
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 10px;
	height: 15px;
	background-image: url(../images/rakusyo-yajirusi.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	left: 90%;
	top:0;
	bottom: 0;
	margin: auto;
}
.buttons a{
  color: #fff;
	text-decoration: none ;
	background-color: transparent ;
	-webkit-text-decoration-skip: objects ;
}
.buttons p{
  margin: 0;
}
/*.buttons :hover {
  background: #88af46;
  color: #fff;
}*/

.buttons a:hover {
  color: #fff;
	text-decoration: none ;
	background-color: transparent ;
	-webkit-text-decoration-skip: objects ;
}
.pink{
	background: #e477a1;
}
.pink:hover{
	background: #d91d74;
}
/************************ header ************************/
header{
	text-align: center;
}
header .logocon{
}

header .logocon .header_a{
	width: 30%;
}
header .logocon .header_a img{
	width: 70%;
}
header .logocon .header_b{
	width: 60%;
}
header .logocon .header_b ul{
	list-style: none;
	padding-left: 0;
	font-size: 13px;
}
header .logocon .header_b ul.f_box{
	align-items: center;
}
header .logocon .header_b ul li.contact_li{
	padding-right: 8%;
}
/************************ main ************************/
#fv{
	padding: 0;
}

main{
	text-align: center;
	padding-top: 100px;
}

#fv .bk{
	background-image: url(../images/rakusyo-main.jpg);
  background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	height: 650px;
  min-height: 500px;
}

#fv .f_box{
	align-items: center;
	justify-content: center;
	align-items: center;
	margin-top: 0;    display: block;padding-top: 20px;
}

h1.fv-text.min-font {
    background: rgb(0 0 0 / 42%);margin: 10px 0px 40px;color: rgb(171 171 97 / 42%);
}
#fv .topcopy{

}
#fv .topcopy h2{
	width: 1045px;
	font-size: 40px;
  color: #fff;
  letter-spacing: 0.3rem;
	font-weight: 300;
margin: 0 auto;
}
#fv .topcopy h2 img{
	width: 100%;
	margin-bottom: 20px;
}
#fv .main_cop{
	position: absolute;
	bottom:0;
	left: 0;
	right: 0;
	margin: auto;
}
#fv .main_cop img{
	width: 90%;
	max-width: 1400px;
}


/************************ sec1 ************************/

.cnt_title{
	text-align: center;
	background: no-repeat url(../images/rakusyo-blog_cop.png);
	background-position: center center;
	background-size: contain;
	padding: 2rem 0;
}
.cnt_title h3{
	font-size: 30px;
	letter-spacing: 0.2em;
	position: relative;
	display: inline-block;
	font-weight: bold;
	color: #4d4d4d;
}

.news_area dl {
	letter-spacing: 0.2rem;
	color: #4d4d4d;
	margin: 5px 0;
}
.news_area dl dt{
	width: 30%;
	margin-bottom: 30px;
}
.news_area dl dd{
	width: 70%;
	text-align: left;
}
.news_area dl dd a{
	color: #4d4d4d ;
	text-decoration: none ;
	background-color: transparent ;
	-webkit-text-decoration-skip: objects ;
}
/************************ sec2 ************************/
.main-sec02 .f_box{
	justify-content: space-around;
}
.main-sec02 dl dt{
	width: 100%;
}
.main-sec02 dl dd:hover{
	opacity: 0.6;
}
.fukidashi {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
	border-radius: 8px;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 11px solid transparent;
  border-top: 9px solid #d17053;
}

.fukidashi p {
  margin: 0;
  padding: 0;
	letter-spacing: 0.1rem;
	color: #fff;
	font-size: 18px;
}
.orange .fukidashi{
	background-color: #d17053;
}
.blue .fukidashi{
	background: #5885c4;
}
.blue .fukidashi:before {
  border-top: 9px solid #5885c4;
}

.main-sec02 dl dd{
	border: 5px solid #d17053;
	position: relative;
}
.main-sec02 dl.blue dd{
	border: 5px solid #5885c4;
}
.main-sec02 dl dd p{
	position: absolute;
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(209, 112, 83, 0.8);
	bottom: 0;
	color: #fff;
	font-size: 25px;
	margin-bottom: 0;
}
.main-sec02 dl.blue dd p{
	background: rgba(88, 133, 196, 0.8);
}
.area01{
	margin: 100px 0 30px 0;
}
.area01 h3{
	line-height: 2.5rem;
	font-weight: normal;
	font-size: 22px;
	color: #666666;
	letter-spacing: 0.1rem;
}
.area01 img{
	width: 430px;
	padding-right: 10px;

}
.area01 .img_rakusyou img{
	width: 100%;
	padding: 50px 0 50px 0;
}
/************************ sec3 ************************/
.main-sec03 .cnt_title {
	background: none;
}
.main-sec03 .f_box{
	justify-content: space-evenly;
	padding-bottom: 50px;
}
.main-sec03 dl{
	width: 32%;
	background-color:#fff;
	position: relative;
	display: flex;
  flex-direction: column;
}

.main-sec03 dl dd h4 {
	font-size: 18px;
	color: #4d4d4d;
	padding-top: 20px;
}
.main-sec03 dl dd h4 span{
	display: block;
	font-size: 24px;
	font-weight: bold;
}
.main-sec03 dl dd.price {
 border: 2px solid #d17053;
 margin: 0 10px 35px;
 font-size: 16px;
 color: #d17053;
 padding: 10px 0;
 margin-top: auto;
}
.main-sec03 dl.blue dd.price {
 border: 2px solid #5885c4;
 color: #5885c4;
}
.main-sec03 dl.green dd.price {
 border: 2px solid #88af46;
 color: #88af46;
}
.main-sec03 dl dd.buttons {
 padding: 5px 0;
 background: #d17053;
 width: 250px;
 position: absolute;
 left: 0;
 right: 0;
 bottom: -20px;
 margin: auto;
}
.main-sec03 dl dd.buttons::before {
 background-image: none;
}
.main-sec03 dl.blue dd.buttons {
 background: #5885c4;
}
.main-sec03 dl.green dd.buttons {
 background: #88af46;
}
.main-sec03 dl dd.buttons:hover {
 opacity: 0.6;
}
/************************ sec4 ************************/
.main-contact{
	background: no-repeat url(../images/momonohana-16.jpg);
	background-position: center;
}
.main-contact h2{
	font-size: 35px;
	text-align: center;
	line-height: 2em;
	margin-bottom: 20px;
	color: #fff;
}
.access_sec{
	padding-top: 0;
}
/************************ footer ************************/
footer{
	background: no-repeat url(../images/rakusyo-footer-bg.jpg);
	background-position: center top;
	text-align: center;
	color: #fff;
	background-size: cover;
}
footer dl {
	padding: 80px 0 50px;
	align-items: flex-end;
}
footer dl dt {
	width: 48%;
}
footer dl dt img{
	width: 100%;
	padding-bottom: 10px;
}
footer dl dd{
	width: 50%;
}
footer dl dd ul.f_box{
	color: #666666;
	justify-content: flex-start;
	align-items: center;
}
footer dl dd ul li{
	margin-bottom: 10px;
	letter-spacing: 0.1rem;
}
footer dl dd ul li.address{
	width: 100%;
	text-align: left;
}
footer dl dd ul li.tel{
	font-size: 12px;
	padding-right: 20px;
}
footer dl dd ul li.tel span{
	font-size: 28px;
}
footer dl dd ul li.tel span a{
	color: #4d4d4d ;
	text-decoration: none ;
	background-color: transparent ;
	-webkit-text-decoration-skip: objects ;
}
footer dl dd ul li.tel span a:hover{
	opacity: 0.6;
}
footer dl dd ul li.time{
	font-size: 14px;
	text-align: left;
}
.copy small{
	color: #fff;
}
/************************ 2023追加分************************/
section.cMrg1 {
	padding-top: 3em;
    padding-right: 0px;
    padding-bottom: 0em;
    padding-left: 0px;
}
/* ===================================================================

		#	Responsive

		=================================================================== */
@media screen and (max-width:1023px) {
	.mob{
		display: block;
	}
	.m{
		display: none;
	}
	}

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

.f_box_r{
	display: block;
}
.inner1200{
	width: 90%;
}
.inner1000{
	width: 100%;
	padding: 0 2em;
}
.inner900{
	width: 100%;
	margin: 0 auto;
}
.inner700 {
    width: 100%;
}
section {
    padding: 3em 0;
}
#top-head,
.inner {
	width: 100%;
	padding: 0;
}
#top-head {
	top: 0;
	position: fixed;
	margin-top: 0;
	margin-left: 0;
}
/* Fixed reset */
#top-head.fixed {
	padding-top: 0;
	background: transparent;
}
#mobile-head {
	background: #fff;
	width: 100%;
	height: 80px;
	z-index: 999;
	position: relative;
	margin-left: 0;
}
#top-head.fixed .logo,
#top-head .logo {
	left: 13px;
	top: 13px;
	color: #f4cfe0;
	font-size: 26px;
	margin: 0 auto;
}
#top-head .logo {
	width: 300px;
	padding-top: 20px;
}
#mobile-head h1 {
    padding-top: 8px;
}
#global-nav {
	position: absolute;
	/* 開いてないときは画面外に配置 */
	top: -800px;
	background: #b97053;
	width: 100%;
	text-align: center;
	padding: 10px 0 0 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

#global-nav ul ,#contact-nav ul {
	width: 100%;
	list-style: none;
	position: static;
	right: 0;
	bottom: 0;
	font-size: 14px;
}
#global-nav ul li , #contact-nav ul li{
	position: static;
	width: 100%;
	line-height: 1rem;
}
#global-nav ul li a span {
    display: block;
		font-size: 24px;
    color: #fff;
}
#global-nav .contact-nav {
	width: 100%;
	margin: 0 auto;
	display: flex;
	margin-top: 20px;
}

#top-head #global-nav ul li a,
#contact-nav ul li,
#top-head.fixed #global-nav ul li a {
	width: 100%;
	display: block;
	color: #fff;
	padding: 18px 0;
	font-size: 20px;
}

#global-nav .contact-nav li {
	padding: 0 0 0 0;
}
#top-head #global-nav .contact-nav li a {
	display: flex;
	flex-direction: column;
}

#global-nav .contact-nav li.keamane {
	padding: 0;
}
#global-nav .contact-nav li.keamane img {
	width: 25%;
}
#nav-toggle {
	background: #b97053;
    display: block;
    width: 80px;
    height: 80px;
    padding: 25px 20px;
    right: 0;
    top: 0;
}
#nav-toggle span {
    background: #fff;
}
/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #global-nav {
	/* #global-nav top + #mobile-head height */
	-moz-transform: translateY(856px);
	-webkit-transform: translateY(856px);
	transform: translateY(856px);
}

#global-nav dl {
    width: 100%;
		color: #fff;
}
#global-nav dl dt{
    font-size: 20px;
		color: #fff;
}
#global-nav dl dd a{
    font-size: 30px;
		color: #fff;
}
.inner {
		width: 100%;
		margin: 0 auto;
		min-width: 100%;
}

#fv {
	padding: 0;
    margin-top: 33px;
}
#fv .bk {
    height: 50vh;
    display: flex;
    min-height: auto;
    justify-content: center;
    align-items: center;
		margin-top: 0;
}
#fv .topcopy h2 {
    font-size: 24px;
		width: 100%;
}
#fv .topcopy {
	padding: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
}
.cnt_title {
    padding: 30px 0 30px 0;
    background-size: 80%;
}
.cnt_title h3 {
    font-size: 30px;

}
.cnt_title h3 span {
    font-size: 14px;
}
.top-texterea {
    padding: 2em 0;
    text-align: justify;
}
.buttons p {
    font-size: 20px;
}
.buttons a {
    font-size: 20px;
}
.main-sec01 dl {
	margin: 30px 0;
  margin-bottom: 50px;
	font-size: 16px;
}
.news_area dl dt {
    width: 100%;
		text-align: left;
		margin-bottom: 5px;
		font-size: 24px;
}
.news_area dl {
    width: 100%;
		margin-bottom: 20px;
}
.news_area dl dd {
    width: 100%;
		width: 100%;
font-size: 20px;
margin-bottom: 10px;
}
.fukidashi p {
    font-size: 20px;
		padding: 10px 10px;
}
.fukidashi:before {
    top: 99%;
}
.buttons {
    padding: 1rem 0;
    width: 450px;
}
.main-sec03 .f_box {
  padding-bottom: 0px;
}
.main-sec03 dl {
	width: 100%;
background-color: #fff;
position: relative;
padding-bottom: 15px;
margin-bottom: 80px;
}
.main-sec03 dl dd h4 {
    font-size: 24px;
}
.main-sec03 dl dd h4 span {
    font-size: 30px;
}
.main-sec03 dl dd.price {
    font-size: 24px;
}
.main-sec03 dl dd.buttons {
    padding: 10px 0;
    width: 300px;
}
.access_sec{
	padding-top: 0;
}
footer dl dt {
    width: 100%;
}
footer dl dd {
    width: 100%;
}
footer dl dd ul li {
    width: 342px;
		margin: 0 auto;
}
footer dl dd ul li.tel {
  	margin-top: 20px;
		font-size: 16px;
		text-align: left;
}
footer dl dd ul li.tel span {
    font-size: 40px;
}
footer dl dd ul li.time {
    font-size: 16px;
}
footer dl dd ul li.tel span.suvnab {
    background: #ccc;
		padding: 5px 10px;
		font-size: 16px;
}
	@media screen and (max-width:630px) {


	}
	@media screen and (max-width:480px) {

		section {
    padding: 2em 0;
		}

}
@media screen and (max-width:390px) {

}
.posts-wrapper .entry-title a {
    color: #404248;
    font-size: 15px;
}