@charset "UTF-8";
/*
Theme Name: S-pec
Theme URI:
Description:
Version: 1
Author:
Author URI:
*/
/* ------------------------------------------------------------------------
* 全体
-------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}
body {
	color: #4a4a4a;
	background-color: #fff;
	font-family: 'M PLUS Rounded 1c', '筑紫A丸ゴシック', sans-serif;
	line-height: 2.0;
	letter-spacing: .1rem;
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
main {
	flex: 1;
}
h1 {
	font-size: 3rem;
	font-weight: bold;
}
h2 {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
}
h3 {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}
p, a, li {
	font-size: 1.8rem;
	color: #4a4a4a;
}
a {
	text-decoration: none;
}
a:hover {
	opacity: 0.7;
	cursor: pointer;
}
.inner {
	padding: 10rem 4rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.pcbr {
	display: block;
}
.spbr {
	display: none;
}
img {
	max-width: 100%;
	width: 100%;
	object-fit: cover;
}
.subttl {
	margin-bottom: 2rem;
}
.line {
	width: 30%;
	margin-bottom: 6rem;
}
.effect-fade {
	opacity: 0;
	transform: translate(0, 100px);
	transition: all 2.0s;
}
.effect-fade.effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
}
/* ------------------------------------------------------------------------
* header
-------------------------------------------------------------------------- */
#navpc {
	display: block;
}
#navsp {
	display: none;
}
header {
	margin-bottom: 2rem;
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4rem 0 0;
	height: 100%;
	max-width: 100%;
}
header h1 {
	width: 12%;
}
#navpc ul {
	display: flex;
}
#navpc li {
	padding: .5rem 2rem;
	font-weight: bold;
}
/* ------------------------------------------------------------------------
* header2
-------------------------------------------------------------------------- */
#header2 {
	background: #fafafa;
	padding: 2rem 0;
}
/* ------------------------------------------------------------------------
* mainvisual
-------------------------------------------------------------------------- */
/* .topbg {
	background-image: url(./img/mvbg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 2rem 4rem 6rem;
} */
.topbg {
	background-color: #f4fff4;
} 
.main-wrap {
	position: relative;
}
.mv-img {
	display: block;
	opacity: .8;
	width: 70%;
	margin-left: auto;
	border-radius: 30px;
	height: 70vh;
}
.main-text {
	position: absolute;
	top: 55%;
	left: 7%;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	text-orientation: upright;
	height: 100%;
}
/* ------------------------------------------------------------------------
* ブログ
-------------------------------------------------------------------------- */
#blog {
	background: #fff;
}
.blog-box {
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.blog-wrap {
	display: block;
	width: 22%;
	background: #fafafa;
	padding: 2rem;
	text-align: justify;
}
.blog-item img {
	height: 150px;
}
.day {
	font-size: 1.4rem;
}
.blog-item h3 {
	text-align: left;
	font-size: 1.8rem;
}
.blog-btn {
	text-align: center;
}
.blog-btn a {
	display: inline-block;
	background: #fde1c3;
	color: #fff;
	padding: .5rem 3rem;
	margin: 2rem 0 0;
	border-radius: 10px;
}
.more-btn {
	margin-top: 3rem;
	text-align: right;
}
.more-btn a {
	font-size: 2rem;
	text-decoration: underline;
}
/* ------------------------------------------------------------------------
* S-pecについて
-------------------------------------------------------------------------- */
#about {
	background-image: url(./img/user_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.about-box img {
	width: 30%;
}
.mean-box {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 3rem 0;
}
.mean-item {
	width: 20%;
	border-radius: 10px;
	padding: 2rem;
}
.mean-item:first-child {
	background: #BFFFF0;
}
.mean-item:nth-child(2) {
	background: #F0FFC2;
}
.mean-item:nth-child(3) {
	background: #FFE4C0;
}
.mean-item:last-child {
	background: #FFBBBB;
}
.mean-text1 {
	border: 1px dotted #333;
	display: inline-block;
	padding: 1rem 1.2rem;
	line-height: 1;
	border-radius: 50px;
}
.mean-text2 {
	font-weight: bold;
}
/* ------------------------------------------------------------------------
* 1日の流れ
-------------------------------------------------------------------------- */
#flow {
	background: #fff;
	background-image: url(./img/childrens1.png);
	background-size: 7%;
	background-position: 90% 10%;
	background-repeat: no-repeat;
}
.tabs {
	background: #fafafa;
}
.tab_item {
	width: calc(100%/2);
	border-bottom: 3px solid #febd77;
	background: #FCE8D2;
	font-size: 1.8rem;
	text-align: center;
	display: block;
	float: left;
	font-weight: bold;
	transition: all 0.2s ease;
	padding: 2rem 0;
}
.tab_item:hover {
	opacity: 0.75;
}
input[name="tab_item"] {
	display: none;
}
.tab_content {
	display: none;
	padding: 4rem 2rem;
	clear: both;
	overflow: hidden;
}
#osaka:checked ~ #osaka_content,
#hyogo:checked ~ #hyogo_content {
	display: block;
}
.tabs input:checked + .tab_item {
	background: #ffce9a;
	color: #fff;
}
.time {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
}
.timeimg {
	width: 10%;
}
.timeimg img {
	width: 60%;
}
/* ------------------------------------------------------------------------
* ご利用案内
-------------------------------------------------------------------------- */
#user {
	background: #f4fff4;
	background-image: url(./img/childrens5.png);
	background-size: 12%;
	background-position: 10% 20%;
	background-repeat: no-repeat;
}
.user-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10rem;
}
.user-item:last-child {
	flex-direction: row-reverse;
	margin-top: 6rem;
}
.user-item img {
	width: 15%;
}
.user-item ul {
	text-align: left;
	display: inline-block;
}
.user-item ul li:first-child {
	font-weight: bold;
}
.range {
	font-size: 1.4rem;
}
/* ------------------------------------------------------------------------
* ご利用の流れ
-------------------------------------------------------------------------- */
#guide {
	background: #fff;
	background-image: url(./img/item2.png);
	background-size: 10%;
	background-position: 85% 8%;
	background-repeat: no-repeat;
}
.guide-box {
	text-align: left;
	background: #eff1f5;
	border: 1px dotted #f4b278;
	padding: 3rem;
	background-image: url(./img/childrens3.png);
	background-size: 15%;
	background-position: 90% 90%;
	background-repeat: no-repeat;
}
.guide-box p {
	margin-top: 2rem;
}
.guide-box p:first-child {
	margin-top: 0;
}
.guide-box p span {
	display: block;
	font-weight: bold;
}
/* ------------------------------------------------------------------------
* アクセス
-------------------------------------------------------------------------- */
#access {
	background: #f4fff4;
	background-image: url(./img/childrens2.png);
	background-size: 12%;
	background-position: 10% 20%;
	background-repeat: no-repeat;
}
.access-box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6rem;
}
.access-box img {
	width: 30%;
}
.access-box ul {
	text-align: left;
}
/* ------------------------------------------------------------------------
* お問い合わせ
-------------------------------------------------------------------------- */
#contact {
	background: #fff;
	background-image: url(./img/item6.png),url(./img/item4.png),url(./img/item5.png);
	background-size: 10%;
	background-position: 10% 101%, 80% 101%, 95% 101%;
	background-repeat: no-repeat;
}
textarea,
.field {
	display: block;
	width: 100%;
	height: 45px;
	margin-bottom: 0;
	padding: 0 12px;
	border: 0;
	border-radius: 3px;
	background-color: #eff1f5;
	box-shadow: none;
	color: #5c6b80;
	font-size: 1em;
	line-height: 45px;
	transition: background-color 0.24s ease-in-out;
}
textarea {
	max-width: 100%;
	min-height: 120px;
	line-height: 1.5em;
	padding: 0.5em;
	overflow: auto;
}
.inquiry th {
	text-align: left;
	font-size: 14px;
	color: #444;
	padding-right: 5px;
	width: 30%;
	background: #f7f7f7;
	border: solid 1px #d7d7d7;
}
.inquiry td {
	font-size: 13px;
	border: solid 1px #d7d7d7;
}
.inquiry {
	margin: 30px auto;
}
.entry-content .inquiry tr,
.entry-content table {
	border: solid 1px #d7d7d7;
}
.haveto {
	font-size: 7px;
	padding: 5px;
	background: #ff9393;
	color: #fff;
	border-radius: 2px;
	margin-right: 5px;
	position: relative;
	bottom: 1px;
}
.any {
	font-size: 7px;
	padding: 5px;
	background: #e9fcea;
	color: #fff;
	border-radius: 2px;
	margin-right: 5px;
	position: relative;
	bottom: 1px;
}
.verticallist .wpcf7-list-item {
	display: block;
}
#formbtn {
	display: block;
	padding: 2rem;
	width: 50%;
	background: #ec906f;
	color: #fff;
	font-size: 1.8rem;
	border-radius: 60px;
	margin: 3rem auto 0;
	border: none;
}
#formbtn:hover {
	opacity: 0.7;
}
th {
	font-weight: 700;
	text-transform: uppercase;
	padding: 13px;
}
td {
	border-top: 1px solid #ededed;
	padding: 12px;
}
input,
select,
textarea {
	border: 1px solid #dfdfdf;
	letter-spacing: 1px;
	margin: 0;
	max-width: 100%;
	resize: none;
}
.spam {
	text-align: center;
}
.textsp,.mailsp, .tel, select {
	display: block;
	width: 100%;
	height: 45px;
	margin-bottom: 0;
	padding: 0 12px;
	border: 0;
	border-radius: 3px;
	background-color: #eff1f5;
	box-shadow: none;
	color: #5c6b80;
	font-size: 1em;
	line-height: 45px;
}
.privacy {
	text-align: justify;
	padding: 70px 15px;
}
.privacy p {
	margin: 30px 0 0;
	line-height: 2.0em ;
}
.privacy-li {
	margin: 0 !important;
}
.preparation p {
	text-align: center;
}
.spam {
	margin: 30px 0 0;
}
.spam a {
	text-decoration: underline;
}
#formbtn {
	-webkit-appearance: none;
}
.spam a {
	text-decoration: underline;
	color: #2b7bb9;
}
/* ------------------------------------------------------------------------
* footer
-------------------------------------------------------------------------- */
footer {
	background: #97c497;
}
footer .inner {
	padding: 3rem 2rem;
}
.footer-logo {
	font-size: 3rem;
	color: #fff;
}
footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	margin: 3rem 0;
}
footer ul li a {
	color: #fff;
}
small {
	color: #fff;  
	font-size: 1.6rem;
}
/* ------------------------------------------------------------------------------------------------
* single-page
-------------------------------------------------------------------------------------------------- */
#single-page .inner {
	text-align: left;
}
.single-day {
	margin-bottom: 3rem;
}
.thumbnail img {
	width: 60%;
	height: 400px;
	display: block;
}
.single-content {
	margin-top: 3rem;
}
.single-content img {
	width: 40%;
	display: block;
	margin-right: auto;
	height: auto;
	margin: 2rem 0;
}
/* ------------------------------------------------------------------------------------------------
* privacy-page
-------------------------------------------------------------------------------------------------- */
.privacy-box {
	text-align: left;
}
.pri-ttl {
	font-weight: bold;
	margin: 2rem 0;
}
/* ------------------------------------------------------------------------------------------------
* 自己評価
-------------------------------------------------------------------------------------------------- */
.assessment-box {
	width: 60%;
	margin: 0 auto;
}
.assessment-box ul li {
	border-bottom: 1px dotted #ccc;
	padding: 1rem 2rem;
	text-align: left;
}
.assessment-box ul li:first-child {
	padding-top: 0;
}