@charset "utf-8";

/* Base layout */
:root {
  --color-primary: #0066cc;
  --color-primary-dark: #004b99;
  --color-accent: #e53935;
  --color-bg: #ffffff;
  --color-surface: #f7f7fa;
  --color-text: #222222;
  --color-muted: #666666;
  --header-height: 64px;
  --max-width: 1080px;
  --radius-md: 8px;
  --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.08);
  --basecolor:#06b2b2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: #f3f4f6;
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p{
	margin:0
}

@media(min-width:961px){
	.sponly{
	  display:none !important;
	}
  }
@media(max-width:960px){
  .pconly{
    display:none !important;
  }
}
@media(min-width:561px){
	.show_sp{display: none !important;}
 }
 @media(min-width:961px){
	.show_sptb{display: none !important;}
 }
 @media(max-width:560px){
	.show_tbpc{display: none !important;}
 }
 @media(max-width:960px){
	.show_pc{display: none !important;}
 }
@media(max-width:768px){
	.none_tb{display: none !important;}
}
@media(min-width:768px){
	.show_tb{display: none !important;}
}

main {
  display: block;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding: 1.5rem 1rem 2.5rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}


/*spmenu*/
#g-nav.panelactive{
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

.circle-bg{
    position: fixed;
    z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    right:-50px;
    top:-50px;
    transition: all .6s;
    z-index: 99;
}

.circle-bg.circleactive{
	transform: scale(50);
}

#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block;
}

#g-nav ul {
	opacity: 0;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	padding:0;
  display: flex;
  flex-wrap: wrap;
  width: 85%;
}

#g-nav.panelactive ul {
    opacity:1;
}

#g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;
	animation-fill-mode:forwards;
	opacity:0;
	background-image: repeating-linear-gradient(90deg, var(--basecolor), var(--basecolor) 7px, transparent 7px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 1px;
  margin: 0 10px;
}
@keyframes gnaviAnime{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	  margin: 0 10px;
}
#g-nav.panelactive ul.nav_sp li{
	display:block;
	width: 44%;
	margin: 0 3%;
}
#g-nav .nav_sp li a{
	padding: 10px 0;
	margin:0;
}

.openbtn{
	position:fixed;
	top: 2px;
	right: 10px;
	z-index: 9999;
	cursor: pointer;
	width: 60px;
	height:50px;
}
	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--basecolor);
    width: 60%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn p{
	position:absolute;
	bottom: -4px;
	right:11px;
	font-weight:normal;
	color:var(--basecolor);
	font-size: 13px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

.sp_logo {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80%;
}



/* Header & navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0.5rem 1rem 0.2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 30%;
}
.brand_chara{
  width: 20%;
}
.brand__title {
  font-size: 1rem;
  font-weight: 700;
	padding-left:3px;
}

.brand__subtitle {
  font-size: 0.5rem;
}
.brand__subtitle img{
	display:inline-block;
	vertical-align:bottom;
}
.brand__subtitle > img{
	width:85%;
	margin: 3px 4px 0;
}
.brand__subtitle a img{
	margin:6px 0;
}
.brand__subtitle a{
  display: inline-block;
  margin: 1px 0 0 0;
}

.brand__phone {
  margin-top: 0.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.header_wrap{
  border-bottom:3px solid #06b2b2;
  margin: 0 0 8px 0;
}

.nav-toggle {
  border: none;
  background: transparent;
  padding: 0.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.nav-toggle__icon {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
}

.nav-toggle__label {
  position: absolute;
  left: -9999px;
}

.site-nav {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-list {
  list-style: none;
  padding: 0.5rem 1rem 0.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-item a {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.nav-item a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.nav-item--current a {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary-dark);
  font-weight: 600;
}

@media (min-width: 768px) {

  .header-inner {
    padding-inline: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-header {
    border-bottom: none;
  }

  .header-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(249, 250, 251, 0.96);
  }

  .site-nav {
    border-top: none;
  }

  .nav-list {
    max-width: var(--max-width);
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.4rem 1.5rem 0.6rem;
  }

  .nav-item a {
    font-size: 0.9rem;
  }
}
@media(max-width:768px){
  .brand{
    width: 50%;
  }
  .brand_chara{
    width: 40%;
    margin: 0 0 0 15px;
  }
  .header-inner{
    justify-content: unset;
  }
}
@media(max-width:560px){
  .header-inner{
    flex-wrap: wrap;
	position:relative
  }
  .brand{
    width: 73%;
  }
  .brand_chara{
	width: 100%;
	/* margin: 10px auto 0; */
	text-align: center;
  }
	.brand_chara img{
		height:40px;
		position:absolute;
		right:19px;
		bottom:-5px
	}
	.brand__title{
		margin:0px 0 2px 0;
		font-size:90%;
	}

}
.site-nav[hidden] {
  display: none;
}

/* Hero / top page */

.hero {
  background: radial-gradient(circle at top left, #e0f2fe, #ffffff);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: 1.4rem;
  line-height: 1.35;
  margin: 0 0 0.6rem;
}

.hero__subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary-dark);
  text-decoration: none;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  border-color: rgba(148, 163, 184, 0.7);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #ffffff;
  text-decoration: none;
}

.hero__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .hero {
    padding: 2rem 2rem 1.8rem;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }
}

/* Layout blocks */

.layout-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .layout-grid--two-column {
    grid-template-columns: 2fr 1.5fr;
    align-items: flex-start;
  }
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.card + .card {
  margin-top: 0;
}

.card__title {
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
}

.card__subtitle {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.card__section-title {
  font-size: 0.95rem;
  margin: 1rem 0 0.3rem;
  font-weight: 600;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

.meta-list li + li {
  margin-top: 0.15rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #e0f2fe;
  color: #0f172a;
}
.badge.blue{
  background: #e0f2fe;
  color: #0f172a;
}
.badge.green{
  background: #e3fee0;
  color: #122a0f;
}
.badge--accent,
.badge.red
{
  background: #fee2e2;
  /* color: #b91c1c; */
}

.text-small {
  font-size: 0.85rem;
}

.text-muted {
  color: var(--color-muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.pill {
  border-radius: 999px;
  background: #e5e7eb;
  padding: 0.15rem 0.6rem;
  font-size: 0.78rem;
  color: #374151;
}

/* Content typography */

h1,
h2,
h3 {
  line-height: 1.4;
}

h3{
	margin:1.8em 0 0.6em 0;
	  font-size: 1.1rem;
	color:#333;
}
h3:first-child{
	margin-top:0;
}

h1.page_title{
	margin:0 0 1em 0;
	font-size:162%;
	background:#06b2b2;
	color:#fff;
	font-weight:normal;
	border-radius :7px;
	padding:10px 15px;
}

.content h1 {
  font-size: 1.4rem;
  /* margin: 0 0 0.75rem; */
}

.content h2 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem;
  color:#005d5d;
  background: #cdf3e5;
  padding: 0.25em 0.4em;
  border-radius:5px
}

.content p {
  margin: 0 0 0.7rem;
}

.content ul,
.content ol {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0.8rem;
}

.content li + li {
  margin-top: 0.2rem;
}

.content strong {
  font-weight: 600;
}

.callout {
  border-radius: 0.75rem;
  background: var(--color-surface);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.9rem 1rem 0.2rem;
  font-size: 0.9rem;
}

.callout--accent {
  border-color: rgba(248, 113, 113, 0.9);
  background: #fef2f2;
}

.callout__title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.callout p {
  margin-top: 0.35rem;
display:inline-block;
	margin-right:1em
}

/* Definition-like lists */

.info-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0.8rem;
  font-size: 0.9rem;
}

.info-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.info-list__label {
  min-width: 5rem;
  font-weight: 600;
}

.info-list__item + .info-list__item {
  margin-top: 0.2rem;
}

/* Simple responsive table forÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â¼ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â¨Ãƒâ€šÃ‚ÂºÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â© */

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

th,
td {
  padding: 0.35rem 0.4rem;
  border: 1px solid #e5e7eb;
  text-align: center;
}

thead {
  background: #f3f4f6;
}

.is-closed,td.red {
  background: #fee2e2;
}

.is-emergency,td.blue {
  background: #e0f2fe;
}

td.green {
  background: #e5ffe0;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #ffffff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1rem 1.4rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact {
  font-weight: 600;
  color: var(--color-text);
}

@media (min-width: 640px) {
  .footer-inner {
    padding-inline: 1.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

#map_canvas{
 height:400px; 
}
#map_canvas.map_top{
	height: 400px;
}
.treatment_img{
	display:flex;
	justify-content:space-between
}
.treatment_img img{
	width:auto;
	height:200px;
}

@media(max-width:768px){
	.treatment_img{
		flex-wrap:wrap
	}
	.treatment_img img{
		width:auto;

	}
}

/*==================================================
ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â£ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â©ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€¦Ã‚Â¸ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â®css
===================================*/
.content .gallery{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin:20px auto ;
	padding:0;
}

.gallery li {
    /* margin-bottom: 20px; *//*ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚ÂÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¥Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â«ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â½ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â½ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â¤ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹*/
    list-style:none;
}

/*ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â£ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â©ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â¯ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â¨Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦100%ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â«ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¥Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â«ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â§ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚ÂÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â½ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â½ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°Ãƒâ€¦Ã‚Â ÃƒÆ’Ã‚Â©ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â¤*/}

/*ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â¨Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦900pxÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â»Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â®Ãƒâ€šÃ‚ÂµÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚ÂµÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã‚Â£Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â¿ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â¨Ãƒâ€šÃ‚Â­ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â®Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬*/
@media only screen and (max-width: 900px) {
	.gallery{
	columns:3;
	}	
}

@media only screen and (max-width: 768px) {
	.content .gallery{
		grid-template-columns: repeat(2, 1fr);
	}	
}

/*Ã£ÂÅ Ã¥â€¢ÂÃ£Ââ€žÃ¥ÂË†Ã£â€šÂÃ£Ââ€º*/
.contact_wrap .contact1{
  max-width: 800px;
  margin: 0 auto;
}
.co_table{
	display:flex
}
.co_table dt{
	width:25%;
}
.co_table dd{
	width:73%;
	margin:0 0% 0 2%;

}
.co_table dd small{
	display:inline-block;
	line-height:1.3;
	margin:5px;
}

.co_table em{
	color: red;
	font-size: 10px;
	font-weight: bold;
}
.co_table dt span{
	position: relative;	
	margin-left: 0px;
}
.co_table dt span::before{
	content: "■";
	font-size:50%;
	vertical-align:0.3em;
	letter-spacing:5px;
}
input,
textarea {
	width: 100%;
	border-top: none;
	border-right: none;
	border-left: none;
	height: 40px;
	border: #333 solid 1px;
	background-color: ;
	border-radius: 0px;
}
input[type=text], input[type=radio], select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
input[type=text], input[type=radio], textarea{
	width: 100%;
	border-top:none;
	border-right:none;
	border-left: none;
	height: 50px;
	border: #333 solid 1px;
	background-color: #fff;
	padding: 0.5em;
}
input[type="radio"]{
	width: fit-content;
}
input[type="checkbox"]{
	transform: scale(1.6);
	margin-right:8px;
}
textarea {
	height:100px;
}

.submit_tac{
	text-align: center;
}
input[type="submit"],
a.back {
	width: auto;
	height: auto;
	text-align: center;
	border: 0px solid;
	padding: 10px 20px;
	color: #fff;
	background: var(--basecolor);
	font-size: 16px;
	margin-top: 40px;
	min-width: 200px;
	display: inline-block;
}



.radio-wrap {
  display: flex;
  flex-wrap: wrap;
}
.radio-wrap label {
	padding-right:30px;
}

.radio-wrap label input[type="radio"] {
	opacity: 0;
	appearance: none;
	position: absolute;
}
.radio-wrap label .radio_txt {
	display: inline-block; 
	position: relative;
	padding-left: 26px;
	line-height: 1.5;

}
.radio-wrap label .radio_txt::before {
	position: absolute;
	top: 5px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #eee;
	background: #fff;
	content: "";
	border-radius: 50%;
}

.radio-wrap label .radio_txt::after {
	position: absolute;
	top: 8px;
	left: 3px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #bf0000;
	content: "";
	opacity: 0;
	transition: all 0.3s;
}
.radio-wrap label input:focus + span::before {
	box-shadow: 0 0 4px #bf0000;
}
.radio-wrap label input:checked + span::after {
	opacity: 1;
}
select {
	border-radius: 0px;
	font-size: 15px;
}

.select {
	display: inline-block;
	position: relative;
	border: 1px solid #42352d;
	vertical-align: middle;
	width:100%;

}

.select select {
	width:100%;
	appearance: none;
	padding: 11px 15px;
	padding-right: 1em;
	border: none;
	outline: 0;
	color: #42352d;
	background: #fff;
	background-image: none;
	box-shadow: none;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	cursor: pointer;
}

.select.day select {
	width: 100px;
}

.select::before {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 0;
	height: 0;
	border-width: 10px 5px 0 5px;
	border-style: solid;
	border-color: #42352d transparent transparent transparent;
	content: "";
	pointer-events: none;
}

.nigaoe_wrap{
	border:1px solid;
	width:40%;
	margin-bottom:10px;
}
.doctor_prof{
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media only screen and (max-width: 768px) {
	.co_table{
		flex-wrap:wrap
	}
	.co_table dt{
		width:100%;
	}
	.co_table dd{
		width:100%;
		margin:0 0% 0 2%;
	
	}
}

