@charset "utf-8";

/*
Base Style
*/
:root{
  --base-font-size: 16px;
  --mid-font-size: 24px;
  --large-font-size: 36px;
}

body{
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: var(--base-font-size);
  line-height: 1.5;
  color: #333;
}
label, input, textarea, select, button{
  cursor: pointer;
}
button{
  border: 0;
}
/* grid */
.grid{
  margin: 0;
  padding: 0;
  display: flex;

}
.grid-item{
  list-style: none;
}
.grid-col-2 > .grid-item{
  width: 50%;
}
.grid-col-3 > .grid-item{
  width: 33.3%;
}
.grid-col-4 > .grid-item{
  width: 25%;
  display: flex;
  vertical-align: top;
}

@media screen and (max-width: 768px){
  .grid{
    display: block;
  }
  .grid-col-2 > .grid-item,
  .grid-col-3 > .grid-item,
  .grid-col-4 > .grid-item{
    width: 100%;
    margin: 20px 0;
  }
}


/* section */
.section{
  padding: 200px 15px;
}
.section.section-secounday{
  background-color: #dfdcdc;
}
.section-headline{
  text-align: center;
  font-size: var(--large-font-size);
  font-weight: bold;
  margin: 0 0 40px;
}
.section-button{
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 768px){
  .section{
    padding: 20px 10px;
  }
  .section-headline{
    font-size: 30px;
    margin: 0 0 20px;
  }
  .section-button{
    margin: 20px 0 0;
  }
}

/*header*/
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}
.header-logo {
  margin: 0
}
.header-logo > img{
  width: 70px;
  height: 70px;
}
.header-logo > a{
  display: block;
  color: transparent;
}
.header-logo {
  margin: 0;
}
/* .header-nav {
} */
.header-navlist {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* .header-navitem {
} */
.header-navitem > a{
  text-decoration: none;
  display: block;
  padding: 15px;
  color: #048806;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: boder-color .35s;
  font-size: var(--base-font-size);
}
.header-navitem > a{
  text-decoration: none;
  display: block;
  padding: 15px;
  color: #048806;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: boder-color .8s;
  font-size: var(--mid-font-size);
}
.header-navitem2 > a{
  text-decoration: none;
    color: #048806;
}
.header-navitem > a:hover{
  border-bottom: 2px solid #fff;
  border-radius: 2%;
}

@media screen and (max-width: 768px){
  .header{
    font-size: 12px;
  }
}


/*hero*/
.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero > strong{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  color: #fff;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: center;
  z-index: 3;
}
.hero > img{
  width: 100%;
}

@media screen and (max-width: 768px){
  .hero > strong{
    font-size: 50px;
  }
}


/* about */
.about{
  margin: 0;
  display: flex;
}
/* .about-image{} */
.about-caption{
  padding-left: 15px;
}
.about-headline{
  margin: 0 0 20px;
  font-size: var(--large-font-size);
}
/* .about-description{} */

@media screen and (max-width: 768px){
  .about{
    display: block;
  }
  .about-image{
    max-width: 100%;
    margin-bottom: 20px;
  }
  .about-headline{
    font-size: 20px;
    text-align: center;
  }
}

/* feature */
.feature{
  text-align: center;
  padding: 0 15px;
}
.feature-headline{
  font-weight: bold;
  margin: 0 0 20px;
}
.feature-img{
  margin: 0 0 20px;
}
.feature-descripton{
  margin: 0;
  text-align: left;
}

/*works*/
.works{
  margin: 40px 0;
  padding: 20px;
  text-align: center;
}
.works > img{
  margin: 15px 15px;
}

/* service */
.service{
  max-width: 1100px;
  margin: 0 auto;
  padding: 200px 0;
}
.service-container{

}
.service-area{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 15px;
}
.service-con{

}
.service-title{
  flex-direction: column;
}
.service-title > h2{
  text-align: center;
  border-bottom: 1px solid red;
  margin-bottom: 100px;
}
.service-title > h3{
  font-size: var(--mid-font-size);
  background-color: rgb(250, 141, 141);
  color: #000;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 10px 10px 2px 1px rgb(186 186 190 / 20%);
}
.service-con > img{
  width: 100%;
}
.service-con > h4{
  font-weight: bold;
  font-size: var(--base-font-size);
}
.service-con > p{
  font-size: var(--base-font-size);
}
.service-con > strong{
  color: red;
}

/* card */
.card{
  padding: 0 10px;
}
.card-link{
  display: block;
  color: #333;
  text-decoration: none;
  position: relative;
  transition: background-color .25s;
}
.card-link:hover{
  background-color: #999;
}
.card-label{
  position: absolute;
  left: 0;
  top: 0;
  background-color: #999;
  color: #fff;
  display: block;
  padding: 5px 10px;
  font-size: var(--base-font-size);
}
.card-image{
  width: 100%;
  height: auto;
}
.card-info{
  padding: 5px 10px;
}
/* .card-time{} */
.card-headline{
  margin: 0;
}
.card-description{
  margin: 0;
}

/* avator */
.avator{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
  padding: 10px;
}
.avator-name{
  font-weight: bold;
  padding-left: 15px;
}
.avator-image{
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}

/* button */
.button{
  display: inline-block;
  color: #fff;
  font-weight: bold;
  background-color: #333;
  text-align: center;
  padding: 15px 60px;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 5px 5px #bbb;
}
.button:hover{
  box-shadow: 0 0 0 #bbb;
}
.button-submission{
  background-color: #92d3ca;
}
/*.select, .input, .radio, .textarea*/
.select{
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #000;
  min-width: 500px;
}
.input{
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #000;
  min-width: 500px;
}
.radio{
  margin: 0 10px;
}
.textarea{
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #000;
  min-width: 500px;  border-radius: 5px;
  padding: 10px;
  border: 1px solid #000;
  min-width: 500px;
  min-height: 100px;
}

@media screen and (max-width: 768px){
  .select,
  .input,
  .radio,
  .textarea{
    min-width: auto;
    width: 100%;
  }
}

/*form*/
/* .form{} */
.form-table{
  margin: 0 auto;
}
.form-table th{
  padding: 10px;
  text-align: left;
}
.form-table td{
  padding: 10px;
}
.form-button{
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px){
  .form-table,
  .form-table tbody,
  .form-table tr,
  .form-table th,
  .form-table td{
    display: block;
  }
  .form-button{
    text-align: center;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px){
  .works{
    margin: 20px 0;
    padding: 10px;
    text-align: center;
  }
  .works > img{
    width: 100px;
    margin: 5px;
  }
}

/*footer*/
.footer {
  background-color: #333;
  color: #fff;
}
.footer-map {
  margin: 0;
  padding: 40px  15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-map > iframe {
  width: 60%;
}
.footer-mapinfo {
  width: 40%;
  padding: 15px;
}
.footer-maplogo {
  font-size: var(--mid-font-size);
  font-weight: bold;
}
.footer-maplogo > svg{
  fill:transparent;
  margin-right: 10px;

}
.footer-mapaddress {
  font-style: normal;
}
.footer-mapaddress > a {
  color: #fff;
}
.footer-line {
  border-color: #444;
}
.footer-copy {
  display: block;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 768px){
  .footer-map {
    padding: 15px;
    display: block;
  }
  .footer-map > iframe{
    width: 100%;
    height: 200px;
  }
  .footer-mapinfo {
    width: 100%;
    text-align: center;
  }
}