/********** Template CSS **********/
:root {
    --primary: #0c9dd0;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}



#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;font-family: "Sofia", sans-serif;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;font-family: "Sofia", sans-serif;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;font-family: "Sofia", sans-serif;
}


/*** Button ***/
.btn {
    font-family: "Sofia", sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left:2rem;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

@media (max-width: 1400px) {
.navbar-dark .navbar-nav .nav-link {
    font-size: 1.2rem;margin-left:1.5rem;
	}
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}


.navbar-dark .navbar-toggler {
    color: #fff !important;
    border-color:#fff !important;
}

@media (max-width: 991.98px) {
	.navbar {background:#06a3da !important;z-index: 5 !important;}


    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color:#fff;font-size:1.25rem;text-align: center;
    }
	.nav-link span {display: inline-block;font-size: 1rem;margin-left: 1rem;font-weight: 500;}
	.active {color:#fff !important;}
	.navbar-nav {margin-bottom:5%;}
}

@media (max-width: 600px) {
	.navbar-brand {width: 80%;}
	.navbar {padding:0.2rem 1rem !important;}
}

@media (max-width: 991.982px) {
.sticky-top.navbar-dark {position: fixed;
        background:rgba(0, 0, 0, .6) !important;width: 100%;
    }
}
@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .4);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background:rgba(0, 0, 0, .4);
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}



.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 5px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(9, 30, 62, .5)), url("../img/product_top.jpg") center center no-repeat;
    background-size: cover;margin-bottom:5%;
}

.bg-header02 {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(9, 30, 62, .5)), url("../img/about_top.jpg") center center no-repeat;
    background-size: cover;margin-bottom:5%;
}

.bg-header03 {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(9, 30, 62, .5)), url("../img/product_top02.jpg") center center no-repeat;
    background-size: cover;margin-bottom:5%;
}

.bg-header04 {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(9, 30, 62, .5)), url("../img/product_top03.jpg") center center no-repeat;
    background-size: cover;margin-bottom:5%;
}

.bg-header05 {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(9, 30, 62, .5)), url("../img/product_top04.jpg") center center no-repeat;
    background-size: cover;margin-bottom:5%;
}

.bg-header06 {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(9, 30, 62, .5)), url("../img/info_top.jpg") center center no-repeat;
    background-size: cover;margin-bottom:5%;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
.bg-header,.bg-header02,.bg-header03,.bg-header04,.bg-header05,.bg-header06 {margin-bottom:8%;
}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#box {
            width: 100%;
            height: 100vh;
            background-position: top center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: left;
            overflow: hidden !important;
  padding:3%;position: relative;
}

	


#box:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


.video-wrap {
  width: 100%;
  height: 100vh !important;
  position: absolute;
  overflow: hidden !important;
  z-index: -1;
  top: 0%;
  left: 0%;
}

.video-wrap::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}

.video-wrap video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
#box h2 {color:rgba(255, 255, 255, 0.85);font-size: 2rem;line-height:2.6rem;margin-bottom: 2%;text-shadow: 0 0 6px rgb(0, 0, 0, 1);}
#box h1 {color: rgba(255, 255, 255, 0.4);font-size:5rem;text-shadow: 0 0 8px rgb(0, 0, 0, 0.4);}

@media (max-width:992px) {
#box {margin-top: -50px;}
}
@media (max-width: 600px) {
#box h2 {font-size: 1.5rem;line-height:2.2rem;}
#box h1 {font-size:3rem;margin-bottom: 5%;}
}

.nav_logo {width:75%;margin-top:3%;}
.nav_logo:hover {opacity: .7;}

.recruit_btn {margin-bottom: 5%;padding: 10px 0;color: var(--dark);margin-left:1.5rem;box-shadow: inset 0 0 0 50px transparent;}

.recruit_btn:hover {box-shadow: inset 0 0 0 0 var(--primary);}

@media (min-width: 992px) {
.recruit_btn {background:#0c9dd0;padding:.5rem 1.5rem !important;margin-left: 2rem !important;color: #fff;margin-bottom: 0;}
}

@media (max-width:500px) {
.nav_logo {width:90%;margin-top:5%;}
}

@media (min-width: 1500px) {
.nav_logo {width: 75%;margin-top:5%;}
}
@media (min-width: 1200px) {
.nav_logo {width: 80%;margin-top:4%;}
}

.pc {display:block;}
.m_sp {display: none;}
.sp {display: none;}

@media (max-width: 991.98px) {
.pc {display:none;}
.m_sp {display:block;}

}

@media (max-width:767.9px) {
.sp {display:block !important;}
}

.sub_page {margin-bottom: 8%;}
.top_txt {align-items:flex-end !important;display: flex;}

.top_recruit {background-image:url("../img/recruit_back.jpg");background-size:cover;padding-top:5% !important;padding-bottom:5% !important; 
    width:100%;}
.top_recruit h5,.info h5,.line h5,.sub_page h5 {color: #9fa0a0 !important;padding-bottom:1%;}
.top_recruit h1,.info h1,.line h1,.sub_page h1 {color: #231815;font-size: 2.3rem;line-height: 3.2rem;}
.top_recruit p,.line p,.sub_page p {font-size: 1.1rem;line-height:2rem;color: #595757;}



@media screen and (max-width: 767px){
	.top_recruit h5,.info h5,.line h5,.sub_page h5 {font-size: 1rem;}
	.top_recruit h1,.info h1,.line h1,.sub_page h1 {font-size:1.8rem;line-height:2rem;}
}

.info {background:#eef9ff;padding-top:5% !important;padding-bottom:5% !important; }
.information__container {
  width: 100%;margin-top:6% !important;
}


.information__inner {
  max-width: 1100px; margin: auto;
}

.news {
  padding: 2.75rem;
  margin: 3.75rem auto 0;
  background-color: #fff;
  width: 100%;font-size: 1.1rem;
  max-width: 78.75rem;
}

.news__list {
  display: flex;
  padding: 2.25rem;
  border-bottom: 1px solid #c9caca;
}

.news__day {
  letter-spacing: 0.4px;
  color: #9e9e9f;
  font-weight:600;
  margin-right: 2.8125rem;
}
.news__text {
  letter-spacing: 0.4px;
  color: #231815;
  font-weight: 400;
}
.news__text:hover {color:var(--primary);}
.news__text span {font-size: .9rem;font-weight: 600;color: #fff;background: #f39800;padding: 0.4rem .8rem 0.2rem;margin-left: 1rem;display: inline-block;}

@media (max-width: 820px) {
  .news {
    padding:1.2rem 2.3125rem 2.3125rem;
  }
  .news__list {
    flex-direction: column;padding:1.25rem;
  }
}

@media (max-width: 414px) {
.info {padding-top:8% !important;padding-bottom:8% !important; }
  .news {
    padding:1.2rem 1rem 2.3125rem !important;
  }
  .news__list {
   padding:1.2rem !important;
  }
  .news__text {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.news__btn {
  margin: 2.6875rem auto 5%;
  text-align: center;
}

.insta {background-image:url("../img/insta_back.jpg");background-size:cover;padding-top:5% !important;padding-bottom:5% !important; 
    width:100%;}
.insta h1 img {width:40%;}
.snap_area {margin-top:5%;}

@media (max-width: 500px) {
	.insta h1 img {width:60%;}
}


.line {padding-top:5% !important;padding-bottom:5% !important; }
.line h5 img {width:60%;margin-top:3%;}
.line h5 img:hover {opacity: .6;}
.line h2 img {width:85%;text-align: right;right: 0 !important;}

@media (max-width:991.8px) {
	.line h5 img {width:55%;}
	.line h2 img {width:90%;margin: auto;}
}

@media (max-width: 500px) {
	.line h2 img {width:90%;margin: auto;}
}

#googlemap iframe{
     -webkit-filter: grayscale(100%);
     -moz-filter: grayscale(100%);
     -o-filter: grayscale(100%);
     -ms-filter: grayscale(100%);
     filter: grayscale(100%);
}

#googlemap  {
	position: relative;margin:0 auto 0;
	padding: 0 0 36%;
	height: 0;
	overflow: hidden;

 }
#googlemap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	min-height: 100% !important;

 }

@media screen and (max-width:991.8px) {
	#googlemap  {margin: 10% auto 0;
		padding: 0 0 60%;}
}

.footer-about h1 img {width:50%;}
.footer-about P {margin-top:3%; color:#fff;font-size: 1.1rem;line-height: 1.8rem;}

#table01 {margin-bottom: 5%;margin-top:2%;}
#table01 tr {
font-size: 1rem;line-height: 1.7rem;
}

#table01 th,
#table01 td {
  padding:.2rem 0;color: #fff;
  border: none;font-weight: 400;vertical-align: top;
}

#table01 th {
  width: 20%;
}


.footer_copy {background: #fff;padding:1%;font-size:0.85rem;}
.footer_copy p {font-size:0.85rem !important;}


.contact_btn {text-align: right;cursor: pointer;transition: .2s cubic-bezier(0.45, 0, 0.55, 1);}
.contact_btn a {color: #fff;font-size: 1.1rem;background-color: #03516d; padding: .5rem 1.5rem;display: inline-block !important; text-transform: uppercase;}
.contact_btn a:before {color:#fff;padding-right:.5rem; }

.contact_btn:hover,.line_btn:hover,.insta_btn:hover  {opacity: .8;}



.sns_btn {text-align: right;cursor: pointer;transition: .2s cubic-bezier(0.45, 0, 0.55, 1);}
.sns_btn a.line_btn,.sns_btn a.insta_btn {padding:.2rem;display: inline-block !important;width:17%;}
.sns_btn a.line_btn img,.sns_btn a.insta_btn img {width:100%;}

@media screen and (max-width:1200px) {
.sns_btn a.line_btn,.sns_btn a.insta_btn {width:25%;}
}

@media screen and (max-width:991.8px) {
.footer-about h1 img {width:100%;}
}
@media screen and (max-width: 767px){
.footer-about h1 img {width:90%;}
.contact_btn {text-align: left;margin-top: 5%;margin-bottom: 5%;margin-left:0;}
.sns_btn {text-align: left;}
.sns_btn a.line_btn,.sns_btn a.insta_btn {width:15%;}
}


@media screen and (max-width:500px){
.footer-about h1 img {width:100% !important;margin-bottom: 2%;}
.sns_btn a.line_btn,.sns_btn a.insta_btn {width:18%;}
}


.sub_ttl {color:rgba(255, 255, 255, 0.55);letter-spacing:0.2rem;}


.bg-pro1 {background-image: url("../img/cad.jpg");
background-size: cover;background-repeat: no-repeat;position: relative;
}
.bg-pro2 {background-image: url("../img/ceramics.jpg");
background-size: cover;background-repeat: no-repeat;position: relative;
}
.bg-pro3 {background-image: url("../img/hybridceramics.jpg");
background-size: cover;background-repeat: no-repeat;position: relative;
}
.bg-pro4 {background-image: url("../img/e-max_top.jpg");
background-size: cover;background-repeat: no-repeat;position: relative;
}
.bg-pro5 {background-image: url("../img/gishi.jpg");
background-size: cover;background-repeat: no-repeat;position: relative;
}
.bg-pro6 {background-image: url("../img/mouthpiece_top.jpg");
background-size: cover;background-repeat: no-repeat;position: relative;
}

.bg-pro1::before,.bg-pro2::before,.bg-pro3::before,.bg-pro4::before,.bg-pro5::before,.bg-pro6::before,.bg-pro7::before,.bg-pro8::before,.bg-pro9::before{
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.4);
}
.bg-pro1:hover,.bg-pro2:hover,.bg-pro3:hover,.bg-pro4:hover,.bg-pro5:hover,.bg-pro6:hover,.bg-pro7:hover,.bg-pro8:hover,.bg-pro9:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-out;
}
.bg-pro1:hover::before,.bg-pro2:hover::before,.bg-pro3:hover::before,.bg-pro4:hover::before,.bg-pro5:hover::before,.bg-pro6:hover::before,.bg-pro7:hover::before,.bg-pro8:hover::before,.bg-pro9:hover::before{background-color: rgba(0,0,0,0.2);}


.service-item h4 {color: #fff;z-index: 999;padding-bottom: 1rem;}
.service-item p {color: #fff !important; z-index: 999;}
.service-item p span {display: inline-block;}
.box{position: relative;margin-bottom: 5%;}
.service-icon {
    top: -2%;
    width: 60px;
    height: 60px;text-align: center !important;
    display: flex;z-index: 9999 !important;
    background: var(--primary);
    border-radius:50%;position: absolute;left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

}
.service-icon img {width: 100%;max-width: 30px;margin: auto;text-align: center !important;}


.video_area_frame {width: 95%; margin: auto auto 10%; max-width:800px;}
.video_area {width: 100% !important;position: relative;
  padding-top:56.25%;}
.video_area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	height: 100%;}

 .video_area img {
	position: absolute;width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
}

.video_area:hover {opacity: .8;}

.rec_area img {
	width: 100%
}


/*** ichi_追加 ***/

.section-title h5  {color: #9fa0a0 !important;padding-bottom:1%;}
.section-title h1 {color: #231815;font-size: 2.3rem;line-height: 3.2rem;}
.container p {font-size: 1.1rem;line-height:2rem;color: #595757;}


@media screen and (max-width: 767px){
.section-title h5 {font-size: 1rem;}
.section-title h1{font-size:1.8rem;line-height:2rem;}
}

.company_profile_in {background: #fff;padding:1% !important;margin-top:7% !important;margin-bottom: 8%;}

/* table02 */
#table02 {width:75%; margin:4% auto 7%;font-size: 1.1rem;line-height: 2rem;color: #595757;font-family: "Sofia", sans-serif;}
#table02 tr {
  border-bottom: 2px solid #bbbbbc;
}

#table02 th,
#table02 td {
  padding: 24px 1rem;text-align: left;
  border: none;color: #595757 !important;
}

#table02 th {
  width:24%;border-bottom: 2px solid #54bade;
}




#googlemap02  {
	position: relative;
	padding: 0 0 36%;width: 75%;margin:6% auto 10%;
	height: 0;
	overflow: hidden;

 }
#googlemap02 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	min-height: 100% !important;

 }



@media only screen and (max-width:1199.8px) {
#table02,#googlemap02 {width:90%;}
.company_profile_in {padding: 1% 5% 3% !important;margin-top:10% !important;margin-bottom:15%;}
}

@media only screen and (max-width:991.8px) {
#table02 {width:100%;}
#googlemap02  {margin: 10% auto 14%;width: 100%;padding: 0 0 60%;}
}


/* sp */
@media only screen and (max-width:600px) {
.company_profile_in {padding: 1% 7% 3% !important;margin-top:13% !important;margin-bottom:17%;}
  #table02 th,
  #table02 td {
    width: 100%;
    display: block;
  }

  #table02 th {
    width: 100%;
	  padding-top: 6%;
	  padding-bottom: 0%;
	}
  #table02 td {
	  padding-top: 5%;
	  padding-bottom: 5%;
  }
	
	
}

.pro_ttl {font-weight: 600; color: #fff; background-image: linear-gradient(90deg, rgba(6, 163, 218, 1), rgba(255, 255, 255, 1));
	margin-bottom: 4%; padding: 0.6rem 1rem;}

.link_btn {color:var(--primary);font-size: 1.15rem;
}

.pro_height {min-height: 300px;}

@media only screen and (max-width:1000px) {
	.pro_height {min-height:450px;}
}

@media only screen and (max-width:600px) {
	.pro_height {min-height:300px;}
}

.pro_menu {width: 100%; margin:10% auto auto; text-align: center;}
.pro_menu a {border:2px solid #bbbbbc;margin: auto .5%;}
.pro_menu a:hover {background:var(--primary);color: #fff;}



.Form {
  margin-top:6%;
  margin-left: auto;
  margin-right: auto;vertical-align: middle !important;
  max-width: 1100px;color: #595757;
}
@media screen and (max-width:991.9px) {
  .Form {
    margin-top: 5%;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top:16px;
  padding-bottom:16px;
  width: 100%;
  display: flex;vertical-align: middle !important;
  align-items:left !important;
}
.Form-Item02 {
  border-top: 1px solid #ddd;
  padding-top:16px;
  padding-bottom:16px;
  width: 100%;
  vertical-align: middle !important;
  align-items: center;
}
.Form-Item03 {
  border-top: 1px solid #ddd;
  padding-top:16px;
  padding-bottom:16px;
  width: 100%;
  display:inline-block !important;vertical-align: middle !important;
  align-items: center;
}



@media screen and (max-width:991.9px) {
  .Form-Item,.Form-Item02 {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }
  .Form-Item03 {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
   display: block;
  }
}


.Form-Item-Label {
  width:24%;padding-top:.6rem;
  letter-spacing: 0.05em;padding-left: 1rem;
  font-weight:600;
  font-size:1.1rem;text-align: left;
}
.Form-Item-Label03 {
  width:30%;padding-top: 16px;
  letter-spacing: 0.05em;display: inline-block;
  font-weight:600;
  font-size:1.4rem;
}
.Form-Item-Label04 {
  width:24%;padding-top: 16px;
  letter-spacing: 0.05em;display: inline-block;
  font-weight:600;
  font-size:1.4rem;
}
@media screen and (max-width:1199.9px) {
.Form-Item-Label {
	width:35%;}
}
@media screen and (max-width:850px) {
.Form-Item-Label03 {
	width:50%;}
}
.Form-Item-Label02 {
  width:100%;padding-top: 16px;
  letter-spacing: 0.05em;
  font-weight:600;
  font-size:1.4rem;
}
.Form-Item-Label02 span {
  font-weight:400;display: block;padding-top: 1rem; padding-left: 1em; text-indent: -1em;
  font-size:1.3rem;
}
.radio_btn { margin-left:5% !important; margin-right:.5% !important;}
.radio_btn00 { margin-left:5% !important; margin-right:.5% !important;}
.radio_btn02 { margin-right:.5% !important;margin-bottom:3% !important;}


@media screen and (max-width:991.9px) {
  .Form-Item-Label {
    max-width: inherit;width:100%;
    display: flex;padding-top: 12px;
    align-items: center;
  }
  .Form-Item-Label03 {
    max-width: inherit;display: block;
    display: flex;padding-top: 12px;
    align-items: center;
  }
  .Form-Item-Label04 {
    max-width: inherit;display: block;
    display: flex;padding-top: 12px;
    align-items: center;
  }

.radio_btn00 {margin-left: 0 !important;}
}


.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width:991.9px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }

}
.Form-Item-Label-Required {
  margin-right:1rem;
  padding-top: .1rem;
  padding-bottom: .1rem;
  width:3rem;
  display: inline-block;
  text-align: center;
  background: #ed6a7c;
  color: #fff;
  font-size: 0.9rem;
}
@media screen and (max-width: 650px) {
  .Form-Item-Label-Required {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  background: #eeeeef;
  font-size: 1.1rem;
}

.Form-Item-Input02 {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;display: inline-block;
  width: 100%;
  background: #eeeeef;
  font-size: 1.1rem;
}

.Form-Item-Input_s {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 50% !important;

max-width:400px;   background: #eeeeef;
  font-size: 1.1rem;
}
@media screen and (max-width:991.9px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top:1%;
    height: 40px;
    flex: inherit;
  }
  .Form-Item-Input_s {
    margin-left: 0;
    margin-top:1%;
    height: 40px;max-width:none;
    flex: inherit;width:100% !important;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px; 
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 100px;
  flex: 1;
  width: 100%;
  background: #eeeeef;
  font-size:1.1rem;
}
@media screen and (max-width:991.9px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height:80px;
    flex: inherit;
  }
}


/*--2/28 徳永ここから記載しています---*/

.bosyu_sec {background-color: #efefef;}

/*　★　001　更新版　★　始まり*/
.rec_area_contaner .rec_text_area {padding-right: 0;padding-left: 0;}

.rec_area img {width: 100% !important;}
.rec_area {max-height:450px !important;overflow: hidden;}
/*　★　001　更新版　★　終わり*/

.m_nini {margin: 5% auto;}


/*　★　001　更新版　★　始まり*/
.rec_btn_link {width: 100%;margin: 5% auto !important; text-align: center !important;}
.rec_btn_link p {display: inline-block;background: #06a3da; color:#fff; padding: 0.6rem 1rem;font-size: 1.3rem;font-weight: 600;width: 20%;margin:auto 1% !important;}
/*　★　001　更新版　★　終わり*/


/*
  .rec_btn_link {width: 100%;margin: 5% auto; text-align: center;}
  .rec_btn_link p {display: inline-block;background: #06a3da; color:#fff; padding: 0.6rem 1rem;font-size: 1.3rem;font-weight: 600;width: 20%;margin:auto 1%;}
  .rec_btn_link p a { width: 100%;}
*/

.rec_btn_link p:hover {opacity: .8;}

@media screen and (max-width:991.8px) {
	.rec_btn_link p {width: auto;}
}
	
/*　★　001　更新版　★　始まり*/
.bosyu_sec table {background-color: #fff;font-size: 1.1rem;}
.bosyu_sec #gikousi {margin-bottom: 2%;}
.bosyu_sec #eigyou {margin-top: 8%;}
.table-bordered {border-color: #efefef;}
.table td {padding: 1.5rem;}
.td_w_1 {width:16%; text-align: center; vertical-align: middle;font-size: 1.2rem;font-weight: 600;}
.table {max-width: 1100px;margin: 7% auto;}
/*　★　001　更新版　★　終わり*/

/*
.bosyu_sec table {background-color: #fff;}
.bosyu_sec #gikousi {margin-bottom: 2%;}
.bosyu_sec #eigyou {margin-top: 8%;}
.table-bordered {border-color: #efefef;}
.table td {padding: 1rem 0 1rem 1rem;}
.td_w_1 {width:16%; text-align: center; vertical-align: middle;}
*/



@media screen and (max-width:991.8px) {
	/*　★　001　更新版　★　始まり*/
	.td_w_1 {width:25%;}
	/*　★　001　更新版　★　終わり*/

/*
	td,.td_w_1 {width: 100%; display: block;  border-color: #efefef; border-bottom: 1px solid #efefef;}
	.table td {text-align: left;}
	.table-bordered .td_w_1 {border-width: 1px;}
*/
}

/*　★　001　更新版　★　始まり*/
@media screen and (max-width:600px) {
	td,.td_w_1 {width: 100%; display: block;  border-color: #efefef; border-bottom: 1px solid #efefef;}
	.table td {text-align: left;padding: 1rem 1.5rem;}
	.table-bordered .td_w_1 {border-width: 1px;}
	.bosyu_sec table {font-size: 1rem;}
	.td_w_1 {font-size: 1.1rem;font-weight: 600;background: #dcdddd !important;}
	.sp_ttl {background-color: #06a3da !important;color:#fff;}
	.sp_subttl{font-size: 1.5rem;font-weight: 600;}
	.table {margin: 15% auto;}
	.rec_btn_link p {background: #9fa0a0; font-size: 1.15rem;font-weight: 600;width: 43%;margin:auto 1%;}
}
/*　★　001　更新版　★　終わり*/


@media only screen and (max-width: 767.9px) {
	.video_area_frame {width:95% !important; margin: 3% auto 10%;padding-top:0;}
}

/*　★　001　更新版　★　始まり*/
.rec_area_contaner p {font-size:1.2rem;line-height: 2.2rem;margin-top: 2%;}

@media only screen and (max-width: 767.9px) {
	.rec_area_contaner p {font-size:1.1rem;line-height: 2rem;margin-top:4%;margin-bottom: 2%;}
}


/*　★　001　更新版　★ 終わり*/



.about_mes_container {
	padding-top: 0rem !important; padding-bottom: 0rem !important;
}

.scan_img {display: inline-block;width: 30%;}
.scan_img span {display: block;font-size: 1rem;padding-top: 1rem;text-align: center;}
.scan_img img {width: 100%;}

@media screen and (max-width:991.8px) {
.h_auto{height:100% !important;}
}

@media only screen and (max-width: 767.9px) {
.scan_img {display: inline-block;width:48%;}
	.back-to-top {margin-bottom: 50px;}
}

@media screen and (max-width:500px) {
.scan_img {display:block;width:100%;}
}

.news_all {background:#eef9ff;padding:1% 5% 7% !important;margin-top:8%;}
@media screen and (max-width:991.8px) {
.news_all {padding:1% 5% 10% !important;}
}
@media only screen and (max-width: 767.9px) {
.news_all {padding:.3% 5% 15% !important;margin-top:12% !important;margin-bottom: 10%;}
}

.m_height {min-height: 500px;}
@media only screen and (max-width: 767.9px) {
.m_height {min-height:300px;}
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

.entry_back {background:#eef9ff;padding:5% !important;text-align: center;max-width:800px;margin: auto;}
.entry_back {margin-bottom:2%;line-height: 1.6rem;}
@media only screen and (max-width: 767.9px) {
.entry_back  {margin-top:10%;}
}
@media only screen and (max-width:400px) {
.entry_back  {padding:5% 2% !important;}
}

/* table03 */
#table03 {table-layout: fixed;border-collapse: separate; border-spacing: 0px 20px;
  overflow-wrap : break-word;width:90%; margin:4% auto 7%;font-size: 1.1rem;line-height: 1.8rem;color: #595757;font-family: "Sofia", sans-serif;}

#table03 th{
  text-align: left;padding: 1rem;
  width:32%;border-bottom: 2px solid #54bade;background:#eef9ff;line-height: 1.6rem;color: #595757 !important;
}
#table03 td {
  text-align: left;padding: 1rem;
  border-bottom: 2px solid #bbbbbc;\color: #595757 !important;
}

#table03 td img {width:14px;vertical-align:-1%;}
#table03 td a {color: #595757;}
#table03 td a:hover {color: #54bade;}


#table03 th span {font-size: 1rem;}
@media only screen and (max-width:1400px) {
#table03 th {width:40%}
}

@media only screen and (max-width:1199.8px) {
#table03 {width:90%;}
}


/* sp */
@media only screen and (max-width:991.9px) {
  #table03 {width:100%;}
#table03 th,
  #table03 td {
    width: 100%;
    display: block;
  }
	
#table03 tr {
  border-bottom:none;
}

  #table03 th {
    width: 100%;
	  padding-top:5%;
	}
  #table03 td {
	  padding-top: 3%;border-bottom: none;
	  padding-bottom:8%;
  }
}
	