/***************************
 *
 * モジュール
 *
 **************************/

/* 
一般
*/
img{

}
.clear {
	clear: both;
}
.clearfix:after {
	clear: both;
	height: 0px;
	display: block;
	content: ".";
	visibility: hidden;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.underline {
	text-decoration: underline;
}
.white {
	color: white;
}

.fl-l {
	float: left;
}
.fl-r {
	float: right;
}

.big {
	font-size: 1.3em;
}
.no-margin {
	margin-left: 0px !important;
	margin-right: 0px !important;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}
.ib {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
.img-left {
	float: left;
	margin-right: 5px;
	margin-bottom: 20px;
}
.img-right {
	float: right;
	margin-left: 5px;
	margin-bottom: 20px;
}
small {
	font-size: 80%;
}
.relative {
	position: relative;
}

.biyou-4 {
  padding: 10px;
  width: 350px;
  height: 400px;
}

/* 
カラー
*/
.red {
	color: #ec6864;
}
.blue {
	color: #4d60b4;
}
.pink {
	color: #6a3906;
}
.bg-white {
	background: white;
}
.orange {
	color: #de6905;
}


/* 
OVER
*/
.over:hover {
	-ms-filter: "alpha(opacity=7)";
	opacity: 0.7;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
.zoom {
	
}
.zoom:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);	
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}

/* 
フォント
*/
.serif {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.serif-all * {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.font-pathway {
	font-family: 'Pathway Gothic One', sans-serif;
}
.font-pathway-all * {
	font-family: 'Pathway Gothic One', sans-serif;	
}
.italic {
	font-style: italic;
}

.font-pop, .en {
	font-family: 'Poppins', sans-serif;
	font-style: italic;
}

/* 
ボタン
*/

.btn {
	text-align:center;
	text-align: center;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
        position: relative;
        overflow: hidden;
        z-index: 2;
	margin:0 auto;
}
.btn:before {
	position: absolute;
	left: -100%;
	top: 0px;
	width: 100%;
	height: 100%;
	content: "　";
	background: #f2f2f2;
	z-index: 0;

}
.btn a:hover, .btn a:focus, .btn a:active {
	color: #ebe9e5;
}
.main-access .btn.btn-black a:hover {
	color: #fff;
	opacity: .7;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
	left: 0;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;	
	z-index: -10;	

}



.btn a {
	color: #5d4d48;	
	text-decoration: none;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	height: 100%;
	padding: 10px 20px;
	/*font-size: 90%;*/
	line-height: 1.3em;
	z-index: 6;
	border: 1px solid #bbb4b1;

	font-size: 15px;
}
.btn a:hover {
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;	
}

.manga-h1{
text-align:center;
font-size:1.5rem;
margin-top:1rem;
margin-bottom:1rem;
}

/* ボタン用サイズ */
.btn-455 a {
	width: 455px;
}

/* ボタン用カラー */
.btn-black {
	background: url(../img/bg-btn-black.jpg) 0 0 no-repeat;
	background-size: cover;
	margin-top: 10px;
	margin-bottom: 10px;
}
.btn-black a {
	border: none;
	color: white;
	font-size: 16px;
	padding: 10px 0;
}
.btn-black a:hover {
	animation: btn-bg 5s linear infinite;
	color: black;
}
.btn-pink {
	background: #f67171;
	margin-top: 10px;
	margin-bottom: 10px;
}
.btn-pink a {
	border: none;
	color: white;
	font-size: 16px;
	padding: 4px 0;
}
.btn-pink a:hover {
	animation: btn-bg 5s linear infinite;
	color: black;
}

@keyframes btn-bg {
	 0% {background-position: 0 0, 0 0, 0 0;}
	 100% {background-position: 100px 0;}
}
@-webkit-keyframes btn-bg {
	 0% {background-position: 0 0, 0 0, 0 0;}
	 100% {background-position: 100px 0;}
}
@-moz-keyframes btn-bg {
	 0% {background-position: 0 0, 0 0, 0 0;}
	 100% {background-position: 100px 0;}
}
@-ms-keyframes btn-bg {
	 0% {background-position: 0 0, 0 0, 0 0;}
	 100% {background-position: 100px 0;}
}

.btn-new {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 3rem;
}

.btn-new a {
  line-height: 47px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  display: block;
  text-align: center;
  background: #9b9000;
  border-bottom: 3px solid #7c7100;
  border-radius: 5px;
  text-decoration: none !important;
}

.btn-new a:hover {
  transform: translateY(3px);
  transition: none;
  background: #7c7100;
  cursor: pointer;
}


/* ボタン用アイコン */
.icon {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	line-height: 0;
	vertical-align: middle;
	margin-right: 10px;
	margin-left: 5px;
}
.icon-right-fix {
	position: absolute;
	right: 0px;
	top: 17px;
}
.icon-home {
	background: url(../img/icon-home.png) 0 0 no-repeat;
	background-size: 100% 100%;
	width: 16px;
	height: 16px;
}
.icon-arrow-white {
	background: url(../img/icon-arrow-white.png) 0 0 no-repeat;
	width: 5px;
	height: 9px;
}
.btn a:hover .icon-arrow-white {
	background: url(../img/icon-arrow-black.png) 0 0 no-repeat;
	width: 5px;
	height: 9px;
	-webkit-animation: levitate 0.8s alternate ease-in-out infinite;
	-moz-animation: levitate 0.8s alternate ease-in-out infinite;
	-ms-animation: levitate 0.8s alternate ease-in-out infinite;
	animation: levitate 0.8s alternate ease-in-out infinite;		
}
@keyframes levitate {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    100% {
        -webkit-transform: translate(8px, 0);
        -moz-transform: translate(8px, 0);
        -ms-transform: translate(8px, 0);
        -o-transform: translate(8px, 0);
        transform: translate(8px, 0)
    }
}

@-webkit-keyframes levitate {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    100% {
        -webkit-transform: translate(8px, 0);
        -moz-transform: translate(8px, 0);
        -ms-transform: translate(8px, 0);
        -o-transform: translate(8px, 0);
        transform: translate(8px, 0)
    }
}



/* 
ボックス
*/
.box-1100 {
	width: 1100px;
	margin: 0px auto;
	position: relative;
}
.box-1050 {
	width: 1050px;
	margin: 0px auto;
	position: relative;
}
.box-1020 {
	width: 1020px;
	margin: 0px auto;
	position: relative;
}
.box-1000 {
	width: 1000px;
	margin: 0px auto;
	position: relative;
}
.box-880 {
	width: 880px;
	margin: 0px auto;
	position: relative;
}
.box-800 {
	width: 800px;
	margin: 0px auto;
	position: relative;
}
.box-680 {
	width: 680px;
	margin: 0px auto;
	position: relative;
}
.box-630 {
	width: 630px;
	margin: 0px auto;
	position: relative;
}
.box-450 {
	width: 450px;
	margin: 0px auto;
	position: relative;
}
.box-white {

}


/* 
ヘッダー
*/
.l-header-top {
	background: #2f1804;
	color: white;
	position: relative;
	padding: 0;
	height: 22px;
}

.l-header-top p{
	background: #2f1804;
	color: white;
	position: absolute;
	right: 20px;
  top: 3px;
}


.l-header-top a{
	color: white;
	font-weight:bold;
}


.header-title {
	font-weight: normal;
	font-size: 12px;
	padding-top: 5px;
	padding-left: 5px;
}
.nav-header {
	text-align: right;
	position: absolute;
	top: 3px;
	right: 5px;
}
.nav-header li {
	display: inline-block;
	margin-left: 10px;
}
.nav-header li a {
	color: white;
	font-size: 12px;
	padding-left: 10px;
}
.nav-header li a:before {
	content: "・";
}

.l-header-bottom {
	background:#3e1e03;
	background-size: cover;
	color: white;
	position: relative;
	height:85px;
}
.logo {
    position: relative;
    top: 10px;
    width: 300px;
    left: 150px;
    padding-left: 15px;
}

.header-tel {
	text-align: right;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 108px;
	display: inline-block;
}
.header-tel-1 {
	display: table-cell;
	font-size: 17px;
	background: url(../img/header-bottom-line.png) right center no-repeat;
	padding-right: 10px;
	height: 108px;
	vertical-align: middle;
}
.header-tel-1 small {
	display: inline-block;
	font-size: 14px;
}
.header-tel-2 {
	display: table-cell;
	font-size: 12px;
	text-align: left;
	padding-left: 11px;
	padding-right: 10px;
	height: 108px;
	vertical-align: middle;
}
.header-tel-2 a:first-child {
	display: block;
	font-size: 29px;
	color: white;
	font-weight: normal;
	letter-spacing: 2px;
	line-height: 1;
}
.header-tel-2 a:nth-child(2) {
	display: block;
	color: white;
	font-size: 18px;
}
.header-tel-3 {
	display: table-cell;
	background: #d04d4d;
	text-align: center;
	height: 108px;
	width: 108px;
	vertical-align: middle;
}
@media all and (-ms-high-contrast: none) {
  p {
.header-tel-3 {
	display: table-cell;
	background: #d04d4d;
	text-align: center;
	height: 54px;
	width: 54px;
	vertical-align: middle;
}
  }
}
.header-tel-3 a {
display: table-cell;
	background: #d04d4d;
	text-align: center;
	height: 108px;
	width: 108px;
	vertical-align: middle;
}
.header-tel-3 img {
width:100%;
}

.logo img {
	border-radius:5px;
	background: #fff;
}

/*
GLOBAL NAVI	
*/
.l-nav .menu {
	text-align: center;
	position: relative;
	line-height: 1;
}
.l-nav .menu > li {
	display: inline-block;
}
.l-nav .menu > li > a, .l-nav .menu > li > .a {
	font-size: 10px;
	color: black;
	padding: 12px 25px 10px 25px;
	display: block;
	background: url(../img/nav-active-2.png) -500px bottom no-repeat;

	-webkit-transition: 0.7s ease;
	-moz-transition: 0.7s ease;
	-ms-transition: 0.7s ease;
	-o-transition: 0.7s ease;
	transition: 0.7s ease;	
}
.l-nav .menu > li > .a:hover {
	cursor: pointer;
}
.l-nav .menu > li > a .en, .l-nav .menu > li > .a .en {
	font-size: 19px;
	display: block;
	padding-bottom: 5px;
}

.l-nav .menu > li:hover > a, .l-nav .menu > li:hover > .a {
	text-decoration: none;
	background: url(../img/nav-active-2.png) 0px bottom no-repeat;
	background-size: 100% auto;
	-webkit-transition: 0.7s ease;
	-moz-transition: 0.7s ease;
	-ms-transition: 0.7s ease;
	-o-transition: 0.7s ease;
	transition: 0.7s ease;	
}

.l-nav .menu > li:nth-child(3):hover .menu-sub {
	top: 100%;
	/*-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;		*/
	-webkit-animation: fadeInRight 0.3s alternate ease-in-out;
	-moz-animation: fadeInRight 0.3s alternate ease-in-out ;
	-ms-animation: fadeInRight 0.3s alternate ease-in-out ;
	animation: fadeInRight 0.3s alternate ease-in-out ;	
	visibility: visible;
	background: rgba(0,0,0,0.9);
}

.menu-sub {
	background: black;
	background: rgba(246,113,113,0.9);
	position: absolute;
	left: 0px;
	top: 110%;
	width: 100%;
	z-index: 200;
	visibility: hidden;
}
.menu-sub-inner {
	width: 1000px;
	margin: 0 auto;
}
.menu-child-box {
	display: inline-block;
	vertical-align: top;
	margin: 50px 0;
	text-align: left;
	border-right: 1px solid #212121;
	min-height: 200px;
}
.menu-child-box:last-child {
	border-right: 0;	
}
.menu-child-title {
	font-size: 16px;
	color: #ba8514;
	padding: 0 30px;
	margin-bottom: 1em;
}
.menu-child-title a {
	color: #ba8514;
}
.menu-child {
	
}
.menu-child li a {
	color: #fff;
	font-size: 14px;
	padding: 5px 30px;
	display: block;
}
.menu-child li a:hover {
	color: white;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;	
}

/* HEADER FIXED */
/* .l-header.is-fixed {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 200;
	-webkit-animation: fadeInDown 0.5s alternate ease-in-out;
	-moz-animation: fadeInDown 0.5s alternate ease-in-out ;
	-ms-animation: fadeInDown 0.5s alternate ease-in-out ;
	animation: fadeInDown 0.5s alternate ease-in-out ;	
	height: 80px;
} */
/* .l-header.is-fixed + .l-nav {
	position: fixed;
	left: 0px;
	top: 80px;
	width: 100%;
	height: 50px;
	z-index: 199;
	-webkit-animation: fadeInDown 1s alternate ease-in-out;
	-moz-animation: fadeInDown 1s alternate ease-in-out ;
	-ms-animation: fadeInDown 1s alternate ease-in-out ;
	animation: fadeInDown 1s alternate ease-in-out ;
} */
/* .l-header.is-fixed + .l-nav + .l-contents {
	padding-top: 220px;
}
 */
.l-header.is-fixed .l-header-top {
/* 	display: none; */
}
/* .l-header.is-fixed .l-header-bottom {
	height: 80px;
	background: url(../img/bg-header-scroll.jpg) center top no-repeat;
	background-size: cover;
} */

/*
.l-header.is-fixed .logo {
	padding: 5px 25px;
}	
.l-header.is-fixed .logo img {
	width: 325px;
}*/
.l-header.is-fixed .logo {
	line-height: 80px;
}

.l-header.is-fixed .header-tel {
	height: 80px;
}
.l-header.is-fixed .header-tel-1 {
	height: 80px;
}
.l-header.is-fixed .header-tel-1 {
	font-size: 14px;
}
.l-header.is-fixed .header-tel-1 small {
	font-size: 11px;
}
.l-header.is-fixed .header-tel-2 {
	height: 80px;	
}
.l-header.is-fixed .header-tel-2 a {
	font-size: 10px;
}
.l-header.is-fixed .header-tel-3 {
	height: 80px;
	width: 80px;	
}
.l-header.is-fixed .header-tel-3 a {
	height: 80px;
}
/* .l-header.is-fixed + .l-nav .menu > li > a, .l-header.is-fixed + .l-nav .menu > li > .a {
	font-size: 10px;
	padding: 10px 30px;
} */
/* .l-header.is-fixed + .l-nav .menu > li > a .en, .l-header.is-fixed + .l-nav .menu > li > .a .en {
	font-size: 16px;
} */

.header-caution {
	position: absolute;
	left: 500px;
	top: 15px;
	width: 360px;
}
.l-header.is-fixed .header-caution {
	width: 250px;
}

/*
パンくず
*/

/*
サイドバー
*/

/*
フッター
*/
.page-top {
	position: fixed;
	right: 10px;
	bottom: 100px;
	z-index: 20000;
	width: 50px;
}



.app-top {
        position: fixed;
          right: 10px;
	bottom: 180px;
        width: 50px;
        z-index: 100;
    }

 .app-top img {
    width: 50px;
    cursor: pointer;
  }

  .tooltip-text {
    position: absolute;
    bottom: 60px; /* 吹き出しの位置調整 */
    left: 20%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }

  .app-top:active .tooltip-text,
  .app-top:focus-within .tooltip-text {
    visibility: visible;
    opacity: 1;
  }


.footer-reserve {
	text-align: center;	
}
.footer-reserve > a {
	display: inline-block;
}
.footer-reserve > a img {
	width: 60px;
}
.footer-reserve .btn {
	display: inline-block;
	position: relative;
	left: 20px;
	top: 30px;
}
.footer-reserve .btn a {
	width: 200px;
	padding: 10px 0;
background: #eb5d00;	
}
.footer-slider {
	
}
.l-footer .bx-wrapper {
	margin: 0 !important;
	max-width: 3500px !important;
}
.l-footer .bx-wrapper .bx-viewport {
	border: none !important;
	left: 0 !important;
	background: none !important;
	box-shadow: none !important;
	height: auto !important;
}
.l-footer-top {
	background: url(../img/bg-header.jpg) center top no-repeat;
	background-size: cover;;
	text-align: center;

	padding: 22px 0;
}
.l-footer-top-inner {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding-right: 300px;
	box-sizing: border-box;
}
.l-footer-top-inner .facebook {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 330px;
}
.l-footer-bottom {
	background: #2f1804;
padding:0 0 30px;
}
.ex-banner {
	padding-top: 10px;
}
.ex-banner a {
	
}
.ex-banner .ex-banner-1 {
	display: inline-block;
	padding-top: 12px;
	padding-right: 10px;
}
.ex-banner .ex-banner-2 {
	display: inline-block;	
}

.nav-footer {
	width: 1000px;
	margin: 0 auto;
	padding: 35px 0;
}
.nav-footer .inner {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	color: white;
}
.nav-footer .inner:nth-child(1) {
	width: 182px;
	margin-right: 45px;
}
.nav-footer .inner:nth-child(2) {
	width: 535px;
	margin-right: 45px;
}
.nav-footer .inner:nth-child(3) {
	width: 182px;
}
.nav-footer .inner p {
	color: white;	
	border-bottom: 1px solid #574c40;
	padding-bottom: 8px;
	margin-bottom: 1em;
}
.nav-footer .inner p a, .nav-footer .inner p span {
	color: white;	
	font-size: 12px;
}
.nav-footer .inner > ul {
	margin-top: 15px;
}
.nav-footer .inner > ul > li {
	font-size: 10px;	

	vertical-align: top;
	background: url(../img/bullet-footer-nav.png) left 0 no-repeat;
	padding-left: 15px;
	margin-bottom: 1em;
}
.nav-footer .inner > ul > li:nth-child(1) {
	float: left;
	margin-right: 0px;
}
.nav-footer .inner > ul > li:nth-child(2) {
	float: left;
	margin-right: 15px;
}
.nav-footer .inner > ul > li:nth-child(3) {
	float: left;
	margin-right: 15px;
}
.nav-footer .inner > ul > li:nth-child(4) {
	float: left;
	margin-right: 20px;
}
.nav-footer .inner > ul > li:nth-child(5) {
	float: left;
}
.nav-footer .inner > ul > li > a {
	color: white;	
	font-size: 10px;
}
.nav-footer .inner > ul > li li {
	margin: 5px 0;
	background: url(../img/bullet-footer-nav-2.gif) 0 8px no-repeat;
	padding-left: 10px;
}
.nav-footer .inner > ul > li li a {
	color: white;	
	font-size: 10px;
}
.copyright {
	font-size: 10px;
	color: #7b7b7b;
	background: white;
	padding: 20px 0;
	text-align: center;
}

/*
INDEX
*/
.title-main {
	font-size: 12px;
 width: 300px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 1.4em;
  font-weight: normal;
  color: #333;
  text-align: center;
  margin: 10px auto 30px;
}

.title-main-1 {
  font-size: 12px;
  width: 207px;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 1.4em;
  font-weight: normal;
  color: #fff;
	text-align: center;
  margin: 10px auto 30px;
}

.title-main-1 .en {
	font-size: 40px;
	display: block;
	padding-bottom: 2px;
	font-weight: bold;
	line-height: 1;
}

.title-main .en {
	font-size: 40px;
	display: block;
	padding-bottom: 2px;
	font-weight: bold;
	line-height: 1;
}
.main-slider {
	width: 1000px;
	margin: 40px auto 40px;
	position: relative;
	height: 500px;
}
.main-slider .item-text {
	position: absolute;
	left: 0px;
	top: 300px;
	z-index: 20;
	font-style: italic;
	font-size: 16px;
	padding-right: 20px;
	text-shadow: 0px 0px 5px white;
	opacity: 0;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
.main-slider .item-text .eng {
	font-size: 55px;
	color:rgb(230, 57, 57);
	border-bottom: 4px solid rgb(230, 57, 57);
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-weight: bold;
	
}
.main-slider .item-text.is-active {
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;	
	opacity: 1;
}
.main-slider .owl-nav {
	text-align: left;
	position: absolute;
	left: 0px;
	bottom: 0px;
	z-index: 100;
}
.main-slider .owl-prev {
	text-indent: -9999em;
	background: url(../img/main-slider-left.png) 0 0 no-repeat;
	width: 17px;
	height: 31px;
	display: inline-block;
	margin-right: 40px;
}
.main-slider .owl-next {
	text-indent: -9999em;
	background: url(../img/main-slider-right.png) 0 0 no-repeat;
	width: 17px;
	height: 31px;	
	display: inline-block;
}

.main-about {
	margin: 0 auto 30px;
	position: relative;
}
.main-about-pic {
	padding-bottom: 120px;
	
}
.main-about-inner {
	position: absolute;
	right: 0px;
	top: 35px;
	width: 465px;
	padding-top: 40px;
	padding-left: 40px;
	padding-bottom: 40px;
	background: white;
}
.main-about-inner p {
	line-height: 1.7em;
	font-size: 14px;
	margin-bottom: 25px;
}
.main-about-inner .btn {
	margin-top: 2px;
}

/* MAIN MENU */
.main-menu {

}
.main-menu .title-main {
	text-align: center;
	margin: 0 auto;
	margin: 0px auto 30px;
}
.box-menus {
	letter-spacing: -0.3em;
	width: 1200px;
	margin: 30px auto 0;
	display: -webkit-flex;
display: flex;
-webkit-justify-content:space-between;
justify-content:space-between;
}
.box-menu {
	letter-spacing: normal;
	position: relative;
	width: 31%;

}

.box-menu-title {
	position: relative;
	margin-bottom: 15px;
}

.box-menu-title h3 {
	 position: absolute;
	 width: 100%;
	 text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	line-height: 1;
	font-size: 22px;
	color: #fff;
}

.box-menu .box-menu-title .en {
	font-size: 14px;
	letter-spacing: 2px;
	display: block;
}

.box-menu .box-menu-list li {
	padding: 5px 0 5px 24px;
	background: url('../img/icon-arrow-black.png') no-repeat left center;
}
.box-menu .box-menu-list li > a {
	color: #6a3906;
	font-weight: bold;

}


/* MAIN REASON */
.main-reason-1 {
background: url(https://tatikawa-labo.com/wp/wp-content/uploads/2021/09/bg-main-reason.png) center top no-repeat;
  background-size: cover;
  /* height: 1178px; */
  padding: 1px 0;
  position: relative;
  z-index: 10;
margin: 50px 0px 70px;
}

.main-reason {
background: linear-gradient(#80431e, #e49156,#a75934,#97712b);
  padding: 50px;
}

.main-reason-1 .title-main {
	
}
.main-reason .title-main span {
	color: white;
}
/*.main-reason .item {
	width: 800px;
}*/
.main-reason .main-reason-box {
/*	width: 860px;
	min-height: 340px;*/
	display: -webkit-flex;
display: flex;
	background: white;
	margin-bottom: 20px;
}
.main-reason .main-reason-pic {
	width: 400px;
	position: relative;
}
.main-reason .main-reason-pic img {
	height: 340px !important;
}
.main-reason .main-reason-pic span {
	color: white;
	font-size: 100px;
	position: absolute;
	left: 0px;
	bottom: 10px;
	line-height: 58px;
}
.main-reason .main-reason-text {
	width:-webkit-calc(100% - 400px);
		 width:calc(100% - 400px);
		 padding: 30px;
		 box-sizing: border-box;
}
.main-reason .main-reason-text.reigai {
	padding-left: 530px !important;
	padding-right: 20px;
	padding-top: 20px;
}
.main-reason .main-reason-title {
	color: #6a3906;
	font-size: 22px;
	text-align: left;
	margin-bottom: 0.5em;
	line-height: 1.3em;
}
.main-reason .main-reason-text p {
	line-height: 1.5em;
	color: #4b4b4b;
	text-align: left;
	font-size: 14px;
}
.main-reason .owl-theme .owl-dots .owl-dot span {
	background: #cfcfcf;
	margin: 5px 4px;
}
.main-reason .owl-theme .owl-dots .owl-dot.active span {
	background: #6a3906;
}
.main-reason .owl-theme .owl-controls {
	width: 250px;
	margin: 30px auto 0;
	position: relative;
}
.main-reason .owl-nav {

	z-index: 100;
}
.main-reason .owl-prev {
	text-indent: -9999em;
	background: url(../img/main-slider-left.jpg) 0 0 no-repeat;
	width: 17px;
	height: 31px;
	display: inline-block;
	position: absolute;
	left: 0px;
	bottom: -5px;
}
.main-reason .owl-next {
	text-indent: -9999em;
	background: url(../img/main-slider-right.jpg) 0 0 no-repeat;
	width: 17px;
	height: 31px;	
	display: inline-block;
	position: absolute;
	right: 0px;
	bottom: -5px;
}

.main-reason .owl-carousel {
	margin-bottom: 60px;
}

div.owl-stage-outer.owl-height {
	height: 460px !important;
}

/* MAIN ACCESS */
.main-access .btn a {
    background: #eb5d00;	
}
.main-access .main-access-pic {
	text-align: right;
}
.main-access .main-access-inner {
	position: absolute;
	left: 0px;
	top: 60px;
	width: 465px;
	padding-top: 40px;
	padding-right: 20px;
	padding-left: 30px;
	padding-bottom: 40px;
	background: white;
}
.main-access .main-access-inner p {
	line-height: 2em;
}

/* MAIN BANNERS */
.main-banners {
	margin: 159px auto 150px;
}
.main-banners .item {
	display: inline-block;
	overflow: hidden;
	width: 490px;
	height: 130px;
	text-align: center;
	position: relative;
}
.main-banners .item:first-child {
	margin-right: 10px;
}
.main-banners .item img {
	position: relative;
	top: 0px;
}
.main-banners a {
	display: block;
	color: white;
	font-size: 12px;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 490px;
	padding-top: 40px;
	height: 90px;
}
.main-banners a:hover {
	text-decoration: none;
}
.main-banners a .en {
	display: block;
	font-size: 30px;
	color: white;
}
.main-banners .item:hover img {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);	
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}

.insta {
	margin: 20px auto;
	width: 300px;
}

.mamaten {
	width: 320px;
	margin: 20px 0;
}

.box-movie {
	text-align: center;
}

.medal {
	text-align: center;
	padding-top: 30px;
	color: white;
height:900px;
position:relative;
}
.medal .andtokyo{
position:absolute;
bottom:-200px;
left:25px;
width:20%;
}
.medal .omotenashi{
position:absolute;
bottom:-280px;
right:25px;
width:20%;
}
.medal > div {
	display: inline-block;
	margin-bottom: 20px;
	vertical-align: middle;
}
.medal a {
	color: white;
}

.uni {
	font-size: 12px;
	line-height: 1.5em;
	color: white;
}
.uni img {

}

.list-main-blog {
  margin-bottom: 30px;
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-main-blog > li a {
	color: #ba8514;
}
.list-main-blog > li {
  border-bottom: 2px solid black;
  padding: 20px 0;
  width: 48.5%;
}
.list-main-blog .list-main-blog-time {
	display: inline-block;
	padding-right: 30px;
}
.list-main-blog .list-main-blog-title {
	display: inline-block;	
}

.pick {
	background: url(../img/bg-btn-black.jpg) 0 0 no-repeat;
	background-size: cover;
	color: white;
	padding: 10px 20px;
	display: inline-block;
	/* font-style: italic; */
	line-height: 1.5em;
	margin-left: 50px;
	margin-bottom: 40px;
	font-weight: bold;
	text-shadow: 0px -1px 1px gray;
	transform: rotate(-5deg);
	font-size: 30px;
	text-align: center;
}
.pick span {
	border-bottom: 2px groove white;
	display: inline-block;
	font-size: 30px;
}

.pick small {
	font-size: 12px;
	display: block;
	line-height: 1;
}

.main-text {
	width: 700px;
	margin: 0 auto;
	padding: 50px 0 80px;
}
.main-text h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 30px !important;
}
.main-text h3 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 18px;
}
.main-text p {
	line-height: 1.6em;
	margin-bottom: 20px;
}
.main-text img {
	margin-right: 20px;
	margin-bottom: 20px;
}

.box-doc {
	padding-bottom: 50px;
	padding-top: 30px;
}
.box-doc p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
	font-size: 16px;
}
.box-doc-title {
	text-align: center;
	font-weight: bold;
	font-size: 28px;
	margin: 0 auto 1rem;
	position: relative;
}

.box-doc-title-2 {
	text-align: center;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 1.5em;
}
.box-doc-title-3 {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 1.5em;
}
.box-doc-detail {
	border: 3px solid #d8d5cb;
	border-radius: 6px;
	background: white;
	width: 280px;
	margin: 20px auto 20px;
	cursor: pointer;
}
.box-doc-detail a {
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 15px;
	color: black;
}
.box-doc-detail span {
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 15px;
	color: black;
}
.box-doc-detail a:hover, .box-doc-detail span:hover {
	background: #eee;
}
.box-doc-hidden {
	display: none;
}
.box-doc-info {
	width: 600px;
	margin: 20px auto 20px;
	border: 3px solid #d8d5cb;
	border-radius: 6px;
	padding: 20px;
	text-align: right;
}
.box-doc-info img {
	float: left;
	margin-right: 20px;
}
.box-doc-pic {
	display: block;
	margin: 20px auto 20px;
}
.box-doc-hr {
	width: 600px;
	margin: 40px auto;
	border-top: 1px solid #ccc;
}

.box-doc-pro {
	width: 600px;
	margin: 20px auto 20px;
	border: 3px solid #d8d5cb;
	border-radius: 6px;
	padding: 20px;
	text-align: right;	
}


/* MAIN CUST */
.main-cust {

}

.main-cust p {
	text-align: center;
	color: #45403c;
font-size: 1.125rem;
	padding: 0 15px;
	line-height: 2.122em;
	margin-bottom: 75px;
}
.main-cust p strong {
	font-size: 22px;
	color: #de6905;
}
.main-cust ul {
	margin: 0px auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	flex-wrap: nowrap;	
}
.main-cust ul > li {
	margin: 0 5px;
	position: relative;
}
.main-cust ul > li img {
	border-radius: 20px;
}
.main-cust ul > li:nth-child(1), .main-cust ul > li:nth-child(5) {
	top: -80px;
}
.main-cust ul > li:nth-child(2), .main-cust ul > li:nth-child(4) {
	top: -25px;
}

.title-cus {
	margin-bottom: 30px;
}
.list-cus {
	margin: 30px auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	flex-wrap: wrap;	
}
.list-cus > li {
	width: 300px;
	height: 300px;
	position: relative;
	margin-bottom: 50px;
	overflow: hidden;
}
.list-cus > li img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	max-width: 100%;
}

/*.main-cust .btn {
	width: 240px;
	margin: 1.5rem auto 0;
	display: block;
	border-radius: 4px;
	border: none;
}
.main-cust .btn a {
	background: #dc6305;
	color: white;
	text-align: center;
	display: block;
	line-height: 40px;
	height: 40px;
	border: none;
}
.main-cust .btn:before, .main-cust .btn a:after {
	content: none;
}*/

/* 代表紹介 */
.profile {
	margin-top: 30px;
}
.profile .profile-pic {
	float: left;
	width: 200px;

}
.profile .profile-pic img {
	border-radius: 10px;	
}
.profile .profile-text {
        line-height:25px;
	float: right;
width:-webkit-calc(100% - 230px);
		 width:calc(100% - 230px);
}


.profile-text p{
padding:12px 0;
}
.profile_bold{
font-weight:bold;
font-size:18px !important;
}
h3.profh2 {
font-size: 24px;
}

.profile .profile-text .profile-text-name {
	font-size: 22px;
	color: #6e6a65;
	font-weight: bold;
	margin-bottom: 5px;
}
.profile .profile-text .profile-text-name small {
	font-size: 12px;
	color: #6e6a65;
	display: block;

}
.profile .profile-text ul {
	
}
.profile .profile-text ul li {
	background: url(../img/bullet-profile.jpg) left center no-repeat;
	font-size: 12px;
	padding: 3px 15px;
}
.profile .profile-text p {
	font-size: 14px;
}
.pro{
padding:30px 0;
border-top:1px solid #ccc;
margin:0 auto 40px;
}
.reltop{
position:relative;
top:-100px;
}
.reason{
width:900px;
margin:40px auto;
}
.reason .title-main{
font-size:20px;
width:90%;
}
.timg{
width:90%;
margin:10px auto;
}
.timgl{
float:left;
width:48%;
}
.timgr{
float:right;
width:48%;
}


/* ====== list-media ====== */
.recommend {
	margin-top: 3rem;
}
.list-media,
.recommend-list,
.pickup {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.list-media li,
.recommend-list li {
width: 225px;
  margin-bottom: 35px;
}


.recommend-list-title {
  padding-top: 10px;
  font-size: 13px;
}



.recommend-list-name {
  padding-top: 10px;
  font-size: 18px;
  font-weight: bold;
}
.recommend-list-name span {
  font-size: 12px;
  font-weight: normal;
}

.recommend-list-btn {
  padding-top: 12px;
  text-align: end;
}

.recommend-list-btn a {
  color: #1a0dab;
}
.list-media li {
		text-align: center;	
}
.recommend-list li img {
	
}
.media-thumb {
	margin-bottom: .5rem;
}


.recommend-list li h4 {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: .5rem;
}

.media-list {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items:center;
	align-items:center;
	-webkit-justify-content:space-between;
justify-content:space-between;
	margin-bottom: 60px

}
.media-list div {
	width: 31%;
}

.media-list p {
	margin-top: 15px;
	text-align: center;
	font-weight: bold;
}
.media {
	margin-top: 40px;
	margin-bottom: 70px;
}

.box-white--pickup p {
	margin: .875rem 0;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
}


/* ===== select-no1 =====*/
.select-no1 {
	border: 1px solid #e3d1a9;
	padding: 1.5rem;
	background: linear-gradient(to bottom, rgba(255,255,255,1) 58%,rgba(254,242,207,1) 100%);
	margin-bottom:2.5rem;
	margin-bottom: 70px;
}
.select-no1 h2 {
	color: #8a7815;
	line-height: 1.4;
	margin: 0 0 1rem;
	text-align: center;
}
.select-no1 h2 em {
	color: #ca8809;
	font-size: 140%;
	font-style: normal;
}

.select-no1 h3 {
	text-align: center;
	margin-bottom: 1rem;
}
.select-no1 h3 span {
	background: #1e285e;
	color: #fff;
	padding: .25rem;
		font-size: 1.25rem;
}

.select-no1 ul img {
	max-width: 6rem;
}
.select-no1 ul span {
	display: block;
	margin-top: .5rem;
		font-size: .875rem;
}

.select-no1 ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:center;
	justify-content:center;
	margin-bottom: .5rem;
}

.select-no1 ul li {
	width:8rem;
	text-align: center;
	color: #6b5d11;
}

p.select-no1__data {
	font-size: .75rem;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 0;
	color: #6b5d11;
}

/* ====== group ===== */
.group {
	padding: 2rem;
	  width: 1000px;
  margin: 0 auto;
}
.group h2,
.group h2 span {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	text-align: center;
	line-height: 1.5;
	font-weight: normal;
}
.group h2 span {
	display: inline-block;
}
.group ul {
	  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.group ul li {
  margin-bottom: 1.5rem;
  text-align: center;
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
}

.group ul li a {
  color: #572c00;
  position: relative;
}

.group ul li a .group-list-logo {
  position: absolute;
  top: -10px;
  left: -15px;
  padding: 2px;
  background: #fff;
  width: 125px;
  border: 1.5px solid #c2b7b7;
}

.group-list-title {
  font-weight: bold;
  padding: 5px;
  font-size: 14.5px;
  padding-top: 10px;
}

.group-list-text {
  font-size: 10.5px;
  padding: 5px;
}

.sns-banner img {
	width: 3.5rem;
}
.sns-banner {
	  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
	}

    .sns-banner-text {
        color: #330000;
        font-size: 15px;
        line-height: 1;
		padding-left: 10px;
    }

.instagram{
	    margin-top: 30px;
}
.sns-banner-item{
         display: flex;
        justify-content: inherit;
        align-items: center;
        overflow: hidden;
        width: 30%;
        box-sizing: border-box;
        color: #000;
        background: url(https://tatikawa-treatment.com/wp/wp-content/uploads/2023/02/ico_footer.png) right bottom no-repeat #fff;
        background-size: 30px auto;
        border: solid 2px #cdc1c1;
        border-radius: 10px;
        padding: 10px;
        margin-bottom: 25px;
        box-shadow: 6px 8px 5px 0px rgb(97 97 141 / 63%);
}



html.enable-javascript .main-slider {
  visibility: hidden;
}
html.enable-javascript.window-load .main-slider {
  visibility: visible;
}

.face{

}
.fitem{
	display:inline-block;
	width:44%;
	margin:0 2%;
}

.btn--orange, a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  width: 480px;
  height: 40px;
  line-height: 2.5;
  margin-bottom: 5px;
}



.flex-fitem{
	display:flex;
	justify-content:center;
}

.img-margin{
	margin-top:50px;
}

.fitem-img{
	padding:10px;
}


.fe-sy{
	  width: 420px;
  line-height: 1.7;
  letter-spacing: 3px;
}



.hokou-img-flex{
	display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.hokou-text{
	text-align: center;
}

.menu-kounen-flex-1{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 30px 0;
	margin-top: 50px;
}

.menu-kounen-flex-left-1{
	width: 350px;
    text-align: center;
    margin-bottom: 50px;
}

.menu-a a{
	font-weight: bold;
    padding: 10px 20px;
    background: linear-gradient(#f96700, #e09a5f,#f1bb6a,#ef894e);
    color: #fff;
}

.menu-a{
	display: flex;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.menu-kounen-flex-title{
	text-align: center;
    font-weight: bold;
    letter-spacing: 1.5px;
    padding-bottom: 5px;
    margin-top: -25px;
}

.border-underline{
	background: url(https://tatikawa-treatment.com/wp/wp-content/uploads/2021/06/wave.png) bottom repeat-x;
    background-size: 15px;
    padding-bottom: 7px;
}

.golf-prices ul li{
	width: 45%;
    padding-bottom: 15px;
}

.golf-prices ul{
	display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.golf-prices{
	letter-spacing: 3px;
    line-height: 1.7;
}

.golf-btn{
	text-align: end;
    font-weight: bold;
    padding-bottom: 30px;
}

.golf-btn a{
	padding: 15px 20px;
    border-radius: 5px;
    background: linear-gradient(#e95903, #d77027,#d2ad44,#e78b70);
    color: #fff;
}

.menu-golf-flex{
	display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.menu-golf-flex-left{
	width: 400px;
    font-size: 14px;
    letter-spacing: 1px;
}

.menu-golf-flex-title{
	font-weight: bold;
    font-size: 1rem;
}

.marign{
	margin: 30px;
}

.menu-golf-flex{
	display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.maio{
	width: 350px;
    text-align: center;
}

.display-flex-space-evenly{
	display:flex;
	justify-content: space-evenly;
}



/* スタッフ紹介 */
.staff{
	letter-spacing:3px;
}

.display-flex-staff{
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.staff-flex-case{
	display: flex;
	margin-bottom: 50px;
}

.staff-flex-case-left{
	margin-right:50px;
}

.staff-flex-case-left img{
	width:250px;
	height:250px;
}

.staff-title{
	font-size: 32px;
  margin-bottom: 15px;
	letter-spacing: 3px;
}


.staff-title-bottom{
	font-size: 20px;
  margin-top: 10px;
  margin-bottom: 50px;
  letter-spacing: 3px;
}


.staff-box{
        width: 22.5%;
        margin-top: 30px;
}

    .staff-box-license {
        margin-bottom: 10px;
        display: inline-block;
    }

.staff-box-title{
	padding-top: 10px;
  padding-bottom: 10px;
}

.staff-box-name{
	font-size:24px;
	font-weight:bold;
	padding-bottom: 10px;
	letter-spacing: 3px;
}

.staff-box-name span{
	font-size:12px;
	padding-left: 8px;
}

.staff-box-link{
	margin-bottom: 25px;
  margin-top: 25px;
  text-align: center;
}

.staff-box-link a{
	background: linear-gradient(#e95903, #d77027,#d25215,#e6b05d);
  padding: 15px 50px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.staff-box-link a:after {
  transition: .3s ease-in-out;
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: url(https://tatikawa-treatment.com/wp/wp-content/uploads/2021/08/icon-ayy.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.4em;
	right:15px;
}

.staff-box-link a:hover:after {
  right: 7px;
}


    .staff-box-shikaku {
        background: #eee;
        padding: 10px 10px;
        font-size: 12.5px;
        margin-bottom: 20px;
    }


.foreword-01{
	border: 5px solid #d2d2d2;
}

.foreword-01-title{
	font-size: 24px;
  font-weight: bold;
 padding: 15px 25px;
  letter-spacing: 3px;
  border-bottom: 2px solid #eae7e7;
}

.foreword-01-box{
	padding: 15px;
	display:flex;
	flex-wrap: wrap;
}

.foreword-01-box li{
	border: 1px solid #a5a0a0;
  padding: 5px 12px;
  border-radius: 15px;
  margin: 5px 5px;
  letter-spacing: 3px;
}

.staff-h1{
	border-left: 3.5px solid #ff5f00a3;
  padding: 5px 15px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 40px;
}

.staff-ul{
	margin-top: 15px;
}

.staff-ul li{
	padding-bottom: 8px;
}


.staff-ul li:before{
	content:"▶︎";
	color: #ec591094;
	padding-right: 10px;
}


.oooo {
  display: flex;
}

.touin-list-aa {
  margin-left: 40px;
  width: 700px;
	margin-top: 55px;
}

.flex-toin {
  width: 45%;
  padding: 0px 5px 30px;
  font-size: 14px;
}

.l-sidebar-iii{
	width: 32%;
  margin-top: 15px;
	
}

.list-about-1{
	margin: 15px 0;
}



.list-about-1 li{ 
	background: #fff;
  text-indent: 25px;
  padding: 5px 10px;
  border-bottom: 0px solid #d4c4b8;
  border-top: 1px solid white;
}



.list-about-1 .list-touin-top{ 
	background-color: #fff;
  height: 25px;
  padding-top: 12px;
  padding-left: 0px;
  font-weight: bold;
  /* text-align: left; */
  color: #572c00;
}

.iiii {
  width: 100%;
  position: relative;
  left: 35px;
  top: 10px;
}

.list-item > li {
  vertical-align: top;
  display: inline-block;
  width: 300px;
  margin-right: 30px;
  margin-bottom: 50px;
}

.l-page .item.item-430 {
  height: 430px;
}

.item {
 border-radius: 8px;
  margin-bottom: 40px;
}

 .item .item-title {
  background: #715742;
  text-align: center;
  color: white;
  font-size: 21px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  padding: 20px 0;
}


.item .item-pic {
  text-align: center;
  margin: 15px 15px;
}

.item .item-pic img {
  max-width: 100%;
  width: 100%;
}

.item .item-text {
  margin: 0 15px 15px;
  line-height: 1.8;
  font-size: 14px;
}

.maeda-aaa {
  position: relative;
  top: -20px;
  width: 100%;
  left: 100px;
}

.maeda-border {
  border-bottom: 1px Dotted;
  padding-bottom: 15px;
  padding-top: 15px;
  letter-spacing: 3px;
}

.maeda-borderleft {
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 4px solid #dc6305;
  padding-left: 20px;
  font-size: 20px;
  font-weight: bold;
}

ul.list.col-2 > li {
  float: left;
  width: 46%;
}


.header-telnew{
	position: absolute;
   right: 33%;
  top: 15px;
	background-color: #ff9393;
  border-radius: 4px;
  text-shadow: 0px 2px 0px #e25656;
  box-shadow: 0px 2px 0px 0px #c22c2c;
}

.header-telnew a{
display: block;
 padding: 13px 30px;
  color: #fff;
  font-weight: bold;
}

.header-telnew a i{
	padding-right:5px;
}


.header-telnew-1{
	position: absolute;
  right: 17%;
  top: 15px;
	background-color: #fc9d10;
  border-radius: 4px;
  text-shadow: 0px 2px 0px #f48814;
  box-shadow: 0px 2px 0px 0px #f35800;
  color: #fff;
}

.header-telnew-1 a{
	display: block;
padding: 13px 30px;
  color: #fff;
  font-weight: bold;
}

.header-con-btn{
	position: absolute;
  right: 55px;
  top: 4px;
}

.header-con-btn a{
	color:#fff;
	font-weight: bold;
}

.header-reserve{
	position: absolute;
  right: 10px;
  top:28px;
}


.box-contact-wrap {
  background: url(https://tatikawa-labo.com/wp/wp-content/uploads/2021/09/footer-back.png) center top no-repeat;
  background-size: cover;
  height: 410px;
 padding: 50px 0 40px;
  position: relative;
  z-index: 10;
}

.box-contact {
 border-radius: 10px;
  background: white;
  width: 1000px;
  margin: 0px auto 0;
}


.box-contact .box-contact-left {
   margin-top: 44px;
  margin-bottom: 44px;
}

.box-contact-left p {
line-height: 1.8;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.readTxt {
  letter-spacing: 1px;
  line-height: 1.9;
  padding-top: 15px;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.box-contact-mail {
  margin: 20px 0 10px;
}

.box-contact .box-contact-left p:nth-child(2) {
  margin-bottom: 10px;
}

.box-contact .box-contact-right {
  margin-top: 44px;
  margin-bottom: 44px;
}

.clearfix:after {
  clear: both;
  height: 0px;
  display: block;
  content: ".";
  visibility: hidden;
}

.box-contact-mail p {
  
  font-size: 18px;
  color: #572c00;
  font-weight: bold;
}

.sub-menu {
  text-align: left;
  display: none;
  background: rgb(0 0 0 / 75%);
  position: absolute;
  top: 70px;
  right: 130px;
  z-index: 100;
}



.sub-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0px;
  width: 230px;
}

.sub-menu > ul > li {
  padding: 10px;
 border: 1px solid #ffffffa1;
}


.sub-menu > ul > li > a {
  color: #fff;
  display: block;
  background: url(../img/icon-orange.png) 0 center no-repeat;
  background-size: 10px 10px;
  padding: 5px 0 5px 16px;
}

li:hover .sub-menu {
  display: inline-block;
}

.nav-header-1.is-fixed + .sub-menu {
	position: absolute;
  top: 50px;
}


.main-blog{
	margin-top:100px;
	position: relative;
}


.margin-top-60 {
  margin-top: 60px;
}
/* ブログ、記事 */

.post {
  width: 70%;
  padding-right: 50px;
  padding-bottom: 90px;
}

.chart{
  display: flex;
  justify-content: space-between;
  /* margin: 40px auto; */
  border-bottom: dotted 1.5px #707070;
  padding-bottom: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.chart-left{
	width: 20%
}

.chart-right {
  width: 77%;
  font-size: 18px;
}
.chart-right-text{
	font-size:11px;
}

.chart-right-title{
	font-weight:bold;
	letter-spacing: 3px;
}


.chart-btn{
	margin-top: 52px;
  margin-left: 200px;
}

.chart-btn a{
padding: 10px 20px;
  background: linear-gradient(#C34545, #F7B36F,#F47213,#894512);
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
}


.list-news-item-column {
  background: #6aad60;
  color: #fff;
  font-weight: bold;
  padding: 3px 15px;
}

.list-news-item-title {
  font-weight: bold;
  color: #333;
}

.list-news-item-text {
  color: #a3a2a2;
  font-size: 13px;
  line-height: 1.8;
}

.title-page-post{
  text-align: center;
  padding-top: 70px;
  font-size: 30px;
  z-index: 75;
  position: relative;
  font-weight: bold;
  letter-spacing: 5px;
  margin-bottom: 80px;
}

.title-page-post:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 50px;
  height: 2px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #666666;
}

.title-page-post .post-news {
  position: absolute;
  left: 47.5%;
  bottom: -50%;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 16px;
}

.title-page-post .post-column {
  position: absolute;
  left: 46.5%;
  bottom: -50%;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 16px;
}


.box-side-new-title{
	font-weight: bold;
  letter-spacing: 3px;
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #707070;
  width: 225px;
}

.box-side-new ul{
	padding-top:20px
}




.l-sidebar-information-new{
	position:relative;
}

.l-sidebar-information-new-1{
	position:relative;
}


.box-side-new{
	position: absolute;
top: 60px;
 left: 5%;
  width: 250px;
}

.box-side-new-1{
	position: absolute;
  top: 240px;
  left: 5%;
  width: 250px;
}

.box-side-new ul li{
	padding-bottom: 10px;
  padding-top: 25px;
  padding-left: 15px;
  border-bottom: dotted 1.5px #707070;
}
.box-side-new-1 ul li{
	padding-bottom: 10px;
  padding-top: 25px;
  padding-left: 15px;
  border-bottom: dotted 1.5px #707070;
}

.box-side-new ul li a img{
  padding-right: 15px;
}

.box-side-new-1 ul li a img{
  padding-right: 15px;
}


.box-side-new ul li a {
color: #333;
  letter-spacing: 2px;
  font-weight: bold;
}

.box-side-new-1 ul li a {
color: #333;
  letter-spacing: 2px;
  font-weight: bold;
}

.margin-top-post{
padding-top:50px;
}

.all-posts{
	width: 210px;
  margin: 40px 0px;
  padding: 16px;
}

.all-posts-title{
	  border-bottom: 2px solid #333;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 5px;
  padding-left: 10px;
  letter-spacing: 2px;
}

.all-posts-title img{
	padding-right:10px;
}

.all-posts a{
	color:#fff;
}
.all-posts ul{
	padding-top:20px;
	padding-bottom:130px;
	height: 130px;
}



.all-posts ul li{
	padding: 15px 5px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 800;
}


.all-post-btn {
  padding: 8px 10px;
  border: 2px solid #575785;
  width: 120px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  margin: 30px auto;
  font-size: 12px;
  background: linear-gradient(#e47a0d, #ec731e,#ff6a00,#e89255);
}


.all-post-btn a{
	color:#fff;
}
.all-post-btn a img{
padding-top: 5px;
  padding-left: 10px;
}


.all-posts-flex{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	margin-bottom: 100px;
}


.title-page-post .all-posts {
  position: absolute;
  left: 38.5%;
  bottom: -120%;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 16px;
}


.chart-footer{
	display: flex;
  justify-content: center;
	align-items: center;
}

 
.chart-footer ul{
	display: flex;
  justify-content: center;
 
}


.chart-footer ul li{
padding: 10px 15px;
  margin: 10px 10px;
  border: 1px solid #D3D3D3;
}

.chart-footer ul li a{
	color:#333;
	
}


.chart-footer-btn{
	padding-left:20px;
	padding-right: 20px;
}


.chart-footer-btn a{
	color:#333;
}

.chart-footer-back{
	background: #D3D3D3;
}


.chart-footer-i{
	letter-spacing: 3px;
	margin-left: 15px;
}



.title-page-post .post-media {
 position: absolute;
  left: 47.5%;
  bottom: -50%;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 12px;
}


.chart-footer-i span{
	font-size: 24px;
  color: #F47213;
}


.chart-top{
	display:flex;
	margin-top: 20px;
	border-bottom: 0.5px dotted #D5D6D8;
	padding-bottom: 10px;
	height: 85px;
}

.chart-btn-top {
  margin-top: 15px;
  margin-left: 55px;
}

.chart-top a{
	color:#333;
}

.chart-right-title-top{
	font-size:13px;
	line-height: 1.4;
	height: 50px;
}

.chart-left-top{
	padding-right:10px;
}

.chart-left-top img{
	width:80px;
}

.chart-right-top{
	width:140px;
}

.all-posts-title a{
	color:#333;
}

.chart-btn-top a {
  padding: 8px 15px;
  background: linear-gradient(#C34545, #F7B36F,#F47213,#894512);
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 12px;
}

.chart-right-text-top{
	font-size:11px;
}

.border-right{
	border-right: 0.5px dashed #D5D6D8;
}

.article-post-page{
	position: relative;
  left: 43%;
  width: 600px;
	margin-top: 80px;
}



.btn-case{
	margin-bottom: 30px;
  text-align: center;
}




.btn-case a{
	padding: 12px 20px;
  background: linear-gradient(#e47a0d, #ec731e,#ff6a00,#e89255);
  color: #fff;
  border-radius: 5px;
}

.btn-case a:hover{
	opacity:0.4;
}

.pickup-01 {
  width: 374px;
  height: 256px;
}

.pickup{
	display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.pickup p {
  margin: .875rem 0;
  text-align: center;
  font-size: 16px;
  
  line-height: 1.3;
}


.mushikaku {
  width: 85%;
  margin: 2rem auto;
  border: 2px solid #D8D5CB;
  padding: 1rem;
  line-height: 1.4;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.mushikaku img {
  width: 5rem;
  margin-right: 1rem;
}



.display-flex {
  display: flex;
  justify-content: space-between;
}

.title-line{
	margin: 0px auto 25px;
  background: url(https://tatikawa-treatment.com/wp/wp-content/themes/e-wedge/img/bg-title-line.gif) center bottom no-repeat !important;
  padding: 20px 0 7px !important;
  font-size: 24px !important;
  color: #45403c !important;
  text-align: center !important;
}


.media p{
	margin: .875rem 0;
  text-align: center;
  font-size: 16px;
  
  line-height: 1.3;
}

.main-reason-1 .box-white2 {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 780px;
  padding: 50px;
  border: 1px solid #eee;
	background: white;
  border-radius: 15px;
}

.box-white2 p{
margin: .875rem 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.3;
	}

.btn-media{
	width: 240px;
  margin: 0 auto;
  display: block;
  border-radius: 4px;
  border: none;
	margin-top: 55px;
}


.btn-media a{
	background: linear-gradient(#80411b, #a9724c,#774843,#6b2b06);
  color: white;
  text-align: center;
  display: block;
  line-height: 48px;
  height: 45px;
  width: 240px;
  border: none;
  /* border-radius: 5px; */
  position: relative;
  font-weight: bold;
}

.media-box p{
	font-size: 11px;
  line-height: 1.5;
  text-align: center;
	height: 30px;
  
}


.media-box {
	width:350px;
}

.media-box a{
	width:350px;
}

.main-reason-1 .box-white2 h2 {
 
}




.charge-border{
  font-size: 22px;
  text-align: center;
  border-bottom: 2px solid #f95506;
  padding-bottom: 7px;
  letter-spacing: 2px;
  font-weight: bold;
}

.charge-btn{
	text-align:center;
	margin-top: 20px;
	margin-bottom: 40px;
}



.charge-btn a{
  background: linear-gradient(#e95903, #d77027,#d25215,#e6b05d);
  color: white;
  text-align: center;
  display: block;
  line-height: 40px;
  height: 40px;
  border: none;
  display: inline-block;
  padding: 3px 20px;
  border-radius: 5px;
	text-decoration: none;
}

.charge-h{
font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 10px 20px;
  display: inline-block;
	color: #eb8023;
	}


.display-AI{
display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
}

.display-AI img{
	width:235px;
}




.page-header-sporst{
	background: url(https://tatikawa-treatment.com/wp/wp-content/uploads/2021/12/header-sporst.png) center top no-repeat;
  background-size: cover;
  padding-top: 175px;
  padding-bottom: 175px;
  text-align: center;
  position: relative;
}

.page-inner-sporst h2 {
  background: linear-gradient(to right, #000000, #504848);
  color: #fff;
  font-size: 24px;
  padding: 10px 20px;
  text-align: center;
}

.contact-section-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 3px;
	color:#333;
	  margin-bottom: 60px;
	position:relative;
}

.contact-section-title:before {
 content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  display: inline-block;
  width: 50px;
  height: 2px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #333;
}

.table-box table{
	width:800px;
	margin:0 auto;
}

.table-box table tr .th{
background-color: #EDEDED;
  border: 1px solid #000000;
  padding: 5px;
  padding-left: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 170px;
	vertical-align: middle;
}

.table-box table tr .th{
background-color: #EDEDED;
  border: 1px solid #000000;
  padding: 5px;
  padding-left: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 170px;
	vertical-align: middle;
}

.table-box table tr .td{
  border: 1px solid #000000;
}


.table-box table tr .td input{
height: 20px;
  padding: 10px 15px;
  vertical-align: middle;
  border: 1px solid #c2c2c2;
  border-radius: 4px;
  margin: 5px 10px;
}

.input-textarea-1 {
padding: 10px 6px;
  margin: 5px 10px;
	width: 94%;
  line-height: 1.5;
  border: 1px solid #c2c2c2;
  border-radius: 4px;
}

.example{
	font-size:11px;
}

.btn-submit-2{
	padding: 15px 80px;
  border: none;
  font-weight: bold;
 background: linear-gradient(to right, #000000, #b19e9e);
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
}

.btn-submit-2:hover{
	opacity:0.7;
	cursor:pointer;
}

.page-inner-sports {
  margin: 0 auto;
  margin-top: -30px;
  background: white;
  width: 1090px;
  overflow: hidden;
  font-size: 14px;
  color: #4b4b4b;
  line-height: 1.5em;
}

.page-inner-sporst p {
  line-height: 1.7em;
  letter-spacing: 1.8px;
  font-size: 15px;
  position: relative;
  top: 0;
  color: #333;
}

.margin-50{
	margin:60px 0;
}

.margin{
	margin:18px 0;
}

.display-flex-1{
	display:flex;
	justify-content: space-around;
}

.display-flex-3{
	display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
}

.display-flex-3 img {
  width: 425px;
}


.grid-list {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-evenly;
}

.grid-list__item {
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 33px 37px 8px;
  border: 1px solid #DCE5EB;
  background: #fff;
}


.grid-list__title {
  font-weight: bold;
  margin-bottom: 26px;
  text-align: center;
}

.grid-list__title a {
  text-decoration: none;
  display: block;
  position: relative;
  padding-right: 30px;
	color: #305abb;
}

.grid-list__title a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(https://tatikawa-treatment.com/wp/wp-content/uploads/2021/06/arrow_right_blue.png);
  width: 26px;
  height: 26px;
  background-size: 26px 26px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.btn-submit-1 {
  color: white;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 9px;
  display: block;
  background: linear-gradient(#e95903, #d77027,#d25215,#e6b05d);
}

.btn-submit-1 {
border: none;
  margin: 0 auto;
  width: 300px;
  height: 80px;
  font-size: 18px;
  font-size: 20px;
  font-weight: bold;
}


.nayami{
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
}


.nayami li{
padding: 15px;
  border-radius: 10px;
  max-width: 260px;
  box-sizing: border-box;
  background-color: #fff;
  font-weight: 500;
  border: 2px solid #aea6a6;
  color: #434242;
  text-align: center;
  background: #e6e2e2;
  margin: 15px 10px;
  width: 100%;
}

.case-title-page {
  background-color: #E4D9C2;
  text-align: center;
  margin-bottom: 5px;
  padding: 4px 0 2px 0;
}

.insole-box {
  padding: 10px 50px 15px;
  border: 6px solid #dedede;
  margin: 0 auto;
  margin-bottom: 50px;
}

.insole-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.insole-box ul li {
  width: 30%;
  padding-bottom: 20px;
  font-size: 14px;
}


.insole-flex{
	display: flex;
  flex-wrap: wrap;
 justify-content: space-evenly;
}

.insole-inner{
	width: 350px;
  padding: 20px;
  border: 0.5px solid #d6d4d4;
	margin: 25px;
}


.insole-inner-p{
	font-size:14px;
	letter-spacing: 0px;
}

.topix{
	
	position:relative;

}

.topix-title{
	position: absolute;
  background: #f31515;
  text-align: center;
  padding: 5px 10px;
  color: #fff;
  border: 3px solid #fff;
  font-weight: bold;
  z-index: 100;
  top: 6px;
  left: 130px;
  font-size: 14px;
  border-radius: 10px;
}

.btn-inner{
	text-align:center;
	padding:10px;
}

.btn-inner a{
	color: #fff;
  background: #767373;
  padding: 10px 15px;
	font-size: 14px;
  border-radius: 5px;
}

.gensoku-box-title {
  background: #e0643b;
  color: #fff;
  font-weight: bold;
  position: relative;
  text-align: center;
  font-size: 18px;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.foot-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.manga-1 {
  margin: 3px;
  width: 155px;
  height: 200px;
}


/* /当院について */
.navi-case-inner{
	background-color: #eee;
  padding: 12px 15px;
	display: flex;
}

.navi-case-title{
	margin-right: 15px;
	padding-left: 15px;
}

.navi-case-title a{
font-weight: bold;
  text-decoration: none;
  color: #f18045;
	font-size: 18px;
  white-space: nowrap;
}

.navi-case-list{
	width: 100%;
  padding-left: 15px;

  height: auto !important;
}

.navi-case-list ul{
display: flex;
  flex-wrap: wrap;
  flex: 100;
  margin: -7px 0 0 -18px;
}

.navi-case-list ul li{
	margin: 10px 0 2px 30px;
}

.navi-case-list ul li a{
	letter-spacing: 0px;
  font-size: 15px;
  text-decoration: revert;
  color: #060606;
}

.navi-case-list ul li a i{
	padding-right: 5px;
}

.touin-list{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	margin-bottom: 30px;
}

.flex-toin{
	margin-top: 45px;
  width: 240px;
  padding: 15px 30px 10px;
}


.flex-toin-title{
  font-weight: bold;
  text-align: center;
  padding-top: 3px;
  padding-bottom: 0px;
  padding-left: 7px;
  background: #000000e6;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0px;
	padding: 5px 10px;
}

.width-600 {
  width: 600px;
}

.box-right {
  margin-left: 10px;
  position: relative;
}



.flex-toin-p{
font-size: 13px;
  margin-top: 3px;
  padding-left: 10px;
}

.touin-area-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-case {
  text-align: center;
  margin: 40px;
}

.btn-case a {
  padding: 16px 30px;
  background: #F3F0DB;
  color: #e84830;
  border: 1px solid #e84830;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  outline: none;
  transition: all .3s;
}

.width-45{
	width:45%;
}

.media-title {
  background: #000;
  padding: 7px 0px;
  color: #fff;
	font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.media-text {
  text-align: left;
  margin: 7px 0px 10px;
  line-height: 1.6;
  font-size: 12px;
}

.section-smile {
  background: #f9e6e478;
  padding-top: 30px;
  padding-bottom: 20px;
}

.fa-circle{
	font-size:11px;
	padding-right:5px;
}

.width-450{
	width:450px;
}


.store-box{
	display:flex;
	padding: 30px;
  background: #eaeaea6b;
	margin-bottom: 25px;
}

.store-box-left{

}

.store-box-title{
  color: #b40000;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 3px;
	font-size: 20px;
}

.store-box-img{
	
	
}

.store-menu{
	display: inline-block;
  background-color: #edece2;
  padding: 5px 13px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.store-menu a{
 color: #b40000;
}


.store-box-right{
	margin-left:35px;
	  margin-top: 50px;
	width: 550px;
	
}

.store-text{
	margin-top: 25px;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #5e5c5c;
  font-size: 14px;
}

.store-btn{
	  text-align: center;
   background: #ffe5e5;
	margin-top:30px;
		  padding: 5px;
}

.store-btn a{
 color: #b40000;
	display:block;
}

.Membership-co-1 {
  padding-top: 130px;
  margin-top: -170px;
}


.access_inner {
  color: #808080;
}

.access_inner_index {
  font-size: 18px;
  margin-bottom: 1%;
}


.access_inner_address1 {
  font-size: 13px;
  margin-bottom: 1%;
}

.access_inner_address2 {
  margin-bottom: 2%;
}

.list-access {
  display: -webkit-flex;
  display: flex;
   justify-content: space-evenly;
  flex-wrap: wrap;
}

.list-access > li {
width: 350px;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 20px;
  position: relative;
}

.access-number {
  width: 30px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  display: inline-block;
  background: #e94727ad;
  border-radius: 10px;
  line-height: 20px !important;
  /* padding: 0px; */
  font-size: 12px;
  margin-right: 3px;
}

.reserve-box{
	  border: 1px solid #cccccc;
    text-align: center;
  padding-top: 40px;
	  background: #33333312;
  margin-bottom: 40px;
}



.reserve-box-title{
	  text-align: center;
  font-size: 20px;
  font-weight: bold;
    color: #fff;
 margin-bottom: 20px;
  background: #f47431a8;
	padding: 10px 15px;
}

.flow {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flow {
  width: 80%;
  margin: 3rem auto;
}

.flow li {
  font-size: 1.125rem;
}

.flow li {
  width: 30%;
	  font-weight: bold;
	  background: #fff;
  border: rgba(83,55,12,.2) solid 2px;
  line-height: 1.4;
  font-size: .875rem;
  padding: 1rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  border-radius: 0.25rem;
  position: relative;
}

.flow li:first-child::after, .flow li:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 1.25rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-color: transparent transparent transparent #53370c;
}

.flow li:first-child::after, .flow li:nth-child(2)::after {
  right: -1.5rem;
  top: 1rem;
  border-width: 0.75rem 0 0.75rem 0.75rem;
}

.contact-border {
        font-weight: bold;
        padding: 3PX 1px;
        background: linear-gradient(transparent 65%, #ffc6ce 0%);
    }

.padding-left-100{
	padding-left: 100px;
}

/* アスリート */
.gensoku-box{
	background-color: #ffffff;
  border-radius: 1rem;
	border: 1px solid #dee2e6!important;
	padding: 2rem 2.5rem;
	background: #e2e2e24f;
}

.gensoku-box-inner{
	background-color: #ffffff;
  border-radius: 1rem;
	border: 1px solid #dee2e6!important;
	padding: 2rem;
  background: #ffffff;
}

.gensoku-box-white{
	background:#fff;
	border:2px solid red;
		padding: 2rem;
	border-radius:10px;
}

.gensoku-box-title{
	background: linear-gradient(#e47a0d, #ec731e,#e89255);
  color: #fff;
  font-weight: bold;
  position: relative;
  text-align: center;
  font-size: 20px;
  padding: 7px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.gensoku-box-title-1{
	 background: #6f7db0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.gensoku-box-border{
	padding: 0 0 0.25rem 0;
  margin: 1rem 0;
	font-weight: bold;
  border-bottom: solid 1px rgba(0,0,0,.1);
	font-size:1.5rem;
}

.sub-title-red {
  background: #CC3241;
  display: inline-block;
  width: 100px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
}

.box-green {
  border: 1px solid #66b21a;
  border-radius: 8px;
  margin: 40px auto;
  padding: 20px;
  clear: both;
}

.box-green .box-green-title {
  color: #66b21a;
  font-size: 1.5em;
  margin-bottom: 1em;
  border-bottom: 2px solid #66b21a;
  padding-bottom: 10px;
  font-weight: bold;
}

.box-orange {
  border-radius: 8px;
  margin: 40px auto;
  padding: 20px;
}



.list-new li {
  display: inline-block;
  width: 30%;
  margin-left: 25px;
  margin-bottom: 10px;
}



.list-new li i{
	font-size:10px;
}


.process-box {
  background-color: #eeeeee87;
  padding: 12px 15px 30px;
  margin-top: 25px;
}

.process-case-title {
  margin-bottom: 10px;
  /* background: #e5e3e0; */
  padding: 4px 12px;
  color: #333;
  text-align: center;
  border-bottom: 2px solid #8c8989;
  font-weight: bold;
  font-size: 18px;
}

.process-box ul li {
  border-bottom: 2px solid #eee;
  padding: 15px 15px 5px;
  font-weight: bold;
}

.process-box ul li span {
  padding-right: 10px;
}


table.attmgr_weekly_all td.portrait img{
width: 100%;
	margin: 0 auto;}

table.attmgr_guide_weekly td.current {
  background-color: #ffbfbf;
}

table.attmgr_guide_weekly td a {
  font-weight: bold;
	color:#333;
}

table.attmgr_weekly_all td.not_working {
  background-color: #f1d6d6;
}

.post-info .attendance {
  font-size: 11px;
}


.table-case {
  width: 100%;
  margin: 0 auto;
}

.table-case table {
  border-collapse: collapse;
  text-align: center;
  width: 100%;
}

.table-case td {
  text-align: left;
  vertical-align: middle;
	padding: 8px;
  padding-left: 10px;
	line-height: 1.8;
  border: 1px solid #333;
}

ul.staff_block li {
  height: 150px;
}

.first-price-title {
  background: #138c8f;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  margin: 0 3px 3px 0;
  padding: 1px 6px;
}


.table-case th {
	padding:10px;
}

.XO-11 {
  width: 300px;
  height: 300px;
}

.voice-img {
  display: flex;
  justify-content: space-between;
}

.voice-img-pic {
  width: 25%;
}

.voice-img-pic img {
  border-radius: 5px;
}

.voice-text-new {
  width: 73%;
}

.box-orange-title {
   position: relative;
  padding: 10px 20px;
  border: 3px solid #644d3a;
  border-radius: 10px;
  background: #f9f9f9;
  font-weight: bold;
  color: #644d3a;
  margin-bottom: 20px;
}

.box-orange-title:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #644d3a transparent transparent transparent;
}

.box-orange-title:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #f9f9f9 transparent transparent transparent;
}


.display-one {
  display: flex;
  flex-wrap: wrap;
}

.margin-bottom {
  margin-bottom: 20px;
}

.width-40-percent {
  width: 40%;
}

.width-recommend {
  margin-left: 15px;
  width: 55%;
}

.width-recommend-title {
  border-radius: 5px;
  font-weight: bold;
}

.recommend-title-span {
  background: linear-gradient(180deg,#d83326,#ecd0d0 100px);
  padding: 5px 15px;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  margin-right: 25px;
  font-size: 1rem;
}

.price {
  color: #db340f;
  font-size: 24px;
  font-weight: 700;
  margin-left: 12px;
  display: inline-block;
  position: relative;
}



.section-number {
  background: url(https://tatikawa-labo.com/wp/wp-content/uploads/2023/07/back-img.png) center top no-repeat;
  background-size: cover;
  height: 550px;
}
.number-box {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.number-box-left {
  width: 43.5%;
  position: absolute;
  top: 100px;
  left: 0px;
}

.number-box-right {
  width: 52%;
  position: absolute;
  right: 0px;
  top: 20px;
}

.section-concept {
  background: #f5f3f2;
  padding: 60px 30px;
}

.box-1200 {
  width: 1200px;
  margin: 0px auto;
  position: relative;
}
.section-concept-box {
  display: flex;
  justify-content: space-around;
}

.section-concept-left {
  width: 45%;
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  position: relative;
}
.section-concept-subtitle {
  font-weight: bold;
  padding-bottom: 25px;
  font-size: 16px;
}

.color-g {
  color: #85a800;
}

.section-concept-left :before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: 3px;
  top: 0;
  background: #E25D64;
}
.section-concept-text {
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
  padding-top: 15px;
  height: 100px;
}


.section-concept-right {
  width: 45%;
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  position: relative;
}

.color-r {
  color: #E25D64;
}

.section-concept-right :before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: 3px;
  top: 0;
  background: #85a800;
}
.section-concept-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3px;
}


.recommend__banner {
  display: flex;
  justify-content: space-evenly;
  width: 1000px;
  margin: 0 auto;
	padding: 50px 0px 20px;
}



.item1 {
  width: 30%;
  margin-bottom: 15px;
}

.item1 img {
  width: 220px;
}

.strength-box {
  margin-top: 50px;
}

.strength-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.strength-box ul li {
  width: 28%;
  margin-bottom: 55px;
  background: url(https://medical-kokubunji.com/wp-content/uploads/2023/04/corner1@2x.png) no-repeat left top;
  background-size: 100px 100px;
  padding: 15px 0 25px 15px;
}

.strength-title {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.strength-text {
  font-size: 12.5px;
  padding-bottom: 5px;
}




.tab-menu-title {
background: #F3F0DB;
  border-left: 10px solid #914110;
  margin: 0 0 10px 0;
  padding: 8px 0 8px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #6d4912;
  margin-bottom: 25px;
}



.display-flex ul li {
  margin-bottom: 7px;
}

.tab-menu li a {
  display: block;
  position: relative;
  background-color: #fffefa;
  border: 3px solid #6d4912;
  font-weight: 600;
  padding: 10px;
  color: #333;
  font-size: 14px;
}

.tab-menu li img {
  margin-right: 10px;
  margin-top: 2px;
  width: 23px;
}

.font-size-14 {
   font-size: 14px;
  line-height: 1.8;
}

.post-info{
	padding-top: 5px;
}
.margin-left-100 {
  margin-left: 100px;
}


.display-flex-blog {
  display: flex;
  flex-wrap: wrap;
}

.tab-menu li {
  margin-bottom: 10px;
}


.madical-massage-box {
  background: #efefef;
  padding: 10px 15px;
  margin-bottom: 30px;
}

.medical-massage-title {
  color: #d25215;
  font-size: 20px;
  font-weight: bold;
}

.medical-massage-title-border {
  padding-bottom: 10px;
  margin-bottom: 5px;
  border-bottom: 2px solid rgb(173, 169, 169);
}

ol.cp_clist {
	counter-reset:cp_clist; /*数字をリセット*/
	list-style-type: none;
	padding:0.5em;
}
ol.cp_clist li {
	position: relative;
	padding-left: 30px;
	padding: 0.5em 0.5em 0.5em 40px;
}
ol.cp_clist li::before {
	position: absolute;
	display:inline-block;
	top: 50%;
	left: 0;
	/* カウントさせる */
	counter-increment: cp_clist;
	content: counter(cp_clist);
	/*装飾*/
	padding: 0 0.2em 0 0.2em;
	background: #F4511E;
	color: #fff;
	font-weight:bold;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align:center;
	transform: translateY(-50%);
}

.main-stp{
	  background-image: url(https://tatikawa-labo.com/wp/wp-content/uploads/2024/04/white_00007.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 5rem;
    padding-top: 2.5rem;
	margin-top: 80px;
}

    .beginner-note {
        position: relative;
        top: -60px;
        background: #f9f6e6;
        padding: 30px 70px;
    }

    .beginner-note::before {
        position: absolute;
        top: -15px;
        left: -10px;
        content: '';
        display: block;
        width: 55px;
        height: 55px;
        background: url(https://tatikawa-treatment.com/wp/wp-content/uploads/2023/01/icon-top.png) 0 0 no-repeat;
        background-size: contain;
    }

.p-form-box {
        margin: 25px 8px 15px;
        background-color: #fff4f4;
        border: 1px solid #e13f62;
        position: relative;
        padding: 40px 50px 15px;
        line-height: 1.6;
        border-radius: 5px;
    }


    .p-form-box::before {
        content: "！";
        display: block;
        font-size: 12px;
        font-weight: bold;
        line-height: 1.8;
        text-align: center;
        color: rgb(255, 255, 255);
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translate(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        padding: 3px;
        background: rgb(225, 63, 98);
    }

.t-form {
        text-align: center;
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

.padding-10 {
  padding: 10px;

}


div.vid_contents {
    width: 100%; /* 初期状態では背景色を横幅いっぱいに広げる */
    text-align: center;
    margin: auto;
    padding: 30px 0% 20px 0%;
    background: #f9f9f9; /* 余白の背景色 */
    transition: width 0.5s ease, top 0.5s ease; /* アニメーションの追加 */
}
video.vid_main {
    width: 1000px;
           height: 100%;
    -webkit-tap-highlight-color: transparent; /* タップ時のハイライトを無効化 */
}

.vid_title{
	        font-weight: bold;
        color: #e37106;
        font-size: 26px;
        padding: 15px 50px;
}


    .list-news {
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.list-news>li {
        padding-bottom: 5px;
        margin-bottom: 15px;
        line-height: 2;
        display: flex;
        width: 48.5%;
        height: auto;
        justify-content: space-between;
    }

    .display-flex-01 {
        display: flex;
        justify-content: space-evenly;
    }

.page-post {
        width: 70%;
        padding-right: 50px;
        padding-bottom: 90px;
    }

    .tab-menu {
        width: 25%;
  
    }

.margin-10{
	margin:10px 0px;
}

    .menu-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .menu-list li {
        height: auto;
        width: 16%;
        margin-bottom: 7px;
        padding-bottom: 10px;
        text-align: center;
        background: #fff;
        margin-right: 4.5px;
        border: 1px solid #ccc;
    }

    .menu-list li a {
        color: #333;
    }

    .menu-list-img img {
        width: 100%;
        height: 90px;
        object-fit: cover;
    }

    .menu-list-title {
        font-size: 13px;
        color: #333;
        padding: 12px 3px;
        line-height: 1.3;
        letter-spacing: 0px;
        font-weight: bold;
    }
    .menu-sub-title span {
        font-size: 16px;
        font-weight: bold;
        color: #E25D64;
    }

    .menu-sub-title {
        font-size: 12px;
    }


.wp-video{
	 margin: 0 auto;
}
.grid-list__title-1 a {
        text-decoration: none;
        display: block;
        position: relative;
        padding-right: 30px;
	color: #1a0dab;
    }


.grid-list__title-1 a:after {
        content: "";
        position: absolute;
        top: 20px;
        right: 0;
        background: url(https://tatikawa-treatment.com/wp/wp-content/uploads/2025/01/提携-04.png);
        width: 26px;
        height: 26px;
        background-size: 26px 26px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

.profile-img-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-img{
	    position: relative;
    width: 336px;
    height: 336px;
    margin-right: 40px;
    border: solid 1px #e3e2e2;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-txt-wrap{
	width:100%;
}

.profile-post{
	    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
	    font-family: "Hannari", serif;
    letter-spacing: 0.04em;
}


.profile-name{
	    margin-top: 4px;
            font-family: "Hannari", serif;
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.25em;
}

.profile-name-eng{
	    margin-top: 4px;
            font-family: "Hannari", serif;
      font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #c5c5c5;
    letter-spacing: 0.2em;
}


.profile-txt{
	margin-top: 24px;
}


.doctor-detail-profile-txt p {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
    letter-spacing: 0.04em;
}


.flow__items {
    display: flex;
    gap: 55px;
    justify-content: space-between;
    margin-top: 86px;
}

.flow-item {
    background-color: #fff;
    border: 2px solid #F2F4F7;
    border-radius: 5px;
    position: relative;
    width: 33.3%;
}

.flow-item__head {
    display: none;
}

.flow-item__title {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 1.5555555556;
}

.flow-item__img {
    position: relative;
}

.flow-item__num {
   align-items: center;
        background-color: #ffa622;
        border-radius: 5px 0 5px 0;
        color: #fff;
        display: flex;
        flex-direction: column;
        font-size: 1.5rem;
        height: 64px;
        justify-content: center;
        left: 0;
        position: absolute;
        top: 0;
        width: 64px;
}

.flow-item__num span {
    font-size: 1rem;
}

.flow-item__content {
    padding: 25px 24px 25px;
}


.flow-item__title {
          font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: 0.4px;
        line-height: 1.5555555556;
}

.flow-item__text {
    font-size: 1.5rem;
    letter-spacing: -0.1px;
    line-height: 1.5333333333;
    margin-top: 20px;
}

.flow-item:not(:last-child)::after {
    border-color: transparent transparent transparent #dedede;
    border-style: solid;
    border-width: 22px 0 22px 18px;
    content: "";
    height: 0;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}
.bottombtn {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 2px 0px;
    }

.first-price {
        border: 1px solid #ccc;
        border-radius: 3px;
        margin-bottom: 9px;
        padding: 12px 20px 0;
    }

    .display-flex-frist {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-bottom: 40px;
    }

    .massase-box {
        padding: 30px 30px 30px;
        background: #f9f9f9;
        border: 6px solid #e7e7e7;
    }

    .massase-box ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .massase-box ul li {
        width: 27%;
        padding-bottom: 35px;
        position: relative;
        padding-left: 25px;
        font-size: 14px;
        line-height: 1.8;
        font-weight: bold;
    }

.massase-box ul li:before {
        border-right: 2px solid #cc0000;
        border-bottom: 2px solid #cc0000;
        height: 12px;
        left: 4px;
        margin-top: -4px;
        transform: rotate(50deg);
        top: 12px;
        width: 7px;
        box-sizing: border-box;
        content: "";
        position: absolute;
    }

.massase-box ul li:after {
        box-sizing: border-box;
        content: "";
        position: absolute;
    }


.price-box ul{        
        flex-wrap: nowrap;
        display: flex;
}

.price-box li{
        width: 30%;
        padding: 0px 15px;
        margin: 5px;
        margin-top: 20px;
}

.price-box .gold-b{
	border:5px solid #B0A014;
}

.price-box .bule-b{
	border:5px solid #0497BF;
}


.price-box .orange-b{
	border:5px solid #FF6407;
}



.price-box .price-en{
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 15px;
}

.price-box .gold{
	 color: #B0A014;
}


.price-box .bule{
	 color: #0497BF;
}

.price-box .orange{
	 color: #FF6407;
}


.price-case {
	text-align:center;
	        margin-bottom: 15px;
}

.price-case span{
    display: inline-block;
	        padding: 0px 10px;
}

.price-tabe{
	  text-align: center;
        font-size: 2.5rem;
        font-weight: bold;
	        margin-bottom: 1rem;
}

.price-time{
}


.price-img{
	margin-top:15px;
	margin-bottom:15px;
}

.price-time span{
    display: block;
    font-size: 12px;
	}

.menu-title{
		text-align:center;
	
}
.title-sub{
        font-size: 2rem;
}

.section-menu{
	padding:5rem 0;
}

.menu-inner{
	        margin-top: 20px;
	margin-bottom:2rem;
}

.menu-inner ul{
    display: flex;
    justify-content: space-between;
}

.menu-inner li{
	text-align:center;
	width:25%;
	padding:0px 10px;
}




.menu-box-text{
	font-weight:bold;
}

.sym-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.sym-table th,
.sym-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}

.sym-table thead th {
  background-color: #ccc;
  color: #000;
  border-right: 1px solid #fff; 
}

.sym-table thead th:last-child {
  border-right: none;
}

.after-sym-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0px 20px 0px;
}

.after-sym-table th,
.after-sym-table td {
  border: 1px solid #a39870;
  padding: 16px;
  text-align: center;
  font-size: 1rem;
}

.after-sym-table th {
  background-color: #a39870;
  color: white;
  font-weight: bold;
}

.after-sym-table thead th {
  background-color: #a39870;
  color: #fff;
  border-right: 1px solid #fff;
}

.after-sym-table thead th:last-child {
  border-right: none;
}


.search-form {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}

.search-form input[type="text"] {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
}

.search-form input[type="submit"] {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0089cf;
  color: #fff;
  border: none;
  cursor: pointer;
}

.search-form input[type="submit"]:hover {
  background-color: #0072b1;
}

.popular-searches {
  margin-bottom: 30px;
  font-size: 14px;
}

.popular-searches ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.popular-searches li a {
  display: inline-block;
  padding: 6px 14px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.popular-searches li a:hover {
  background-color: #ddd;
}

.no-results {
  margin: 30px 0;
  font-size: 16px;
  color: #666;
}


.pagenavi {
  margin: 40px auto;
  text-align: center;
  font-size: 16px;
}

.pagenavi a,
.pagenavi span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  text-decoration: none;
  border: 1px solid #ccc;
  color: #333;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.pagenavi a:hover {
  background-color: #0089cf;
  color: #fff;
  border-color: #0089cf;
}

.pagenavi span.current {
  background-color: #0089cf;
  color: #fff;
  font-weight: bold;
  border-color: #0089cf;
}

.page-numbers{
	    display: flex;
    justify-content: center;
}

.margin-top-50{
	margin-top:4rem;
}

.display-flex-au {
    display: flex;
    justify-content: space-between;
}

.sohuto {
    display: flex;
    justify-content: space-around;
}

.border-link {
  border-bottom: 0.5px solid #cccbcb;
  padding-bottom: 5px;
  padding-top: 15px;
  display: inline-block;
  margin-right: 30px;
}

.border-link a {
        font-size: 1rem;
}

.border-link:after {
  font-family: "Font Awesome 5 Free";
  content: '\f360';
  font-size: 105%;
  font-weight: 900;
  margin: 0 7px;
  color: #9a9797;
}




/* -------------------------------
   FV inner
-------------------------------- */

 .fv {
    background-image:
		  linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.3)), /* 読みやすくするオーバーレイ */
      url("https://tatikawa-labo.com/wp/wp-content/uploads/2025/09/pc-1.png"); /* ← PC用の画像に差し替え */
    justify-content: flex-start; /* 左寄せにする */
    padding-left: clamp(24px, 6vw, 120px);
	 height: 550px;
  }


.fv__inner {
  width: 100%;
  max-width: 1120px;
  padding: clamp(24px, 5vw, 80px) clamp(16px, 3.2vw, 56px);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* キャッチコピー（小見出し） */
.fv__kicker {
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 20px);
  line-height: 1.7;
  letter-spacing: .02em;
  margin: 0 0 .8em;
}

/* 半透明パネル背景付き（任意で外してOK） */
.fv__panel {
  display: inline-block;
  background: rgba(0,0,0,.30);
  padding: .35em .6em;
  border-radius: .6rem;
}

/* メインキャッチ */
.fv__headline {
  margin: 0 0 .3em;
  font-weight: 800;
  line-height: 1.22;
  font-size: clamp(26px, 4.2vw, 56px);
}
.fv__headline span {
  display: block;
}

/* リード文 */
.fv__lead {
  margin: .8em 0 0;
  font-size: clamp(15px, 1.9vw, 22px);
  line-height: 1.75;
  max-width: 46em;
  letter-spacing: .02em;
}

    .sub-title {
        background: #000000d1;
        display: inline-block;
        width: 100px;
        text-align: center;
        padding: 5px 10px;
        border-radius: 5px;
        color: #fff;
    }

    .sub-title-list {
        margin: 10px;
    }

    .sub-title-list li {
        margin-bottom: 5px;
        list-style: initial;
        margin-left: 10px;
    }

    .training-program-box-01 {
        background: #fafafa;
        padding: 30px;
        border-radius: 10px;
    }

    .training-program-box-02 {
        background: #f2e4d7;
        padding: 30px;
        border-radius: 10px;
    }


    .media-border {
        border: 1px solid #bababa;
        padding: 20px 0px;
    }

    .media-border img {
        width: 170px;
        height: 225px;
        object-fit: cover;
    }


    .affiliation {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


    .affiliation li {
        width: 30%;
        border: 2px solid #eee;
        margin-bottom: 25px;
    }

    .affiliation li div {
        background: #fcfafa;
        padding-top: 3px;
        color: #333;
        font-size: 13px;
    }

    .width-30 {
        width: 30%;
    }