@charset "UTF-8";

/*
Theme Name: gaben1.0
Description: Wordpress gaben theme 
Author: Nao
Version: 1.0
*/
/*--------------------------------------------------------------
	Common
--------------------------------------------------------------*/
html {
    scroll-padding-top: 100px;
}
body {
    margin: 0;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a252c;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	letter-spacing:1px;
}
img{
	border-radius:5px;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: noto-sans-cjk-jp, sans-serif;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.fw-medium {
    font-weight: 600;
}
.mt-6 {
    margin-top: 5rem;
}
.mb-6 {
    margin-bottom: 5rem;
}
.pt-6 {
    padding-top: 5rem;
}
.pb-6 {
    padding-bottom: 5rem;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}
.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}
.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-xl-square {
    width: 60px;
    height: 60px;
}
.btn-xxl-square {
    width: 75px;
    height: 75px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}
.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/*** Header ***/
.carousel .carousel-caption {
	top: 5%;
	left: calc((100vw - 1320px) / 2);
	right: auto;
	bottom: 0;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;

	padding: 1.5rem 0 1rem;

	z-index: 1;

	width: auto;
	margin: 0;

	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.carousel .carousel-caption p {
	font-size:34px;
	font-weight:700;
	line-height:2.5;
	color: #1a252c;
	letter-spacing:5px;
	font-family: shippori-mincho-b1, sans-serif;
}
.carousel .carousel-caption p span{
	background-color:#fff;
	padding:20px 7px;
}

.carousel-caption_bg{
	height:800px;
	background-image:url(img/hed_slider_img01.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}

.carousel .carousel-caption img {
	width:670px;
}
.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}
.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}
.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }
    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }
    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }
    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}
/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}
.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown {
    0% {
        top: -25px;
    }
    50% {
        top: -45px;
    }
    100% {
        top: -25px;
    }
}
/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}
.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}
.feature-icon {
    position: relative;
    transition: .5s;
}
.feature-item:hover .feature-icon {
    margin-left: 3rem;
}
.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}
.feature-item a:hover {
    color: var(--bs-primary) !important;
}
.feature-item a:hover::after {
    background: var(--bs-primary);
}
.experience .progress {
    height: 5px;
}
.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}
/*** Service ***/
.service .service-item {
    position: relative;
}
.service .service-inner {
    position: relative;
    height: 100%;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}
.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: #58c27c;
	border-radius:10px;
}
.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}
.service .service-item img {
	margin-top:30px;
}
.service .service-item .box {
  height: 100px;
  margin-inline: auto;
  position: relative;
  width: 80px;
}
/* 画像のスタイル */
.service .service-item img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
/* 2枚目の画像は最初透明 */
.service .service-item img:last-of-type {
  opacity: 0;
  transition: opacity .7s;
}
/* hoverすると2枚目の画像が透明じゃなくなる */
.service .service-item:hover img {
  opacity: 1;
}
.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
	border-radius:10px;
}
.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}
.service .service-item:hover a {
    padding-left: 45px !important;
}
/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}
/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}
.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}
.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}
.team .team-item:hover .team-social .btn {
    opacity: 1;
}
/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}
.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}
.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}
.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}
.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}
.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}
.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}
.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}
/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}
/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}
/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
	font-size:14px;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    color: #e6e6e6;
    letter-spacing: 1px;
    box-shadow: none;
}
.copyright {
    color:#fff;
	font-size:12px;
	padding:0;margin:50px 0 15px;
	text-align:center;
}

/*__________gaben________________*/
.flex_alb {
  display: flex;
  flex-wrap: wrap;
}
a img{
transition: 1.0s ;
}
a img:hover {
opacity: 0.5 ;
}
.rsttop-headline__logo{
	margin:0;
}
.rsttop-headline__logo-img {
  display: inline-block;
  width: 400px;
  height: 40px;
  overflow: hidden;
  text-indent: 100%;
  word-wrap: normal;
  overflow-wrap: normal;
  white-space: nowrap;
  vertical-align: middle;
  background: url(img/logo.svg) no-repeat 0 0/contain;
	margin:0;
}
.navbar-brand {
    padding: 15px 0 0;
	height: 40px;
}
a {
    /*color: #1a1a1a;*/
    text-decoration: none
}
a:hover {
    color: #1a252c;
	transition : 0.8s;
}
#hed_menu_nav {
    width: 100%;
    margin: 5px 0 0;
}
#hed_menu_nav .nav-link {
    text-align: center;
    font-size: 19px;
    letter-spacing: 0;
    padding: 5px 0 15px;
    transition: .2s;
    font-feature-settings: "palt";
	font-weight:600;
	letter-spacing:2px;
	line-height:1.2;
	color:#1a252c;
}
#hed_menu_nav .nav-link span{
    font-size: 13px;
	font-family: menca, sans-serif;
	font-weight:500;
	color:#888888;
}
/*_________page____________*/
.rsttop-headline__logo_s{
	padding:8px 0 0px;margin:0;
	font-size:14px;
	font-weight:400;
}
.rsttop-headline__logo_s_bot {
	display: flex;
	align-items: center;
	justify-content: flex-end;

	padding: 5px 0 10px;
	margin: 0;

	font-size: 16px;
	font-weight: 600;
}

.rsttop-headline__logo_s_bot span,
.rsttop-headline__logo_s_bot a{
	display: flex;
	align-items: center;
	line-height: 1;
}

.rsttop-headline__logo_s_bot span{
	padding: 0 15px 0 0;
}
.footer .fot h2{
	padding:2px 0 0;margin:0;
	font-size:13px;
	font-weight:400;
	letter-spacing:0;
}
.text_right{
	text-align:right;
}
.hed_call{
	font-family: menca, sans-serif;
	font-size:38px;
	color:#888888;
	font-weight:700;
	letter-spacing:0;
	line-height:1.2;
}
.hed_call i {
	font-size:28px;
	padding:0 5px 0 0; 
}
.hed_add {
	padding:0;margin:0;
	font-size:17px;
	font-weight:400;
}
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 5rem;
    height: 5rem;
}
.carousel-item,
.carousel-item img {
/*    height: 500px;*/
	border-radius:0;
}
.slide_table {
    position: relative;
}
.slide_table .child{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
	background:#fff;
	z-index:999;
	border-radius:0 0 0 0;
}
.slide_table .child .waku .top_waku,
#top_calender .child .waku .top_waku {
	border-radius:10px 10px 0 0;
	padding:12px 0 0 15px;
}
.slide_table .child .waku .top_waku_table {
	padding:10px 15px 15px;
}
.slide_table .child .waku .top_waku_table td{
	font-size:18px;
}
.slide_table .child .waku .top_waku h2,
#top_calender .child .waku .top_waku h2 {
	padding:0;margin:0;
    font-size:17px;
}
.slide_table .child .waku .top_waku_table .hol,
#top_calender .child .waku .top_waku_table .hol{
	padding:15px 0;margin:0;
	font-size:16px;
	font-weight:700;
	line-height:2;
}
.slide_table .child .waku .top_waku_table .time,
#top_calender .child .waku .top_waku_table .time{
	font-size:16px;
}
.slide_table .child .waku .top_waku_table .col,
#top_calender .child .waku .top_waku_table .col{
	color:#ff8c39;
	font-size:18px;
}
.slide_table .child .waku .top_waku_table .tex_holiday span{
	padding: 0 0 0 15px;
	color:#ff8c39;
	font-size:16px;
}
.slide_table .child .waku .top_waku_table .tex_holiday a{
	color:#58c27c;
	text-decoration: underline;
}
/*_______*/
.top_waku_table table , .top_waku_table td, .top_waku_table th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
.top_waku_table td, .top_waku_table th {
	padding: 8px 10px !important;
	width: 30px;
	height: 25px;
	font-weight:400 !important;
}
.top_waku_table th {
	background: #333 !important;
	color:#fff !important;
	 border-top: 1px solid #fff !important;
	 border-right: 1px solid #333 !important;
	 border-bottom: 1px solid #fff !important;
	 border-left: 1px solid #fff !important;
	width:30% !important;
}
.top_waku_table td {
	text-align:left !important;
	 border-top: 1px solid #ccc !important;
	 border-right: 1px solid #fff !important;
	 border-bottom: 1px solid #ccc !important;
	 border-left: 1px solid #fff !important;
}
.top_waku_table td span {
	color:#888888;
	font-size:17px !important;
}
.top_waku_table .even {
	background: #cfe2f3;
}
.top_waku_table .odd {
	background: #efefef;
}
.top_waku_table .hor {
	background: #f4cccc;
}
/*_______*/
#page_main .waku_table .top_waku_table .tex_holiday span,
#top_calender .waku_table .top_waku_table .tex_holiday span{
	padding: 0 20px 0 0;
	color:#888888;
}
.slide_table .child .waku .top_waku_table ul,
#page_main .waku_table .top_waku_table ul,
#top_calender .waku_table .top_waku_table ul {
	padding:0 0 0 20px;
	margin:0;
}
.slide_table .child .waku .top_waku_table li {
	font-size:13px;
	line-height:1.3;
	font-weight:500;
	padding:0 0 4px;
}
#page_main .waku_table .top_waku_table li,
#top_calender .waku_table .top_waku_table li {
	font-size:16px;
	line-height:1.5;
	font-weight:500;
	padding:0 0 8px;
}
.slide_table .child .waku .top_waku_table li span,
#page_main .waku_table .top_waku_table li span,
#top_calender .waku_table .top_waku_table li span {
	color:#888888;
}
.slide_table .child .waku .top_waku_table li:last-child,
#page_main .waku_table .top_waku_table li:last-child,
#top_calender .waku_table .top_waku_table li:last-child {
	padding:0;
}
.slide_table .child .tex_holiday{
	padding:0;margin:0;
	font-size:15px;
}
/*___________index_in___________*/
#top_news {
	padding:90px 0 120px 0;
}
#top_news h2{
	padding:30px 0 0;margin:0;
	font-size:24px;
	font-family: menca, sans-serif;
	font-weight:500;
}
.news_list,
.column_list {
	border-bottom:1px solid #ccc;
	padding:30px 0;
}
.news_list p,
.single_font12 {
	padding:0 0 8px;margin:0;
	color:#888;
	font-size:16px;
	font-family: menca, sans-serif;
}
.column_list .single_font12 {
	padding:2px 0 0px;margin:0;
	color:#888;
	font-size:12px;
	font-family: menca, sans-serif;
}
.news_list h3,
.single_title,
.column_list h3 {
	padding:0;margin:0;
	font-size:21px;
}
.column_cat{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:10px;
}

.column_cat a{
  display:inline-block;
  background:#dbdcdc;
  color:#231815;
  font-size:12px;
  line-height:1;
  padding:7px 10px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
}

.column_cat a:hover{
  opacity:.75;
}
.sidebar-wrapper h4{
  color:#231815;
  text-align:left;
  padding:0 0 15px;
  font-size:18px;
  font-weight:700;
  margin-bottom:15px;
}
.ranking_item{
  margin-bottom:18px;
}
.ranking_item a{
  display:block;
  text-decoration:none;
  color:#111;
}
.ranking_thumb{
  margin-bottom:8px;
}
.ranking_thumb img{
  width:100%;
  height:auto;
    aspect-ratio: 8 / 5;
    object-fit: cover;
}
.ranking_item h5{
  font-size:16px;
  line-height:1.45;
  font-weight:700;
  margin:0;
	padding:0 0 5px;
}
.column_hr hr {
    margin: 0.2rem 0 1rem !important;
}
#top_open{
	padding: 0 0 100px;
}
#top_message{
	padding: 0 0 200px;
	background-image:url(img/top_message_bg01.svg),url(img/top_message_bg02.jpg);
	background-repeat:no-repeat;
	background-position:top right 5%, bottom center;
	background-size:40% auto,1920px auto;
}
#top_message p{
	padding:65px 0 50px 0;margin:0;
	font-size:20px;
	line-height:2;
}
#top_menu{
	padding: 80px 0 100px;
}
#top_menu .main_title p,
#top_feature .main_title p{
	padding:0;margin:0;
	text-align:center;
	font-size:36px;
	letter-spacing:3px;
	font-family: menca, sans-serif;
	font-weight:500;
}
#top_menu .main_title h2,
#top_feature .main_title h2{
	padding:0;margin:0 0 50px;
	text-align:center;
	font-size:17px;
	letter-spacing:3px;
	color:#888;
	font-family: shippori-mincho-b1, sans-serif;
}
#top_menu .menu_waku {
	background-color:#f5f5f5;
	padding:25px 25px 15px;
	text-align:center;
	margin:0 0 30px;
}
#top_menu .menu_waku h3{
	padding:0;margin:0;
	font-size:18px;
}
#top_menu .menu_waku img{
	width:65%;
	margin:0 auto;
	padding:15px 0 5px;
}
#top_menu .menu_waku .text-right{
	padding:0;margin:0;
	text-align:right;
	color:#888;
}
#top_menu .menu_waku .text-right a:hover{
	color:#1a252c;
}
#top_feature01{
	height:80px;
	background-image:url(img/top_feature_bg.svg);
	background-repeat:no-repeat;
	background-position:top center;
	background-size:1920px auto;
}
#top_feature{
	padding: 80px 0 150px;
	background-color:#2e2e2e;
	color:#fff;
}
#top_feature .main_title h2{
	color:#fff !important;
}
#top_feature .feat_waku01,
#top_feature .feat_waku02{
	margin-bottom:80px;
}
#top_feature .example {/*親div*/
  position: relative;/*相対配置*/
  }

#top_feature .feat_waku01 .example p,
#top_feature .feat_waku03 .example p {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  bottom: -50px;
  left: 0;
	font-family: menca, sans-serif;
	font-weight:300;
	font-size:130px;
	line-height:1;
  }
#top_feature .feat_waku02 .example p {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  bottom: -50px;
  right: 0;
	font-family: menca, sans-serif;
	font-weight:300;
	font-size:130px;
	line-height:1;
  }
#top_feature h3{
	padding:80px 0 30px;margin:0;
	font-size:26px;
	font-weight:600;
	line-height:1.8;
	letter-spacing:3px;
	color:#fff;
	font-family: shippori-mincho-b1, sans-serif;
}
#top_feature p{
	padding:0;margin:0;
	font-size:16px;
	font-weight:400;
	line-height:1.8;
	text-align:justify;
}
#top_contact{
	padding: 80px 0;
	background-color:#f5f5f5;
}
#top_contact .main_title p{
	padding:20px 0 15px;margin:0;
	font-size:18px;
	letter-spacing:3px;
	font-family: menca, sans-serif;
	font-weight:500;
}
#top_contact .main_title h2{
	padding:0;margin:0 0 0;
	font-size:32px;
	letter-spacing:3px;
	line-height:1.5;
	font-family: shippori-mincho-b1, sans-serif;
}
#top_contact .tel {
	padding:0;margin:0;
	font-size:18px;
	text-align:right;
}
#top_contact .tel a{
	color:#2e2e2e;
}
#top_contact .tel i{
    font-size: 34px;
}
#top_contact .tel span{
	padding:0 0 0 10px;
    font-family: menca, sans-serif;
    font-size: 44px;
    color: #888888;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}
#top_contact .tel_s {
	padding:0;margin:0 0 10px;
	font-size:14px;
	text-align:right;
}
#top_access{
	padding: 120px 0;
}
.fot {
	background-color:#2e2e2e;
	padding:50px 0 0;
	color:#fff;
}
.fot .logo_img {
	margin-bottom:30px;
}
.fot .hed_call {
    color: #fff;
}
.fot .add {
    padding:20px 0 0;margin:0;
}
.fot a {
    color:#fff;
}
.fot .menu {
    padding:15px 0 0;margin:0;
}
.fot .slide_table {
    position: static;
    color:#1a252c;
}
.fot .slide_table .child {
    position: static;
    bottom: 0;
    right: auto;
    width: auto;
    background: #fff;
    z-index: 0;
    border-radius: 0;
	margin-top:20px;
}
.fot .slide_table .child .tex_holiday{
	padding:0;margin:0;
}
.fot .slide_table .child h2{
	padding:0;margin:0;
	font-weight:600;
	font-size:21px;
}
/*___________page_in___________*/
.page_hed{
	background: linear-gradient(70deg, #feffe6, #def2da);
	padding:50px 0;
}
.page_hed h2{
	padding:0;margin:0;
	font-size:36px;
	font-weight:400;
}
.fh5co-bg-section22{
	padding:10px 0 0;
	font-size:12px;
	text-align:right;
}
#top_access h2{
	padding:0px 0 30px;margin:0;
	font-size:36px;
	font-family: menca, sans-serif;
	font-weight:500;
}
#top_access h3{
	padding:0px 0 15px;margin:0;
	font-size:16px;
	color:#888888;
	font-family: shippori-mincho-b1, sans-serif;
}
#top_access p{
	padding:0px 0 35px;margin:0;
}
/*___________page___________*/
#sidebar h4{
	padding:0 0 8px;margin:0;
	text-transform: uppercase;
	font-family: menca, sans-serif;
	font-size:24px;
	font-weight:500;
}
#sidebar ul{
	padding: 0 0 0 0;
	list-style:none;
}
#sidebar li{
	padding: 0 0 8px;
	font-family: menca, sans-serif;
	font-size:16px;
}
#sidebar a,
.fh5co-bg-section22 a{
	color: #1a1a1a;
}
#sidebar a{
	font-size:16px;
}
/* pagination */
.mt30 {
	margin-top: 30px;
}
.mt30 .navigation.pagination {
	text-align: center;
}
.mt30 .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.mt30 .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid #ddd;
	border-radius: 999px;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	transition: 0.3s;
	background: #fff;
}
.mt30 .page-numbers:hover {
	background: #333;
	border-color: #333;
	color: #fff;
}
.mt30 .page-numbers.current {
	background: #333;
	border-color: #333;
	color: #fff;
	pointer-events: none;
}
.mt30 .page-numbers.dots {
	border: none;
	background: transparent;
	color: #999;
	min-width: auto;
	padding: 0 4px;
}
.mt30 .page-numbers.prev,
.mt30 .page-numbers.next {
	padding: 0 18px;
}
.mt30 .page-numbers i {
	font-size: 12px;
}
.menu-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 160px;
	padding: 15px 10px 0 10px ;
	background: #f5f5f5;
	text-align: center;
	text-decoration: none;
	color: #111;
	margin-bottom:15px;
}
.menu-title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: .08em;
}
.menu-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
}
.menu-icon img {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 90px;
	max-height: 80px;
	object-fit: contain;
}
.hdet-anim1-content .mb_l{
	margin-bottom:60px;
}
.hdet-anim1-content .mb{
	margin-bottom:40px;
}
.hdet-anim1-content .mb_s{
	margin-bottom:30px;
}
.hdet-anim1-content h4{
	padding:0 0 0;margin:0 0 10px;
	font-size:26px;		
	color:#888888;
	font-family: shippori-mincho-b1, sans-serif;
	font-weight: 700;
}
.hdet-anim1-content h4::before{
	content: "\f068";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
	color:#888888;
}
.hdet-anim1-content h5{
	font-size:21px;
background: linear-gradient(transparent 60%, #ccc 60%);
        display: inline-block;
        margin-bottom: 10px;
        padding: 0 3px;
	font-family: shippori-mincho-b1, sans-serif;
	font-weight: 700;
}
.hdet-anim1-content p{
	padding:0;margin:0;
	font-size:16px;	
}
.hdet-anim1-content .waku{
	background-color: #f5f5f5;
	padding:20px;
	border-radius:5px;
	margin-bottom:20px;
}
.hdet-anim1-content .waku_mb{
	background-color: #f5f5f5;
	padding:20px;
	border-radius:5px;
}
.hdet-anim1-content .waku p,
.hdet-anim1-content .waku_mb p{
	padding:0;margin:0;
	font-size:16px;
}
.hdet-anim1-content .waku .wp-block-columns.is-layout-flex,
.hdet-anim1-content .waku_mb .wp-block-columns.is-layout-flex{
    margin-bottom:0;
}
.hdet-anim1-content .waku .wp-block-columns.is-layout-flex figure,
.hdet-anim1-content .waku_mb .wp-block-columns.is-layout-flex figure {
    margin: 0 0 0;
}
.hdet-anim1-content h6{
	padding:0 0 0;margin:15px 0 8px;
	font-size:16px;		
	color:#888888;
	font-weight:600;
}
.hdet-anim1-content h6::before{
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
	color:#888888;
}
.page_orthodontics .hdet-anim1-content {
    padding: 40px;
    border: 2px solid #f5f5f5;
	margin:30px 0 80px;
}
.page_orthodontics .orthodontics_content .ico {
    padding:5px 5px 5px 70px !important;
	background-size:60px auto;
	background-repeat:no-repeat;
	background-position:left center;
	font-family: shippori-mincho-b1, sans-serif;
}
.page_orthodontics .orthodontics_content .kyousei_tex{
	font-size:17px;
	line-height:1.8;
}
/*____________acodion_________*/

.hdet-anim1-details {
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #fff;
}

.hdet-anim1-summary {
  padding: 25px 45px 25px 25px;
  background-color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  list-style: none;
	text-align:center;
  transition: all 0.3s ease;
}
.hdet-anim1-summary:hover {
  background-color: #f5f5f5;
}
.hdet-anim1-summary img{
  width:70%;
	margin:0 auto;
}
.hdet-anim1-summary h3{
  padding:0 0 5px;margin:0;
	font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
	text-align:left;
	font-family: shippori-mincho-b1, sans-serif;
}
.hdet-anim1-summary p{
  padding:0;margin:0;
	font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
	text-align:left;
}

.hdet-anim1-summary::marker {
  display: none;
}

.hdet-anim1-summary::-webkit-details-marker {
  display: none;
}

/* 矢印アイコンの設定とアニメーション */
.hdet-anim1-summary::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #6c757d;
  transition: transform 0.3s ease; /* アニメーションの要 */
}

/* 開いた時に180度回転 */
.hdet-anim1-details[open] .hdet-anim1-summary::after {
  transform: translateY(-50%) rotate(180deg);
  color: #0d6efd;
}

.hdet-anim1-content {
  padding: 40px;
  border-top: 1px solid #ced4da;
}

/* フェードインアニメーション */
.hdet-anim1-details[open] .hdet-anim1-content {
  animation: hdet-fade-in 0.4s ease forwards;
}

@keyframes hdet-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.page_title p{
	padding: 0px 0 5px;
    margin: 0;
    font-size: 38px;
    font-family: menca, sans-serif;
    font-weight: 500;	
    text-transform: uppercase;
    letter-spacing: 5px;
}
.page_title h3{
	padding: 0;
    margin: 0 0 50px;
    font-size: 16px;
    letter-spacing: 3px;
    color: #888;
	font-family: shippori-mincho-b1, sans-serif;
}
.page_clinic h4 {
	padding: 0;
    margin: 0 0 30px;
    font-size: 32px;
    letter-spacing: 5px;
	font-weight:700;
	line-height:2;	
	font-feature-settings: "palt";
	font-family: shippori-mincho-b1, sans-serif;
}
.page_clinic .greeting p{
	line-height:1.8;
	font-size:18px;
	text-align:justify;
}
.page_clinic .waku_greeting {
	padding:0 0 50px;
	margin:0 0 0;
}
.page_clinic .waku_profile {
	padding:50px 0 10px;
	margin:0 0 0;
}
.page_clinic .waku_profile h3 {
	padding: 0;
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: 3px;
	font-weight:600;
	line-height:1.5;
	font-family: shippori-mincho-b1, sans-serif;
}
.page_clinic .waku_profile ul {
	padding:0 0 0 20px;
}
.page_clinic .waku_profile li {
	padding:0 0 10px;
}
.waku_profile{
	position:relative;
}

/* 真ん中の縦ドット線 */
.waku_profile::after{
	content:"";
	position:absolute;
	top:0;
	left:50%;
	transform:translateX(-50%);
	width:1px;
	height:100%;

	background-image:repeating-linear-gradient(
		to bottom,
		#2e2e2e 0px,
		#2e2e2e 2px,
		transparent 2px,
		transparent 8px
	);
}

/* 左右余白 */
.waku_profile .wp-block-column:first-child{
	padding-right:50px;
}

.waku_profile .wp-block-column:last-child{
	padding-left:50px;
}

/* SPでは非表示 */
@media(max-width:768px){
	.waku_profile::after{
		display:none;
	}
}

.page_clinic .hr_line .wp-block-separator {
    border: none;
    border-top: 1px solid;
    border-color: #2e2e2e !important;
}
.page_clinic .hr_line hr {
    opacity:1;
}
.btn-primary {
    color: #000;
    background-color: #888888;
    border-color: #888888;
}
/*___________bg___________*/
#page_main{
	padding:120px 0;
}
#page_main.page_orthodontics{
	padding:120px 0 40px;
}
.mb{
	margin-bottom:80px;
}
.mb_s {
	margin-bottom:20px;
}

.column {
    width: 50%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.info {
    margin: 0;
}
.cat1 h2 {
    padding: 0;
    margin: 0 0 50px;
    text-align: center;
    font-size: 21px;
    letter-spacing: 3px;
    color: #888;
	font-family: shippori-mincho-b1, sans-serif;
}
.cat1 p {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 52px;
    letter-spacing: 5px;
    font-family: menca, sans-serif;
    font-weight: 500;
	text-transform: uppercase;
}
.cat1 {}
.cat2 {
    background: url(img/hed_news.jpg) no-repeat top center;
    background-size: cover;
    color: rgba(0, 0, 0, .7);
    border-radius: 0 0 0 40px;
}
.cat2-clinic {
    background: url(img/hed_clinic.jpg) no-repeat top center;
    background-size: cover;
    color: rgba(0, 0, 0, .7);
    border-radius: 0 0 0 40px;
}
.cat2-medical-menu {
    background: url(img/hed_medical-menu.jpg) no-repeat top center;
    background-size: cover;
    color: rgba(0, 0, 0, .7);
    border-radius: 0 0 0 40px;
}
.cat2-orthodontics {
    background: url(img/hed_orthodontics.jpg) no-repeat top center;
    background-size: cover;
    color: rgba(0, 0, 0, .7);
    border-radius: 0 0 0 40px;
}
.cat2-column {
    background: url(img/hed_column.jpg) no-repeat top center;
    background-size: cover;
    color: rgba(0, 0, 0, .7);
    border-radius: 0 0 0 40px;
}
@media all and (min-width: 500px) {
    .wrapper {
        display: flex;
    }
}
/*________table_____________*/
.top_waku_table table, section table	{ width: 100%; }
.top_waku_table th, .top_waku_table td, section th, section td	{ padding: 10px 5px; border: 1px solid #4d4d4d; }
.top_waku_table th,section th	{ background: #fff; }
.top_waku_table .hol ,section .hol	{ background: #f5f5f5; }

.top_waku_table th, .top_waku_table td {text-align:center;line-height:1;}
.top_waku_table th, .top_waku_table .bold {font-weight:600;}
.top_waku_table td span {font-size:13px;}

#top_access table	{ width: 100%; margin-top:10px;}
#top_access th	{ padding: 10px; border-bottom: 1px solid #cccccc; border-right: 1px solid #cccccc; border-top:transparent; border-left:transparent;}
#top_access td	{ padding: 10px; border-bottom: 1px solid #cccccc; border-top:transparent; border-right:transparent;}
#top_access th	{ background: transparent; }

/*----------------------------------------------------
	.demo01
----------------------------------------------------*/
#top_access .demo01 th	{ width: 20%; text-align: left; }

/*________btn_____________*/
.btn_box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
}
.btn_arrow{
  color: #888888;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-align: left;
  line-height: 40px;
  width: 100%;
  height: 40px;
  background: #FFF;
  margin: auto;
  border:1px solid #888888;
  position: relative;
  display: block;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 100px;
  text-decoration: none;
	padding-left:20px;
	margin-top:20px;
}
.btn_arrow .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #888888;
}
.btn_arrow .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  right: 1.5rem;
  width: 1.125rem;
  height: 0.13rem;
  background: none;
}
.btn_arrow .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.3rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #888888;
  border-right: 0.125rem solid #888888;
  transform: rotate(45deg);
}
.btn_arrow:hover .icon.arrow {
  background: #888888;
  transform: translate(1rem, 0);
}
.custom-btn {
  width: 100%;
  padding: 15px 25px;
  border: 2px solid #2e2e2e;
  font-weight: 500;
  font-size: 24px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
	text-align:center;
	line-height:1.1;
}
.custom-btn span{
  font-size: 16px;
}
.btn-15 {
   background: #2e2e2e;
  color: #fff;
  z-index: 1;
}
.btn-15:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
   background: #fff;
  transition: all 0.3s ease;
}
.btn-15:hover {
  color: #2e2e2e;
}
.btn-15:hover:after {
  left: 0;
  width: 100%;
}
.btn-15:active {
  top: 2px;
}
/*________contact_______________*/
table.CF7_table{
	width:100%;
	margin:0 auto;
}
table.CF7_table th,
table.CF7_table td{
	padding:15px 0;
	border-bottom:#eeefea 1px solid;
}
.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}
/*入力欄*/
.CF7_table input, .CF7_table textarea {
	border: 1px solid #d8d8d8;
}
.CF7_table ::placeholder {
	color:#797979;
}
/*「必須」文字*/
.CF7_req{
	font-size:.9em;
	padding: 5px;
	background: #4a8161;/*オレンジ*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}
/*「任意」文字*/
.CF7_unreq{
	font-size:.9em;
	padding: 5px;
	background: #999999;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}
/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table th{
	width:30%;/*横幅*/
	background-color:#fff;/*ブルーグレー*/
	}
}
/* レスポンシブ */
@media screen and (max-width: 768px){
	table.CF7_table{
	width:95%;
	}
	.CF7_table tr, .CF7_table td, .CF7_table th{
	display: block;
	width: 100%;
	line-height:2.5em;
	}
	.CF7_table th{
	background-color:#fff;
	}
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#333;/* オレンジ*/
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	margin:0 auto;
	width:30%;
	letter-spacing:2px;
	padding:8px;
}
.CF7_btn{
	text-align:center;
	margin-top:20px;
}
.wpcf7-spinner{
	width:0;
	margin:0;
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="text"], .CF7_table textarea, .CF7_table select {
    padding:15px 10px;
	width:100%;
}
.CF7_table label {
    font-weight: 500;
}
.CF7_table p{
	padding:0;margin:0;
}
.wpcf7-spinner {
    display: none !important;
}
.font12{
	font-size:10px;
	padding:15px 0 0;
	text-align:right;
}
.font18_contact{
	text-align:center;
	font-size:18px;
	padding:20px 0 0;
	margin:0;
}
/*---------SM-------*/
.br-sp {
    display: none;
}
.br-pc {
    display: block;
}

/* PC・タブレットでは非表示 */
.sp-only {
	display: none !important;
}
/* PCだけ表示 */
.pc-only {
	display: block !important;
}

/* スマホだけ表示 */
@media only screen and (max-width: 767px) {
	.sp-only {
		display: block !important;
	}
.pc-only {
		display: none !important;
	}
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
    .br-pc {
        display: none;
    }

}

@media only screen and (max-width:480px) {
.navbar {
    padding-bottom: 8px;
}

    .navbar .navbar-nav {
        margin-top: 0;
		padding-top:20px;
    }
.navbar .navbar-nav span {
    font-size: 13px;
    font-family: menca, sans-serif;
    font-weight: 500;
    color: #888888;
	padding:0 0 0 10px;
}
.navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 0 0 20px;
    }
.slide_table .child .waku .top_waku, #top_calender .child .waku .top_waku {
    border-radius: 0;
    padding: 12px 0 12px 0;
}
#page_main .waku_table .top_waku_table .tex_holiday span, #top_calender .waku_table .top_waku_table .tex_holiday span {
    padding: 0 0 0 5px;
    color: #ff8c39;
}
	#top_calender{
		padding:20px 5px 0;
	}
#top_news {
    padding: 40px 0 50px 0;
}
#top_news h2 {
    padding: 0;
    margin: 0;
    font-size: 32px;
    font-family: menca, sans-serif;
    font-weight: 500;
}
	.tex_holiday {
		padding:5px 0 0;
		font-size:14px;
	}
#top_open {
    padding: 0 0 0;
}
#top_message {
    padding: 0 0 50px;
    background-image: url(img/0.svg), url(img/0.jpg);
}
#top_message p {
	margin:30px 0 0;
	padding:30px 0 0;
    background-image: url(img/top_message_bg01.svg);
    background-repeat: no-repeat;
    background-position: top right 5%;
    background-size: 90% auto;
}
	#top_message .btn_arrow{
		margin:20px 0 40px;
	}
#top_menu {
    padding: 50px 0 80px;
}
#top_menu .menu_waku {
    padding: 20px 15px 15px;
    margin: 0 0 15px;
}
#top_feature01 {
    height: 50px;
    background-position: bottom center;
    background-size: 100% auto;
}
#top_contact {
    padding: 40px 0;
    text-align: center;
}
#top_contact .main_title p {
    padding: 0 0 15px;
}
#top_contact .main_title h2 {
    font-size: 26px;
	margin: 0 0 30px;
}
#top_contact .tel {
    font-size: 18px;
    text-align: center;
}
#top_contact .tel_s {
    padding: 0;
    margin: 0 0 30px;
    font-size: 14px;
    text-align: center;
}
#top_access {
    padding: 80px 0;
}
	#top_access .demo01 {
		margin: 20px 0 0 ;
	}
#top_access .demo01 th,
#top_access .demo01 td{
		width: 100%;
		display: block;
		border-top: none;
    }
#top_access th {
    border-bottom: transparent;
    border-right: transparent;
    background-color:#f5f5f5;
}
#top_access td {
    padding: 10px;
     border: transparent !important;
}
.footer .slide_table .child .waku .top_waku, #top_calender .child .waku .top_waku {
        border-radius: 0;
        padding: 12px 0 0px 12px;
    }
	.footer .waku {
		margin-bottom:20px;
	}
	.mb_sm{
		margin-bottom:20px;
	}
.footer .btn.btn-link {
    font-size: 15px;
}
	.cat1 {
		height:auto;
		padding: 40px 0 60px 30px;
	}
.cat1 h2,
.cat1 p {
    margin: 0 0 0px;
    text-align: left;
}
	.cat1 p {
    font-size: 40px;
}
.column {
    width: 100%;
	text-align: left;
	display: block;
}
.cat2,
.cat2-clinic,
.cat2-medical-menu {
		height:280px;
	margin-left:20px;
	width:calc(100% - 20px);
		border-radius: 20px 0 0 20px;
	}
#page_main {
    padding: 80px 0;
}
#page_main.page_orthodontics{
    padding: 80px 0 0;
}
	#sidebar{
		margin-top:30px;
	}
.page_clinic .waku_profile {
    padding: 25px 0 0px;
}
.waku_profile .wp-block-column:first-child {
    padding-right: 0;
}
.waku_profile .wp-block-column:last-child {
    padding-left: 0px;
}
.hdet-anim1-summary img {
    width: 50%;
}
.hdet-anim1-content {
    padding: 30px 20px;
}
.hdet-anim1-summary {
    padding: 25px 40px 25px 20px;
}
/*.carousel .carousel-caption {
        padding-left: 0;
    top: 0%;
    text-align: right;
    width: 100%;
	display: block;
    }
.carousel .carousel-caption p {
    font-size: 22px;
    letter-spacing: 2px;
    text-align: right;
	line-height:1.8;
}*/
.carousel-caption_bg {
    height: 50vh;
    background-image: url(img/hed_slider_img01_sm.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
	    .carousel .carousel-item {
        min-height: auto;
    }
    .carousel .carousel-caption {
        left: 20px;
        bottom: -65%;
        transform: none;
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding: 0;
	}
.carousel .carousel-caption p {
    font-size: 26px;
    letter-spacing: 4px;
	line-height: 2.2;
}
.carousel .carousel-caption p span {
    padding: 5px 10px;
}
.page_orthodontics .orthodontics_content .ico {
    margin-top:20px;
}
.page_orthodontics .hdet-anim1-content {
    padding: 30px 15px;
    margin: 30px 0 60px;
}
.rsttop-headline__logo-img {
    width: 300px;
    height: 30px;
}
.rsttop-headline__logo_s {
    padding: 5px 0 1px;
	text-align:center;
}

}


/* 追加分＿＿＿＿＿＿＿＿＿＿＿＿*/


