@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
.pc {
  display: none;
}
.sp {
  display: block;
}
.page-sp{
	display:none;
}
.medical_dotted{
    border-bottom: 2px dotted #666;
}
#recruit{
  width:100%;
  font-size:4.5vw;
  line-height: 180%;
  --tablePadding:30px;
}
#recruit tr{
  display:block;
  padding:0 0 var(--tablePadding) 0;
}
#recruit th{
  width:100%;
  display:block;
  padding:var(--tablePadding) 0 0 0;
  text-align:left;
  border-top:1px dotted #666;
  color:#e66a6a;
}
#recruit td{
  width:100%;
  display:block;
  text-align:left;
}
#recruit td.last{
  border-bottom:1px dotted #666;
  padding-bottom:var(--tablePadding);
}
@media (min-width:768px){
	.page-sp{
		display:none;
	}
	a[href^="tel:"]{
		pointer-events:none;
	}
  .medical_dotted{
    border-bottom:none;
  }
  #recruit{
    font-size:2vw;
  }
}
@media(min-width:1025px){
	.page-sp{
		display:block;
	}
  .header_pc{
    position: -webkit-sticky;
    position:sticky;
    top:0;
    z-index:9999;
    background-color: #8cd86b;
    display:flex;
  }
  #recruit{
    --tableBorder:2px;
    font-size:1rem;
    border:var(--tableBorder) solid #666;
    border-collapse:collapse
  }
  #recruit tr{
    display:table-row;
    padding:0;
  }
  #recruit th{
    display:table-cell;
    width:30%;
    border:var(--tableBorder) solid #666;
    padding:0;
    text-align:center;
    color:#29537b;
    background:#bffea8;
  }
  #recruit td{
    width:70%;
    display:table-cell;
    text-align:left;
    border:var(--tableBorder) solid #666;
    padding:1rem;
  }
}
* {
  padding: 0;
  margin: 0;
}
html, body {
  font-size: 18px;
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 1.5em;
  color: #29537b;
}
a {
  text-decoration: none;
}
a img:hover {
  opacity: 0.9;
}
.w-container {
  width: min(92%, 1200px);
  margin: 4rem auto;
  position: relative;
}
.content {
  position: relative;
}
.content2 {
  position: relative;
}
.header {
  position: -webkit-sticky;
  position: sticky;
  top:0;
  z-index: 9999;
  background-color: #8cd86b;
  display:flex;
  height:55px;
}
.ml7 {
  margin-left: 7px;
}

#main-box {
  position: relative;
  z-index: 99;
}
main {
  position: relative;
  width: 100%;
}
#mein-box{
  margin-top:4rem;
}
@media (min-width: 768px) {
  .header {
    height: 130px;
  }
}
@media (min-width: 1025px) {
  .content2 {
    min-height: calc(60vh);
  }
  #mein-box{
    margin:0;
  }
}
/* Navbar Container */
.navtext-container {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav-logo{
  text-align:center;
}
.nav-logo img {
  position: relative;
  width: 70%;
  margin:2px 0;
}
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  text-align: center;
}
/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #29537b;
  opacity: 0;
  transition: 0.5s;
}
.menu li {
  border-top: 1px solid rgba(41, 83, 123, 1);
  padding: 18px 0;
  margin: 0 0;
  opacity: 0;
  transition: 0.5s;
  background-color: #8cd86b;
  width: 100%;
}
.menu-btn:checked ~ .menu a, .menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  font-weight: bold;
  text-align: center;
}
.menu-btn:checked ~ .menu a img, .menu-btn:checked ~ .menu li img {
  width: 10%;
  vertical-align: middle;
  margin-top: -5px
}
.menu a img, .menu li img {
  width: 10%;
  vertical-align: middle;
  margin-top: -5px;
}
.menu-btn {
  display: none;
}
.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.navicon {
  background: #29537b;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before, .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #29537b;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before {
  top: 9px;
}
.navicon:after {
  bottom: 9px;
}
/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */
.tit-image2 {
  width: 100%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px
}
.tit-image2 img {
  width: 100%
}
.menu_close{
  width:100%;
  height:100vh;
  display:block;
  opacity:0;
}
/* 当院の紹介 */
.contents2 {
  width: 100%;
  position: relative;
  margin:4rem auto;
}
.contents2 p {
  text-align: left;
  font-size: 1rem;
  color: #29537b;
}
.wrap-sub {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wrap-sub-box {
  width: 100%;
  background-color: #FCEFF0;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-top: -10px;
  color: #29537b
}
h2.tit-tokutyo-index {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4vmin;
  color: #29537b;
  text-align: center;
  line-height: 1.5em;
}
h2 img {
  width: 10vmin;
}
h2 img.t01 {
  padding-right: 4vmin;
}
h2 img.t02 {
  padding-left: 4vmin;
}
.item-sub img {
  width: 100%
}
.item-sub h2 {
  text-align: center;
  line-height: 1.5em;
  padding: 10px 0
}
.item-sub p {
  text-align: left;
  line-height: 1.8em;
  font-size: 0.8rem;
  color: #29537b
}
.item-sub {
  padding: 40px;
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px #D6D6D6;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.tit-sub2 {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5em;
}
.tit-image1 img {
  width: 100%
}
.tit-image1 {
  width: 100%;
  margin-top: 50px
}
.imgtext {
  padding: clamp(20px, 9vw, 120px) 0;
  background-color: #ffffff;
}
.imgtext + .imgtext {
  padding-top: 0;
}
.imgtext-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.imgtext-img img {
  width: 100%;
}
h3.text-h3 {
  position: relative;
  padding: 5px 5px 5px 42px;
  background: #E1606A;
  font-size: 1.3rem;
  color: white;
  margin-left: -10px;
  line-height: 1.3;
  margin-bottom: 10px;
}
h3.text-h3:before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
}
h3.text-h3-r {
  position: relative;
  padding: 5px 5px 5px 20px;
  background: #E1606A;
  font-size: 1.3rem;
  color: white;
  line-height: 1.3;
  margin-bottom: 10px;
}
h3.text-h3-r:after {
  position: absolute;
  content: '';
  right: -10px;
  top: -2px;
  border: none;
  border-bottom: solid 79px transparent;
  border-right: solid 50px white;
}
.text {
  font-size: 0.8rem;
  line-height: 1.8em;
}
.imgtext-container > .text {
  flex: 1;
  min-width: 15em;
}
.imgtext-img2 img {
  width: 100%;
}
.intro-cap{
  background:#ff626c;
  color:#fff;
  padding: 0.3rem 1rem;
  margin:1rem 0 0 0;
}
@media (min-width:768px){
	contents2{
		top:10vh;
	}
  .menu-icon {
    padding: 55px 34px;
  }
  .navicon {
    width: 50px;
  }
  .navicon:before {
    top: 20px;
  }
  .navicon:after {
    bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .imgtext-container > .text {
    min-width: 25em;
  }
  .tit-sub2 {
    font-size: 1.8rem;
  }
	h2.tit-tokutyo-index {
 	 font-size: 1.8rem;
	}
	contents2{
		top:0;
	}
  h3.text-h3-r {
    padding: 5px 5px 5px 42px;
  }
}
@media (min-width: 768px) {
  .imgtext-container {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .imgtext-container > .img {
    flex: 2;
  }
  .imgtext-container2 {
    display:flex;
    flex-wrap:wrap;
  }
  .imgtext-container2 .text {
    flex-basis:50%;
  }
  .imgtext-img2{
    flex-basis:50%;
    padding:0 1rem 1rem;
  }
  .intro-cap{
    position:absolute;
    background:#ff626c;
    color:#fff;
    z-index:10;
    padding: 0.3rem 1rem;
    transform:skewx(35deg);
    margin:.5rem 1rem;
  }
  .intro-cap p{
    transform:skewx(-35deg);
    font-size:80%;
  }
  .text {
    font-size: 1rem;
  }
  h3.text-h3 {
    font-size:clamp(10px,4vw,1.5rem);
    margin-left: -33px;
  }
  h3.text-h3-r {
    font-size:clamp(10px,4vw,1.5rem);
  }
  .text {
    line-height: 1.8em;
  }
  .imgtext-container.reverse {
    flex-direction: row-reverse;
  }
  .imgtext-img img {
    /* aspect-ratio: 2 / 1;*/
    object-fit: cover;
    width: 100%;
  }
}
.tit-sub-box {
  margin: 3rem 0;
  margin-left: auto;
  margin-right: auto;
}
.mt100 {
  margin-top: 100px;
}

.slideshow {
  position: relative;;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 3;
  aspect-ratio:5/3;
}

@media (min-width: 1025px) {
  /* 当院の紹介 */
  .wrap-sub {
    width: 1200px;
    display: flex;
  }
  .item-sub {
    padding: 40px;
    width: 30%;
    margin-bottom: 0px;
  }
  .item-sub h2 {
    text-align: center;
    line-height: 1.5em;
    padding: 10px 0
  }
  .item-sub p {
    text-align: left;
    line-height: 1.8em;
    font-size: 1rem;
    color: #29537b
  }
  .intro-cap p{
    font-size:unset;
  } 
}
@media (min-width: 768px) {
  .item-sub h2 {
    font-size: 1.3rem;
  }
  .item-sub p {
    font-size: 1rem;
  }
  .slideshow {
    top: 0;
  }
  .menu {
    margin-top: 130px;
  }
}
@media (min-width: 1025px) {
	.container-over{
		width:min(90%);
	}
  .tit-image2 {
    width: 1200px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px
  }
  .tit-image2 img {
    width: 100%
  }
  .nav-logo img {
    display: none;
  }
  .navtext-container {
    display: none;
  }
  .header {
    display: none;
  }
}
.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
  opacity: 1;
  transform: scale(1.2);
}
.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 3;
}
.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 2;
}
.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 1;
}
.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 0;
}
@-webkit-keyframes kenburns-1 {

}
@keyframes kenburns-1 {
	0%{
		opasity:1;
		left:0;
	}
	20%{opacity:1}
	25%{
		opacity:0;
		left:-10%;
	}
	95%{
		opacity:0;
		left:1.66666666666%;
	}
	100%{opacity:1;
	left:0;}
}
@-webkit-keyframes kenburns-2 {

}
@keyframes kenburns-2 {
	20%{left:0;}
	45%{opacity:1;}
	50%{
		opacity:0;
		left:-10%;
	}
	100%{opacity:0;}
}
@-webkit-keyframes kenburns-3 {

}
@keyframes kenburns-3 {
	45%{left:0;}
	70%{opacity:1;}
	75%{
		opacity:0;
		left:-10%;
	}
	100%{opacity:0;}
}
@-webkit-keyframes kenburns-4 {

}
@keyframes kenburns-4 {
	70%{left:0;}
	95%{opacity:1;}
	100%{
		opacity:0;
		left:-10%;
	}
}
h1 {
  position: absolute;
  top: 40%;
  left: 20%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
  text-align: center;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.5);
  padding: 1em 2em;
  line-height: 1.5;
}
h1 small {
  display: block;
  text-transform: lowercase;
  font-size: 0.7em;
}
h1 small:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 0.5em;
}
h1 small:last-child {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 0.5em;
}
.biz-hour {
	border-collapse: collapse;
	width:100%;
}
.biz-hour th {
  border-top: 1px solid #A28C63;
  background: #29537b;
  color: #fff;
}
.biz-hour th, .biz-hour td {
  padding:1rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid #A28C63;
}
.copyright-box {
  background: #8cd86b;
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px 0;
}
.copyright {
  width: min(92%, 1200px);
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  color: #29537b;
}
.copyright img {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}
/* 「土」の文字色 */
.biz-hour th.sat {
  color: #3db2da;
}
/* 「日」の文字色 */
.biz-hour th.sun {
  color: #e66a6a;
}
section.logo img {
  width: min(70%,500px);
  margin: 1em;
}
#nav-sub {
  display: none;
}
.tel-button {
  display: block;
  position: relative;
  line-height: 1.1;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8rem;
  border-radius: 10px;
  width: 90%;
  font-weight: bold;
  background-color: #29537b;
  text-align: center;
  padding-bottom: 20px;
  margin:2rem auto;
}
.tel-button span {
  font-size: 2rem;
	color:#ffffff;
}
.recruit-tel-button {
  display: block;
  position: relative;
  line-height: 1.1;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8rem;
  border-radius: 10px;
  width: 90%;
  font-weight: bold;
  background-color: #29537b;
  text-align: center;
  padding-bottom: 20px;
  margin:2rem auto;
}
.recruit-tel-button span {
  font-size: 2rem;
	color:#ffffff;
}
.logo2 {
  display: none;
}
.header-box-sub {
  display: none;
}
.tel-no {
  display: block;
}
.tel-icom {
  font-size: 1.5rem;
}
.header-img {
  display: none;
}
.header-img2 {
  display: none;
}
.time-box{
	display:block;
	position:relative;
	z-index:5;
	background:#fff;
	width:100%;
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .logo{
    display:none;
  }
  .header{
    display:flex;
  }
  .hanen{
    display:none;
  }
  .time-box {
    width: 90%;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.5);
    padding: 2.5em 2em;
    line-height: 1.5;
    border-radius: 10px;
    margin:auto;
  }
  .tel-button {
    display: flex;
    line-height: 1;
    font-size: 18px;
    width: 620px;
    height: 69px;
    transition: 0.3s;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
  }
  .tel-button:hover {
    opacity: .7;
  }
  .tel-button span {
    font-size: 2rem;
    margin-left: 5px
  }
  .recruit-tel-button {
    display: flex;
    line-height: 1;
    font-size: 18px;
    width: 620px;
    height: 69px;
    transition: 0.3s;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
  }
  .recruit-tel-button:hover {
    opacity: .7;
  }
  .recruit-tel-button span {
    font-size: 2rem;
    margin-left: 5px
  }
  .copyright img{
    width:60%;
  }
}
@media (min-width: 1025px) {
  .sp {
    display: none;
  }
	section.logo img {
		width:min(90%,500px);
    display:block;
	}
  .biz-hour th, .biz-hour td {
    padding: .6rem 1rem;
  }
  .biz-hour th{
    background: none;
    color: #29537b;
  }
  .tel-button:hover {
    opacity: 1;
  }
  .recruit-tel-button:hover {
    opacity: 1;
  }
  .tel-box {
    width: 100%;
  }
  .tel-button {
    width: 600px;
    top: 7rem;
    left:unset;
    right:0;
    z-index:11;
    position:fixed;
    margin:1.5rem 3rem;	
  }
  .time-box {
    width: 620px;
    padding: 2.5em 1.5em;
    position:absolute;
    top: 14%;
    left: auto;
	  right:0;
	  margin-right:2.4rem;
	  transform:none;
  }
  .tel-button2 {
    position: relative;
    z-index: 6;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 10px;
    width: 100%;
    font-weight: bold;
    transition: 0.3s;
    background-color: #29537b;
    text-align: center;
    padding: 1rem;
  }
  .tel-button2 span {
    font-size: 2rem;
  }
  section.header-box-sub {
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-top: 25px;
  }
  section.logo2 {
    z-index: 4;
    position: absolute;
    width: 100%;
    background-color: #8cd86b;
  }
  section.logo2 img {
    width: 600px;
    margin: 1.5em;
  }
  .header-img {
    width: 100%;
    display: block;
  }
  .header-img2 {
    width: 100%;
    display: block;
	  position:relative;
  }
  .header-img2 img {
    width: 100%;
    display:block;
  }
	.header-img3{
		position:fixed;
		z-index:10;
	}
}
#nav {
  display:none;
}
.nav-box {
  padding-bottom: 40px;
}
.nav {
  width: min(92%, 1200px);
  margin: 1rem auto;
  position: relative;
}
.nav ul {
  z-index: 8;
  display: flex;
  list-style-type: none;
}
.nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.nav ul li a img:hover {
  opacity: .7;
}
.nav ul li a :hover {
  color: #fff
}
.nav span {
  display: block;
  font-size: 1.3rem;
  color: #29537b;
}
.nav img {
  width: 90%;
}
@media (min-width: 768px) {
	#page-nav{
		top:10vh;
	}
	.page-nav{
		top:9vh !important;
	}
  .nav span {
    font-size: .9rem;
  }
	.hanen3{
		display:none;
	}
}
@media (min-width: 1025px) {
  #nav {
    display: block;
    text-align: center;
	  background:none;
  }
  #nav-sub {
    display: block;
    z-index: 7;
    position: absolute;
    background-color: #bfffa8;
    width: 100%;
    text-align: center;
    margin-top: -7px;
  }
  #nav-box2 {
    background-color: #bfffa8;
  }
  .nav-box2 {
    background-color: #bfffa8;
    padding-bottom: 40px;
  }
  .tel-button2 {
    display: flex;
    right: 5%;
  }
  .tel-button2 .txt-yoyaku {
    font-size: 1rem;
  }
  .nav {
    gap: 80px;
  }
  .nav ul {
    z-index: 8;
    display: flex;
	align-items:flex-start;
    list-style-type: none;
  }
  .nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
  }
  .nav span {
    display: block;
    font-size: min(1.2vw,1rem);
    color: #29537b;
  }
  .nav img {
    width:40%;
  }
  .nav2 {
    padding-top: 20px;
    gap: 80px;
  }
  .nav2 ul {
    z-index: 8;
    display: flex;
    list-style-type: none;
    gap: 50px;
  }
  .nav2 ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
  }
  .nav2 ul li a img:hover {
    opacity: .7;
  }
  .nav2 ul li a :hover {
    color: #fff
  }
  .nav2 span {
    display: block;
    font-size: 1.3rem;
    color: #29537b;
  }
  .nav2 img {
    width: 90%;
  }
}
.hanen {
  position: relative;
  width: 100%;
  z-index: 5;
}
.hanen img {
  width: 100%
}
.hanen2 {
  position: absolute;
  width: 100%;
  z-index: 10;
  margin-top: -2px;
}
.hanen2 img {
  width: 100%
}
.character {
  width: 150px;
  margin-left: auto;
  margin-right: auto
}
.character img {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}
/*診療内容*********************************************/
.clearfix::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
}
.contents {
  width: 100%;
  position: relative;
}
.contents p {
  text-align: center;
  font-size: 4vw;
  color: #fff
}
@media (min-width:768px){
	.contents p {
	  font-size: 1rem;
	}
}
.bk-pink {
  background-color: #ff626c; /*←メインのピンク****************/
  width: 100%;
  height: auto;
  padding: 4rem 0;
}
.bk-pink-box {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px
}
.bk-pink-jikan{
	font-size:1rem;
  line-height:150%;
	text-align:center;
	color:#fff;
	margin:0 0 20px 0;
}
.bk-title-box {
  width: 90%;
  z-index: 13;
  text-align: center;
}
.box-Container {
  width: 100%;
}
.bk-contents img {
  width: 200px;
  z-index: 14;
  padding-bottom: 20px;
}
.bk-illust img {
  display: none;
}
.boxContainer-p {
  color: #E1606A;
  font-weight: bold;
  border: 5px solid #fff;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 10px;
}
.boxContainer .box1 , .boxContainer2 .box2{
	margin-bottom:20px;
	text-align:center;
}
.boxContainer-v {
  margin-top: 60px
}
.boxContainer-vr {
  margin-top: 60px;
  padding-bottom: 50px;
}
.box1 img {
  width: 100%;
  border-radius: 10px;
}
.box2 img {
  width: 100%;
  border-radius: 10px;
}
.boxContainer{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
	.hanen{
	  top:0;
	}
  .bk-pink {
    margin-bottom: 200px;
    padding-top: 20px;
	  height:675px;
  }
  .bk-pink-box {
    width: 1200px;
  }
  .bk-title-box {
    width: 1200px;
  }
	.bk-pink-jikan{
		position:absolute;
		left:50%;
		bottom:0;
	    font-size: clamp(1.3rem,2vw,1.8rem);
		line-height: 140%;
		text-align:left;
		transform:translate(-50%);
	}
  .box-Container {
    width: 920px;
		display:block;
	  margin:0 0 0 250px;
  }
  .boxContainer, .boxContainer2  {
    width:650px;
    gap: 20px 35px;
    display: flex;
    flex-wrap:wrap;
    float: left;
    margin:0 0 20px 40px;
  }
  .boxContainer2 {
    margin:0 100px 10px 40px;
  }
  .bk-title-box {
    width: 1200px;
    text-align: left;
  }
  .bk-contents img {
    width: 250px;
    z-index: 14;
    position: absolute;
    margin-top: 50px
  }
  .box1 img {
    width: 160px;
  }
  .box2 img {
    width: 160px;
  }
  .bk-illust img {
    display: block;
    width: 320px;
    float:right;
    margin-top:-300px;
  }
}
@media (min-width: 768px) {
  .boxContainer-v {
    display: none;
  }
  .boxContainer-vr {
    display: block;
  }
}
/*特徴*********************************************/
.tit-catch-box {
  margin-bottom: 30px
}
.tit-ellipse-img {
  width: 100px;
  margin-bottom: 10px;
  margin-top: 10px
}
h2.tit-catch {
  font-size: 4.4vmin;
  color: #29537b;
  line-height: 1.5em;
  text-align: center
}
.tit-catch-box p {
  font-size: 0.8rem;
  line-height: 1.5em;
  text-align: center
}
@media (min-width: 1025px) {
  .tit-catch-box {
    margin-bottom: 100px;
  }
  h2.tit-catch {
    font-size: 2rem;
    line-height: 1.8em;
  }
  .tit-catch-box p {
    font-size: 1rem;
    line-height: 1.8em;
  }
}
.tit-tokutyo-box {
  width: 100%;
}
.tit-tokutyo-img {
  width: 100px;
  margin:0 auto;
}
.tit-tokutyo-img img {
  width: 100px
}
h2.tit-tokutyo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.5vmin;
  color: #29537b;
  text-align: center;
  line-height: 1.5em;
}
/*特徴*********************************************/
.flex_test-box-index {
 /* display: grid;*/
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  margin-top: 20px;
}
.flex_test-item-index{
	margin:0 0 4rem 0;
}
.flex_test-item-index img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
.flex_test-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 15px;
}
.flex_test-box2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
.flex_test-item h2 {
  margin: 10px 0;
}
.flex_test-item p {
	font-size: 0.8rem;
  line-height: 1.5em;
}
.flex_test-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
.flex_test-tit {
  width: 100%;
  color: #29537b;
}
.flex_test-tit h3 {
  text-align: center;
  font-size: 1rem;
  margin: 0.5rem 0;
  font-weight: bold;
  line-height: 1.8em;
}
.flex_test-tit p {
  font-size: 0.9rem;
  line-height: 1.5em
}
.kids{
	border-radius: 5px;
	margin: 10px 0 0 0;
	border:2px solid #ff626c;
}
.kids span{
	display:block;
	text-align:center;
    background: #ff626c;
    color: #fff;
}
@media (min-width: 1025px) {
  .flex_test-box-index {
	display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 50px;
    margin-top: 20px;
  }
  .flex_test-item p {
	font-size: 1rem;
    line-height: 1.8em;
  }
  .flex_test-item-index img {
    aspect-ratio: 1 / 1.5;
  }
  .flex_test-box {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 50px;
  }
  .flex_test-box2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 50px;
  }
  .flex_test-tit h3 {
    text-align: center;
    font-size: 1.4vw;
    margin: 1rem 0;
    font-weight: bold
  }
  .flex_test-tit p {
    font-size: 1rem;
    line-height: 1.8em
  }
  h2.tit-tokutyo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #29537b;
  }
  h2 img {
    width: 8vmin;
  }
}
/*Calendar*********************************************/
.calendar {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  margin-top: 80px;
}
.calendar-box {
	width: 100%;
	margin:0 auto 80px auto;
  line-height:normal;
}
.JpnHoliday{
  pointer-events:none;
}
@media (min-width: 1025px) {
  .calendar {
    margin-bottom: 100px;
    margin-top: 150px;
  }
	.calendar-wrap{
		display:flex;
	}
	.calendar-box{
		width:98%;
		margin:0 2%;
	}
}
/*popper----------------*/
.popper,
.tooltip {
  position: absolute;
  z-index: 9999;
  background: #fff;
  color: black;
  width: 150px;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
  padding: 10px;
  text-align: center;
}
.style5 .tooltip {
  background: #1E252B;
  color: #FFFFFF;
  max-width: 200px;
  width: auto;
  font-size: .8rem;
  padding: .5em 1em;
}
.popper .popper__arrow,
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
}

.tooltip .tooltip-arrow,
.popper .popper__arrow {
  border-color: #FFC107;
}
.style5 .tooltip .tooltip-arrow {
  border-color: #1E252B;
}
.popper[x-placement^="top"],
.tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}
.popper[x-placement^="top"] .popper__arrow,
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.popper[x-placement^="bottom"],
.tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow,
.popper[x-placement^="bottom"] .popper__arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="right"],
.popper[x-placement^="right"] {
  margin-left: 5px;
}
.popper[x-placement^="right"] .popper__arrow,
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.popper[x-placement^="left"],
.tooltip[x-placement^="left"] {
  margin-right: 5px;
}
.popper[x-placement^="left"] .popper__arrow,
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
/*診察案内*********************************************/

.imgtext-shinsatsu-1col {
  background-color: #ffffff;
  display: block;
  padding:5rem 0;
}
.imgtext-shinsatsu-1col:nth-of-type(n+3){
  padding-bottom:0;
}
.imgtext-shinsatsu-1col-group{
  margin-bottom:0;
}
.shinsatsu-img-1col , .shinsatsu-img-2col{
  width:90%;
  margin:0 auto;
  text-align:center;
}
.shinsatsu-img-1col img , .shinsatsu-img-2col img {
  width: 90%;
}
.bg-h3-1col{
	text-align: center;
	/*background-image: url("../img/medical-information/shinryo-sub.png");*/
	background-position: center top;
	background-size: 50px;
	width: 100%;
	padding:1rem;
	font-size: 1rem;
}
.bg-h3-1col h3{
	line-height:130%;
  background:linear-gradient(-20deg, #fff,#bcff9f);
  border-right:2px solid #0b0;
  border-bottom:2px solid #0b0;
  border-radius:100vh;
  padding:1rem;
}
.medical-other0{
  width:100%;
}
.medical-other0 > .bg-h3-1col{
  padding:0;
}
.bg-h3-1col h3.medical-other{
  text-align: center;
  background: #ff626c;
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 0;
}
.medical-info-uniqueleft{
  margin:1rem 0;
  text-align:left;
}
.medical-info-unique-img{
  margin:2rem 0;
}
.medical-info-unique-img img{
  width:100%;
}
.metal-free , .metal-free th , .metal-free td{
  width:100%;
  border:1px solid #000;
  border-collapse:collapse;
}
.metal-free{
  font-size:0.8rem;
  width:min(100%,1200px);
  display:block;
  overflow:auto;
  white-space:nowrap;
  margin-bottom:8rem;
}
.metal-free th , .metal-free td{
  width:auto;
  padding:.5rem;
}
.metal-free th{
  background:#29537b;
  color:#fff;
}
.metal-free tr th:nth-of-type(2){
  width:24%;
}
.metal-free tr th:nth-of-type(6){
  width:15%;
}
.metal-free tr th:nth-of-type(7){
  width:30%;
}
.metal-free tr:nth-of-type(2n+1){
  background:#bcff9f;
}
.metal-free td:nth-of-type(3) , .metal-free td:nth-of-type(4) , .metal-free td:nth-of-type(5){
  text-align:center;
}
.metal-free ul{
  margin-left:1em;
}
@media (min-width:768px){
  .metal-free{
    white-space:unset;
  }
  .bg-h3-1col h3{
    border-left: 10px solid #8cd86b;
    border-radius: unset;
    border-bottom: unset;
    border-right:unset;
    background: linear-gradient(45deg,#fff,#bcff9f);
  }
}


@media (min-width: 1025px) {
	.bg-h3-1col{
		font-size: 1.3rem;
		background-size: 80px;
	}
	.mt40{
		margin-top: 40px;
	}
  .shinsatsu-img-1col{
    text-align:left;
  }
	.shinsatsu-img-2col{
    text-align:right;
		order:2;	
	}
  .shinsatsu-img-1col img, .shinsatsu-img-2col img {
    width: 80%;
  }
}


.imgtext-shinsatsu-3col {
  padding: clamp(20px, 9vw, 120px) 0;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 20px;

}
.imgtext-shinsatsu-3col h3{
	font-size: 1rem;
	line-height: 1.5rem;
}
.mt40{
	margin-top: 20px;
}

.bg-h3{
	text-align: center;
	background-image: url("../img/medical-information/shinryo-sub.png");
	background-position: center top;
	background-size: 50px;
	width: 100%;
	padding: 20px 0;
}
@media (min-width: 1025px) {
  .imgtext-shinsatsu-3col h3{
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin-left: 20px;
  }
  .bg-h3{
    background-size: 80px;
      background-position: 80px top;
  }
}
.ft-l{
	text-align: left;
}
.imgtext-shinsatsu-3col p{
	font-size: 0.8rem;
	line-height: 1.5em;
	
}
.shinsatsu-container-3col {
  display: block;
  flex-direction: row;
  gap: 10px;
}
.shinsatsu-img-3col img {
  width: 100%;
}
.text-shinsatsu-3col {
  font-size: 0.8rem;
  line-height: 1.8em;
}
.shinsatsu-container-3col > .text {
  flex: 1;
  min-width: 15em;
}
.imgtext-shinsatsu {
  padding: clamp(20px, 9vw, 120px) 0;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 20px;
	align-items:start;
}
.imgtext-shinsatsu-group{
  padding: clamp(20px, 9vw, 120px) 0;
  background-color: #ffffff;
  display: grid;
/*  grid-template-columns: repeat(2, 1fr);*/
  gap: 50px 20px;
	align-items:start;
  margin-top:0;
  margin-bottom:0;
  padding-bottom:5rem;
}
.imgtext-shinsatsu-group3{
  margin-bottom:0;
  padding-bottom:2rem;
} 
.imgtext-shinsatsu h3{
	font-size: 1.3rem;
	margin-bottom: 10px;
	line-height: 1.5rem;

}
.imgtext-shinsatsu p{
	font-size: 0.8rem;
	line-height: 1.5em;
	
}
.imgtext-shinsatsu + .imgtext-shinsatsu {
  padding-top: 0;
}
.shinsatsu-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shinsatsu-container2{
  margin:3rem 0;
}
.shinsatsu-img{
  width: 60%;
  margin:0 auto;
}
.shinsatsu-img img {
  width: 100%;
}
.text-shinsatsu {
  font-size: 0.8rem;
  line-height: 1.8em;
}
.text-shinsatsu-border{
  color:#ff626c;
  border:2px solid #ff626c;
  border-radius:5px;
  padding:0.5rem;
}
.texttext-shinsatsu h4{
 font-size:1rem;
 line-height:180%;
 border-left: 10px solid #8cd86b;
 padding: 0.5rem 1rem;
 margin-bottom: 1rem;
}
.shinsatsu-container > .text {
  flex: 1;
  min-width: 15em;
}
.shinsatsu-container.reverse {
  flex-direction:column-reverse;
}
.ft-ss{
	display: block;
	font-size: 0.8rem;
}
 
@media (min-width: 768px) {
  h2.tit-tokutyo{
    font-size:4vmin;
  }
  .shinsatsu-container {
    flex-direction: row;
    align-items: start;
    gap: 50px 15px;
  }	
  .shinsatsu-img{
    width:30%;
    margin-right:2rem;
  }
  .texttext-shinsatsu h4 {
    font-size:1.2rem;
  }
  .imgtext-shinsatsu-1col{
    display:flex;
    margin:4rem auto;
    align-items:center;
  }
  .imgtext-shinsatsu-1col-group{
    margin-bottom:0;
  }
  .imgtext-shinsatsu h3{
    font-size: 1.5rem;
  }
  .imgtext-shinsatsu p{
    font-size: 1rem;
    
  }
  .shinsatsu-container > .img {
    flex: 2;
  }
  .text-shinsatsu {
    font-size: 1rem;
  }
  .shinsatsu-container.reverse {
    flex-direction: row-reverse;
  }
  .shinsatsu-img img {
    aspect-ratio: 1 / 1;
    width: 100%;
  }
  .imgtext-shinsatsu-3col {
    gap: 50px 50px;
  }
  .imgtext-shinsatsu-3col p{
    font-size: 1rem;
    line-height: 1.5em;
  }
  .medical-info-unique-img{
    margin:0 auto;
  }
  .texttext-shinsatsu{
    width:120%;
  }
}


@media (min-width: 1025px) {
	.imgtext-shinsatsu-1col{
		justify-content: center;
		align-items: start;
    margin:8rem 0;
	}	
  .imgtext-shinsatsu-1col h3{
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-align: left;
  }
  .imgtext-shinsatsu {
    background-color: #ffffff;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 50px;
  }
  .imgtext-shinsatsu-1col-group {
    margin-bottom: 0;
  }
  .shinsatsu-container > .text-sinsatsu {
    min-width: 10em;
  }
  .tit-sub-shinsatsu {
    font-size: 1.8rem;
  }
  h2.tit-tokutyo-shinsatsu {
  font-size: 1.8rem;
  }
  .imgtext-shinsatsu h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .imgtext-shinsatsu p{
    font-size: 1rem;
  }
  .imgtext-shinsatsu-3col {
    padding: clamp(20px, 9vw, 50px) 0;
    background-color: #ffffff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;

  }
  .imgtext-shinsatsu-3col h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.8rem;

  }
  .imgtext-shinsatsu-3col p{
    font-size: 1rem;
    line-height: 1.8em;
    
  }
  .shinsatsu-container-3col {
    display: block;
    flex-direction: row;
    gap: 0px;
  }
  .text-shinsatsu-3col {
    font-size: 1rem;
    line-height: 1.8em;
  }
  .imgtext-shinsatsu-group{
    width:100%;
    grid-template-columns: repeat(2, 1fr);
    padding-top:4rem;
  }
  .imgtext-shinsatsu-group2{
    grid-template-columns:none;
  }
  .imgtext-shinsatsu-group2 div figure{
    width:35%;
  }
  .shinsatsu-img{
    width:100%;
  }
  .medical-info-unique-img{
    margin:0 auto;
  }
}



/*スタッフ紹介*********************************************/
.staff-box p{
	line-height: 1.8em;
	font-size: 0.8rem;
}
.staff-box-cont{
	margin-bottom: 50px;
}
h2.h2_title_01 {
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #29537b;
	background-color: #F9F9F9;
	padding: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DDD;
	margin-bottom: 20px;

}
img.img_left {
	background-color: #ffffff;
	padding: 10px;
	display: block;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
img.img_right {
	background-color: #ffffff;
	padding: 10px;
	display: block;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	
	
img.img_left {
	padding: 10px;
	float: left;
	display: block;
	margin-right: 20px;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 20%;
}
img.img_right {
	padding: 10px;
	float: right;
	display: block;
	margin-left: 20px;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 20%;

}
	
	
	
.staff-box p{
	line-height: 1.8em;
	font-size: 1rem;
}
.staff-box-cont{
	margin-bottom: 80px;
}

}


/*アクセス*********************************************/

.access{
	display: block;
	justify-content: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
margin-bottom: 50px;
}
.access-map{
	margin-bottom: 50px;
}
.access p{
	line-height: 1.8em;
	font-size: 0.8rem;
	margin-bottom: 30px;
}
.access-01{
	width: 100%;
}
.access-01 h3 {
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 100vh;
  background-color: #29537b;
		font-size: 1rem;
	padding-left: 10px;
	text-align: center;
	margin-bottom: 10px;

}
.access-01 h3 span {
	padding-left: 10px;
}


.access-02{
	width: 100%;
}
.access-02 h3 {
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 100vh;
  background-color: #8cd86b;
	font-size: 1rem;
	padding-left: 10px;
		text-align: center;
	margin-bottom: 10px;
}

.access-02 h3 span {
	padding-left: 10px;
}
@media (min-width: 768px) {
	.access-map{
	margin-bottom: 80px;
}

.access p{
	line-height: 1.8em;
	font-size: 1rem;
}
.access-01 h3 {
	font-size: 1.5rem;
	padding-left: 10px;
	margin-bottom: 20px;
}


.access-02 h3 {
	font-size: 1.5rem;
	padding-left: 10px;
	margin-bottom: 20px;
}

	
	
}



@media (min-width: 1025px) {
  .access{
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
  }
  .access p{
    line-height: 1.8em;
    font-size: 1rem;
  }
  .access-01 h3 {
    font-size: 1.5rem;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  .access-02 h3 {
    font-size: 1.5rem;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
/*footer*********************************************/
#footer06 {
  position: relative;
  background-image: url("../img/footer-bg.png");
  background-repeat: no-repeat;
  z-index: 99;
  background-size:cover;
	background-position:50% 80%;
  width: 100%;
}
#footer06 .info .address {
  margin: 0;
  border-left: 1px solid #fff;
  color: #ccc;
}
#footer06 .map{
  aspect-ratio:1/1;
}
.footer2{
	top:0;
}
.info {
  display: grid;
  margin-bottom: 20px;
	padding:10px 0 0 0;
}
.tel-address {
  width: 100%;
  color: #fff;
  display: block;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  padding: 5px;
  line-height: 1.5em
}
.tel-address > div {
  width: 100%;
  padding: 0px;
}
.tel-address img {
  width: 100%
}
.sinryou{
	display:none;
}
.biz-hour-footer {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  background:#fff;
}
.biz-hour-footer th, .biz-hour-footer td {
  padding: 0.5rem 0;
  text-align: center;
  border: 1px solid #bbb;
}
.biz-hour-footer th {
  font-weight: normal;
}
/* 「土」の文字色 */
.biz-hour-footer th.sat {
  color: #3db2da;
}
/* 「日」の文字色 */
.biz-hour-footer th.sun {
  color: #e66a6a;
}
@media (min-width :768px) {
	.footer2{
		top:20vh;
	}
  .tel-address {
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1.5em
  }
  .tel-address-sp {
    margin-right: 10px;
  }
  .biz-hour-footer th, .biz-hour-footer td {
    padding: 2rem 1rem;
  }
  .info-r {
    padding-top: 20px;
  }
}
@media (min-width :1025px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  #footer06 .cont-wrap {
    padding: 40px 0;
  }
  #footer06 .info .address {
    margin: 20px 0;
    padding-left: 20px;
  }
  #footer06 .cont-wrap .map {
    height: 450px;
  }
  #footer06 .cont-wrap .map iframe {
    min-height: 100%;
  }
  .info {
    display: grid;
    padding-top: 100px;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: 50px;
  }
  .info > .info-r {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .info-l {
    width: 100%;
  }
  .info-r {
    width: 500px;
    height: 425px;
    padding-top: 48px;
  }
  .tel-address {
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 5px;
  }
  .tel-address > div {
    width: 50%;
    padding: 0px;
  }
  .tel-address img {
    width: 90%
  }
  .sinryou {
	  display:block;
    width: 100%;
    padding: 0.5rem 0rem;
    border-bottom: 1px solid #fff;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    letter-spacing: 1rem;
    margin-bottom: 20px
  }
  table {
    width: 100%;
  }
  table th {
    width: 100%;
  }
  .biz-hour-footer {
    width: 100%;
    margin-top: 20px;
    display: block;
    border-collapse: collapse;
    background:#fff;
  }
  .biz-hour-footer th, .biz-hour-footer td {
    padding: 22.5px;
    text-align: center;
    border: 1px solid #bbb;
  }
  .info {
    display: grid;
    margin-bottom: 0;
  }
  .copyright-box {
    background: #8cd86b;
    width: 100%;
    float: left;
    padding: 2rem 0;
  }
  .copyright {
    display: flex;
  }
  .copyright img {
    width: 50%;
  }
}