/* @font-face {
	font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: normal;
	src: url('../Noto_Sans_JP/NotoSansJP-Regular.otf') format('opentype');
} */
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}

body {
  max-width: 640px;
  margin: 0 auto;
  color: #000000;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;

}

section{
    margin-bottom: 100px;
}

#main-visual{
    margin-top: -1px;
    margin-bottom: 0;
}
#about{
    margin-top: -12%;
}

.fa-angle-double-down,
.fa-angle-double-up{
    margin-left: 0.5em;
    font-weight: bold;
}
h1 img {
  max-width: 50%;
    height: auto;
  margin: 10px 0 10px 10px;
}
/*
h2 {
  font-size: 24px;
  background-image: url(../images/bg_title_band.jpg);
  background-repeat: no-repeat;
  background-size: 130%;
  background-position: top;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  line-height: 2em;
}
*/


h5 {
  font-size: 20px;
  padding: 10px 0;
  margin: 20px 0 10px 0;
  border-bottom: 1px solid #365865;
  text-align: center;
}
img {
  width: 100%;
}
header {
  position: relative;
    background-color: #000000;
}

.sub-title {
  font-size: 14px;
  text-align: center;
  color: #747474;
}
#sub-header {
  background: #5F9195;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
}

#main-visual {
 /* background-image: url("../images/main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10% 50%;
  padding: 20px 10px;
  position: relative;
  height: 240px;*/
}


/* navi */
#nav-toggle {
    top: 20px;
/*    right: 0;*/
    right: 10px;
    height: 24px;
    cursor: pointer;
    position: absolute;
}
@media screen and (max-width:480px){
    #nav-toggle {
        top: 15px;
    }
}

#nav-toggle div {
    position: relative;
    width: 50px;
  }
#nav-toggle span {
    width: 100%;
/*    height: 4px;*/
    height: 5px;
/*    left: -10px;*/
    display: block;
    background: #ffffff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle span:nth-child(1) {
      top: 0;
    }
#nav-toggle span:nth-child(2) {
      top: 15px;
    }
#nav-toggle span:nth-child(3) {
      top: 30px;
    }


.open #nav-toggle span {
    background: #fff;
}

.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

#nav-toggle p{
    position: absolute;
    display: block;
    bottom: -17px;
    right: 17px;
    font-size: 10px;
}

.open #nav-toggle p{
    display: none;
}

/* z-index */
#nav-toggle {
    z-index: 1000;
}
#container {
    z-index: 900;
}

#gloval-nav {
  max-width: 640px;
  margin: 0 auto;
  background: #000000;
/*
background: -moz-linear-gradient(to bottom,#011664,#002097 50%,#011664);
background: -webkit-linear-gradient(to bottom,#011664,#002097 50%,#011664);
background: linear-gradient(to bottom,#011664,#002097 50%,#011664);
*/
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

#gloval-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    transition: color .6s ease;
    text-align: left;
    font-size: 14px;
}
#gloval-nav a:hover {
    color: #666;
}
#gloval-nav a.sub{
    text-indent: 1em;
}

#gloval-nav ul {
    list-style: none;
}
#gloval-nav ul li {
  border-top: 1px solid #fff;
      opacity: 0;
      transform: translateX(200px);
      transition:  transform .6s ease, opacity .2s ease;
}
#gloval-nav ul li:last-child {
  border-bottom: 1px solid #fff;
}

#gloval-nav ul li:after{
  position:absolute;
  content:">";
  right:1em;
  top:0.5em;
}

#gloval-nav nav {
  width: 90%;
}

/* open */
.open {
    overflow: hidden;
}
.open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }

.open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition:  transform 1s ease, opacity .9s ease;
  }


.caution {
  font-size: 32px;
  font-weight: bold;
  /*color: #DA5246;*/
  color: #009FDE;
  /* -webkit-text-stroke: 1px #FFF; */
  /* text-stroke: 1px #FFF; */
  text-align: right;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.check-list {
  position: absolute;
  right: 5%;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
}
.checkbox li {
  background: url("/images/check.png") no-repeat;
  background-size: 20px;
  padding-left: 23px;
  font-weight: bold;
  line-height: 2em;
}

#promise{
    padding: 40px 0;
    background-color: #0078c7;
}
@media screen and (max-width:480px){
    #promise{
        padding: 20px 0;
    }
}

/* fo0tter */
footer {
  background: #ffffff;
  text-align: center;
  color: #000000;
  padding: 20px 0;
  margin-bottom: 81px;
  position: relative;
/*  margin-top: 50px;*/
}
#floating {
  display: block;
  width: 100%;
  max-width: 640px;
  position: fixed;
  bottom: 0px;
  /*z-index: 9999;*/
  z-index: 980;
  text-align: center;
  padding: 0 auto;
    background-color: #000000;
}
#floating ul{
    display: flex;
    justify-content:space-around;
    align-items: center;
    margin: 0;
}
#floating li {
    width: 46%;
    text-align: center;
    padding: 10px 0;
}
#floating li a{
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}
#floating li img{
    margin: 0;
    max-width: 291px;
}
#gotop {
  background: #cccccc;
    position: absolute;
    bottom: 90px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
#gotop a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}
/* 画像の線 */
.img-border {
  border: 1px solid #365865;
}

/* confirm */
#validate {
  width: 90%;
  margin: 20px auto;
  color: #DA5246;
  line-height: 2em;
}

/* 幅 */
.wdt95 {
  width: 95%;
  margin: 0 auto;
}
.wdt90 {
  width: 90%;
  margin: 0 auto;
}
.wdt80 {
  width: 80%;
  margin: 0 auto;
}

/* フォント類 */
.fnt10 {
  font-size: 10px;
}
.fnt12 {
  font-size: 12px;
}
.fnt14 {
  font-size: 14px;
}
.fnt16 {
  font-size: 16px;
}
.fnt20 {
  font-size: 20px;
}
.fnt24 {
  font-size: 24px;
}
.fnt30{
  font-size: 30px;
}
.fnt-fff {
  color: #fff;
}
.fnt-da5246 {
  color: #DA5246;
}
.fnt-333 {
  color: #333;
}
.selfcheck-txt{
  color: #FDFFB9;
  font-size: 36px;
  padding: 20px 0;
}
.fnt-bold {
  font-weight: bold;
}

.align-center {
  text-align: center;
}

.inner {
  margin: 0 10px;
}
.form label {
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}
.form label span {
  font-size: 12px;
  color: #DA5246;
  padding-left: 5px;
}
.form input, .form textarea {
  border-radius: 5px;
  border: 1px solid #365865;
  margin-left: 3%;
  height: 30px;
    padding: 5px;
}
.form textarea {
  width: 90%;
  height: 200px;
}
/*
.form div {
  margin: 20px 0 0 0;
}
*/
.age {
  width: 100px !important;
}
.gender input {
  height: auto !important;
}
.b_year {
  margin-left: 3%;
  margin-right: 1%;
}
.b_month, .b_day {
  margin-left: 1%;
  margin-right: 1%;
}
.tlt-reserve {
  font-weight: bold;
}
#kibou ul{
    margin-left: 3%;
}
#kibou li {
  line-height: 2.5em;
}
#kibou li select{
    margin-right: 0;
}
#kibou .cap{
    margin-left: 3%;
    margin-right: 3%;
    display: block;
}
select {
/*
    border-color: #365865;
    padding: 13px 0 13px 2%;
    width: calc(90% - 1.5em);
*/
/*  height: 30px;*/
/*  margin-right: -4px;*/
}

.btn {
  color: #fff;
  background: #70B4CE;
  height: 60px;
  width: 300px;
  border-radius: 10px;
  margin: 0 auto;
  font-size: 16px;
  cursor: pointer;
}
.back {
  background: #999;
  border: 1px solid #707070;
}

.b_year{
    margin-left: 3%;
}

/* confirm */
dl.confirm {
  width: 90%;
  margin: 30px auto;
  display:flex;
  flex-wrap: wrap;
  font-size: 12px;
}
.confirm dt {
  /* display: table-cell; */
  width: 36%;
  padding: 10px 1%;
  border-bottom: 1px solid #707070;
  border-left: 1px solid #707070;
}
.confirm dt:first-child {
  border-top: 1px solid #707070;
}
.confirm dd {
  width: 58%;
  padding: 10px 1%;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  border-left: 1px solid #707070;
}
.confirm dd:nth-child(2) {
  border-top: 1px solid #707070 !important;
}

#clinic{
    margin-bottom: 40px;
}
#clinic .map{
    width: 94%;
    margin: 20px auto 0;
}


/* margin */
.mgb10 {
  margin-bottom: 10px;
}
.mgt10 {
  margin-top: 10px;
}
.mgb20 {
  margin-bottom: 20px;
}
.mgt20 {
  margin-top: 20px;
}
.mgl10 {
  margin-left: 10px;
}
.mgl20 {
  margin-left: 20px;
}
.mgr10 {
  margin-right: 10px;
}
.mgr20 {
  margin-right: 20px;
}
.mgt-3 {
  margin-top: -3px;
}

/* padding */
.pd5 {
  padding: 5px;
}
.pdt20 {
  padding-top: 20px;
}
.pdb20 {
  padding-bottom: 20px;
}
.pdl10{
  padding-left: 10px;
}
.pdr10{
  padding-right: 10px;
}

.pdl20{
  padding-left: 20px;
}
.pdr20{
  padding-right: 20px;
}


.shadow {
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.btn-shadow {
  border: none;
  box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}


/*formページのCSS*/




.checkbox{
	margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 1%;
/*    justify-content: space-between;*/
}
.checkbox span{
    width: 33%;
/*    padding-bottom: 10px;*/
/*    margin-right: 5px;*/
    display: inline-block;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.checkbox span input{
    width: auto;
    margin-right: 0.5em;
}

@media screen and (max-width:480px){
    .checkbox{
        margin-left: 1%;
        justify-content: space-between;
    }
	.checkbox span{
        width: 49%;
    }
}

.reservation .attention {
	margin-top: 0px;
}
.radio{
	margin-top: 25px;
}

.booking{
	margin-top: 15px;
}
.form-box p.attention{
    font-size: 16px;
    margin-top: 0;
    font-weight: normal;
}
.attention.type02{
	font-size: 14px;
	margin-bottom: 25px;
	margin-top: 15px;
}
.time .checkbox{
	margin-top: 25px;
}
.textarea{
	width: calc(90% - 20px);
	height: 100px;
	margin-top: 15px;
	padding: 10px 10px;
}
.send-button{
	text-align: center;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 70px;
}

/*-------------------------------------------------------------------

	form

-------------------------------------------------------------------*/

#form h2{
    margin-bottom: 40px;
}
.basic-section {
  padding: 12% 4%;
}
.basic-section > :last-child {
  margin-bottom:0;
}
.basic-section.is-form {
  padding-bottom: 40px;
}
.basic-title {
	text-align: center;
}
.basic-title .en {
	display:inline-block;
	margin-bottom:1em;
	padding:.3em .8em;
	border-radius: 2em;
	font-size:1.3rem;
	font-weight:400;
	line-height: 1;
	background-color:#aa894d;
	color:#FFF;
	font-family: "Times New Roman", Times, "serif";
	letter-spacing: .2em;
}
.basic-title .jp {
	display:inline-block;
	margin-bottom:1.5em;
	font-size:2.4rem;
	line-height: 1.2;
	color:#aa894d;
}

.form-section_title {
  font-size: 22px;
  margin-bottom: 1em;
  text-align: center;
}

#form .innerArea{
    font-size: 16px;
    margin: 0 2%;
    line-height: 1.5;
}#form .innerArea p{
    margin-bottom: 20px;
}


@media screen and (max-width:480px){
    section{
        margin-bottom: 40px;
    }
    footer{
        margin-bottom: 50px;
    }
}