/* CSS Document */

/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * http://cssreset.com
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,
img {
	border:0;
}
/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style:normal;
	font-weight:normal;
}
ol,
ul {
	list-style:none;
}
caption,
th {
	text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,
q:after {
	content:'';
}
abbr,
acronym {
	border:0;
	font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
input,
textarea,
select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
strong{
	font-weight: bold;
}
/*to enable resizing for IE*/
input,
textarea,
select {
	font-size:100%;
}
/*because legend doesn't inherit in IE */
legend {
	color:#353535;
}

/*-----------------------------------------------------
■ page common
-------------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

*, ::before, ::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
  font-size: 1em;
  font-size: clamp(16px, 1.6vw, 16px);
  line-height: 1.7;
  color: #2f2225;
  position: relative;
  overflow-wrap: break-word;
	background-color: #fffeee;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.8125rem;
  }
}

.rou1c{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
}
.ophv:hover {
  opacity: 0.7;
	transition: 0.3s;
}

/*-----------------------------------------------------
■ header
-------------------------------------------------------*/
#header{
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1200;
	background: #fffeee;
	height: 130px;
	display: flex;
	align-items: center;
}
#header .inner{
	padding: 25px 0px 25px 50px;
	display: flex;
}
#header #gnav{
	position: absolute;
	top:25px;
	right: 350px;
}
#header #gnav ul{
	display: flex;
}
#header #gnav ul li{
	margin-left: 60px;
	text-align: center;
	position: relative;
}
#header #gnav ul li a{
	font-size: 1rem;
	font-weight: bold;
	color: #2f2225;
	text-decoration: none;
	display: inline-block;
	height: 80px;
	width: 80px;
}
#header #gnav ul li a:hover{
	color: #ff7c95;
	transition: 0.3s;
}
#header #gnav .h_navicon{
	height: 48px;
  width: 48px;
  display: block;
  margin: 0 auto 10px auto;
}

/* サブメニュー */
#header #gnav .sub_navi {
  position: absolute;
	z-index: 1000;
	display: block;
  top: 100%;  /* 親メニューの下 */
  left: -60px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: 0.3s;
	background-image: url(../img/header/h_snavi.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 220px;
	height: 200px;
	padding-top: 10px;
}
#header #gnav .sub_navi li{
	text-align: left;
	padding-top: 8px;
	margin-left: 10px;
	height: 60px;
	width: 200px;
	border-bottom: 1px dashed #c6af86;
	background-color: #fff;
}
#header #gnav .sub_navi li:first-child{
	border-radius: 15px 15px 0 0;
}
#header #gnav .sub_navi li:last-child{
	border-bottom: none;
	border-radius: 0 0 15px 15px;
}
#header #gnav .sub_navi li a{
	display: inline-block;
	height: 60px;
	width: 180px;
}
#header #gnav .sub_navi li a span::before{
	content: "";
	display: inline-block;
	background-image: url(../img/header/h_snavi_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	position:relative;
	top:2px;
}
#header #gnav .nav_hoiku:hover .sub_navi {
  display: block;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#header #gnav .sub_navi li a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
}
#header .h_line{
	position: absolute;
	top:30px;
	right: 130px;
}

/* MENUボタン */
.menu-btn {
	position: absolute;
	top: 0;
	right: 0;
  z-index: 2000;
  background-image: url(../img/header/h_menu.png);
	background-size: cover;
	background-repeat: no-repeat;
  color: #fff;
  border: none;
  border-radius: 0 0 0 25px;
  padding: 20px 22px;
  cursor: pointer;
  text-align: center;
}
.menu-icon span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: 0.3s;
}
.menu-text {
  font-size: 15px;
  margin-top: 8px;
  display: block;
}
.menu-btn.active .menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-btn.active .menu-icon span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active .menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ドロワーメニュー */
.drawer-overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1000;
  background-image: url("../img/header/h_menu_bg.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 660px 100vh;
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.drawer-menu {
  position: fixed;
  top: 30px;
  right: -660px;
  width: 620px;
  height: calc(100% - 60px);
  background: #fff;
  border-radius: 30px;
  padding: 60px 40px 40px;
  box-sizing: border-box;
  transition: 0.4s ease;
  z-index: 1500;
}
.drawer-menu.active {
  right: 20px;
}
.drawer-columns {
  display: flex;
  gap: 40px;
}
.drawer-list {
  list-style: none;
  width: 100%;
}
.drawer-list li {
	padding-left: 10px;
  border-bottom: 1px dashed #c6af86;
	height: 80px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.drawer-list li a{
	height: 80px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #2f2225;
	font-weight: bold;
	text-decoration: none;
}
.drawer-list li a:hover{
	color: #ff7c95;
	transition: 0.3s;
}
.drawer-list li:first-child {
  border-top: 1px dashed #c6af86;
}
.drawer-list li.drawer-sub a{
	padding-left: 0;
}
.drawer-list li.drawer-sub::before{
	content: "";
	display: inline-block;
	background-image: url(../img/header/h_snavi_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-right: 0;
	margin-left: 55px;
	position:relative;
}
/* SNS */
.drawer-sns {
  margin-top: 40px;
  display: flex;
  gap: 16px;
	position: absolute;
	top: 450px;
	right: 170px;
}
@media screen and (max-width: 1450px) {
	#header #gnav {
	  right: 320px;
	}
	#header #gnav ul li {
	  margin-left: 45px;
	}
	#header .h_line {
	  right: 110px;
	}
}

/*-----------------------------------------------------
■ toppage
-------------------------------------------------------*/
#mainimg{
	margin: 20px 50px 120px 70px;
	position: relative;
}
.top #mainimg .main_bg img{
	width: 100%;
	border-radius: 150px;
}
.top #mainimg .main_img img{
	width: 100%;
	border-radius: 150px;
	position: absolute;
	bottom: 24px;
	right: 18px;
}
.top #mainimg .main_txt{
	position: absolute;
  top: 55%;
  left: 50%;
	transform: translate(-50%,-50%);/*センター寄せの修正*/
}
.top #mainimg .main_txt img{
	width: 100%;
	max-width: 820px;
}
.top_container{
	background-image: url(../img/bg_bubble.png);
	background-repeat: no-repeat;
	background-position: center 980px;
}
.low_container{
	background-image: url(../img/bg_bubble.png);
	background-repeat: no-repeat;
	background-position: center 550px;
}
.top .section01 .inner{
	margin: 0 auto;
	width: 1400px;
}
@media screen and (max-width: 1450px) {
	.top .section01 .inner{
		width: 1300px;
	}
}
.top .section01 .srv_ttl{
	display: flex;
	margin-bottom: -10px;
	justify-content: space-between;
}
.top .section01 .srv_ttl h2{
	font-size: 36px;
	color: #ff7c95;
	margin-bottom: 30px;
}
.top .section01 .srv_ttl h2::before{
	content: "";
  display: inline-block;
  background-image: url(../img/top_about_icn.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 55px;
  height: 74px;
	margin-right: 20px;
	position:relative;
	top:15px;
}
.top .section01 .srv_ttl p{
	font-size: 21px;
	line-height: 48px;
}
.top .section01 .hoikuroom{
	background-color: #fff8f9;
	border: 6px solid #ffe8eb;
	border-radius: 50px;
	padding: 70px;
	display: flex;
	margin-bottom: 80px;
}
.top .section01 .hoikuroom .hoikuroom_img{
	margin-right: 70px;
	position: relative;
}
.top .section01 .hoikuroom .hoikuroom_img .about_bg{
	width: 470px;
}
.top .section01 .hoikuroom .hoikuroom_img .about_img{
	width: 420px;
	position: absolute;
	top: 30px;
	left: 25px;
}
.top .section01 .hoikuroom .hoikuroom_img .about_img img{
	border-radius: 100%;
}
.top .section01 .hoikuroom .hoikuroom_txt .hoikuroom_txt_ttl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top .section01 .hoikuroom .hoikuroom_txt h3{
	font-size: 36px;
	color: #ff7c95;
	margin-bottom: 30px;
}
.top .section01 .hoikuroom .hoikuroom_txt h3 span{
	font-size: 30px;
	display: block;
}
.top .section01 .hoikuroom .hoikuroom_txt .img{
	width: 164px;
	height: 124px;
	margin-top: -10px;
}
.top .section01 .hoikuroom .hoikuroom_txt .txt{
	font-size: 18px;
	margin-bottom: 40px;
}
.top .section01 .hoikuroom .hoikuroom_txt .link{
	display: flex;
}
.top .section01 .hoikuroom .hoikuroom_txt .more{
	width: 280px;
	height: 60px;
	background-image: url(../img/top_btn_pink.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 20px;
	margin-right: 20px;
}
.top .section01 .hoikuroom .hoikuroom_txt .more a{
	display: block;
	width: 280px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 17px;
}
.top .section01 .hoikuroom .hoikuroom_txt .more a span::after{
	content: "";
	display: inline-block;
	background-image: url(../img/top_btn_pink_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	position:relative;
	top:2px;
}
.top .section01 .dayroom{
	background-color: #f7fcff;
	border: 6px solid #dcf0fc;
	border-radius: 50px;
	padding: 70px;
	display: flex;
	margin-bottom: 100px;
}
.top .section01 .dayroom .dayroom_img{
	margin-right: 70px;
	position: relative;
}
.top .section01 .dayroom .dayroom_img .about_bg{
	width: 470px;
}
.top .section01 .dayroom .dayroom_img .about_img{
	width: 420px;
	position: absolute;
	top: 30px;
	left: 25px;
}
.top .section01 .dayroom .dayroom_img .about_img img{
	border-radius: 100%;
}
.top .section01 .dayroom .dayroom_txt .dayroom_txt_ttl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top .section01 .dayroom .dayroom_txt h3{
	font-size: 36px;
	color: #44ace7;
	margin-bottom: 30px;
}
.top .section01 .dayroom .dayroom_txt h3 span{
	font-size: 30px;
	display: block;
}
.top .section01 .dayroom .dayroom_txt .img{
	width: 164px;
	height: 124px;
	margin-top: -10px;
}
.top .section01 .dayroom .dayroom_txt .txt{
	font-size: 18px;
	margin-bottom: 40px;
}
.top .section01 .dayroom .dayroom_txt .link{
	display: flex;
}
.top .section01 .dayroom .dayroom_txt .more{
	width: 280px;
	height: 60px;
	background-image: url(../img/top_btn_blue.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 20px;
	margin-right: 20px;
}
.top .section01 .dayroom .dayroom_txt .more a{
	display: block;
	width: 280px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 17px;
}
.top .section01 .dayroom .dayroom_txt .more a span::after{
	content: "";
	display: inline-block;
	background-image: url(../img/top_btn_blue_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	position:relative;
	top:2px;
}
.top .section02 .inner{
	margin: 0 auto;
	width: 1400px;
	margin-bottom: 150px;
}
@media screen and (max-width: 1450px) {
	.top .section02 .inner{
		width: 1300px;
	}
}
.top .section02 .inst_ttl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
.top .section02 .inst_ttl .inst_txt{
	text-align: center;
	margin-right: 100px;
}
.top .section02 .inst_ttl .inst_txt h2{
	font-size: 48px;
	color: #ff7c95;
	margin-bottom: 30px;
}
.top .section02 .inst_ttl .inst_txt h2::before{
	content: "";
  display: inline-block;
  background-image: url(../img/top_inst_icn.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
	margin-right: 20px;
	position:relative;
	top:15px;
}
.top .section02 .inst_ttl .inst_btn .btn{
	width: 140px;
	height: 46px;
	background-image: url(../img/top_inst_btn.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 90px;
	margin-bottom: 20px;
}
.top .section02 .inst_ttl .inst_btn .btn a{
	display: block;
	width: 140px;
	height: 46px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 10px;
	padding-left: 5px;
	font-size: 16px;
}
.top .section02 .inst_list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px;
	margin-bottom: 50px;
}
.top .section03 .inner{
	margin: 0 auto;
	width: 1400px;
}
@media screen and (max-width: 1450px) {
	.top .section03 .inner{
		width: 1300px;
	}
}
.top .section03 .news{
	background-color: #fff;
	border: 6px solid #ffe8eb;
	border-radius: 50px;
	padding: 50px 60px;
}
.top .section03 .news h2{
	font-size: 36px;
	color: #ff7c95;
	margin-bottom: 30px;
}
.top .section03 .news h2::before{
	content: "";
  display: inline-block;
  background-image: url(../img/top_news_icn.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  height: 52px;
	margin-right: 20px;
	position:relative;
	top:10px;
}
.top .section03 .news .news_ttl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
}
.top .section03 .news .article-list .article{
	border-top: 1px dashed #c6af86;
	padding: 35px 5px;
	display: flex;
}
.top .section03 .news .article-list .article:last-child{
	border-bottom: 1px dashed #c6af86;
}
.top .section03 .news .article-list .article .article-head{
	display: flex;
	align-items: flex-start;
}
.top .section03 .news .article-list .article h3 a{
  color: #2f2225;
	text-decoration: underline;
}
.top .section03 .news .article-list .article h3 a:hover{
	text-decoration: none;
}
.top .section03 .news .article-list .article .article-head .cat{
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 20px;
	color: #aaa;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin: 0 25px 5px;
}
.top .section03 .news .article-list .article .article-head .cat_day{
	background-color: #fff;
	border: 1px solid #44ace7;
	border-radius: 20px;
	color: #44ace7;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin: 0 25px 5px;
}
.top .section03 .news .article-list .article .article-head .cat_pocket{
	background-color: #fff;
	border: 1px solid #f79958;
	border-radius: 20px;
	color: #f79958;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin: 0 25px 5px;
}
.top .section03 .news .article-list .article .article-head .cat_info{
	background-color: #fff;
	border: 1px solid #47b159;
	border-radius: 20px;
	color: #47b159;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin: 0 25px 5px;
}
.top .section03 .news .article-list .article .article-head .cat_hoiku{
	background-color: #fff;
	border: 1px solid #ff7c95;
	border-radius: 20px;
	color: #ff7c95;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin: 0 25px 5px;
}
.top .section03 .news .article-list{
	max-height: 410px;
  overflow-y: auto;
  padding-right: 40px;
}
.top .section03 .news .article-list::-webkit-scrollbar {
  width: 5px; /* 横幅 */
}
.top .section03 .news .article-list::-webkit-scrollbar-thumb {
  background: #ff7c95; /* ハンドルの色 */
}
.top .section03 .news .article-list::-webkit-scrollbar-track {
  background: #dfdfdf; /* 背景色 */
}
.top .section03 .more{
	width: 280px;
	height: 60px;
	background-image: url(../img/top_btn_pink.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin:40px auto 0;
}
.top .section03 .more a{
	display: block;
	width: 280px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 17px;
}
.top .section03 a span::after{
	content: "";
	display: inline-block;
	background-image: url(../img/top_btn_pink_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	position:relative;
	top:2px;
}
/*-----------------------------------------------------
■ footer
-------------------------------------------------------*/
#footer{
	margin-top: 150px;
	background-image: url(../img/footer/f_bgimg.png);
	background-size: 2000px;
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 680px;
}
#footer .inner{
	margin: 0 auto;
	width: 1200px;
}
#footer .f_content{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}
#footer .f_content .f_bnr{
	display: flex;
}
#footer .f_content .f_bnr p{
	margin-right: 30px;
	margin-bottom: 40px;
}
#footer .f_content .f_logo{
	margin-bottom: 10px;
}
#footer .f_content .f_tel{
	font-size: 36px;
	margin-bottom: 10px;
}
#footer .f_content .f_tel a{
	color: inherit;
	text-decoration: none;
}
#footer .f_content .f_tel::before{
	content: "";
	display: inline-block;
	background-image: url(../img/footer/f_tel.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 23px;
	height: 31px;
	margin-right: 5px;
	position:relative;
	top:6px;
}
#footer .f_content .f_btn{
	display: flex;
}
#footer .f_content .f_btn .f_mail{
	width: 250px;
	height: 60px;
	background-image: url(../img/footer/f_btn_mail.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 30px;
}
#footer .f_content .f_btn .f_mail a{
	display: block;
	width: 250px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 17px;
}
#footer .f_content .f_btn .f_mail a::before{
	content: "";
	display: inline-block;
	background-image: url(../img/footer/f_mail.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 21px;
	height: 15px;
	margin-right: 10px;
	position:relative;
	top:2px;
}
#footer .f_content .f_btn .f_line{
	width: 250px;
	height: 60px;
	background-image: url(../img/footer/f_btn_line.png);
	background-size: cover;
	background-repeat: no-repeat;
}
#footer .f_content .f_btn .f_line a{
	display: block;
	width: 250px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 8px;
}
#footer .f_content .f_btn .f_line a::before{
	content: "";
	display: inline-block;
	background-image: url(../img/footer/f_line.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	margin-right: 5px;
	position:relative;
	top:7px;
}
#footer .f_navi{
	display: flex;
}
#footer .f_navi ul{
	margin-left: 100px;
}
#footer .f_navi ul li a{
	color: #2f2225;
	text-decoration: none;
	line-height: 50px
}
#footer .f_navi ul li a::before{
	content: "";
	display: inline-block;
	background-image: url(../img/footer/f_navi_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-right: 10px;
}
#footer .f_navi ul li a:hover{
	text-decoration: underline;
}
#footer .copyright{
	font-size: 14px;
	text-align: center;
	padding-top: 240px;
}
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#pagetop.show {
  opacity: 1;
  pointer-events: auto;
}
#pagetop img {
  width: 60px;
  height: auto;
  display: block;
}

/*-----------------------------------------------------
■ monthly,temporary,sick,support
-------------------------------------------------------*/
.low a{
	color: #44ace7;
	text-decoration: underline;
}
.low a:hover{
	text-decoration: none;
}
.low #low_mainimg{
	margin: 10px 50px 15px;
	position: relative;
}
.low #low_mainimg .main_img img{
	width: 100%;
}
.low #low_mainimg h2{
	position: absolute;
  top:45%;
  left: 50%;
	transform: translate(-50%,-50%);/*センター寄せの修正*/
	font-size: 42px;
}
.low #low_mainimg h2 span{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 24px;
}
.low #low_content{
	margin: 0 auto;
	width: 1300px;
	background-color: #fff;
	border: 6px solid #ffe8eb;
	border-radius: 50px;
	padding: 100px;
}
.low .breadcrumb{
	margin: 0 auto;
	width: 1300px;
	margin-bottom: 20px;
}
.low .breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
	margin-right: 20px;
	justify-content: flex-end;
}
.low .breadcrumb li {
  display: flex;
  align-items: center;
}
.low .breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #999;
}
.low .breadcrumb a {
  color: #333;
  text-decoration: none;
}
.low .breadcrumb a:hover {
  text-decoration: underline;
}
.low .section01 .inner{
	margin: 0 auto;
	width: 1100px;
}
.low h3{
	font-size: 36px;
	color: #ff7c95;
	margin-bottom: 30px;
}
.low h3::before{
	content: "";
  display: inline-block;
  background-image: url(../img/low/low_clover_icn.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 40px;
  height: 54px;
	margin-right: 20px;
	position:relative;
	top:15px;
}
.low .section01 .srv_con .srv_text_area{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
}
.low .section01 .srv_con .srv_text_area .srv_txt{
	width: 780px;
}
.low .section01 .sec_child01{
	margin: 50px 0 80px;
}
.low .section01 .sec_child02,.low .section01 .sec_child03,.low .section01 .sec_child04{
	margin-top: 100px;
}
.monthly h4,
.temporary h4,
.sick h4,
.support h4,
.flow h4{
	font-size: 21px;
	height: 60px;
	background-color: #e8f6ff;
	border-radius: 15px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 30px;
}
.monthly h4::before,
.temporary h4::before,
.sick h4::before,
.support h4::before,
.flow h4::before{
	content: "";
  display: inline-block;
  background-image: url(../img/low/low_flower_icn.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 28px;
	margin-right: 15px;
	position:relative;
	top:5px;
}
.low .section01 .sec_child .use_list{
	width: 1100px;
}
.low .section01 .sec_child .use_list tr{
	border-top: 1px dashed #c6af86;
}
.low .section01 .sec_child .use_list tr:last-child{
	border-bottom: 1px dashed #c6af86;
}
.low .section01 .sec_child .use_list tr th{
	width: 220px;
	background-color: #fffde4;
	padding: 30px;
}
.low .section01 .sec_child .use_list tr td{
	width: 980px;
	padding: 30px;
	padding-right: 10px;
}
.low .sec_btn{
	display: flex;
	margin-top: 60px;
	justify-content: center;
}
.low .sec_btn .flow_btn{
	width: 280px;
	height: 60px;
	background-image: url(../img/low/low_btn_pink.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 20px;
	margin-right: 60px;
}
.low .sec_btn .flow_btn a{
	display: block;
	width: 280px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 17px;
}
.low .sec_btn .flow_btn a span::after{
	content: "";
	display: inline-block;
	background-image: url(../img/low/low_btn_pink_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	position:relative;
	top:2px;
}
.low .sec_btn .contact_btn{
	width: 280px;
	height: 60px;
	background-image: url(../img/low/low_btn_blue.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 20px;
	margin-right: 20px;
}
.low .sec_btn .contact_btn a{
	display: block;
	width: 280px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 17px;
}
.low .sec_btn .contact_btn a span::after{
	content: "";
	display: inline-block;
	background-image: url(../img/low/low_btn_blue_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	position:relative;
	top:2px;
}
.low .section01 .sec_child .use_flow{
	background-color: #fff4f5;
	border-radius: 30px;
	padding: 50px;
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	align-items:center;
	position: relative;
	margin-bottom: 60px;
}
.low .section01 .sec_child .use_flow dt{
	font-size: 21px;
	font-weight: bold;
	color: #ff7c95;
	margin-bottom: 25px;
}
.low .section01 .sec_child .use_flow dd{
	width: 840px;
}
.low .section01 .sec_child .use_flow .step{
	font-size: 16px;
	font-weight: normal;
	color: #fff;
	background-color: #ff7c95;
	border-radius: 50px;
	padding: 6px 25px;
	margin-right: 20px;
	vertical-align: middle;
}
.low .section01 .sec_child .use_flow .flow_line{
	width: 250px;
	height: 60px;
	background-image: url(../img/temporary/temporary_btn_line.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 10px;
}
.low .section01 .sec_child .use_flow .flow_line a{
	display: block;
	width: 250px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 8px;
}
.low .section01 .sec_child .use_flow .flow_line a::before{
	content: "";
	display: inline-block;
	background-image: url(../img/temporary/temporary_line.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	margin-right: 5px;
	position:relative;
	top:7px;
}
/* ▼マーク */
.use_flow::after {
	content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 35px solid #e2e2dd;
}
.use_flow:last-child::after {
  content: none;
}
.low .section01 .sec_child .use_suppl{
	display: flex;
}
.low .section01 .sec_child .use_suppl .use_suppl_img{
	margin-right: 40px;
}

/*-----------------------------------------------------
■ flow
-------------------------------------------------------*/
.low .section01 .flow_con .flow_txt,.low .section02 .flow_con .flow_txt{
	margin-bottom: 50px;
}
.low .section01 .flow_con .flow_tl_ttl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
.low .section01 .flow_con .flow_tl_ttl .flow_tl_ttl_hoiku{
	width: 480px;
	height: 70px;
	background-image: url(../img/flow/flow_ttl_hoiku.png);
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	font-size: 21px;
	font-weight: bold;
	text-align: center;
	padding-top: 20px;
}
.low .section01 .flow_con .flow_tl_ttl .flow_tl_ttl_day{
	width: 480px;
	height: 70px;
	background-image: url(../img/flow/flow_ttl_day.png);
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	font-size: 21px;
	font-weight: bold;
	text-align: center;
	padding-top: 20px;
}
.low .section01 .flow_con .flow_tl_con{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.flow .section01 .flow_con .flow_tl_con .flow_tl_img_day dl{
	margin-bottom: 30px;
}
.flow .section01 .flow_con .flow_tl_con .flow_tl_img_day dt img{
	border-radius: 15px;
}
.flow .section01 .flow_con .flow_tl_con .flow_tl_img_day dd{
	width: 200px;
	text-align: center;
}
.flow .section01 .flow_con .flow_tl_con .flow_tl_img_hoiku dl{
	margin-bottom: 30px;
}
.flow .section01 .flow_con .flow_tl_con .flow_tl_img_hoiku dt img{
	border-radius: 15px;
}
.flow .section01 .flow_con .flow_tl_con .flow_tl_img_hoiku dd{
	width: 200px;
	text-align: center;
}
.flow .section01 .flow_con .flow_tl_con .flow_tl_list p{
	width: 620px;
	height: 1450px;
	background-color: #ffe8eb;
}

.flow .section01 .flow_con .flow_tl_list {
	position: relative;
	width: 640px;
}
/* 縦線（中央 td の真ん中に通す） */
.flow .section01 .flow_con .flow_tl_list::before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	background: #ffe9d6;
	z-index: 1;
}
/* table */
.flow .section01 .flow_con .schedule-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 20px 30px;
	margin-top: -30px;
}
/* 左右セル */
.flow .section01 .flow_con .schedule-table .left,
.flow .section01 .flow_con .schedule-table .right {
	width: 240px;
	vertical-align: middle;
	text-align: center;
	font-size: 16px;
	padding: 0 10px;
	border-radius: 12px;
	font-size: 16px;
}
/* 中央セル */
.flow .section01 .flow_con .schedule-table .center {
	width: 80px;
	text-align: center;
}
/* ボックス */
.flow .section01 .flow_con .schedule-table .item {
	position: relative;
	width: 100px;
	padding: 12px 0;
	margin: 0 auto;
	background: #ffa351;
	color: #fff;
	font-weight: bold;
	border-radius: 30px;
	z-index: 2;
}
/* 左側ピンク */
.flow .section01 .flow_con .schedule-table .pink {
 background: #ffe8eb;
}
/* 右側ブルー */
.flow .section01 .flow_con .schedule-table .blue {
 background: #dcf0fc;
}
.flow .section01 .flow_con .schedule-table .left:empty,
.flow .section01 .flow_con .schedule-table .right:empty,
.flow .section01 .flow_con .schedule-table .center .item:empty {
 background: transparent;
}

.flow .section01 .flow_con .sec_child .hian_hoiku{
	margin-bottom: 30px;
}
.flow .section01 .flow_con .sec_child .hian_hoiku h5{
	color: #ff7c95;
	font-size: 18px;
	margin-bottom: 5px;
}
.flow .section01 .flow_con .sec_child .hian_day h5{
	color: #44ace7;
	font-size: 18px;
	margin-bottom: 5px;
}
.flow .section01 .flow_con .sec_child .hian_day ul{
	margin-bottom: 120px;
}
.flow .section02 .flow_con .event{
	display: flex;
	padding: 45px 60px;
	border-radius: 20px;
	margin-bottom: 40px;
	margin-top: 50px;
}
.flow .section02 .flow_con .event .ev_txt{
	margin-top: 15px;
	margin-right: 80px;
}
.flow .section02 .flow_con .event .ev_icn{
	margin-left: auto;
}
.flow .section02 .flow_con .event .ev_list01{
	width: 220px;
	font-size: 18px;
}
.flow .section02 .flow_con .event_spring{
	background-color: #ffe8eb;
	margin-top: 0;
}
.flow .section02 .flow_con .event_summer{
	background-color: #ebfae8;
}
.flow .section02 .flow_con .event_autumn{
	background-color: #ffeada;
}
.flow .section02 .flow_con .event_winter{
	background-color: #dcf0fc;
}
.flow .section02 .flow_con .event_monthly{
	background-color: #fffcd8;
}
.flow .section02 .flow_con .ev_img{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flow .section02 .flow_con .ev_img dd{
	width: 240px;
	text-align: center;
	margin-bottom: 30px;
}
.flow .section02 .flow_con .ev_img img{
	border-radius: 15px;
	margin-bottom: 5px;
}

/*-----------------------------------------------------
■ facility
-------------------------------------------------------*/
.facility .section02,.facility .section03,.facility .section04{
	margin-top: 110px;
}
.facility .section05{
	margin-top: 70px;
}
.facility .section01 .policy_con{
	background-color: #fff4f5;
	border-radius: 30px;
	padding: 50px;
}
.facility .section01 .policy_con .policy_ttl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 25px;
}
.facility .section01 .policy_con .policy_ttl .policy_ttl_txt{
	color: #44ace7;
	font-size: 30px;
}
.facility .section01 .policy_con .policy_ttl .policy_ttl_txt span{
	color: #2f2225;
	font-size: 22px;
	display: block;
}
.facility .section01 .policy_con .policy_txt{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.facility .section01 .policy_con .policy_txt .policy_list{
	width: 600px;
	margin-top: 20px;
}
.facility .section01 .policy_con .policy_txt .policy_list li{
	margin-bottom: 30px;
}
.facility .section01 .policy_con .policy_txt .policy_img img{
	border-radius: 20px;
}
.facility .section02 .greet_con{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.facility .section02 .greet_con .greet_img img{
		border-radius: 20px;
}
.facility .section02 .greet_con .greet_txt{
	width: 710px;
	line-height: 36px;
}
.facility .section03 .overview_list{
	width: 1100px;
	margin-bottom: 40px;
}
.facility .section03 .overview_list tr{
	border-top: 1px dashed #c6af86;
}
.facility .section03 .overview_list tr:last-child{
	border-bottom: 1px dashed #c6af86;
}
.facility .section03 .overview_list tr th{
	width: 220px;
	background-color: #fffde4;
	padding: 30px;
}
.facility .section03 .overview_list tr td{
	width: 980px;
	padding: 30px;
}
.facility .section03 .overview_company{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #e8f6ff;
	border-radius: 30px;
	padding: 50px 50px 30px 50px;
}
.facility .section03 .overview_company .ov_company_txt{
	width: 660px;
}
.facility .section03 .overview_company .ov_company_txt h4{
	color: #44ace7;
	font-size: 21px;
	margin-bottom: 20px;
}
.facility .section04 .about_txt{
	margin-bottom: 40px;
}
.facility .section04 .about_floor{
	width: 1100px;
	height: 500px;
	margin-bottom: 50px;
}
.facility .section04 .about_img{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.facility .section04 .about_img dd{
	width: 330px;
	text-align: center;
	margin-bottom: 30px;
}
.facility .section04 .about_img img{
	border-radius: 15px;
	margin-bottom: 5px;
}
.facility .section05 .access_map iframe{
	border-radius: 30px;
	margin-bottom: 30px;
}
.facility .section05 .access_con{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*-----------------------------------------------------
■ news
-------------------------------------------------------*/
.news .contents-wrap{
	font-size: 16px;
}
.news .contents-wrap h3{
	color:#2f2225;
	font-size: 21px;
	height: 60px;
	background-color: #e8f6ff;
	border-radius: 15px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 30px;
}
.news .contents-wrap h3::before{
	content: "";
  display: inline-block;
  background-image: url(../img/low/low_flower_icn.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 28px;
	margin-right: 15px;
	position:relative;
	top:5px;
}
.news .contents-wrap {
  text-align: center;
}
.news .contents-wrap .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.news .contents-wrap .sidebar {
  width: 250px;
  font-size: 1.5rem;
}
.news .contents-wrap .sidebar .box {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #ffe8eb;
  margin-bottom: 20px;
}
.news .contents-wrap .sidebar .box:last-child {
  margin-bottom: 0;
}
.news .contents-wrap .sidebar .box ul {
  padding: 0 15px;
  text-align: left;
}
.news .contents-wrap .sidebar .box ul li {
	font-size: 16px;
  border-bottom: 1px dashed #c6af86;
  padding: 12px 0;
}
.news .contents-wrap .sidebar .box ul li:last-child {
  border-bottom: none;
}
.news .contents-wrap .sidebar .box ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-decoration: underline;
	color:#2f2225;
}
.news .contents-wrap .sidebar .box ul li a:hover{
	text-decoration: none;
}
.news .contents-wrap .sidebar .box ul li a::before {
  content: "";
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #2f2225;
  margin-right: 10px;
  margin-top: 10px;
  display: inline-block;
}
.news .contents-wrap .sidebar .box .select-wrap {
  padding: 15px;
}
.news .contents-wrap .sidebar .box .select-wrap select {
	font-size: 16px;
  height: 35px;
  width: 100%;
  border: 1px solid #dddddd;
	padding-left: 10px;
}
.news .contents-wrap .sidebar .sidebar-content-ttl, caption {
	font-size: 16px;
  color: #fff;
  background-color: #ff7c95;
  padding: 10px 0;
	text-align: center;
}
.news .contents-wrap .sidebar .calendar table {
  width: 100%;
}
.news .contents-wrap .sidebar .calendar table thead {
	font-size: 16px;
  background-color: #ffe8eb;
}
.news .contents-wrap .sidebar .calendar table thead th {
	font-size: 16px;
  padding: 5px 0;
	padding-left: 8px;
  font-weight: normal;
}
.news .contents-wrap .sidebar .calendar table tbody td {
	font-size: 16px;
  padding: 5px;
}
.news .contents-wrap .sidebar .calendar table tbody #today {
  font-weight: bold;
}
.news .contents-wrap .sidebar .calendar table td a {
	text-decoration: underline;
	color: #44ace7;
}
.news .contents-wrap .sidebar .calendar table tfoot td {
  padding: 5px 10px;
}
.news .contents-wrap .sidebar .calendar table tfoot td a {
  text-decoration: underline;
	color:#2f2225;
}
.news .contents-wrap .sidebar .calendar table tfoot td a:hover {
  text-decoration: none;
}
.news .contents-wrap .sidebar .calendar table tfoot .prev {
	font-size: 16px;
  text-align: left;
}
.news .contents-wrap .sidebar .calendar table tfoot .next {
	font-size: 16px;
  text-align: right;
}
.news .contents-wrap .section-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
  text-align: left;
  width: calc(100% - 250px);
}
.news .contents-wrap .section-area section, .news .contents-wrap .section-area .section {
  padding: 0;
  text-align: left;
}
.news .contents-wrap .section-area .sec-ttl {
  font-size: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal;
  padding-bottom: 10px;
  border-bottom: 3px solid #f68838;
  margin-bottom: 15px;
}
.news .contents-wrap .section-area .sec-ttl .ja {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news .contents-wrap .section-area .articles li {
  padding: 30px 0 30px 15px;
  border-bottom: 1px dashed #c6af86;
}
.news .contents-wrap .section-area .articles li:first-child {
  padding-top: 0;
}
.news .contents-wrap .section-area .articles li .date_cate{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.news .contents-wrap .section-area .articles li .date{
	color:#44ace7;
	margin-bottom: 10px;
}
.news .contents-wrap .section-area .articles li .date_cate .cat{
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 20px;
	color: #aaa;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin-right: 20px;
}
.news .contents-wrap .section-area .articles li .date_cate .cat_day{
	background-color: #fff;
	border: 1px solid #44ace7;
	border-radius: 20px;
	color: #44ace7;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin-right: 20px;
}
.news .contents-wrap .section-area .articles li .date_cate .cat_pocket{
	background-color: #fff;
	border: 1px solid #f79958;
	border-radius: 20px;
	color: #f79958;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin-right: 20px;
}
.news .contents-wrap .section-area .articles li .date_cate .cat_info{
	background-color: #fff;
	border: 1px solid #47b159;
	border-radius: 20px;
	color: #47b159;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin-right: 20px;
}
.news .contents-wrap .section-area .articles li .date_cate .cat_hoiku{
	background-color: #fff;
	border: 1px solid #ff7c95;
	border-radius: 20px;
	color: #ff7c95;
	font-size: 14px;
	text-align: center;
	width: 90px;
	height: 26px;
	margin-right: 20px;
}
.news .contents-wrap .section-area .articles li .date_cate p:nth-child(2){
	margin-left: 20px;
}
.news .contents-wrap .section-area .articles li .ttl {
  font-weight: normal;
  font-size: 1.6rem;
}
.news .contents-wrap .section-area .articles li .ttl a {
	font-size: 16px;
  color: #2f2225;
  text-decoration: underline;
  display: block;
}
.pagination {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}
.pagination,
.pagination li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination li {
  margin-right: 10px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration: none;
  border: 1px solid transparent;
  min-width: 45px;
  min-height: 45px;
  color: #2f2225;
  background-color: #e8f6ff;
  border-radius: 8px;
}
.pagination li:not([class*=current]) a:hover {
  background-color: #44ace7;
  color: #fff;
	transition: 0.3s;
}
.pagination li:first-of-type a {
  border-left-width: 1px;
}
.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-weight: 900;
}
.pagination li.first a::before {
  content: "\f100";
}
.pagination li.last a::after {
  content: "\f101";
}
.pagination li.previous a::before {
  content: "\f104";
}
.pagination li.next a::after {
  content: "\f105";
}
.pagination li.current a {
  background-color: #44ace7;
  cursor: default;
  pointer-events: none;
  color: #fff;
}
.news .article .category {
  text-align: right;
	padding: 0 10px;
}
.news .article .content {
  padding: 30px 10px;
  border-bottom: 1px dashed #c6af86;
}
.news .article .post-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 15px 10px 50px 0;
}
.news .article .post-data .author {
  padding-right: 20px;
  border-right: 1px solid #c6af86;
}
.news .article .post-data .date {
  padding-left: 20px;
  white-space: nowrap;
}
.news .flip-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  background-color: #fff4f5;
  border-radius: 15px;
}
.news .flip-page a{
	color: #ff7c95;
}
.news .flip-page a:hover{
	text-decoration: none;
}
.news .flip-page .next {
    flex-grow: 1;
    text-align: right;
}

/*-----------------------------------------------------
■ contact
-------------------------------------------------------*/
.contact .section02{
	margin-top: 110px;
}
.contact .section01 .contact_txt{
	margin-bottom: 30px;
}
.contact .section01 .contact_tool{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact .section01 .contact_tool .tool_tel{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #fff4f5;
	border-radius: 30px;
	padding: 50px 40px 40px 50px;
	width: 520px;
}
.contact .section01 .contact_tool .tool_tel .tool_tel_txt h4{
	color: #ff7c95;
	font-size: 21px;
}
.contact .section01 .contact_tool .tool_tel .tool_tel_txt h4::before{
	content: "";
	display: inline-block;
	background-image: url(../img/contact/contact_pink_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	position:relative;
	top:2px;
}
.contact .section01 .contact_tool .tool_tel .tool_tel_txt .tel{
	font-size: 21px;
}
.contact .section01 .contact_tool .tool_tel .tool_tel_txt .tel a{
	font-size: 36px;
	color: inherit;
	text-decoration: none;
}
.contact .section01 .contact_tool .tool_line{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #e8f6ff;
	border-radius: 30px;
	padding: 50px 40px 40px 50px;
	width: 520px;
}
.contact .section01 .contact_tool .tool_line .tool_line_txt h4{
	color: #44ace7;
	font-size: 21px;
}
.contact .section01 .contact_tool .tool_line .tool_line_txt h4::before{
	content: "";
	display: inline-block;
	background-image: url(../img/contact/contact_blue_arrow.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	position:relative;
	top:2px;
}
.contact .section01 .contact_tool .tool_line .tool_line_txt .line{
	width: 280px;
	height: 60px;
	background-image: url(../img/contact/contact_line_btn.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 10px;
}
.contact .section01 .contact_tool .tool_line .tool_line_txt .line a{
	display: block;
	width: 280px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 8px;
}
.contact .section01 .contact_tool .tool_line .tool_line_txt .line a::before{
	content: "";
	display: inline-block;
	background-image: url(../img/contact/contact_line.icn.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	margin-right: 5px;
	position:relative;
	top:7px;
}

/* メールフォーム */
.contact .section02 .form_txt{
	margin-bottom: 30px;
}
.contact .section02 .form-area .table{
	width: 1100px;
}
.contact .section02 .form-area .table tr{
	border-top: 1px dashed #c6af86;
}
.contact .section02 .form-area .table tr:last-child{
	border-bottom: 1px dashed #c6af86;
}
.contact .section02 .form-area .table tr th {
  width: 300px;
	background-color: #fffde4;
	padding: 30px;
}
.contact .section02 .form-area .table tr th .required{
	color: #fff;
	font-size: 11px;
	background-color: #ff735c;
	border-radius: 10px;
	padding: 2px 8px;
	margin-left: 15px;
}
.contact .section02 .form-area .table tr td {
	padding: 30px;
}
.contact .section02 .form-area .table tr td input{
	padding: 10px 20px;
	border: 1px solid #c5bba9;
	border-radius: 10px;
}
.contact .section02 .form-area .table tr td select{
	padding: 5px;
}
.contact .section02 .form-area .table tr td textarea{
	padding: 10px 20px;
	border: 1px solid #c5bba9;
	border-radius: 10px;
	width: 650px;
	height: 100px;
}
::placeholder {
  color: #bbb;
}
.contact .section02 .form-area .type ul li, .contact .section02 .form-area .reply ul li {
  margin-bottom: 10px;
}
.contact .section02 .form-area .type ul li:last-child, .contact .section02 .form-area .reply ul li:last-child {
  margin-bottom: 0;
}
.contact .section02 .form-area .zip input[type=tel] {
  width: 150px;
}
.contact .section02 .form-area .address ul li {
  margin-bottom: 15px;
}
.contact .section02 .form-area .address ul li:last-child {
  margin-bottom: 0;
}
.contact .section02 .form-area .address ul li span{
  margin-right: 5px;
}
.contact .section02 .form-area .privacy {
  margin-top: 30px;
  border-top: 1px dashed #c6af86;
  border-bottom: 1px dashed #c6af86;
  text-align: left;
}
.contact .section02 .form-area .privacy .mttl {
  background-color: #fffde4;
  font-size: 16px;
  padding: 20px;
  border-bottom: 1px dashed #c6af86;
  text-align: center;
  font-weight: normal;
  font-weight: 500;
}
.contact .section02 .form-area .privacy .content-wrap {
  padding: 20px 40px 20px 20px;
  overflow: auto;
  max-height: 270px;
}
.contact .section02 .form-area .privacy .content-wrap::-webkit-scrollbar {
  width: 5px; /* 横幅 */
}
.contact .section02 .form-area .privacy .content-wrap::-webkit-scrollbar-thumb {
  background: #ff7c95; /* ハンドルの色 */
}
.contact .section02 .form-area .privacy .content-wrap::-webkit-scrollbar-track {
  background: #dfdfdf; /* 背景色 */
}
.contact .section02 .form-area .privacy .content-wrap .subsection {
  padding: 10px 0;
}
.contact .section02 .form-area .privacy .content-wrap .subsection .ttl {
  color: #ff7c95;
}
.contact .section02 .form-area .privacy .content-wrap .subsection > ul {
  margin-left: 1em;
}
.contact .section02 .form-area .privacy .content-wrap .subsection > ul > li {
  text-indent: -1em;
}
.contact .section02 .form-area .privacy .content-wrap .subsection > ul > li::before {
  content: "・";
}
.contact .section02 .form-area .agreement {
  padding: 40px 20px;
  text-align: center;
}
.contact .section02 .form-area .agreement label .label-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact .section02 .form-area .agreement label .label-inner input {
  margin-top: 5px;
}
.contact .section02 .form-area .agreement label .label-inner span {
  text-align: left;
	margin-left: 10px;
}
.contact .section02 .form-area .agreement .note {
  padding-top: 10px;
  color: #e30000;
}
.contact .section02 .form-area .agreement .note span {
  display: inline-block;
  text-align: left;
}
.contact .section02 .form-area .agreement .error-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .section02 .form-area .submit-btn{
	text-align: center;
}
.contact .section02 .form-area .submit-btn button, .contact .section02 .form-area .submit-btn input[type="submit"]{
	width: 280px;
	height: 60px;
	background-image: url(../img/low/low_btn_pink.png);
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	text-decoration: none;
	text-align: center;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.wpcf7-spinner{
	display: block !important;
}
.wpcf7-list-item {
	display: block !important;
}


/* end */
