@charset "utf-8";

:root {
    --color-black: #000;
    --color-text-black: #333;
    --color-white: #FFF;
    --color-white-gray: #F8F6F4;
    --color-main-green: #8FC31F;
    --color-dark-green: #3CAB26;
    --color-blue: #1992E3;
    --color-purple: #C78EDD;
    --color-pink: #E27B95;
    --color-link-green: #6EB721;
    --color-link-blue: #1992E3;
    --color-link-orange: #E37D19;

    --font-noto-sans-jp: 'Noto Sans JP', sans-serif;
}

/* default
=============================================== */

* {
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,body,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td {
	list-style: none;
	line-height: 1;
	border-collapse: collapse;
	border-spacing: 0;
}
html {
	min-height: 100%;
	font-size: 62.5%; /* font-size 1em = 10px on default browser settings */
	position: relative;
}
body {
	font-family: 'Yu Gothic',YuGothic,'メイリオ',Meiryo,Arial,Helvetica,Verdana,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','HiraKakuPro-W3','ＭＳ Ｐゴシック','MS PGothic',Sans-serif;
	font-weight: 400;
}
q:before,q:after {
	content:'';
}
object,embed {
	vertical-align: top;
}
img {
	max-width: 100%;
    height: auto;
	vertical-align: bottom;
    -webkit-backface-visibility: hidden;
}
img,abbr,acronym,fieldset {
	border: 0;
}




/* link
=============================================== */

a {
	color: var(--color-link-blue);
	text-decoration: underline;
	transition: .1s ease;
}
a:visited {
	color: var(--color-link-blue);
	text-decoration: none;
}
a:hover {
	color: var(--color-link-blue);
	text-decoration: none;
}
a[id]:hover {
	color: var(--color-link-blue);
}
a:active {
	color: var(--color-link-orange);
}

@media (min-width: 641px) {
a[href^="tel:"] {
    pointer-events: none;
}
}


/* base
=============================================== */

html {
	background-color: var(--color-white);
}
body {
	margin: auto;
	background-color: var(--color-white);
	color: var(--color-text-black);
}
.pc {
	display: block;
}
br.pc {
	display: inline-block;
}
.sp, br.sp {
	display: none;
}
.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.text-underline {
    text-decoration: underline !important;
}
.circle-list, .decimal-list {
	margin: 1em 0 3em 1.8em;
}
.circle-list li, .decimal-list li {
	margin: .25em 0;
	font-size: 1.6rem;
    font-weight: 500;
	line-height: 1.6;
}
.circle-list li {
	list-style: circle;
}
.decimal-list li {
	list-style: decimal;
}
.ex {
	margin: 1em 0;
}
p.ex {
	padding-left: 1em;
	text-indent: -1em;    
}
.ex li {
	margin: .25em 0;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.6rem;
    font-weight: 500;
	line-height: 1.6;
}
.margin-auto {
    margin-left: auto;
    margin-right: auto;
}
.inline-block {
    display: inline-block;
}
p {
    letter-spacing: -0.025em;
}
.sym {
    font-family: var(--font-noto-sans-jp);
}

.margin-top-25px { margin-top: 25px !important; }

.color-main-green { color: var(--color-main-green); }
.color-dark-green { color: var(--color-dark-green); }
.color-blue { color: var(--color-blue); }
.color-pink { color: var(--color-pink); }

@media (min-width: 641px) {

body {
    padding: 0 20px;
}
.max-width-600px-pc { max-width: 600px }
.max-width-1000px-pc { max-width: 1000px }
.max-width-1200px-pc { max-width: 1200px }
.circle-list, .decimal-list {
	margin: 1em 0 3em 2em;
}
.circle-list li, .decimal-list li {
	margin: .5em 0;
	font-size: 1.8rem;
	line-height: 1.6;
}
.ex li {
	font-size: 1.8rem;
}

}



/* table scroll script
=============================================== */

.table-scroll {
	margin: 15px 0;
	padding-bottom: 15px;
	overflow: auto;
	white-space: nowrap;
}
.table-scroll table {
	margin: 0;
}
.table-scroll::-webkit-scrollbar {
	height: 5px;
}
.table-scroll::-webkit-scrollbar-track {
	background-color: #EEE;
}
.table-scroll::-webkit-scrollbar-thumb {
	background-color: #3CAB26;
}

/* box
=============================================== */

.box01 {
	padding: 20px;
    border-radius: 8px;
	background-color: #FCEEDF;
}
.box02 {
	padding: 20px;
    border-radius: 8px;
	background-color: #E6EED9;
}
.box01 > p:first-child,
.box02 > p:first-child {
    margin-top: 0;
}
.box01 > p:last-child,
.box02 > p:last-child {
    margin-bottom: 0;
}
.btn-back {
    margin: 30px 0;
    text-align: center;
}
.btn-back a {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
}
.btn-back a:hover {
    transition: ease .1s;
    background-color: var(--color-link-orange);
}

@media (min-width: 641px) {

.box01,.box02 {
	padding: 30px;
}
.btn-back {
    margin: 50px 0;
}
.btn-back a {
    display: inline-block;
    padding: 25px 40px;
    font-size: 1.8rem;
}

}

/* header
=============================================== */

#global-header {
	margin: 0;
	position: relative;
}
#header-inner {
    position: relative;
	display: flex;
    flex-direction: column;
	justify-content: flex-start;
	align-items: start;
	margin: 0 auto;
	padding: 15px 15px;
}
#global-header #logo img {
	height: 40px;
}
#header-inner #header-text {
    margin-top: 8px;
}
#header-inner #header-text p {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}
#header-inner #header-text p span {
    color: var(--color-dark-green);
    font-family: var(--font-noto-sans-jp);
}

#header-tel  {
    position: absolute;
    top: 15px;
    right: 15px;
}
#header-tel ul li:nth-child(1) a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 5px;
    border-radius: 10px;
    background-color: var(--color-dark-green);
    color: #FFF;
    text-decoration: none;
}
#header-tel ul li:nth-child(1) img {
    margin-bottom: 0;
    height: 28px;
}
#header-tel ul li:nth-child(1) span {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-align: center;
}
#header-tel ul li:nth-child(2) {
    display: none;
}


@media (min-width: 641px) {
#global-header {
	margin: 0;
	position: relative;
}
#header-inner {
    position: relative;
	display: flex;
    flex-direction: row;
	justify-content: space-between;
	align-items: start;
    max-width: 1080px;
	margin: 0 auto;
	padding: 20px 0;
}
#global-header #logo img {
	height: 60px;
}
#header-inner #header-text {
    margin-top: 0;
}
#header-inner #header-text p {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}
#header-tel  {
    position: absolute;
    top: 55px;
    right: 0;
}
#header-tel ul li:nth-child(1) a {
    display: none;
}
#header-tel ul li:nth-child(2) {
    display: block;
}
#header-tel ul li:nth-child(2) span {
    width: 100%;
    padding: 3px 20px 4px;
    border-radius: 8px;
    font-family: var(--font-noto-sans-jp);
    font-size: 2.4rem;
    font-weight: 600;
    background-color: var(--color-blue);
    color: var(--color-white);

}

}

/* footer
=============================================== */

footer {
	padding: 35px 0;
	background-color: var(--color-dark-green);
}
footer dl {
    margin-bottom: 25px;
    text-align: center;
}
footer dl dt {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-white);
}
footer dl dt span {
    font-size: 2.4rem;
}
footer dl dd p {
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-white);
}
footer dl dd p:nth-child(2),
footer dl dd p:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}
footer dl dd p:nth-child(2)::before {
    content: "";
    display: inline-block;
    aspect-ratio: 1;
    height: 36px;
    background-image: url(../img/common/icon_tel_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0;
}
footer dl dd p:nth-child(2) span{
    padding-left: .5em;    
    font-size: 3.0rem;}
footer dl dd p:nth-child(3) span {
    padding-left: .5em;    
    font-size: 2.4rem;
}
#copyright {
    margin: 0;
	font-size: 1.6rem;
	text-align: center;
    color: var(--color-white);
}

@media (min-width: 641px) {

footer {
    margin: 0 -20px;
}

}

/* title text
=============================================== */

.ttl01 {
    position: relative;
    padding-top: 60px;
    margin-bottom: 1em;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: var(--color-blue);
}
.ttl01::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#news .ttl01::before {
    background-image: url(/img/home/icon_news.png);
}
#medical-guide .ttl01::before {
    background-image: url(/img/home/icon_guide.png);
}
#support .ttl01::before {
    background-image: url(/img/home/icon_support.png);
}
#access .ttl01::before {
    background-image: url(/img/home/icon_access.png);
}
.ttl02 {
    margin-bottom: 1em;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: var(--color-purple);
}
.sttl01 {
    margin-bottom: 1em;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-dark-green);
}
.sttl02 {
    margin-bottom: 1em;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
}
.sttl03 {
    margin-bottom: 1em;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-link-orange);
}
.txt16 {
    margin: 1em 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}
.txt18 {
    margin: 1em 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
}
.txt20 {
    margin: 1em 0;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.6;
}

@media (min-width: 641px) {

.ttl01 {
    padding-top: 70px;
    font-size: 4.8rem;
}
.ttl01::before {
    height: 60px;
}
.ttl02 {
    font-size: 4.8rem;
}
.sttl01 {
    font-size: 2.8rem;
}
.sttl02 {
    font-size: 2.8rem;
}
.sttl03 {
    font-size: 2.8rem;
}
.txt16 {
    margin: 1em 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
}
.txt18 {
    margin: 1em 0;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.6;
}
.txt20 {
    margin: 1em 0;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.6;
}


}


/* home
=============================================== */

#main-vis img {
    object-fit: cover;
    height: 70vw;
}
#message {
    padding: 30px;
}
#message p:nth-child(1) {
    margin-bottom: .5em;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: var(--color-blue);
}
#message p:nth-child(2) {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}
#news-wrap {
    padding: 20px;
    background-color: var(--color-white-gray);
}
#news {
    padding: 50px 20px 20px;
    border-radius: 8px;
    background-color: #FFF;
}
#news dl dt,#news dl dd {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}
#news dl .news-item {
    margin-bottom: 15px;
    padding-bottom: 14px;
    border-bottom: 1px dotted #999;
}
#medical-guide-wrap {
    padding: 20px;
    background-color: var(--color-white-gray);
}
#medical-guide {
    padding: 50px 20px 1px;
    border-radius: 8px;
    background-color: #FFF;
}
#medical-guide .section {
    margin-bottom: 50px;
}
.guide-sttl {
    margin-bottom: 25px;
    padding: 15px 15px 15px 65px;
    border-radius: 6px;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.6;
    background-color: var(--color-main-green);
    background-repeat: no-repeat;
    background-position: 10px 50%;
    background-size: auto calc(100% - .75em);
    color: #FFF;
}
.guide-sttl.guide01 {
    background-image: url(../img/home/icon_guide_s01.png);
}
.guide-sttl.guide02 {
    background-image: url(../img/home/icon_guide_s02.png);
}
.guide-sttl.guide03 {
    background-image: url(../img/home/icon_guide_s04.png);
}
.guide-items .guide-img {
    margin-bottom: 15px;
    text-align: center;
}
.guide-items .guide-img img {
    width: 50vw;
 }
.guide-items .guide-txt {
    margin-bottom: 15px;
}
.schedule-table {
    width: 100%;
    background-color: var(--color-white);
}
.schedule-table th, .schedule-table td {
	white-space: nowrap;
    border: 1px solid #FFF;
    padding: 10px 5px;
    font-family: var(--font-noto-sans-jp);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}
.schedule-table thead th {
    background-color: #8FC31F;
    color: #FFF;
}
.schedule-table tbody td span {
    padding-left: .5em;
}
.schedule-table.type01 thead th:nth-of-type(n+3),
.schedule-table.type02 thead th:nth-of-type(n+2) {
    min-width: 45px;
}
.schedule-table tbody tr:nth-of-type(1) td {
    background-color: #CBE7A3;
}
.schedule-table tbody tr:nth-of-type(2) td {
    background-color: #DAE8C6;
}
#support-wrap {
    padding: 20px;
    background-color: var(--color-white-gray);
}
#support {
    padding: 50px 20px 20px;
    border-radius: 8px;
    background-color: #FFF;
}
.obj-img {
    margin: 35px 0;
    text-align: center;
}
.obj-img img {
    object-fit: contain;
    width: 30vw;
}
#access-wrap {
    padding: 20px;
    background-color: var(--color-white-gray);
}
#access {
    padding: 50px 20px 20px;
    border-radius: 8px;
    background-color: #FFF;
}
.access-info01 {
    margin-bottom: 30px;
}
.access-info01 picture img {
    border-radius: 10px;
    object-fit: cover;
    object-position: 60% 50%;
    height: calc(50vw + 80px);
}
.access-info01 figcaption p {
    margin: 10px 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}
.public-transit-item {
    margin-bottom: 15px;
    padding-bottom: 14px;
    border-bottom: 1px dotted #999;
}
.public-transit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.public-transit-item dt {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
}
.public-transit-item dt::first-letter {
    color: var(--color-main-green);
}
.public-transit-item dd p {
    margin-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}
.public-transit-item dd p:last-child {
    margin-bottom: 0;
}
#medical-framework-wrap {
    padding: 30px 20px 20px;
    background: url(../img/common/bg_footer.png) no-repeat 50% 100%;
    background-size: min(90vw, 800px) auto;
    padding-bottom: calc((min(90vw, 800px) / 4.21) + 25px);
}
#medical-framework {
    padding: 20px 20px 20px;
    border-radius: 8px;
    background-color: var(--color-white-gray);
}
.medical-framework-list-item {
    margin-bottom: 15px;
    padding-bottom: 14px;
    border-bottom: 1px dotted #999;
}
.medical-framework-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.medical-framework-list-item dt {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
}
.medical-framework-list-item dt::first-letter {
    color: var(--color-purple);
}
.medical-framework-list-item dd ul {
    padding-left: 1.8em;
}
.medical-framework-list-item dd ul li {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    list-style: circle;
}
.public-transit-item dd ul li:last-child {
    margin-bottom: 0;
}

@media (min-width: 960px) {
.guide-items {
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.guide-items .guide-img {
    width: 400px;
    margin: 0;
}
.guide-items .guide-img img {
    width: 100%;
 }
.guide-items .guide-txt {
    margin: 0;
    padding-left: 50px;
    flex: 1;
}
.obj-items {
    margin: 35px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.obj-img {
    margin: 0;
    width: 250px;
}
.obj-img img {
    object-fit: contain;
    width: 100%;
}
.obj-txt {
    flex: 1;
    padding-left: 50px;
}

}

@media (min-width: 641px) {

#main-vis {
    max-width: 1080px;
    margin: 15px auto 0;

}

#main-vis img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    border-radius: 20px;
}
#message {
    max-width: 1080px;
    margin: 50px auto;
    padding: 0;
}
#message p:nth-child(1) {
    margin-bottom: .5em;
    font-size: 3.6rem;
    font-weight: 600;
}
#message p:nth-child(2) {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.6;
}
#news-wrap {
    padding: 50px 0;
}
#news {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px;
}
#news dl dt,#news dl dd {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
}
#news dl .news-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 14px;
    border-bottom: 1px dotted #999;
}
#news dl dt {
    padding-right: 30px;
}
#news dl dd {
    flex: 1;
}
#medical-guide-wrap {
    padding: 0 0 50px;
}
#medical-guide {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 50px 1px;
}
#medical-guide .section {
    margin-bottom: 50px;
}
.guide-sttl {
    margin-bottom: 25px;
    padding: 20px 20px 20px 90px;
    border-radius: 6px;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 1.6;
    background-color: var(--color-main-green);
    background-repeat: no-repeat;
    background-position: 20px 50%;
    background-size: auto calc(100% - .9em);
    color: #FFF;
}

.schedule-table {
    width: 100%;
    background-color: var(--color-white);
}
.schedule-table th, .schedule-table td {
    border: 2px solid #FFF;
    padding: 10px 5px;
    font-size: 1.8rem;
}

#support-wrap {
    padding: 0 0 50px;
}
#support {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px;
}

#access-wrap {
    padding: 0 0 50px;
}
#access {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px;
}
.access-info01 {
    margin-bottom: 30px;
}
.access-info01 picture img {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 480px;
}
.access-info01 figcaption p {
    margin: 25px 0;
    font-size: 1.8rem;
}
.access-info01 figcaption p br {
    display: none;
}

#access .sttl01 {
    text-align: center;
}
.public-transit {
    display: flex;
    justify-content: space-between;
}
.public-transit-item {
    width: calc(100% / 3);
    margin: 0 20px 0 0;
    padding: 0 20px 0 0;
    border-right: 1px dotted #999;
    border-bottom: none;
}
.public-transit-item:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}
.public-transit-item dt {
    font-size: 1.8rem;
}
.public-transit-item dd p {
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.public-transit-item dd p:last-child {
    margin-bottom: 0;
}
#medical-framework-wrap {
    padding: 50px 0;
    background: url(../img/common/bg_footer.png) no-repeat 50% 100%;
    background-size: min(90vw, 800px) auto;
    padding-bottom: calc((min(90vw, 800px) / 4.21) + 25px);
}
#medical-framework {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px;
}
.medical-framework-list {
    display: flex;
    justify-content: space-between;
}
.medical-framework-list-item {
    width: calc(100% / 3);
    margin: 0 20px 0 0;
    padding: 0 20px 0 0;
    border-right: 1px dotted #999;
    border-bottom: none;
}
.medical-framework-list-item:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}
.medical-framework-list-item dt,
.medical-framework-list-item dd ul li {
    font-size: 1.8rem;
}

}


/* news page
=============================================== */

#page-news {
    padding-bottom: 35px;
}
#page-header {
    background-color: var(--color-dark-green);
}
#category-name {
    padding: 25px 15px 25px 65px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.6;
    background-image: url(../img/home/icon_news_white.png);
    background-repeat: no-repeat;
    background-position: 20px 50%;
    background-size: auto 36px;
    color: #FFF;
}
.entry-item {
    padding: 30px 20px;
}
.entry-header {
    margin-bottom: 25px;
}
.entry-header h1 {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
}
.entry-header .entry-date {
    margin-top: 10px;
    font-size: 1.6rem;
    text-align: right;
}
.entry-body p {
    margin: 1em 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}


@media (min-width: 641px) {

#page-news {
    max-width: 1080px;
    margin: 15px auto 0;
}
#page-header {
    border-radius: 10px
}
#category-name {
    padding: 30px 30px 30px 95px;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.6;
    background-image: url(../img/home/icon_news_white.png);
    background-repeat: no-repeat;
    background-position: 30px 50%;
    background-size: auto 50px;
    color: #FFF;
}
.entry-item {
    padding: 50px 0;
}
.entry-header {
    margin-bottom: 25px;
}
.entry-header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
}
.entry-header .entry-date {
    margin-top: 15px;
    font-size: 1.8rem;
    text-align: right;
}
.entry-body p {
    margin: 1em 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
}


}