@charset "utf-8";
/*------------------------------------------------------------
共通
------------------------------------------------------------*/

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', sans-serif;
  background: #fff;
  color: #404040;
  font-size: 17px;
  background: #fff;
}

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

a:link, a:visited, a:hover, a:active {
  color: #333;
}

a:vis

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}



/*共通*/
.fsS{
    font-size: .9em;
}
.fsSS {
    font-size: .6em;
    line-height: 1.3;
}
.fsL{
    font-size: 1.3em;
}
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.taL {
    text-align: left;
}
.fwB {
  font-weight: bold;
}
.marker {
    background:linear-gradient(transparent 60%, #ff6 60%);
}
.under{
	text-decoration:underline;
}
.rel {
    position: relative;
}
.abs {
    position: absolute;
}
.pa{
    padding: 15px 10px 0;
}
.pa2 {
    padding: 0 10px;
}
.pc_n {
    display: none;
}
.sp_n {
  display: block;
}

.red {
    color: #f10205;
  font-weight: bold;
}
 .br_sp {
    display: block;
  }
 .br_pc {
    display: none;
  }

@media screen and (min-width:640px){
.sp_n {
  display: none;
}
.pc_n {
    display: block;
}
.pa2 {
    padding: 0 20px;
}
  .br_sp {
    display: none;
  }
 .br_pc {
    display: block;
  }
}



/*------------------------------------------------------------
レイアウト
------------------------------------------------------------*/

#content {
    width: 100%;
    margin: 0 auto;
}
.wrapper {
    margin: 5% 3% 5% 3%;
}
figure{
  margin: 0 auto;
  max-width: 100%;
	text-align: center;
}
img {
    width: 100%;
    height: auto;
  vertical-align: middle;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

@media screen and (min-width:750px) {
    #content {
        width: 750px;
        max-width: 100%;
        margin: 0 auto;
    }
    p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
}
/*------------------------------------------------------------
スマホから
ヘッダー
------------------------------------------------------------*/
header {
  width: 100vw;
  position: relative;
  top: 0;
  z-index: 100;
  box-shadow: 0px 10px 15px -10px #808080;
}
#mv {
    /*margin-top: 16vw;*/
}
.head_tell{
    position: absolute;
    color: red;
    font-weight: bold;
    font-size:5.1vw;
    top: 29%;
    right: 2%;
/*    letter-spacing:-2.3px;*/
    margin: 0;
}

.head_tell a:link{
    color: red;
}

/* 光らせるためのstyle */
.shine{
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before{
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 3s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
}
/* 光の動き */
@keyframes shine{
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}


@media screen and (min-width:750px) {
header {
  width: 750px;
}
#mv {
    /*margin-top: 120px;*/
    margin-bottom: 20px;
}
.head_tell{
    font-size:37px;
    top: 32%;
}
.mv_btn {
    width: 85%;
    margin: 0 auto;
}
}

/*------------------------------------------------------------
コンテンツ
------------------------------------------------------------*/

#Realtime01, #endtime {
  font-weight: 700;
  margin: 0;
  padding: 1%;
  text-align: center;
  font-family: 'Meiryo', 'メイリオ', sans-serif;
}
h2 {
background: linear-gradient(30deg, #008482, #00aeac, #008482);
  background-repeat: repeat-x;
  text-align: center;
  margin-bottom: 1em;
  background-size: contain;
}
.comment_abs {
    top: -38px;
    width: 45%;
    left: 10px;
    position: absolute;
}

@media screen and (min-width:640px) {
#Realtime01, #endtime {
    font-size: 1.6em;
}
.comment_abs {
    top: -64px;
    height: 55%;
    left: 10px;
    position: absolute;
}
}

@media screen and (max-width:320px) {
#Realtime01, #endtime {
    font-size: 0.9em;
}
.comment_abs {
    top: -31px;
    width: 45%;
    left: 10px;
    position: absolute;
}
}

.mv-under{
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    padding: 1%;
    text-align: center;
    font-family: 'Meiryo', 'メイリオ', sans-serif;
}

/* 点滅 */
.blinking{
  animation: flash 1.5s linear infinite;
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }


  100% {
    opacity: 1;
  }
}

.arrow_mt {
margin-top: -2vw;
}



/*-------------フッター-------------*/
footer {
  background: #00adab;
  color: #fff;
  margin-top: 1em;
  padding: 1em;
}
tbody {
    font-size: 12px;
}
table.fooer_table {
    width: 100%;
    padding: 20px 10px 0;
    line-height: 1.8;
}
table.fooer_table th{
    width: 35%;
}
footer a:link, a:visited, a:hover, a:active {
    color: #000;
}

a.fixed_case_a{
    text-decoration: none;
}

.fixed_case:hover {
    opacity: 0.7;
}

.footer_oya{
    display: flex;
    justify-content:space-around;
}
.another p{
    font-size: 12px;
    color: #fff;
}
    .close1 {
        display: none;
    }

.logo img {
    width: 80%;
    margin-bottom: 10px;
}
.another {
    width: 100%;
    padding: 5px 30px 20px;
    font-weight: bold;
    border-top: 1px solid #fff;
}

@media screen and (min-width:640px) {
    .another{
        width: 100%;
        padding: 5px 110px 20px;
        font-weight: bold;
        border-top: 1px solid #fff;
    }
    .toiawase{
        width: 400px;
    }
    .logo img {
        width: 50%;
        margin-bottom: 10px;
    }
}




/* 210927 */
.lead_text{
    display:flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 1% auto;
    position: relative;
}
.lead_text div{
    width: 72%;
}
.lead_text img{
    display:block;
    width:25%;
    object-fit: contain;
}
.lead_text h2{
    background: none;
    color: #2177ed;
    font-size: 170%;
    margin-bottom: 0;
    text-align: left;
}
h3{
    font-size: 150%;
    font-weight: bold;
}
.pics{
    display: block;
    max-width: 100%;
    margin: 1% auto;
}
h4{
    text-align: center;
    max-width: 1000px;
    margin: 1% auto;
    font-weight: bold;
    font-size: 140%;
    line-height: 1.8;
}
.pc{
    display: block;
    max-width: 100%;
    margin: 1% auto;
}
.sp{
    display: none;
}

.kinds h4{
    color: #f83600;
}
.sum_bg{
    padding: 3% 0;
    margin-top: 3%;
}
.sum_bg h4{
    color: #ff7800;
    margin-bottom: 3%;
}
.sum_bg h5{
    text-align: center;
    color: #333;
    margin-top: 3%;
    font-weight: bold;
    font-size: 110%;
    line-height: 1.8;
    padding: 0;
}
.staff_card{
    max-width: 1000px;
    margin: 3% auto;
    border: 2px solid #007284;
    border-radius: 10px;
    padding-top: 2%;
}
.staff_card_prof{
    display: flex;
    width: 90%;
    margin: 0 auto 3%;
    justify-content: space-between;
    align-items: center;
}
.staff_card_prof img{
    display: block;
    width: 20%;
}
.staff_card_prof div{
    width: 77%;
}
.staff_card_prof div h6{
    font-weight: bold;
    margin: 0 0 2%;
    font-size: 120%;
}
.staff_card_comment{
    background-color: #b1d9df;
    padding: 3% 2%;
    border-radius: 0 0 10px 10px;
}

.customer_voice{
    margin-top: 5%;
    background-image: url('../img/bg_yel_pc.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 17% 3% 10%;
}
.ttl_img{
    display: block;
    width: 100%;
    margin: 0 auto;
}
.customer_voice_child{
    max-width: 1000px;
    margin: 2% auto;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    border: 2px solid #007284;
    background-color: #fff;
    padding: 1%;
    box-sizing: border-box;
}
.customer_voice_child img{
    display: block;
    width: 10%;
    object-fit: contain;
}
.customer_voice_child div{
    width: 88%;
}
.customer_voice_child div p:last-child{
    display: block;
    text-align: right;
}

.fixed_case{
    margin: 2% auto;
    max-width: 1000px;
    border: 10px solid #e7f7f7;
    box-sizing: border-box;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
    background-color: #fff;
    padding: 2%;
    display: flex;
    justify-content: space-between;
}
.fixed_case_cat{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2%;
}
.fixed_case_cat p{
    display: block;
    width:48%;
}

.case_th {
	background-color: #00adab;
    padding: 3px 15px;
    color: #fff;
    font-weight: bold;
	text-align: center;
	font-size: 1.2em;
	margin-top: 8px;
}
.fixed_case_cat .right{
    text-align: right;
}
.fixed_case .pc_ds{
    display: block;
    width:25%;
    object-fit: contain;
}
.fixed_case .sp_ds{
    display: none;
}
.fixed_case>div{
    width: 100%;
}
.fixed_case div b{
    font-size: 120%;
    font-weight: bold;
}

.other_service02 li{
    list-style: none;
    width: 28% !important;
    text-align: center;
    border: 1px solid #fff;
    padding: 10px 0;
    margin-bottom: 10px;
}
.other_service02 li a{
    color: #fff;
}
.other_service02 li .contact{
    font-weight: normal;
}
.price_detail{
    margin: 2% auto;
    max-width: 1000px;
}
.price_detail_ttl{
    display: block;
    padding: 10px 0;
    background-color: #e1eaf7;
    color: #666;
    margin-bottom: 2%;
    text-align: center;
    font-size: 120%;
    font-weight: bold;
}
.price_table{
    width: 100%;
    margin: 2% auto;
    border-collapse: collapse;
}
.price_table td{
    border: 1px solid #999;
    padding: 10px 15px;
}
.price_table tr:first-child td{
    background-color: #eee;
    text-align: center;
    
}

@media screen and (max-width:640px){
    h2{
        font-size: 5.5vw;
        margin: 10% 0;
    }
    .lead_text{
        width:95%;
    }
    .lead_text h2{
        font-size: 100%;
    }
    .lead_text div{
        width: 75%;
    }
    .lead_text img{
        width: 23%;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
        width: 95%;
        margin: 5% auto;
    }
    .pics{
        max-width: 95%;
    }
    h4{
        font-size: 100%;
    }
    .sum_bg{
        background-image: url('../img/bg_col.png');
        background-repeat: no-repeat;
        background-size: cover;
        padding: 20% 3% 5%;
    }
    .sum_bg img{
        margin: 5% auto;
    }
    .sum_bg h5{
        font-size: 95%;
    }
    .staff_card{
        width: 95%;
    }
    .staff_card_prof img{
        display: block;
        width: 30%;
    }
    .staff_card_prof div{
        width: 65%;
    }
    .staff_card_comment{
        padding: 5%;
    }
    .ttl_img{
        width: 100%;
        margin: 0;
    }
    .customer_voice{
        margin-top: 5%;
        background-image: url('../img/bg_yel.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        padding: 20% 0;
    }
    .customer_voice_child{
        width: 95%;
        display: block;
        padding: 3%;
    }
    .customer_voice .customer_voice_child:nth-child(even){
        margin-left: 0;
        border-left: 0;
        border-radius: 0 10px 10px 0;
    }
    .customer_voice .customer_voice_child:nth-child(odd){
        margin-right: 0;
        border-right: 0;
        border-radius: 10px 0 0 10px;
    }
    .customer_voice_child img{
        width: 30%;
        margin: 10px auto;
    }
    .customer_voice_child div{
        width: 100%;
    }
    .fixed_case{
        display: block;
        padding: 3%;
        margin: 2% auto;
        width: 95%;
        border: 10px solid #e7f7f7;
    }
    .fixed_case img,
    .fixed_case>div{
        width: 100%;
    }
    .fixed_case .pc_ds{
        display: none;
    }
    .fixed_case .sp_ds{
        display: block;
        margin-bottom: 3%;
    }
    .fixed_case_cat{
        display: block;
    }
    .fixed_case_cat p{
        width: 100%;
    }
    .fixed_case_cat .right{
        text-align: left;
    }
    .other_service02{
        padding: 0 !important;
    }
    .other_service02 li{
        width: 47% !important;
    }
    .price_table{
        width: 95%;
    }
    .price_table td{
        padding: 10px;
        line-height: 1.6;
    }
    .price_table td:first-child{
        width: 65%;
    }
}


.example{
    max-width: 1200px;
    margin: 5% auto 0;
    position: relative;
    z-index: 5;
}

.example h3{
    padding: 10px 0 10px 10px;
    color: #fff;
    font-style: normal;
	text-align: center;
	background: #00adab;
}

.main_flex{
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    border: 2px solid #00adab;
    border-radius: 10px;
    padding: 10px 10px 20px 10px;
    box-sizing: border-box;
}
.main_flex img{
    display: block;
    object-fit: contain;
    width: 100%;
}
.main_flex div{
    width: 100%;
	text-align: center;
}

.staff_comment{
    margin: 50px auto 20px;
    padding: 15px;
    background-color: #e7f7f7;
}
.staff_comment p{
    margin: 0 0 15px;
}
.staff_comment p:last-child{
    margin-bottom: 0;
}

.view_ex_all{
    display: block;
    text-align: center;
}
.view_ex_all a{
    color: #fff;
    border-radius: 50px;
    background-color: #f00;
    padding: 10px 25px;
    font-weight: bold;
}
.info_th{
	text-align: center;
		font-weight: bold;
}

.tbl-r03{
	text-align: center;
	margin: 0 auto;
	width: 50%;
	background: #abe7e7;
}
th {
  
  padding: 1px;
	font-size: 1.3em;
}
td {
  padding: 2px;
	font-size: 1.4em;
}
.last{
	border-top: 1px dashed #46cfcd;
	background: #fff;
}

@media screen and (max-width:640px) {
	.tbl-r03{
	width: 90%;
}
td {
	font-size: 1.2em;
}
}

.ex_item{
	margin-top: 3em;
}
.fixed_case_cat+p a{
    color: #333;
}


.other_service{
    display: block;
    text-align: center;
}

.other_service02{
    display: flex;
    justify-content: space-between;
    padding: 2%;
    list-style: disc;
    flex-wrap: wrap;
    flex-direction: row;
}

.other_service02 li{
    line-height: 2;
    width: 200px;
}
.other_service02 li .contact{
    font-weight: normal;
}

.ri-p{
    text-align: center;
    font-size: 16px;
    padding: 5px 10px;
    background-color: #46cfcd;
    width: 30%;
    font-weight: bold;
    color: #fff;
    margin: 0 auto;
    border-radius: 20px;
}

@media screen and (max-width:640px){
    .main_flex{
        display: block;
        width: 95%;
    }
    .main_flex img,
    .main_flex div{
        width: 100%;
    }
    .example h3{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: 1.2em;
    }
    .view_ex_all{
        margin-top: 20px;
    }
    .other_service02{
        padding: 2% 5%;
        width: 95%;
        margin-right: auto;
        margin-left: auto;
    }
    .other_service02 li{
        line-height: 2;
        width: 100px;
    }
    .other_service02 li a{
        font-size: 14px;
    }

.ri-p{
    font-size: 15px;
    padding: 7px 10px;
    width: 60%;
    margin: 0 auto;
}
}
