@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  color: #383e45;
  font-size: 0.9rem;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

.site-title {
  width: 120px;
  line-height: 1px;
  padding: 10px 0;
}
.site-title a {
  display: block;
}
.section-title {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  border-bottom: solid 1px #383e45;
}
.content-title {
  font-size: 1rem;
  margin: 10px 0;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 4%;
  text-align: center;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
    display: flex;
    margin: 0 auto;
    padding: 7px;
    max-width: 1080px;
}
#header ul {
  display: flex;
  padding: 10px 0;
}
#header li {
  margin-left: 30px;
}
#header li a {
  color: #24292e;
}
#header li a:hover {
  opacity: 0.7;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  margin-bottom: 60px;
  text-align: center;
}

#mainvisual img {
  width: 35%;
}

.first_vue {
  display: flex;
  width: 90%;
  margin: auto;
  max-width: 1080px;
  border: darkcyan;
  border-style: double;
}

.first_vue_content {
  width: 800px;
  margin: auto;
}

/* .first_vue_content h2{
  margin-bottom: 20px;
  font-size: 44px;
}

.first_vue_content .content-title{
  font-size: 25px;
}

.first_vue_content p{
  font-size: 20px;
} */

.top_message{
  display: none
;}

.border {
  border-bottom: 1px solid rgb(111 180 73);
  margin: 60px 0px;
}

/*-------------------------------------------
About
-------------------------------------------*/
#about .content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
#about img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 30px;
}

#about .text {
  text-align: left;
  width: 100%;
}

#about ul {
  margin: 10px 0;
  text-decoration: underline;
  font-size: 16px;
}

#about li {
  margin-bottom: 10px;
}


/*-------------------------------------------
Table
-------------------------------------------*/
#detail table {
  text-align: initial;
  font-size: 14px;
}

th {
    padding: 0.4em;
    background: #F8F8F8;
    border-right: solid 1px #C9C9C9;
    font-weight: 500;
}

td {
    padding: 0.4em;
}

/*-------------------------------------------
Bicycle
-------------------------------------------*/
#bicycle {
  margin-top: 30px;
}

#bicycle ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
#bicycle li {
  width: 32%;
}
#bicycle img {
    height: 72%;
  }

/*-------------------------------------------
feature
-------------------------------------------*/
#feature img {
  width: 200px;
  height: 150px;
  border-radius: 50%;
  margin: 20px;
}

#feature .content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

#feature .text {
  width: 57%;
  text-align: initial;
}

/*-------------------------------------------
button
-------------------------------------------*/
.btn {
  background: green;
  display: inline-flex;
  border-radius: 5px;
  border-color: green;
  border-style: solid;

}

.btn a {
  display: inline-block;
  padding: 1em 6em;
  color: white;
}

.btn:hover {
  background: rgb(111, 180, 73);
  border-color: rgb(111, 180, 73);
  border-style: solid;
}

.btn:active {
  background: rgb(111, 180, 73);
  border-color: rgb(82, 134, 55);
  border-style: solid;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  font-size: 0.5rem;
  padding: 10px 0;
  text-align: center;
  background-color: currentcolor;
}

#footer p {
  color: white;
}

/*-------------------------------------------
tablet
-------------------------------------------*/
@media screen and (max-width: 960px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #bicycle img {
        height: 48%;
    }

    .first_vue_content p {
      display: none;
    }

}
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {
  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
  #mainvisual img{
    width: 100%;
  }

  .top_message{
    display: block;
    position: absolute;
    right: 10px;
    top: 100px;
    font-size: 20px;
    padding: 25px 15px;
    color: #fff;
    background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
    border-radius: 50%;
    font-family: system-ui;
  }
  
.first_vue {
  display: flex;
  width: 100%;
  border-style: none;
}

.first_vue_content {
  display: none;
}

  /*-------------------------------------------
  About
  -------------------------------------------*/
  #about .content {
    flex-direction: column;
  }
  #about img {
    margin-right: 0;
    margin-bottom: 30px;
  }

  /*-------------------------------------------
  Bicycle
  -------------------------------------------*/
  #bicycle ul {
    flex-direction: column;
  }
  #bicycle li {
    width: 100%;
    margin-bottom: 30px;
  }

  /*-------------------------------------------
  feature
  -------------------------------------------*/
  #feature .content {
    flex-direction: column;
  }
  #feature .text {
    width: 90%;
  }
}

 /*-------------------------------------------
  consulting
  -------------------------------------------*/
#consulting .text {
  text-align: initial;
  margin: auto;
  width: 90%;
}