/*======================================

	0. WPネイティブ設定
	
=======================================*/

/* editor */
 
p {
    display: block;
    margin: 1em 0;
}
strong { font-weight: bold; }
em { font-style: italic; }
blockquote {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
}
 
/* img */
 
.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright { float: right; }
.alignleft { float: left; }
 
img[class*="wp-image-"],
img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
}
 
/* clearfix */
 
.clearfix {
    overflow: hidden;
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/*======================================

	1. フォント設定
	
=======================================*/

p,
pre,
cite,
blockquote {
	font-size: 100%;
}

li,dt,dd {
	font-size: 100%;
}

* {
font-style: normal;
}

strong {
	font-weight:bold;
}


/*======================================

	2. サイト構造
	
=======================================*/

html {
box-sizing: border-box;
}

*, *:before, *:after {
box-sizing: inherit;
}

body {
margin: 0 auto;
padding: 0;
color: #42210b;
background-color: #f7f7f7;
line-height: 1.8;
font-family: "Noto Sans JP","游ゴシック","Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ ゴシック",sans-serif;
font-style: normal;
}

br.clear {
clear: both;
font: 0pt/0pt sans-serif;
}

a {
color: #009de1;
text-decoration: none;
}

a:hover {
color: #009de1;
}

section {
clear: both;
}

.main-color {
color: #f64747;
}

.contents-h2 {
height: 370px;
background-image: url("img/h2-bg.png");
background-size: cover;
}

.contents-h2 h2 {
padding: 210px 0 0 180px;
font-size: 40px;
font-family: hiragino-kaku-gothic-pron, sans-serif;
font-weight: 600;
font-style: normal;
line-height: 0.5;
}

.contents-h2 h2 span {
color: #007660;
font-size: 18px;
}

.main-contents {
margin: 100px auto;
padding: 100px 50px;
width: 1224px;
background-color: #FFF;
}

.main-contents h3 {
padding: 0 0 8px 0;
color: #007660;
border-bottom: 2px solid #007660;
font-size: 30px;
margin: 0 0 50px 0;
} 

.main-contents h4 {
color: #007660;
font-size: 24px;
}


/*======================================

	3. アニメーション共通
	
=======================================*/

.animate-fade-in {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-fade-in-down {
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animated {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}


/*======================================

	3. ヘッダ設定
	
=======================================*/


header {
margin: 0;
padding: 0;
height: 90px;
width: 100%;
background: rgba(255,255,255,0.8);
box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, .2);
display: flex;
justify-content: space-between;
position: fixed;
align-items: center;
z-index: 1000;
}

h1 {
margin: 0 0 0 30px;
}

h1 img {
margin: 0;
padding: 0;
width: 130px;
height: auto;
vertical-align: top;
}


/*======================================

	3. ドロワーメニュー設定
	
=======================================*/

/* :::::: toggle button :::::: */
#drawer {
	display: none;
}
label.open,
label.close {
	cursor: pointer;
	position: fixed;
    margin-bottom: 0;
}
.open {
	z-index: 1002;
	top: 20px;
	right: 30px;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	background: #1C7F8C;
	background: linear-gradient(90deg,rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.open .button-menu {
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
text-align: center;
color: #007660;
font-size: 13px;
}
#drawer:checked + .open div {
display: none;
}
.close {
	z-index: 1001;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open {
	background: #1C7F8C;
	background: linear-gradient(90deg,rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
	transform: translateX(-260px);
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.drawer-nav {
	z-index: 1001;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 260px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(255,255,255,1);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.drawer-nav h1.sp-logo {
margin: 20px 50px;
text-align: center;
float: none;
}
.drawer-nav h1 img{
width: 100%;
height: auto;
float: none;
}
.drawer-nav ul {
	margin: 0 0 20px 0;
	padding: 0;
    border-top: 1px solid #aaa;
}
.drawer-nav li {
	line-height: 1.4;
    border-bottom: 1px solid #aaa;
    list-style: none;
}

.drawer-nav li a {
display: block;
padding: 10px;
color: #007660;
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.drawer-nav li a:hover {
background-color: #f7f7f7;
}

#drawer:checked ~ .drawer-nav {
transform: none;
}


/*======================================

	4. TOP設定
	
=======================================*/

.top-video {
padding: 90px 0 0 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 → 9 ÷ 16 × 100 = 56.25% */
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill; /* または cover に変更可 */
}


/* --- 診療以外、すべてをデザインします。 ---*/

.design-box {
margin: 0 auto;
padding: 90px 0 60px 0;
width: 1100px;
display: flex;
justify-content: space-between;
align-items: center;
}

.design-left {
width: 470px;
}

.design-left h2 {
margin: 0 0 10px 0;
padding: 0;
font-size: 32px;
position: relative;
display: inline-block; /* テキストの幅に合わせる */
}

.design-left h2::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
pointer-events: none;
}

.design-left p {
margin: 50px 0 0 0;
}

.design-right {
width: 515px;
height: 515px;
background: #1C7F8C;
background: linear-gradient(90deg,rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}


/* --- Our Mission ---*/

.mission-box {
margin: 0 auto;
padding: 170px 0 0 0;
background-color: #f7f7f7;
}

.mission-inner {
margin: 0 auto;
padding: 0;
width: 1100px;
display: flex;
justify-content: space-between;
align-items: center;
}

.mission-inner h2 {
margin: 0;
padding: 0;
line-height: 1;
font-size: 64px;
color: #42210b;
font-weight: bold;
}

.mission-inner span {
font-size: 32px;
font-weight: bold;
position: relative;
display: inline-block; /* テキストの幅に合わせる */
}

.mission-inner span br {
display: n
}

.mission-inner span::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
pointer-events: none;
}

.mission-container {
margin: 0 auto;
padding: 80px 0 0 0;
width: 1100px;
display: flex;
justify-content: space-between;
align-items: center;
}

.gradient-box {
  position: relative;
  padding: 20px;
  border: 5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%) border-box;
  width: 330px;
  height: 185px;
  box-sizing: border-box;
}

.box-title {
  position: absolute;
  display: block;
  text-align: center;
  padding: 0px 5px 10px 0px;
  width: 154px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: white;
  font-weight: bold;
  border-bottom-right-radius: 30px;
  background: linear-gradient(90deg, rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
  background-size: 100% 100%;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 1;
  margin-top: -20px;
  margin-left: -20px;
  font-size: 24px;
}

.box-content {
  padding: 30px 0 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.consulting {
margin: 180px auto 0 auto;
}

.consulting-comm {
margin: 40px auto 0 auto;
width: 1100px;
}

.consulting-box {
margin: 0 auto;
padding: 80px 0;
width: 930px;
display: flex;
justify-content: space-between;
align-items: center;
}

a .consulting-button {
padding: 10px 0 0 0;
width: 412px;
height: 185px;
background-color: #FFF;
border-radius: 16px;
box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.1);
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
color: #42210b;
text-align: center;
}

a .consulting-button:hover {
background-color: #1b7f8d;
border-radius: 16px;
color: #FFF;
}

a .consulting-button span.button1 {
font-size: 32px;
color: #1b7f8d;
font-weight: bold;
}

a .consulting-button:hover span.button1 {
color: #FFF;
}

a .consulting-button2 {
padding: 10px 0 0 0;
width: 412px;
height: 185px;
background-color: #FFF;
border-radius: 16px;
box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.1);
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
color: #42210b;
text-align: center;
}

a .consulting-button2:hover {
background-color: #0d8e75;
border-radius: 16px;
color: #FFF;
}

a .consulting-button2 span.button2 {
font-size: 32px;
color: #0d8e75;
font-weight: bold;
}

a .consulting-button2:hover span.button2 {
color: #FFF;
}


/* --- 開業支援 ---*/

.opening {
margin: 0 auto;
padding: 90px 0 0 0;
background-color: #f7f7f7;
}

.opening h2 {
margin: 0 0 90px 0;
padding: 20px 0 20px 30px;
background-color: #1b7f8d;
font-size: 32px;
color: #FFF;
line-height: 1;
}

.opening-box {
display: flex;
justify-content: space-between;
align-items: center;
}

.image-cut-wrapper {
  width: 50vw; /* 画面幅の50% */
  height: 470px;
  overflow: hidden;
}

.cut-image {
  width: 100%;
  height: 100%;
  background: url("img/opening-bg.jpg") no-repeat center center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}

.opening-right {
width: 45vw;
}

.opening-right h3 {
font-size: 32px;
font-weight: bold;
}

.opening-support {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
}

.opening-support span {
padding: 8px 10px;
color: #1b7f8d;
width: 50%;
font-size: 22px;
border-left: 5px solid #1b7f8d;
line-height: 1.4;
}

.opening-support span.dot {
margin: 0;
padding: 0;
border-left: none;
text-align: center;
}

.opening-support span.dot img {
width: 40px;
height: auto;
vertical-align: top;
}

.opening-comm {
margin: 100px auto 100px auto;
width: 1100px;
}

.management-button-box,
.opening-button-box {
  position: relative;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  min-height: 100%;
  object-fit: cover;
}

/* 上に載せるテキストやボタン類 */
.management-button-box .content,
.opening-button-box .content {
  position: relative;
  z-index: 1;
}

.opening-button-box {
margin: 0 0 80px 0;
padding: 40px 0;
color: #FFF;
text-align: center;
background-position: center bottom;
}

.opening-button-box p {
margin: 0;
padding: 0;
font-size: 32px;
font-weight: bold;
}

.opening-button-box p br {
display: none;
}

.opening-button-box p span {
font-size: 24px;
}

.opening-button-box img {
width: 50px;
height: auto;
}

.opening-button {
margin: 0 auto;
width: 520px;
}

.opening-button a {
padding: 15px 0;
display: block;
background-color: #1b7f8d;
color: #FFF;
border: 6px solid #FFF;
border-radius: 100px;
font-size: 32px;
text-align: center;
font-weight: bold;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.opening-button a:hover {
background-color: #0d8e75;
border-radius: 100px;
}


/* --- 経営支援 ---*/

.management {
margin: 0 auto;
padding: 90px 0 0 0;
background-color: #f7f7f7;
}

.management h2 {
margin: 0 0 90px 0;
padding: 20px 0 20px 30px;
background-color: #0d8e75;
font-size: 32px;
color: #FFF;
line-height: 1;
}

.management-box {
display: flex;
justify-content: space-between;
align-items: center;
}

.image-cut-wrapper2 {
  width: 50vw; /* 画面幅の50% */
  height: 470px;
  overflow: hidden;
}

.cut-image2 {
  width: 100%;
  height: 100%;
  background: url("img/management-bg.jpg") no-repeat center center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}

.management-right {
width: 45vw;
}

.management-right h3 {
font-size: 32px;
font-weight: bold;
}

.management-br {
display: none;
}

.management-solution {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
}

.management-solution span {
padding: 8px 10px;
color: #0d8e75;
width: 50%;
font-size: 22px;
border-left: 5px solid #0d8e75;
line-height: 1.4;
}

.management-solution span.dot {
margin: 0;
padding: 0;
border-left: none;
text-align: center;
}

.management-solution span.dot img {
width: 40px;
height: auto;
vertical-align: top;
}

.management-comm {
margin: 100px auto 100px auto;
width: 1100px;
}

.management-button-box {
margin: 0 0 80px 0;
padding: 40px 0;
color: #FFF;
text-align: center;
background-position: center bottom;
}

.management-button-box p {
margin: 0;
padding: 0;
font-size: 32px;
font-weight: bold;
}

.management-button-box p br {
display: none;
}

.management-button-box p span {
font-size: 24px;
}

.management-button-box img {
width: 50px;
height: auto;
}

.management-button {
margin: 0 auto;
width: 520px;
}

.management-button a {
padding: 15px 0;
display: block;
background-color: #0d8e75;
color: #FFF;
border: 6px solid #FFF;
border-radius: 100px;
font-size: 32px;
text-align: center;
font-weight: bold;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.management-button a:hover {
background-color: #1b7f8d;
border-radius: 100px;
}


/* --- Clinic Support Design ---*/

.csd {
margin: 0 auto;
padding: 90px 0 0 0;
background-color: #f7f7f7;
}

.csd h2 {
margin: 0 0 90px 0;
padding: 20px 0 20px 30px;
background-color: #FFF;
font-size: 32px;
color: #0d8e75;
line-height: 1;
}

.csd-box {
display: flex;
justify-content: space-between;
align-items: center;
}

.image-cut-wrapper3 {
  width: 50vw; /* 画面幅の50% */
  height: 470px;
  overflow: hidden;
}

.cut-image3 {
  width: 100%;
  height: 100%;
  background: url("img/csd-bg.jpg") no-repeat center center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}

.csd-right {
padding: 0 10vw 0 0;
width: 45vw;
}

.csd-flow {
margin: 0 auto;
padding: 80px 0 0 0;
width: 1100px;
display: flex;
justify-content: space-between;
align-items: center;
}

.csd-flow-block {
width: 240px;
padding: 20px 0;
height: 180px;
border: 3px solid #0d8e75;
background-color: #FFF;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

.csd-flow-block h3 {
margin: 0 auto;
color: #0d8e75;
font-size: 22px;
font-weight: bold;
display: block;
text-align: center;
}

.csd-flow-block p {
margin: 15px 35px 0 35px;
padding: 0;
line-height: 1.2;
}

.csd-flow-arrow {
width: 15px;
}

.csd-flow-arrow img {
width: 15px;
height: auto;
}


/* --- Point ---*/

.point-box {
margin: 0 auto;
padding: 170px 0 0 0;
background-color: #f7f7f7;
}

.point-inner {
margin: 0 auto;
padding: 0;
width: 1100px;
display: flex;
justify-content: space-between;
align-items: center;
}

.point-inner h2 {
margin: 0;
padding: 0;
line-height: 1;
font-size: 64px;
color: #42210b;
font-weight: bold;
}

.point-inner span {
font-size: 32px;
font-weight: bold;
position: relative;
display: inline-block; /* テキストの幅に合わせる */
}

.point-inner span br {
display: none;
}

.point-inner span::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
pointer-events: none;
}

.point-comm {
margin: 80px auto 0 auto;
width: 1100px;
}

.point-container {
margin: 0 auto;
padding: 80px 0 160px 0;
width: 1100px;
display: flex;
justify-content: space-between;
align-items: center;
}

.gradient-box2 {
  position: relative;
  padding: 20px;
  border: 5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%) border-box;
  width: 330px;
  height: 330px;
  box-sizing: border-box;
}

.box-title2 {
  position: absolute;
  display: block;
  text-align: center;
  padding: 10px 5px 15px 0px;
  width: 290px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: white;
  border-bottom-right-radius: 30px;
  background: linear-gradient(90deg, rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
  background-size: 100% 100%;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 1;
  margin-top: -20px;
  margin-left: -20px;
  font-size: 16px;
  font-weight: normal;
}

.box-content2 {
  padding: 30px 0 0 0;
  font-size: 16px;
  line-height: 1.6;
}


/* --- 開業物件情報 ---*/
.top-property {
padding: 90px 0;
background-image: url("img/opening-button-bg.jpg");
background-size: cover;
background-position: center center;
}

.top-property h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
width: 1100px;
}

.top-property-inner {
margin: 0 auto;
padding: 70px 100px;
width: 1100px;
border-radius: 10px;
background-color: #FFF;
background-color:rgba(255,255,255,0.8);
background-blend-mode:lighten;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

.top-property-inner ul {
padding: 0;
border-top: 1px solid #c4c4c4;
}

.top-property-inner li {
padding: 0;
list-style: none;
border-bottom: 1px solid #c4c4c4;
}

.property-t {
padding: 20px;
display: flex;
justify-content: flex-start;
align-items: flex-start;
width: 100%;
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.property-t .top-property-day {
width: 180px;
white-space: nowrap;
text-align: center;
color: #0d8e75;
}

.property-t h3 {
margin: 0;
width: 80%;
font-size: 18px;
font-weight: normal;
text-wrap: wrap;
color: #42210b;
}

.property-t:hover {
text-decoration: none;
background-color: #FFF;
}


/* --- CONTACT ---*/

.contact-box {
margin: 0 auto;
padding: 0 0 50px 0;
background: #1C7F8C;
background: linear-gradient(90deg,rgba(28, 127, 140, 1) 0%, rgba(0, 116, 187, 1) 100%);
}

.contact-box h2 {
margin: 0 auto;
padding: 90px 0 0 0;
font-size: 55px;
max-width: 1100px;
color: #FFF;
}

.contact-inner {
margin: 0 auto;
padding: 70px 100px;
width: 1100px;
border-radius: 10px;
background-color: #FFF;
}

.contact-inner p.contact-comm {
font-size: 34px;
text-align: center;
}

.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"] {
margin: 0 3px 3px 0;
padding: 20px 10px;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
font-size: 16px;
border-radius: 5px;
width: 100%;
border: 1px solid #FFF;
}

.wpcf7-form-control-wrap textarea  {
padding: 20px 10px;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
height: 150px;
width: 100%;
border-radius: 5px!important;
border: 1px solid #FFF;
}

.wpcf7-list-item {
    display: block;
    line-height: 1;
    margin: 0 30px 80px 0!important;
}
.wpcf7-list-item + .wpcf7-list-item {
    margin-top: 8px;
}
input[type="checkbox"] {
    display: none;
}
.wpcf7-list-item-label {
    position: relative;
    height: 30px;
    line-height: 30px;
    padding-left: 40px;
    display: inline-block;
}
.wpcf7-list-item-label::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #FFF;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #3d8582;
    border-right: 3px solid #3d8582;
    transform: rotate(135deg);
    position: absolute;
    left: 10px;
    top: 6px;
}

input.wpcf7-submit {
margin: 50px auto 0 auto;
text-align: center;
padding: 15px 50px;
border: 3px solid #FFF;
background-color: #0d8e75!important;
border-radius: 50px;
color: #FFF;
font-size: 24px;
font-weight: bold;
background-image: none!important;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
display: block;
}

input.wpcf7-submit:hover {
background-color: #1b7f8d!important;
border-radius: 50px;
}

/* 本来の送信メッセージは非表示にする */
.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

/* モーダルウィンドウを作成する */
.cf7-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cf7-modal-content {
  background: #fff;
  padding: 30px;
  margin: 15% auto;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  border-radius: 8px;
}

.cf7-modal-content h3 {
color: #3d8582;
font-size: 24px;
}

.cf7-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}


/* --- おしらせ ---*/

.top-news {
background-color: #f7f7f7;
}

.top-news h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
max-width: 1100px;
}

.top-news-inner {
margin: 0 auto;
padding: 50px 0 80px 0;
max-width: 900px;
}

.top-news ul {
padding: 0;
border-top: 1px solid #c4c4c4;
}

.top-news li {
padding: 0;
list-style: none;
border-bottom: 1px solid #c4c4c4;
}

.news-t {
padding: 20px;
display: flex;
justify-content: flex-start;
align-items: flex-start;
width: 100%;
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.news-t .top-news-day {
width: 180px;
white-space: nowrap;
text-align: center;
color: #0d8e75;
}

.news-t h3 {
margin: 0;
width: 80%;
font-size: 18px;
font-weight: normal;
text-wrap: wrap;
color: #42210b;
}

.news-t:hover {
text-decoration: none;
background-color: #FFF;
}


/*======================================

	5. FOOTER設定
	
=======================================*/

footer {
margin: 0;
padding: 0 30px;
height: 180px;
overflow: hidden;
background-color: #FFF;
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-logo {
width: 200px;
}

.footer-logo img {
width: 200px;
height: auto;
}

.footer-cr {
margin: 0;
font-size: 14px;
}



/*======================================

	5. INFORMATION
	
=======================================*/

.info-box {
margin: 0 auto 80px auto;
padding: 0;
}

.info-box h2 {
margin: 0 auto;
padding: 90px 0;
font-size: 55px;
max-width: 1100px;
}

.info-box-inner {
margin: 0 auto;
padding: 50px 0 80px 0;
max-width: 900px;
}

.info-box-inner ul {
padding: 0;
border-top: 1px solid #c4c4c4;
}

.info-box-inner li {
padding: 0;
list-style: none;
border-bottom: 1px solid #c4c4c4;
}

.info-t {
padding: 20px;
display: flex;
justify-content: flex-start;
align-items: flex-start;
width: 100%;
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.info-t span {
width: 180px;
white-space: nowrap;
text-align: center;
color: #0d8e75;
}

.info-t h3 {
margin: 0;
width: 80%;
font-size: 18px;
font-weight: normal;
text-wrap: wrap;
color: #42210b;
}

.info-box a:hover {
text-decoration: none;
background-color: #FFF;
}


/*---- お知らせ　詳細 ------*/

.info-box .post {
margin: 0 auto;
padding: 50px 0 80px 0;
max-width: 900px;
}

.info-box .post h3 {
margin: 0 0 50px 0;
font-size: 26px;
text-wrap: wrap;
color: #1b7f8d;
}

.info-box .post .info-day {
padding: 0 0 10px 0;
margin: 0 0 80px 0;
border-bottom: 1px solid #4a4e56;
text-align: right;
}

.info-box .post p {
line-height: 2;
font-size: 18px;
}



.post-navigation {
max-width: 1000px;
padding: 0 50px 50px 50px;
display: flex;
justify-content: space-between;
align-items: center;
}

.post-navigation .previous-post {

}

.post-navigation .list-post {
text-align: center;
}

.post-navigation .next-post {

}

.post-navigation .previous-post a,
.post-navigation .list-post a,
.post-navigation .next-post a {
display: block;
padding: 10px 20px;
border: 1px solid #007BFF;
border-radius: 50px;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.post-navigation .previous-post a:hover,
.post-navigation .list-post a:hover,
.post-navigation .next-post a:hover {
display: block;
padding: 10px 20px;
border: 1px solid #007BFF;
border-radius: 50px;
background-color: #007BFF;
color: #FFF;
}




/*======================================

	5. 開業物件情報設定
	
=======================================*/

/*---- 開業物件情報　詳細 ------*/
.property-box {
margin: 0 auto 80px auto;
padding: 0;
}

.property-box h2 {
margin: 0 auto;
padding: 90px 0;
font-size: 55px;
max-width: 1100px;
}

.property-box-inner {
margin: 0 auto;
padding: 50px 0 80px 0;
max-width: 900px;
}

.property-box .post {
margin: 0 auto;
padding: 50px 0 80px 0;
max-width: 900px;
}

.property-box .post h3 {
margin: 0 0 50px 0;
font-size: 26px;
text-wrap: wrap;
color: #1b7f8d;
}

.property-box .post .property-day {
padding: 0 0 10px 0;
margin: 0 0 80px 0;
border-bottom: 1px solid #4a4e56;
text-align: right;
}

.property-box .post p {
line-height: 2;
font-size: 18px;
}

.property-box .post img {
margin: 50px 0;
  -ms-filter: blur(15px);
  filter: blur(15px);
}


/*======================================

	5. wp-pagenavi設定
	
=======================================*/

/*---- wp-pagenavi ------*/

.wp-pagenavi {
margin: 0 auto 100px auto;
overflow: hidden;
text-align: center;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

/*---- wp-pagenavi ページ「〇/〇」 ------*/
.wp-pagenavi .pages {
display: none;
}

/*---- wp-pagenavi ≪ 先頭 ------*/
.wp-pagenavi .first {
display: none;
}

/*---- wp-pagenavi ≪ ------*/
.wp-pagenavi a.previouspostslink {
margin: 0 5px;
padding: 10px;
display: inline-block;
width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #FFF;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.wp-pagenavi a.previouspostslink:hover {
text-decoration: none;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 省略「...」 ------*/
.wp-pagenavi .extend {
border: none;
}

/*---- wp-pagenavi 各ページ（リンクあり） ------*/
.wp-pagenavi a.page {
margin: 0 5px;
padding: 10px;
display: inline-block;
min-width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #FFF;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.wp-pagenavi a.page:hover {
text-decoration: none;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 現在のページ ------*/
.wp-pagenavi .current {
margin: 0 5px;
padding: 10px;
display: inline-block;
min-width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 各ページ（現在のページより前のページ） ------*/
.wp-pagenavi .smaller {

}

/*---- wp-pagenavi 各ページ（現在のページより後のページ） ------*/
.wp-pagenavi .larger {

}

/*---- wp-pagenavi ≫ ------*/
.wp-pagenavi a.nextpostslink {
margin: 0 5px;
padding: 10px;
display: inline-block;
width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #FFF;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.wp-pagenavi a.nextpostslink:hover {
text-decoration: none;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 最後 ≫ ------*/
.wp-pagenavi .last {
display: none;
}
