/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*reset end*/
input, textarea, select, button {
  font-family: "BIZ UDPGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "BIZ UDPGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.7;
}

.header {
  background-color: #ccc;
  padding: 30px 0;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .header {
    padding: 15px 0;
    margin-bottom: 50px;
  }
}
.header__siteTitle {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .header__siteTitle {
    margin-bottom: 10px;
  }
}
.header__gnavi {
  display: flex;
  justify-content: center;
}
.header__naviLink {
  margin-right: 1em;
  text-decoration: none;
  color: #006919;
}
.header__naviLink:last-child {
  margin-right: 0;
}
.header__naviLink:hover {
  text-decoration: underline;
}

.content {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 15px;
}

.contentHead {
  margin-bottom: 50px;
}
.contentHead__ttl {
  font-size: 1.5rem;
  color: #004CB1;
  font-weight: bold;
  text-align: center;
  margin: 40px 0;
}
.contentHead__txt {
  text-align: center;
  margin: 0 auto;
}
.contentHead .reqdMark {
  color: orangered;
}

.form__block {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .form__block {
    display: block;
  }
}
.form__name {
  width: 30%;
  font-size: 18px;
  padding: 0 15px 40px 0;
}
@media (max-width: 767px) {
  .form__name {
    width: 100%;
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.form__reqdMark {
  color: orangered;
  padding-left: 0.5em;
}
.form__inputArea {
  width: 70%;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .form__inputArea {
    width: 100%;
  }
}
.form__input {
  border: 1px solid transparent;
  background-color: #eee;
  padding: 8px;
  width: 100%;
  font-size: 16px;
  border-radius: 0;
}
.form__input:focus {
  outline: none;
  border-color: #bbb;
}
.form__input.name {
  width: calc(48% - 1.5em);
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .form__input.name {
    width: calc(100% - 1.5em);
  }
}
.form__input.lastName {
  margin-right: 4%;
}
@media (max-width: 767px) {
  .form__input.lastName {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.form__input.zipCode {
  width: 8em;
  margin-left: 0.5em;
  margin-right: 4%;
}
.form__input.otherAddress {
  margin-top: 15px;
}
.form__selectWrap {
  display: inline-block;
  position: relative;
}
.form__selectWrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.75em;
  top: 44%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #666666;
  border-bottom: 1px solid #666666;
  pointer-events: none;
}
.form__select {
  outline: none;
  background: transparent;
  font-size: 16px;
  border-radius: 0;
  padding: 8px 2em 8px 8px;
  border: 1px solid transparent;
  background-color: #eee;
}
.form__select:focus {
  outline: none;
  border-color: #bbb;
}
.form__textArea {
  font-size: 16px;
  padding: 8px;
  border: 1px solid transparent;
  background-color: #eee;
  resize: vertical;
  min-height: 10em;
  width: 100%;
  line-height: 1.7;
}
.form__textArea:focus {
  outline: none;
  border-color: #bbb;
  box-shadow: none;
}

.formBtns {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .formBtns {
    width: 100%;
  }
}
.formBtns__wrap.confirm {
  width: 100%;
}
.formBtns__wrap.return {
  width: 48%;
  margin-right: 4%;
}
@media (max-width: 767px) {
  .formBtns__wrap.return {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.formBtns__wrap.submit {
  width: 48%;
}
@media (max-width: 767px) {
  .formBtns__wrap.submit {
    width: 100%;
  }
}
.formBtns__btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border: 1px solid #004CB1;
    border-radius: 100px;
  padding: 20px 0;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .formBtns__btn {
    max-width: 200px;
    padding: 15px;
  }
}
.formBtns__btn.outline:hover {
  background-color: #004CB1;
  color: #ffffff;
}
.formBtns__btn.solid {
  background-color: #004CB1;
  color: #ffffff;
}
.formBtns__btn.solid:hover {
  opacity: 0.7;
}

.footer {
  width: 100%;
  background-color: #004CB1;
  padding: 30px 0;
}
.footer__copyright {
  text-align: center;
  font-size: 14px;
    color: #fff;
}

.font80 {
  font-size: 80%;
}

.choice_img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  display: block;
}

.choice_img:hover {
  cursor: pointer;
}

input[type=radio] {
  -webkit-appearance: radio;
  width: auto;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  width: auto;
}

input[type=radio]:hover, input[type=checkbox] {
  cursor: pointer;
}

.err_msg {
  color: orangered;
  display: block;
}

.label_text:hover {
  cursor: pointer;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.white_bg_color {
  background-color: #eeeeee !important;
}

.text-center {
  text-align: center;
}

.bottom_total_price_wrap {
  width: 100%;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/*# sourceMappingURL=style.css.map */


/**************original****************/

body{
	font-family: 'Noto Sans JP', sans-serif;
}

.eng{
	font-family: 'Roboto', sans-serif;
	letter-spacing: 2px;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-right: 1rem;
  white-space: nowrap;
}


.jumbotron{
	background-image: url("../images/top-big-banner.jpg");
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 600px;
}


.nav-item{
	margin-right: 20px;
}

.c-copy{
	  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
	margin-bottom: 20px;
}

.lead-text{
	font-size: 1.4rem;
	font-weight: 500;
	margin-top: 50px;
	color: #004CB1;
}

.btn-primary:hover {
  color: #fff;
  background-color: #C29A61;
  border-color: #C29A61;
}

.section-title{
	text-align: center;
	margin-top: 120px;
	font-weight: bold;
	margin-bottom: 20px;
}
.news{
	width: 70%;
	padding: 0 20px 20px 20px;
	list-style: none;
	margin: auto;
}
.news li{
	line-height: 1.5;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	padding-bottom: 5px;
}

.news-date{
	margin-right: 30px;
	font-weight: bold;
}

.lead-h3{
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 15px;
}
.solution-wrap{
	margin-top: 50px;
}
.solution img{
	width: 100%;
	margin-bottom: 30px;
}
.solution h2{
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 700;
}

.solution p{
	line-height: 1.7;
}

.gray-bg{
	padding: 50px 0 100px 0;
	background-color: #DBDBDB;
	margin-top: 100px;
}

.gray-bg2{
	padding: 50px 0 100px 0;
	background-color: #EBEBEB;
	margin-top: 100px;
}

.service-box{
	background-color: #fff;
	border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(139, 139, 139, 0.45);
	padding: 30px;
	margin-bottom: 20px;
}
.title-bar{
	padding: 10px;
	background-color: #004CB1;
	margin-bottom: 20px;
	border-radius: 5px;
}
.sub-title{
	text-align: center;
	color: #004CB1;
	font-weight: 700;
	margin-bottom: 20px;
}
.service-box h3{
	text-align: center;
	font-weight: bold;
	color: #222;
}
.service-box h4{
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	padding: 0;
	margin: 0;
	color: #fff;
}
.price-s{
	font-size: 0.85rem;
}

.price-btn{
	margin-top: 70px;
}

.img-box{
	margin-bottom: 30px;
}

.logo-box{
margin: 30px 0;
}


/* FAQ */
.accordion {
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 8%);
    background-color: #fff;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #0050B9;
    transition: transform .5s, opacity .5s;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
}


footer{
	background-color: #222;
	padding: 30px;
	flex-direction: row;
}
footer a{
	color: #fff;
}

footer a:hover{
	color:#B7B7B7;
	text-decoration: none;
}

footer li{
	list-style: none;
}

.white-logo{
	width: 100px;
}
.foot-link{
	margin: 10px 0 10px 0;
}
.foot-link a{
	display: flex;
  align-items: center;
}
.copy{
	clear: both;
}
.copyright{
	background-color: #004CB1;
	color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 0.8rem;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
}



/* 1280px以上になると以下を適用 */
@media screen and (min-width:1281px) {
  .jumbotron {
    background-image: url("../images/top-big-banner-lg.jpg");
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 600px;
  }

}

/* 901px以下になると以下を適用 */
@media screen and (max-width:901px) {
  .jumbotron {
    background-image: url("../images/top-img-s.jpg");
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 400px;
  }
	.c-copy{
	  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
		text-align: center;
		color: #fff;
}
	.lead-text{
	font-size: 1rem;
	font-weight: 300;
	margin-bottom: 30px;
		text-align: center;
		color: #fff;
		margin-top: 0;
}
	.lead{
		text-align: center;
	}
	
		.btn-primary2 {
  color: #fff;
  background-color: #222;
  border-color: #222;
}
	.btn-primary2:hover {
  color: #fff;
  background-color: #858585;
  border-color: #858585;
}	
	
}


/* 770px以下になると以下を適用 */
@media screen and (max-width:770px) {
	.jumbotron {
	padding:7rem 1rem;
	}
	.c-copy{
	  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
		text-align: center;
		color: #fff;
}
	.section-title{
	text-align: center;
		margin-bottom: 20px;
		margin-top: 30px;
}
	.news{
	width: 98%;
	padding: 0;
	list-style: none;
	margin: auto;
}

}


/* 430px以下になると以下を適用 */
@media screen and (min-width:300px) and ( max-width:430px) {
	.jumbotron {
		height: 300px;
	padding:4rem 1rem;
	}
	.c-copy{
	  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
		text-align: center;
		color: #fff;
}
	.lead-text{
	font-size: 1rem;
	font-weight: normal;
	margin-bottom: 30px;
		text-align: center;
		color: #fff;
		margin-top: 0;
}
	.section-title{
		font-size: 1.5rem;
	}

}



/***************about-page*******************/
.jumbotron-about{
	background-image: url("../images/about-img.jpg");
	background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 600px;
    position: relative;
}
.jumbo-copy{
    line-height: 1.5;
    font-size: 2rem;
    filter: drop-shadow(5px 0px 13px rgba(0,0,0,0.71));
    margin: auto;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-text{
    margin-top: 70px;
    padding: 10px 150px;
    line-height: 1.7;
}
.stp{
    margin: 20px 0;
}
.reki{
    background-color: #ccc;
    display: block;
    padding: 5px 15px;
    border-radius: 5px;
}
.prof{
    margin-bottom: 100px;
}
.name{
    text-align: center;
    margin-bottom: 50px;
}
.name h2{
    margin: 10px 0;
    color: #004CB1;
}
.name p{
    margin: 0;
    color: #727272;
}
.summary{
    margin-bottom: 100px;
}
.prof-ph{
    width: 30%;
    margin: 30px 0;
}

/* 901px以下になると以下を適用 */
@media screen and (max-width:901px) {
    .top-text{
    margin-top: 70px;
    padding: 10px 20px;
    line-height: 1.7;
} 
    
}
/* 770px以下になると以下を適用 */
@media screen and (max-width:770px) {
    .jumbo-copy{
    line-height: 1.2;
    font-size: 1.3rem;
    filter: drop-shadow(5px 0px 13px rgba(0,0,0,0.71));
    margin: auto;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
 
}


/***************FAQ-page*******************/
.jumbotron-faq{
	background-image: url("../images/faq-top.jpg");
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 300px;
    position: relative;
    width: 100%;
}

/***************service-page*******************/
.jumbotron-service{
	background-image: url("../images/service-top.jpg");
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 300px;
    position: relative;
}

.jumbotron-service-2{
	background-image: url("../images/otameshi-img.jpg");
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 300px;
    position: relative;
}


.plans-btns{
    margin-top: 70px;
}

.innerlink a{
    color: #fff;
    text-decoration: none;
}

.down-ar{
    font-size: 1.2rem;
    vertical-align: -4px;
    margin-left: 10px;
}

.plans-btn{
    background-color: #004CB1;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    margin: 10px 0;
}

.nagare{
    text-align: center;
}
.nagare2{
    text-align: left;
}

.nagare2 h3{
    text-align: center;
}

.nagare2 img{
    width: 80%;
    margin-top: 20px;
}

.illust{
    width: 100%;
    text-align: center;
}

.steps{
    font-size: 1.2rem;
    font-weight: 700;
    background-color: #004CB1;
    padding: 10px 30px;
    border-radius: 10px;
    width: 100%;
    margin: auto;
    color: #fff;
}

.steps p{
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 5px;
}

.arrow-down {
    font-size: 3rem;
    color: #004CB1;
}


.plans-wrap{
    margin-top: 100px;
}

.plans-wrap h3{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

.white-box{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.white-box ul li{
    text-align: left;
    line-height: 1.7;
}


.white-box h4{
    background-color: #ccc;
    color: #222;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 5px;
}

.price-wrap{
    margin-top: 50px;
    text-align: center;
}
.price-wrap h3{
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.price{
    font-size: 1.2rem;
    font-weight: 700;
    color:  #004CB1;
    margin-bottom: 10px;
}

.spot-wrap{
    margin-bottom: 100px;
}

table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        th, td {
            border: 1px solid #5D5D5D;
            padding: 10px;
            text-align: left;
        }

td{
    background-color: #fff;
}

        th {
            background-color: #BABABA;
        }

/***************works-page*******************/
.jumbotron-works{
	background-image: url("../images/works-img.jpg");
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 300px;
    position: relative;
}

.lp{
    border:solid 1px #ccc;
    margin: 10px 0;
}

.keeshop{
    margin-bottom: 50px;
}

.about-keeshop{
    margin-bottom: 50px;
}

.about-keeshop h3{
    border-left:5px solid #222;
    border-bottom:1px solid #ccc;
    padding:0 0 5px 10px;
    font-size: 1.5rem;
    margin-top: 30px
}
.s-box{
    background-color: #ECECEC;
    padding: 20px;
    border-radius: 8px;
}

.works-banner img{
    margin-bottom: 20px;
}

/***************contact-page*******************/
.jumbotron-contact{
	background-image: url("https://stec-works.com/images/contact-img.jpg");
	background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	height: 300px;
    position: relative;
}

@media screen and (max-width:770px) {
    .plans-btn{
    background-color: #004CB1;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
}
    .innerlink a{
    font-size: 0.8rem;
}
    .down-ar{
    font-size: 0.9rem;
    vertical-align: -4px;
    margin-left: 3px;
}
    .nagare h3{
        margin-top: 50px;
    }
    
    
    .jumbotron-faq{
	background-image: url("../images/faq-top-s.jpg");
	background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
	height: 200px;
    position: relative;
    width: 100%;
}
    
    .jumbotron-service{
	background-image: url("../images/service-top-s.jpg");
	background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
	height: 200px;
    position: relative;
}
    .jumbotron-works{
	background-image: url("../images/works-img.jpg");
	background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
	height: 200px;
    position: relative;
}
    .jumbotron-contact{
	background-image: url("https://stec-works.com/images/contact-img2.jpg");
	background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
	height: 200px;
    position: relative;
    width: 100%;
}
}

/***fadein***/

/* 画面外にいる状態 */
.fadein {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 500ms;
}
 
/* 画面内に入った状態 */
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.otameshi{
    margin-bottom: 100px;
}