@charset "UTF-8";

@import url("sp.css") screen and (max-width: 640px);
@import url("pc.css") print, screen and (min-width: 641px) ;



/* Base Theme ============================================================= */
/* Reset ------------------------------------------------------------------ */
html{ font-size: 100%; -webkit-text-size-adjust: none; }
*{ margin: 0; padding: 0; }

*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

body{
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
background: #fff;
color: #333;
font-size: 16px;
line-height: 1.75;
word-wrap: break-word;
overflow-wrap: break-word;
}
h1,h2,h3,h4,h5,h6{ font-size: 100%; font-weight: normal; }
ol, ul{ list-style-type: none; }
table { border-spacing: 0; }
caption,th{ text-align: left; }
fieldset,img,abbr,acronym{ border: 0; }
img{ width: 100%; height: auto; }

a{ color: #1189af; text-decoration: none; }
a:hover{ color: #53bdb8; }
a img,:link img,:visited img{ border: none; }
a, a::before, a::after{ -webkit-transition: all .3s; transition: all .3s; }




/* Common Classes ---------------------------------------------------- */
.left{ float: left; }
.right{ float: right; }
.center{ margin-left: auto; margin-right: auto; }
.kome{ text-indent: -1em; padding-left: 1em; }

.red{ color: #e34014; }

.txt-right{ text-align: right; }
.txt-left{ text-align: left; }
.txt-center{ text-align: center; }

.inline { display: inline; }
.hidden { display: none; }

.mt10{ margin-top: 10px !important; }
.mt20{ margin-top: 20px !important; }
.mt30{ margin-top: 30px !important; }
.mt40{ margin-top: 40px !important; }

.mb10{ margin-bottom: 10px !important; }
.mb20{ margin-bottom: 20px !important; }
.mb30{ margin-bottom: 30px !important; }
.mb40{ margin-bottom: 40px !important; }


/*背景スライドインするボタン*/
.btn-slide,
.btn-slide-blue{
position: relative;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
width: 100%; height: 100%;
transition: .3s;
z-index: 1;
}
.btn-slide::before,
.btn-slide-blue::before{
content: '';
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: #333;
transform-origin: 100% 50%;
transform: scaleX(0);
transition: transform ease .3s;
z-index: -1;
}
.btn-slide:hover,
.btn-slide-blue:hover,
#accsecc a.btn-slide:hover{
color: #fff;
}
.btn-slide:hover::before,
.btn-slide-blue:hover::before{
transform-origin: 0% 50%;
transform: scaleX(1);
}

.btn-slide{ color: #333; border: 2px solid #333; }
.btn-slide-blue{ color: #275473; border: 2px solid #275473; }

.btn-slide::before{ background: #333; }
.btn-slide-blue::before{ background: #275473; }

#accsecc a{ overflow: hidden; }
#accsecc a.btn-slide::before{
border-radius: 2em;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
}


/* ====================================================================
    LOADING
====================================================================== */
#splash{
position: fixed;
width: 100%;
height: 100%;
z-index: 99999;
text-align: center;
background: #fff;
display : -webkit-box;
display : -webkit-flex;
display : -ms-flexbox;
display: flex;
}
#splash_logo{
margin: auto;
display: block;
animation: loading 3s ease infinite;
}
#splash_logo img{
width: 80px;
height: auto;
}

@keyframes loading{
0%, 100%{ opacity: 1; }
50%{ opacity: 0; }
}


/* ==============================
    ドロワーナビ
============================== */
.drawer{
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
/*background: #fff;*/
background: url(../images/main_bg.png);
-webkit-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: ease .5s;
transition: ease .5s;
z-index: 9999;
}
.drawer.action{
-webkit-transform:translateX(0);
transform:translateX(0);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
#container.action{
position: relative;
-webkit-transition: ease .5s;
transition: ease .5s;
}
#container.action:after{
content: '';
position: absolute;
z-index: 9998;
left: 0; top: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, .5);
}
@media screen and (min-width: 960px){
#container.action:after{ content: none; }
}


.drbtn {
position: fixed;
top: 24px; right: 24px;
width: 32px;
height: 32px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
-webkit-transition:ease .5s;
transition:ease .5s;
z-index: 1000;
/*background: #ccc;*/
}

@media screen and (max-width: 1100px){ .drbtn { top: 32px; } }
@media screen and (max-width: 840px){ .drbtn { top: 28px; } }
@media screen and (max-width: 640px){ .drbtn { top: 16px; right: 16px; } }


/* ==============================
    トグル
============================== */
.hambarg{
position: absolute;
display: block;
height: 3px;
width: 32px;
background: #333;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-transition: ease .5s;
transition: ease .5s;
}

.hambarg:nth-child(1){ top: 4px; }
.hambarg:nth-child(2){ top: 14px; }
.hambarg:nth-child(3){ top: 24px; }

.drbtn.action .hambarg:nth-child(1) {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
top: 14px;
}
.drbtn.action .hambarg:nth-child(2) {
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
}
.drbtn.action .hambarg:nth-child(3) {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 14px;
}


/* ==============================
    ドロワーメニュー
============================== */
#drawer-bg{
position: relative;
width: 100%; height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-bottom: 80px;
overflow: hidden;
}
#drawer-bg::before{
content: '';
position: absolute;
bottom: 0; left: 0;
width: 100%; height: 100%;
background: rgb(255,255,255);
background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
z-index: -1;
}

.drawer h2 span{
position: relative;
}
.drawer h2 span::after{
content: '';
position: absolute;
bottom: -40px; left: 0; right: 0;
margin: auto;
animation: cloud1 12s ease-in-out infinite alternate;
transition: 3s ease-in-out;
background: url(../images/cloud1.svg) no-repeat;
-moz-background-size: cover;
background-size: cover; 
width: 380px; height: 192px;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
@keyframes cloud1{
0% { transform: rotate(-3deg); opacity: .6; }
50% { transform: rotate(0deg) scale(1.15); opacity: .3; }
100% { transform: rotate(0deg); opacity: 6; }
}

.drawer h2 img{
position: relative;
z-index: 2;
width: 300px;
}
.drawer ol{
position: relativel
z-index: 5;
padding-top: 80px;
}
.drawer ol li a{
display: block;
font-family: "M PLUS Rounded 1c", sans-serif;
font-weight: 500;
font-size: 20px;
color: #275473;
}
.drawer ol li + li{ margin-top: 16px; }
.drawer ol li a:hover{ color: #1189af; }


.drawer ol li{
position: relative;
border-bottom: 2px solid #275473;
padding: 0 24px 8px 0;
}

@media screen and (max-width: 960px){
.drawer h2 img{ width: 240px; }
.drawer h2 span::after{ bottom: -80px; }
.drawer ol li a{ font-size: 18px; }
}
@media screen and (max-width: 640px){
.drawer h2 img{ width: 180px; }
.drawer ol{ padding-top: 40px; }
.drawer ol li a{ font-size: 15px; }
}


/* ====================================================================
    モーダル
====================================================================== */
#hospital-list{
text-align: center;
}
/*モーダルを開くボタン*/
.modal-open{
position: relative;
display: inline-block;
border: 2px solid #275473;
background: #275473;
color: #fff;
font-weight: bold;
padding: 1em 2em;
cursor: pointer;
text-align: center;
transition: .3s;
}
.modal-open:hover{
top: -2px;
-webkit-box-shadow: 0px 8px 24px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 8px 24px 0px rgba(0,0,0,0.25);
box-shadow: 0px 8px 24px 0px rgba(0,0,0,0.25);
}
.modal-open br{ display: none; }

@media screen and (max-width: 640px){
.modal-open{ font-size: 90%; line-height: 1.5; padding: 1em; width: 100%; }
.modal-open br{ display: block; }
.modal-open:hover{ top: 0; box-shadow: none; }
}

.modal-container{
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
text-align: center;
background: rgba(0,0,0,50%);
padding: 40px 20px;
overflow: auto;
opacity: 0;
visibility: hidden;
transition: .3s;
z-index: 1001;
}
.modal-container:before{
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
}
.modal-container.active{
opacity: 1;
visibility: visible;
}
.modal-body{
position: relative;
display: inline-block;
vertical-align: middle;
max-width: 600px;
width: 95%;
}

.modal-close{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
top: -40px; right: -40px;
width: 40px; height: 40px;
font-size: 40px;
color: #fff;
cursor: pointer;
z-index: 1001;
}
@media screen and (max-width: 640px){
.modal-close{ display: none; }
}

/*モーダル内のコンテンツの指定*/
.modal-content{
background: #fff;
text-align: left;
padding: 40px;
}
.modal-content dd{
position: relative;
line-height: 1.4;
padding-bottom: 16px;
margin-bottom: 16px;
border-bottom: 1px solid #dbdbdb;
}
.modal-content dd span{ margin-right: 1em; }
.modal-content dd br{ display: none; }

.modal-content dt:last-of-type + dd{ border: 0; padding-bottom: 0; margin-bottom: 0;  }


@media screen and (max-width: 640px){
.modal-content{ padding: 0; }
.modal-content dl{ padding: 16px 0; font-size: 90%; }
.modal-content dt, dd{ padding-left: 16px; padding-right: 16px; }
.modal-content dd{ padding-bottom: 8px; margin-bottom: 8px; }
.modal-content dd br{ display: block; }
}

/* ====================================================================
    WEB FONTS
====================================================================== */
@font-face {
font-family: 'icomoon';
src:url('../fonts/icomoon.eot?6ey4e5');
src:url('../fonts/icomoon.eot?6ey4e5#iefix') format('embedded-opentype'),
url('../fonts/icomoon.ttf?6ey4e5') format('truetype'),
url('../fonts/icomoon.woff?6ey4e5') format('woff'),
url('../fonts/icomoon.svg?6ey4e5#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;

/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.icon-blank2:before {
content: "\e913";
}
.icon-doc1:before {
content: "\e917";
}
.icon-doc2:before {
content: "\e918";
}
.icon-download2:before {
content: "\e91b";
}
.icon-pdf1:before {
content: "\e927";
}
.icon-pdf2:before {
content: "\e928";
}
.icon-pdf3:before {
content: "\e929";
}
.icon-xls1:before {
content: "\e936";
}
.icon-zip1:before {
content: "\e937";
}



