@charset "UTF-8";
.kinkyu{
	background-color: #f2f2f2;
}

sectio{display: block;}

/*lazyloadフェードイン*/

.lazyload{
    transition: opacity 1.4s, transform 0.8s!important;
    opacity: 0;
    transform: translateY(0);
}

.lazyload.show {
    opacity: 1;
    transform: translateY(0);
}
/*lazyloadフェードインEND*/


/*ボタンデザイン*/
/* LINE007 */
.button_line007 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: darkorange;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #eee;
}
.button_line007 a:hover {
    background: #FFF;
    color: #6bb6ff;
}
.button_line007 a:before, .button_line007 a:after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.button_line007 a:before {
  top: 0;
  left: 0;
}
.button_line007 a:after {
  bottom: 0;
  right: 0;
}
.button_line007 a:hover:before, .button_line007 a:hover:after {
  width: 100%;
  height: 100%;
}
.button_line007 a:hover:before {
  border-top-color: #6bb6ff;
  border-right-color: #6bb6ff;
  transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
}
.button_line007 a:hover:after {
  border-bottom-color: #6bb6ff;
  border-left-color: #6bb6ff;
  transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
}


/* solid002 */
.button_solid002 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    /*filter: drop-shadow(0px 2px 4px #ccc);*/
    border-radius: 3px;
    border-radius: 50px;
}
.button_solid002 a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    /*content: "\f0da";*/
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}
.button_solid002 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}


/* デフォルトグレーボタンA */
.button_link a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 250px;
    padding: 10px 20px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button_link a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button_link a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button_link a:hover:before, .button_link a:hover:after {
    right: -0.5em;
}
.button_link a:hover {
    background: #edf6ff;
    color: #6bb6ff;
}

/*デフォルトボタンパターンB*/
.button2_link a {
    background: #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    padding: 10px 20px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: 1px solid #3f3f3f;
    box-shadow: 10px 10px 10px #b7b7b7, -10px -5px 10px #fff;	
}
.button2_link a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button2_link a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button2_link a:hover:before, .button_link a:hover:after {
    right: -0.5em;
}
.button2_link a:hover {
    background: #edf6ff;
    color: #6bb6ff;
}


.features a:hover:before,
.button_link a:hover:after,
.button2_link a:hover:after
{
    right: -0.5em;
}



.buttonStyle a:hover {
    background: #edf6ff;
    color: #6bb6ff;
    height: 100%;
}
.buttonStyle a {
    /*background: #eee;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    background: #fff;
    border-radius: 0px;
    box-shadow: 10px 10px 21px #aaaaaa, -10px -10px 21px #ffffff;
    align-content: stretch!important;
    height: 100%;    
}

.boxCard {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #c1c1c1;
    box-sizing: border-box;
    align-items: start;
    height: 100%;
	z-index: 10;
}

.R60img {
    object-fit: cover;
    border-radius: 60px;
}

.R30img {
    object-fit: cover;
    border-radius: 60px;
}

.R10img {
    /*object-fit: cover;
    border-radius: 10px;*/
	padding: 10px 0 0 10px;
}



.Rfreeimg {
    object-fit: cover;
    border-radius: 41% 71% 54% 34% / 63% 87% 88% 65% ;
}

.Rfreeimg2 {
    object-fit: cover;
    border-radius: 28% 72% 36% 64% / 49% 44% 56% 51% ; 
}


.boxCardBNo {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.boxCardB {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #6bb6ff;
    box-sizing: border-box;
    align-items: start;
    height: 100%;
}

/*ボタンデザインEND*/
.arrow_U:after {
    display: block;
    width: 15px;
    height: 15px;
    border-top: solid 3px #697b91;
    border-right: solid 3px #697b91;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}



.fade:hover{opacity: 0.7;}
.fade_nomal{opacity: 1;}

.layer0{z-index: 10;}
.layer-1{z-index: 7;}
.layer-2{z-index: 5;}
.layer-3{z-index: 1;}
.bg_cover{background-size: cover;}
.bg_cover_Norepeat{background-repeat: no-repeat;}
.bg_cover_repeatX{background-repeat: repeat-x;}
.bg_cover_repeatY{background-repeat: repeat-y;}
.bg_C_Y{background-color: #fffad2;}

.posi_set{
	position: relative;
}

.d_img img{
	width: 270px;
	height: 185px;
	object-fit: cover;
}

.ib{display: inline-block !important;}


/* PC向けのスタイル： 481px～ */
@media only screen and (min-width: 481px) {
	
	.seoTxt{
		margin: 0px;
		font-size: 75%;
		text-align: right;
		letter-spacing: 0.1em;
		line-height: 1.5em;
		color: #666;
		height: auto;
		width: 100%;
		padding-top: 5px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}
        .buttonStyle a:hover {
            background: #edf6ff;
            color: #6bb6ff;
            height: 100%!important;
        }
        .buttonStyle a {
            /*background: #eee;*/
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 auto;
            padding: 40px 20px 20px 20px!important;
            color: #313131;
            transition: 0.3s ease-in-out;
            font-weight: 500;
            background: #fff;
            border-radius: 0px;
            box-shadow: 10px 10px 21px #aaaaaa, -10px -10px 21px #ffffff;
            align-content: stretch!important;
            height: 100%!important;
        }


        .close_icon::before {
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          content: "f715";
          font-size: 15px;
          color: #3f3f3f;
          font-style: normal!important;
            }

        .map_icon::before {
          font-family: "Font Awesome 5 Free";
          font-weight: 900; 
          content: "f3c5";
          font-size:22px;
          color: #3f3f3f;
          padding-right: 5px;
          font-style: normal!important;
        }
        .clock_icon::before {
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          content: "f017";
          font-size: 20px;
          color: #3f3f3f;
          font-style: normal!important;
        }    
        .phone_icon::before {
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          content: "f2a0";
          font-size: 27px;
          font-style: normal!important;
          vertical-align: middle;
          padding-right: 3px;    
        }

        .calend_icon::before {
          font-family: "Font Awesome 5 Free";
          font-weight: 400;
          content: "f073";
          font-size: 23px;
            vertical-align: middle;
            font-style: normal!important;
            padding-right: 5px;    
        } 

        .dejitaru_icon::before {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "e1f0";
            font-size: 25px;
            vertical-align: middle;
            font-style: normal!important;
            padding-right: 3px;
        }

        a.phone {
            display: inline-block;
            border: solid 1px #ffb600;
            color: #ffb600;
            margin-right: 0!important;
            padding: 10px 23px!important;        
            transition: 0.3s ease-in-out;
            border-radius: 50px;
            font-size: 18px;
            letter-spacing: 2px;
        }

        a.calendar {
            display: inline-block;
            border: solid 1px #6bb6ff;
            color: #6bb6ff;
            margin-right: 0!important;
            padding: 10px 23px!important;        
            border-radius: 50px;
            font-size: 18px;
            letter-spacing: 1px;            
        }

      a.mobile {
          display: inline-block;
          margin-right: 0!important;
          border: solid 1px #fc9e8b;
          color: #fc9e8b;
          border-radius: 50px;
          padding: 10px 23px!important;
          font-size: 18px;
          letter-spacing: 1px;
      }
    
        nav.sp_nav-fixed ul li a:hover,.sp_nav-fixed a:hover {
            border-color: #f96703;
            color: #f96703;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
                transition: 0.3s ease-in-out;
        }    
    
        .top_but_link div{justify-content: flex-end;}
        .top_but_link nav{justify-content: flex-end;}
    
    /*PCサイズ max960px~1280px*/
    
    .txtCenter{text-align: center;}
    .txtRight{text-align: right;}    
    .sp-style{ display: none;}
    
    
    .hp_flex{display: flex;}
    .hp_flex_auto{flex-basis: auto;}
    .hp_flex_column{flex-direction: column;}
	.hp_flex_reverse{flex-direction: row-reverse;}	

    .hp_wrap{flex-wrap: wrap;}
    .hp_nowrap{flex-wrap: nowrap;}

    .hp_row_wrap{flex-flow: row wrap;}
    .hp_column_wrap{flex-flow: column wrap;}

    .hp_align_stretch{align-items:stretch;height: 100%;}
    .hp_align_center{align-items:center;}
    .hp_align_start{align-items:start;}
    .hp_align_end{align-items:end;}

    .hp_justify_start{justify-content:start;}
    .hp_justify_center{justify-content:center;}
    .hp_justify_between{justify-content:space-between;}
    .hp_justify_around{justify-content:space-around;}
    .hp_justify_evenly{justify-content:space-evenly;}
	
    .hp_ver_middle{vertical-align: middle;}

    .hp_flex_grow1{flex-grow: 1;}
    .hp_flex_grow1{flex-grow: 2;}
    .hp_flex_grow3{flex-grow: 2;}
    
    .px_ft20{font-size: 20px;}
    .px_ft16{font-size: 16px;}
    .mr13{margin-right: 13px;}
    
    .pd10 {padding: 10px;}
    
    section.content{
        margin-bottom: 50px;
    }
    
    .img_logo{width: 380px; height: auto;}
    .topMainTitle {
        text-align: right;
    } 
	.menu_min_inner{
		width: 1040px;
	}
	.menu_min_inner::after{
		display: block;
		content: "";
		width: 28%;
	}
	.menu_min_inner li h6{
		font-size: 18px;
		line-height: 1.5; 
    }    
    
    .menu_min_inner li{
		padding: 0px;
		height: auto;
		width: 28%;
		background-color: rgba(255,255,255,0.9);
		border-radius: 10px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 35px;
		margin-left: 0px;
    }
    
    .menu_min_inner > li:nth-child(3n) {
        margin-right: 0;
        padding-right: 0;
    }
    .menu_min_inner > li:nth-child(3n+1):nth-last-child(-n+3), 
    .menu_min_inner> li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
        margin-bottom: 0 !important;
    }
    
	
	
	
	
	.menu_Column_inner{
		width: 1040px;
	}
	.menu_Column_inner::after{
		display: block;
		content: "";
		width: 22%;
	}
	.menu_Column_inner li h6{
		font-size: 18px;
		line-height: 1.5; 
    }    
    .menu_Column_inner li{
		padding: 0px;
		height: auto;
		width: 22%;
		background-color: rgba(255,255,255,0.9);
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 35px;
		margin-left: 0px;
    }
    .menu_Column_inner > li:nth-child(4n) {
        margin-right: 0;
        padding-right: 0;
    }
    .menu_Column_inner > li:nth-child(4n+1):nth-last-child(-n+4), 
    .menu_Column_inner > li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
        margin-bottom: 0 !important;
    }

    .menu_icon1{width: 120px;}
    .menu_colimg{
		width: 228px;
		display: block;
		object-fit: cover;
	}
	.menu_Column_inner .boxCard a .txtArea{
		padding: 13px;
	}
	.menu_Column_inner .boxCard a .txtArea h6{
		margin-bottom: 10px;
	}
    .menu_Column_inner li a .txtArea h6{
		font-size: 18px;
		line-height: 1.5;
		font-weight: bold;
    }	
	.menu_Column_inner li a .txtArea p{
		font-size: 14px;
		line-height: 1.5;
		color: #757575;
	}	
	/*矯正*/
	.Cot1_inner{
		width: 1040px;
	}
	.Cot1_inner::after{
		display: block;
		content: "";
		width: 90%;
	}
	
	.Cot1_inner li h6{
	font-size: 22px;
    line-height: 2.5;
    display: flex;
    vertical-align: middle;
    align-items: center;
	letter-spacing: 2.8px;
    } 
	
    .Cot1_inner li{
		padding: 0px;
		height: auto;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 50px;
		margin-left: 0px;
		width: 80%;
		background: #eee;
    }
    .Cot1_inner > li:nth-child(1n) {
        margin-right: 0;
        padding-right: 0;
    }
    .Cot1_inner > li:nth-child(1n+1):nth-last-child(-n+1), 
    .Cot1_inner > li:nth-child(1n+1):nth-last-child(-n+1) ~ li {
        margin-bottom: 0 !important;
    }

    .Cot1_icon1{width: 120px;}
    .Cot1_colimg{
		width: 228px;
		display: block;
		object-fit: cover;
	}
	.Cot1_inner .boxCard a .txtArea{
		padding: 13px;
	}
	.Cot1_inner .boxCard a .txtArea h6{
		margin-bottom: 10px;
	}
    .Cot1_inner li a .txtArea h6{
		font-size: 18px;
		line-height: 1.5;
		font-weight: bold;
    }	
	.Cot1_inner li a .txtArea p{
		font-size: 14px;
		line-height: 1.5;
		color: #757575;
	}	
	
	
	
	/*矯正END*/
	
    .menu_icon2 {
        width: 135px;
        margin: 20px;
    }
    .mt10.menu_icon3 {
        width: 90px;
        margin: 50px;
    }
    .mt10.menu_icon6 {
        width: 100px;
        margin: 26px;
    }
    .mt10.menu_icon5 {
        width: 79px;
        margin: 35px;
    }
    .mt10.menu_icon8 {
        width: 105px;
        margin: 44px;
    } 
    .mt10.menu_icon7 {
        width: 100px;
        margin: 40px;
    }
    .mH{max-height: 200px;}

    
.features a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    }
    .features a:before {
        content: '';
        position: absolute;
        top: calc(50% - 2px);
        right: -1em;
        transform: translateY(calc(-50% - 2px)) rotate(30deg);
        width: 12px;
        height: 2px;
        background-color: #6bb6ff;
        transition: 0.3s;
    }
.features a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}

.features a:hover {
    background: #edf6ff;
    color: #6bb6ff;
}
    
    .features li h6{
    font-size: 19px;
    line-height: 1.3;
    height: 73px;
	color: #313131;
	}    
    
    .features li{
        height: auto;
        width: 31%;
        background-color: rgba(255,255,255,0.9);
        /* border-radius: 10px; */
        margin-top: 0px;
        margin-bottom: 60px;
        margin-left: 0px;
    }
    
    .features > li:nth-child(3n) {
        margin-right: 0;
    }
    .features > li:nth-child(3n+1):nth-last-child(-n+3), 
    .features> li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
        margin-bottom: 0 !important;
    }
   
    
    
    
/*診療時間*/    
    
/* hero--reception_time
*************************************************** */
.hero--reception_time {
  position: absolute;
  top: 560px;
  right: 0;
  z-index: 100;
}
.hero--reception_time.fixed {
  position: fixed;
  top: 150px;
  pointer-events: none;
}
.hero--reception_time .reception_time {
  transition: all 0.4s ease-out;
}
.hero--reception_time.fixed .reception_time {
  transform: translateX(596px); /* IE */
  transform: translateX(calc(100% - 96px));
  box-shadow: 0 0 32px rgba(9, 53, 94, 0.17);
}
.hero--reception_time.fixed:not(.smooth) .reception_time:hover {
  transform: translateX(0);
  box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
}
@media all and (-ms-high-contrast: none) {
  body:not(.home) .hero--reception_time.fixed .reception_time {
    transform: translateX(120px); /* IE */
  }
}
  
    
/* --- reception_time ---*/
.reception_time {
  padding: 23px 40px 23px 0px;
  border-radius: 30px 0 0 30px;
  background-color: #fff;
  box-shadow: 0 0 68px rgba(9, 53, 94, 0.2);
  pointer-events: auto;
}
.reception_time .ttl {
  padding: 4px 25px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 18px;
  letter-spacing: 0.5em;
}
.reception_time .ttl img {
  margin-bottom: 8px;
  transform: translateX(-4px);
}
@-moz-document url-prefix() {
  body:not(.home) .reception_time .ttl {
    transform: translateX(-32px);
  }
  .reception_time .ttl img {
    transform: translateX(0);
  }
}
@media all and (-ms-high-contrast: none) {
  .reception_time .ttl img {
    transform: translateY(4px);
  }
}

.time_table th,
.time_table td {
  padding: 12px 0;
  border-bottom: solid 1px #dbdbdd;
}
.time_table th:first-child {
  padding-left: 15px;
  padding-right: 8px;
  text-align: left;
  font-weight: normal;
}
.time_table th:not(:first-child) {
  width: 44px;
}
.time_table .time {
  font-size: 16px;
    width: 183px;
}
.time_table .check::before {
  content: "";
  display: block;
  width: 0.85em;
  height: 0.85em;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background-color: #ffb600;
}
    
.time_table .close i::before {padding: 0 10px;}
.time_table small {
  display: inline-block;
  font-size: 80%;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.time_table td small {
  transform: translateY(-3px);
}
.time_table .add {
  margin-top: 24px;
  color: #757575;
  letter-spacing: 0.06em;
  line-height: 1;
}
.time_table .add img {
  margin-right: 10px;
}
.time_table .add a {
  display: inline-block;
  margin-left: 14px;
  border: solid 1px orange;
  color: darkgoldenrod;
}
.time_table .add a:hover {
  border-color: #f96703;
  color: #f96703;
}

   li.features {
    padding: 23px 25px 35px 25px;
   } 


h6.number {
  position: relative;
  overflow: hidden;
  padding: 10px 0 10px 60px;
  word-break: break-all;
  border-radius: 12px 0 0 0;
  margin-bottom: 10px;
}

h6.number span.num {
    font-size: 19px;
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    padding: 14px;
    color: #fff;
    background: no-repeat center/100% url(../images/pointA.png);        
}
	
	
.feature_img{
    width: 100%;
    height: auto;
}

.time_table.access {
    width: 80%;
    margin: 0 auto;
}

.time_table.access th, .time_table.access td {
    padding: 10px;
	width: 5px;
    border-bottom: solid 1px #3F3F3F;
    border-right: solid 1px #3F3F3F;
    border-left: solid 1px #3F3F3F;
    border-top: solid 1px #3F3F3F;
	text-align: center;
	
}
th.font-en.time {
    width: 180px;
}
content_T {
    font-size: 180%;
    font-weight: bold;
    text-align: center;
    background-image: url(../images/title.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 30px;
    padding-left: 0px;
    margin: 0px;
}	
.features {
    width: 1040px;
}
.features::after {
    display: block;
    content: "";
    width: 32%;
}
	
.borderR {
    border: 1px solid #666;
    bpuder-radius: 8px;
    padding: 38px 30px;
    border-radius: 10px;
}
	
img.oasisPC.pc-style {
    position: absolute;
    top: -128px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
img.oasisPC2.pc-style {
    position: absolute;
    top: -28px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
img.oasisPC3.pc-style {
    position: absolute;
    top: 730px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
	opacity: 0.6;
}	
img.oasisPC4.pc-style {
    position: absolute;
    top: 2540px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
img.oasisPC5.pc-style {
    position: absolute;
    top: 883px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
}		


.title,.menuCon{
	position: inherit;
	z-index: 20;
}	
img.kumoPC.pc-style {
    position: absolute;
    top: -18px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
img.kumoPCopp.pc-style {
    position: absolute;
    top: -70px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: auto;
    margin: 0 auto;
} 	
	
#florting img { width: 65px;}
	
.midashi,.midashi2 {
  position: relative;
  text-align: center;
}

.midashi:before,
.midashi:after,
.midashi2:before,
.midashi2:after{
  position: absolute;
  content: '';
}

.midashi:before {
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
}

.midashi span {
  position: relative;
  display: block;
  padding: 4rem;
  letter-spacing: .05em;
  color: #fff;
  text-shadow: #ffb600 2px 0, #ffb600 -2px 0, #ffb600 0 -2px, #ffb600 0 2px, #ffb600 2px 2px, #ffb600 -2px 2px, #ffb600 2px -2px, #ffb600 -2px -2px, #ffb600 1px 2px, #ffb600 -1px 2px, #ffb600 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, 4px 4px 0 #fff, 0 4px 0 #fff;
 font-size: 35px;
}
.midashi2 span {
  position: relative;
  display: block;
  padding: 25px 0 0 0;
  letter-spacing: .05em;
  color: orange;
	font-size: 35px;
	line-height: 1.8;
}		
		
		

.midashi span:before,
.midashi span:after {
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  content: '';
  background: #606060;
}

.midashi span:before {
  top: 15px;
}

.midashi span:after {
  bottom: 15px;
}	
	
		table{
		  border-collapse: collapse;
		  width: 100%;
		}
		.tb01 th,
		.tb01 td{
		  padding: 10px;
		  border: solid 1px #ccc;
		  text-align:center;
		  box-sizing:border-box;
		}
		.tb01 th {
		  background: #6bb6ff;
		  color: #fff;
		}
		.sns {
			text-align: center;
			background-color: #f2f2f2;
			padding-bottom: 40px;
			padding-top: 10px;
		}
		.corp_news {
			margin-top: 100px;
		}
	/*@media screen and (max-width: 480px) {
  .time_table th,
  .time_table td {
    padding: 16px 0;
    vertical-align: middle;
    line-height: 1.4;
  }
  .time_table tr:first-child th {
    font-size: 86%;
  }
  .time_table .time {
    font-size: 86%;
  }
  .time_table .add a {
    transform: translateY(-1px);
  }
}*/

    
}
/* PC向けのスタイル： 481px～ END */





/* スマホ向けのスタイル： ～480px */
@media only screen and (max-width: 480px) {
	
    h1 {
        width: 70%;
		margin: 0 auto;
		font-size: 4.3vw;
		letter-spacing: 0.1em;
		padding: 0px;		
        line-height: 1.8;
        color: #f95a1d;
        text-align: center;
		border: 1px solid;
    }
    .subarea h1 {
        width: 70%;
		margin: 0 auto;
		font-size: 4.3vw;
		letter-spacing: 0.1em;
		padding: 0px;		
        line-height: 1.8;
        color: #FFF;
        text-align: center;
		border: 1px solid;
    }	
	
	
	

	#copy h2 {
		padding-top: 7px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 2px;
		color: #f95a1d;
		letter-spacing: 0.1em;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 80px;
		margin-left: 0px;
		font-size: 90%;
	}	
    
	  .sp-none-flex {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	  }
    .inner_all {
        width: 95% !important;
        margin-top: 250px;
        margin-left: 2.5% !important;
        margin-right: 2.5% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
	.wspFIT{width: 100%;}
	img.iconimg {
		width: 12vw;
		padding-top: 7px;
		padding-right: 7px;
	}	
	
    main img {
        width: 100%;
    }
	img.sizeall {
		width: 100%;
		height: auto;
	}
    .txtCenterSP{text-align: center;}	
    .pc-style{display: none!important;}

    .hpsp_flex{display: flex!important;}
    .hpsp_flex_auto{flex-basis: auto!important;}

    .hpsp_wrap{flex-wrap: wrap;}
    .hpsp_nowrap{flex-wrap: nowrap;}

    .hpsp_row_wrap{flex-flow: row wrap;}
    .hpsp_column_wrap{flex-flow: column wrap;}
    .hpsp_column{flex-direction: column;}
	.hpsp_reverse{flex-direction: row-reverse;}


    .hpsp_align_stretch{align-items:stretch;}
    .hpsp_align_center{align-items:center;}
    .hpsp_align_start{align-items:start;}
    .hpsp_align_end{align-items:end;}

    .hpsp_justify_start{justify-content:start;}
    .hpsp_justify_center{justify-content:center;}
    .hpsp_justify_between{justify-content:space-between;}
    .hpsp_justify_around{justify-content:space-around;}
    .hpsp_justify_evenly{justify-content:space-evenly;}

    .hpsp_flex_grow1{flex-grow: 1;}
    .hpsp_flex_grow1{flex-grow: 2;}
    .hpsp_flex_grow3{flex-grow: 2;}
    
    
    
    .close_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "f715";
      font-size: 15px;
      color: #3f3f3f;
      font-style: normal!important;
        }

    .map_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900; 
      content: "f3c5";
      font-size:22px;
      color: #3f3f3f;
      padding-right: 5px;
      font-style: normal!important;
    }
    .clock_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "f017";
      font-size: 20px;
      color: #3f3f3f;
      font-style: normal!important;
    }    
    .phone_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "f2a0";
      font-size: 27px;
      display: block;
      margin-bottom: 5px
    }

    .calend_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 400;
      content: "f073";
      font-size: 29px;
      display: block;
      margin-bottom: 5px
    }    

    a.mobile {
        display: inline-block;
        margin-right: 0!important;
        border: solid 1px #F8A57F;
        color: #F8A57F;
        border-radius: 50px;
        padding: 10px 25px!important;        
    }

    .phone_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "f2a0";
      font-size: 27px;
      color: #FFF;
    　font-style: normal!important;
    }
    
    .calend_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 400;
      content: "f073";
      font-size: 29px;
      color: #FFF;  
    　font-style: normal!important;
    }    
    .dejitaru_icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "e1f0";
      font-size: 35px;
      color: #FFF;
    　font-style: normal!important;
    }    
    .sp_nav-fixed li{
    width: 33.33%;
    padding: 4vw 0 2vw 0;
    text-align: center;
    }
    
    
    .sp_nav-fixed.phone{
        background-color: #94D4FF;
        color: #FFF;
    }
    .sp_nav-fixed.calend{background-color: #cccccc}
    .sp_nav-fixed.mobile{background-color: #FFDB80}
    
    section.content20{
        margin-bottom: 5.3vw;
        /*20px w375*/
    }
    section.content10{
        margin-bottom: 2.6vw;
        /*10px w375*/
    }
    section.content15{
        margin-bottom: 4vw;
        /*10px w375*/
    }
    
    nav.sp_nav-fixed{width:100vw;}
    
    /*========= ぼかしのためのCSS ===============*/

    .mainblur{
        filter: blur(8px);
    }
    .menu_Column_inner li {
        padding: 0px;
        height: auto;
        width: 47%;
        max-height: 47%;
        background-color: rgba(255,255,255,0.9);
        border-radius: 10px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 25px;
        margin-left: 0px;
    }
    .menu_Column_inner li h6{
		font-size: 16px;
		line-height: 1.5;
    }
	
	
    .menu_Column_inner li {
        padding: 0px;
        height: auto;
        width: 47%;
        max-height: 47%;
        background-color: rgba(255,255,255,0.9);
        border-radius: 10px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 25px;
        margin-left: 0px;
    }
    .menu_Column_inner li a .txtArea h6{
		font-size: 4.5vw;
		line-height: 1.3;
		font-weight: bold;
    }	
	.menu_Column_inner li a .txtArea p{
		font-size: 3.7vw;
		line-height: 1.3;
		color: #757575;
	}
	
    .menu_colimg{
		width: 100%;
		display: block;
		object-fit: cover;
	}
	.menu_Column_inner .boxCard a .txtArea{
		padding: 10px;
	}
	.menu_Column_inner .boxCard a .txtArea h6{
		margin-bottom: 10px;
	}

	
    .menu_min_inner li {
        padding: 0px;
        height: auto;
        width: 47%;
        max-height: 47%;
        background-color: rgba(255,255,255,0.9);
        border-radius: 30px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 40px;
        margin-left: 0px;
    }
    .menu_min_inner li h6{
		font-size: 16px;
		line-height: 1.5;
    }
	
	
    .menu_min_inner li {
        padding: 0px;
        height: auto;
        width: 47%;
        max-height: 47%;
        background-color: rgba(255,255,255,0.9);
        border-radius: 30px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 25px;
        margin-left: 0px;
    }
    .menu_min_inner li h6{
		font-size: 16px;
		line-height: 1.5;
    }	
	
    
    .buttonStyle a:hover {
        background: #edf6ff;
        color: #6bb6ff;
        height: 42vw;
    }
    .buttonStyle a {
        /*background: #eee;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        padding:5vw;
        color: #313131;
        transition: 0.3s ease-in-out;
        font-weight: 500;
    }    
    .menu_icon2{
        width: 23vw;
        margin: 0 auto!important;
        display: flex;
        /* vertical-align: middle; */
        align-items: center;
        padding: 6px 0 0 0;    
    }
    .menu_icon1 {
        width: 70px;
        margin: 0 auto!important;
        /* text-align: center; */
        display: flex;
        align-items: center;
        padding: 9px 0 0 0; 
    }
    .menu_icon3 {
        width: 16vw;
        margin: 0 auto!important;
        display: flex;
        align-items: center;
        padding: 21px 0 0 0;
    }
    .menu_icon6 {
        width: 16vw;
        margin: 0 auto!important;
        display: flex;
        align-items: center;
        padding: 6px 0 0 0;
    }    
    .menu_icon5 {
        width: 12vw;
        margin: 0 auto!important;
        display: flex;
        align-items: center;
        padding: 16px 0 0 0;
    }
    .menu_icon4 {
        width: 24vw;
        margin: 0 auto!important;
        display: flex;
        align-items: center;
        padding: 0px 0;
    }
    .menu_icon8 {
        width: 17vw;
        margin: 0 auto!important;
        display: flex;
        align-items: center;
        padding: 20px 0 0 0;
    }    
    .menu_icon7 {
        width: 16vw;
        margin: 0 auto!important;
        display: flex;
        align-items: center;
        padding: 22px 0 0 0;
    }
    .button_line007 a {
        position: relative;
        /*display: flex;*/
        justify-content: space-around;
        align-items: center;
        padding: 10px;
        color: #002d04;
        transition: 0.3s ease-in-out;
        font-weight: 600;
        background: #fff;
        border: solid;
        margin: 7vw 3vw;
        display: inline-block;
    }

img.oasis {
    position: absolute;
    top: -66px;
    z-index: 10;
    width: 100vw;
    margin: 0 auto;
	z-index: 15;
}

img.oasisA {
    position: absolute;
    top: 114px;
    z-index: 10;
    width: 100vw;
    margin: 0 auto;
	z-index: 15;
}		
	
img.oasisB {
    position: absolute;
    top: -27px;
    z-index: 10;
    width: 100vw;
    margin: 0 auto;
	z-index: 15;
	opacity: 0.8;
}	
	
	
	
	
	
img.kumo {
    position: absolute;
    top: -82px;
    z-index: 5;
}    
img.oasis2 {
    position: absolute;
    top: -158px;
    z-index: 5;
}        
  .buttonStyle a {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0 auto;
      padding: 5vw;
      color: #313131;
      transition: 0.3s ease-in-out;
      font-weight: 500;
      background: #fff;
      border-radius: 0px;
      box-shadow: 10px 10px 21px #aaaaaa, -10px -10px 21px #ffffff;
      align-content: stretch!important;
      height: 42vw;
  } 
  
  /*ボタンリンクデフォルトSP*/
.button_link a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 340px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button_link a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button_link a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button_link a:hover:before, .button_link a:hover:after {
    right: -0.5em;
}
.button_link a:hover {
    background: #edf6ff;
    color: #6bb6ff;
}
  /*ボタンリンクデフォルトSP*/  
.button2_link a {
    background: #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 340px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: 1px solid #3f3f3f;
    box-shadow: 10px 10px 10px #b7b7b7, -10px -5px 10px #fff;	
}
.button2_link a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button2_link a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button2_link a:hover:before, .button_link a:hover:after {
    right: -0.5em;
}
.button2_link a:hover {
    background: #edf6ff;
    color: #6bb6ff;
}	
	
	
	
	
    

    h6.number {
      position: relative;
      overflow: hidden;
      padding: 10px 0 10px 60px;
      word-break: break-all;
      border-radius: 12px 0 0 0;
      font-size: 4.8vw;
      line-height: 1.5;
    }

    h6.number span.num {
        font-size: 20px;
        position: absolute;
        top: 9px;
        left: 0;
        display: block;
        padding: 13px;
        color: #fff;
        background: no-repeat center/100% url(../images/pointA.png);        
    }

	.feature_img{
        width: 100%;
        height: auto;
        margin: 15px 0 15px 0;
    }
    .features a {
        background: #eee;
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 240px;
        padding: 10px 25px;
        color: #313131;
        transition: 0.3s ease-in-out;
        font-weight: 500;
    }
    .features a:before {
        content: '';
        position: absolute;
        top: calc(50% - 2px);
        right: -1em;
        transform: translateY(calc(-50% - 2px)) rotate(30deg);
        width: 12px;
        height: 2px;
        background-color: #6bb6ff;
        transition: 0.3s;
    }
    .features a:after {
        content: '';
        position: absolute;
        top: 50%;
        right: -1em;
        transform: translateY(-50%);
        width: 40px;
        height: 2px;
        background-color: #6bb6ff;
        transition: 0.3s;
    }
    .features a:hover:before, .button_link a:hover:after {
        right: -0.5em;
    }
    .features a:hover {
        background: #edf6ff;
        color: #6bb6ff;
    }
    
    .features li h6{
    font-size: 19px;
    line-height: 1.3;
    height: 73px;
	color: #313131;
	}    
    
    .features li{
        height: auto;
        width: 90%;
        background-color: rgba(255,255,255,0.9);
        /* border-radius: 10px; */
        margin-top: 0px;
        margin-bottom: 60px;
        margin-left: 0px;
        margin: 0 auto;
    }
	
    .spSP{
        height: auto;
        width: 90%;
        background-color: rgba(255,255,255,0.9);
        /* border-radius: 10px; */
        margin-top: 0px;
        margin-bottom: 60px;
        margin-left: 0px;
        margin: 0 auto;
    }	

    li.features {
        padding: 5vw 6.1vw 8vw;
        margin-bottom: 11vw;
    }
    
    .time_table th,
    .time_table td {
      padding: 12px 0;
      border-bottom: solid 1px #dbdbdd;
    }
    .time_table th:first-child {
      padding-left: 8px;
      padding-right: 8px;
      text-align: left;
      font-weight: normal;
    }
    .time_table th:not(:first-child) {
      width: 44px;
    }
    .time_table .time {
      font-size: 12px;
        width: 180px;
    }
    .time_table .check::before {
      content: "";
      display: block;
      width: 0.85em;
      height: 0.85em;
      margin-right: auto;
      margin-left: auto;
      border-radius: 50%;
      background-color: #ffb600;
    }

    .time_table .close i::before {padding: 0 10px;}
    .time_table small {
      display: inline-block;
      font-size: 80%;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }
    .time_table td small {
      transform: translateY(-3px);
    }
    .time_table .add {
      margin-top: 24px;
      color: #757575;
      letter-spacing: 0.06em;
      line-height: 1;
    }
    .time_table .add img {
      margin-right: 10px;
    }
    .time_table .add a {
      display: inline-block;
      margin-left: 14px;
      border: solid 1px #F8A57F;
      color: #F8A57F;
    }
    .time_table .add a:hover {
      border-color: #f96703;
      color: #f96703;
    }
    .time_table.access {
        padding: 15px;
    }

	
.content_T {
	font-size: 150%;
	font-weight: bold;
	text-align: center;
	background-image: url(../images/title.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
	height: auto;
	width: 90%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	line-height: 1.6em;
}	
.boxCardB {
	margin-right: 2%;
	margin-left: 2%;
}
	
	/*矯正*/
	.Cot1_inner{
		padding: 0px;
		height: auto;
		width: 90%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		position: inherit;
		z-index: 50;
	}
	.Cot1_inner::after{
		display: block;
		content: "";
		width: 90%;
	}
	
	.Cot1_inner li h6{
	font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 1.8px;
    vertical-align: middle;
    align-items: center;
    } 
	
    .Cot1_inner li{
		padding: 0px;
		height: auto;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 35px;
		margin-left: 0px;
    }
    .Cot1_inner > li:nth-child(1n) {
        margin-right: 0;
        padding-right: 0;
    }
    .Cot1_inner > li:nth-child(1n+1):nth-last-child(-n+1), 
    .Cot1_inner > li:nth-child(1n+1):nth-last-child(-n+1) ~ li {
        margin-bottom: 0 !important;
    }

    .Cot1_icon1{width: 120px;}
    .Cot1_colimg{
		width: 228px;
		display: block;
		object-fit: cover;
	}
	.Cot1_inner .boxCard a .txtArea{
		padding: 13px;
	}
	.Cot1_inner .boxCard a .txtArea h6{
		margin-bottom: 10px;
	}
    .Cot1_inner li a .txtArea h6{
		font-size: 18px;
		line-height: 1.5;
		font-weight: bold;
    }	
	.Cot1_inner li a .txtArea p{
		font-size: 14px;
		line-height: 1.5;
		color: #757575;
	}
	

	
	
	/*矯正END*/
	
.midashi,.midashi2 {
  position: relative;
  text-align: center;
}

.midashi:before,
.midashi:after,
.midashi2:before,
.midashi2:after{
  position: absolute;
  content: '';
}

.midashi:before {
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
}

.midashi span {
  position: relative;
  display: block;
  padding: 20px;
  letter-spacing: .05em;
  color: #fff;
  text-shadow: #ffb600 2px 0, #ffb600 -2px 0, #ffb600 0 -2px, #ffb600 0 2px, #ffb600 2px 2px, #ffb600 -2px 2px, #ffb600 2px -2px, #ffb600 -2px -2px, #ffb600 1px 2px, #ffb600 -1px 2px, #ffb600 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, 4px 4px 0 #fff, 0 4px 0 #fff;
 font-size: 9vw;
}
.midashi2 span {
  position: relative;
  display: block;
  letter-spacing: .05em;
  color: orange;
  font-size: 22px;
  line-height: 1.5;
  text-align: left;
}		

.midashi span:before,
.midashi span:after {
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  content: '';
  background: #606060;
}

.midashi span:before {
  top: 15px;
}

.midashi span:after {
  bottom: 15px;
}		
img.tellW {
    width: 40%;
    height: 40%;
}	
img.oasis {
    position: absolute;
    top: -32px;
    z-index: 10;
    width: 100vw;
    margin: 0 auto;
    z-index: 6;
}
	
	.sp_dc_img{
		width: 230px;
		height: auto;
	}	
	.leftStyle{width: 25%;}
	.biography {
		width: 100%;
	}
	
    .tb01 .head{
      display:none;
    }
    .tb01 {
      width: 80%;
      margin: 0 auto;
    }
    table.tb01 td {
      display: block;
      width: 100%;
      border-bottom:none;
    }
    table.tb01 td:first-child{
      background: #6bb6ff;
      color:#fff;
      font-weight:bold;
    }
    table.tb01 td:before{
      content: attr(data-label);
      font-size: .7rem;
      font-weight:bold;
      color: #999;
      display: block;
    }
    .tb01 tr:last-child{
      border-bottom: solid 1px #ccc;
    }
	
	.sns {
		text-align: center;
		background-color: #f2f2f2;
		padding-bottom: 0;
		margin-bottom: 10vw;
	}
	.bner {
		background-color: #f2f2f2;
		padding-bottom: 0;
		padding-top: 8vw;
		margin-bottom: 37vw;
	}
	.bner li{
		margin-bottom: 5vw;
	}
	.bner li:last-child{
		margin-bottom: 0;
	}
	.corp_news {
		margin-top: 10vw;
	}
	
}
/* スマホ向けのスタイル： ～480px * END/


