/* common parts */
.section {
  text-align: center;
  position: relative;
}


.wave-top {
  width: 100%;
  position: absolute;
  top: -1vw;
}

.wave-bottom {
  width: 100%;
  position: absolute;
  bottom: -1vw;
  z-index: 1;
}

.contact-wave-top{
  width: 100%;
  position: absolute;
  top: -3vw;
  z-index: 1;
}

.section:nth-of-type(odd) {
  margin-top: 0;
  background-color: #f7f7f7;
}
.section:nth-of-type(odd) .wrapper {
  padding-top: 80px;
  padding-bottom: 60px;
}

.section:nth-of-type(1) {
  margin-bottom: 0px;
}

.section:nth-of-type(2) {
  background-color: #aacedc;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section_title {
  position: relative;
  display: inline-block;
  margin-top: -1.6rem;
  margin-bottom: -1.6rem;
  padding: 1.6rem 0.2em;
  font-family: "Open sans", sans-serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section_title::before, .section_title::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 0.8em;
  height: 0;
  margin-top: -2px;
  content: "";
  border-top: 4px solid #333;
}
.section_title::before {
  left: -1em;
}
.section_title::after {
  right: -1em;
}
.section_title-sub {
  margin-bottom: 0.8rem;
}
.section_intro {
  margin-top: 1.6rem;
  margin-bottom: 4.8rem;
  font-size: 1.4rem;
}


/* header */
.header {
  position: relative;
  height: 80vh;
  background: #8bb3c6 url(../image/top/mv.png) center/contain no-repeat;
  background-color: #8bb3c6;
  background-image: url(../image/top/mv.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
}
.header_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  font-family: "Open sans", sans-serif;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: #0006;
}
.header_desc {
  margin-top: 40px;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2em;
  color: #fff;
}

.gNav {
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
}
.gNav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gNav_link {
  position: relative;
  display: block;
  padding: 1em 2em;
  font-family: "Open sans", sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
}
.gNav_link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #333;
}
.gNav_link:hover::after {
  width: 100%;
}
.gNav_hamb {
  display: none;
}

/* Works card */
.card {
  position: relative;
  width: 33.3%;
  margin: 20px 40px;

}
.card:nth-of-type(3n+1):last-of-type {
  margin-right: auto;
}
.card:nth-of-type(3n+2):last-of-type {
  margin-right: auto;
  margin-left: 2%;
}
.card_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card_title {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: bold;
}
.card_info {
  font-size: 1.2rem;
}
.card_link {
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.card_link:hover {
  -webkit-transform: translate(0, -4px);
      -ms-transform: translate(0, -4px);
          transform: translate(0, -4px);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
}
.card_image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.card-new::after {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4em;
  height: 4em;
  margin: -1em;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 4em;
  content: "New";
  color: #fff;
  border-radius: 50px;
  background: #ff511c;
  -webkit-box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------------
Tabのレイアウト
-------------------------------------------------------------------------------- */
/*tabの形状*/
.tab{
	display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.tab li a{
	display: block;
	background:#ddd;
	margin:0 2px;
  padding:10px 20px;
  color:#333;
	text-decoration: none;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#fff;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: flex;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.about_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.about_profile {
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 25px 0 #d9d9d9;
          box-shadow: 0 0 25px 0 #d9d9d9;
}
.about_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about_text {
  width: 70%;
  margin-left: 5%;
  text-align: left;
}
.about_fin {
  margin-top: 2em;
  padding: 1em;
  color: #af8484;
  border-radius: 5px;
  background: #f0f0f0;
}
.about_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}
.about_twitter, .about_note {
  width: 45%;
}
.about_twitter iframe {
  border: 1px solid #ddd !important;
  border-radius: 5px;
}

/* バリュー */
.value{
  padding-bottom: 40px;
}

.value-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.value-box img{
  width: 33.3%;
  height:150px;
  margin: 40px auto;
}

.value-box span{
  font-size: 12px;
  margin-top: 10px;
}

.value-step {
  font-family: 'Adorn Engraved';
  font-size: 28px;
}

.box2 {
  margin:0 40px;
}


.contact {
  margin-top: 40px;
  margin-bottom: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.contact_sns_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
}
.contact_sns_item:hover {
  -webkit-transform: rotateZ(360deg);
      -ms-transform: rotate(360deg);
          transform: rotateZ(360deg);
}
.contact_sns_item a {
  color: #333;
}
.contact_sns_item i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2em;
  height: 2em;
  margin: 0 0.5em;
  padding: 0.4em;
  font-size: 4rem;
  border-radius: 100%;
  background-color: #aaa;
}
.contact_sns_item-twitter i {
  color: #fff;
  background-color: #1da1f3;
}
.contact_sns_item-instagram i {
  color: #fff;
  background: -o-linear-gradient(315deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background-color: unset;
}
.contact_map {
  width: 100%;
  height: 300px;
  margin-top: 0px;
}
.contact_map iframe {
  width: 100%;
  height: 100%;
}

.form {
  max-width: 600px;
  margin: auto;
}
.form_block:not(:first-of-type) {
  margin-top: 1.8rem;
}
.form label {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
}
.form input[type=text], .form input[type=email], .form textarea {
  width: 100%;
  padding: 0.2em 0.5em;
  font-size: 1.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}
.form textarea {
  min-height: 10em;
}
.form button {
  position: relative;
  display: inline-block;
  padding: 0.5em 3em;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid;
  border-radius: 100px;
}
.form button::after {
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin: auto;
  content: "";
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 2px solid;
  border-top: 0;
  border-left: 0;
}
.form_button {
  text-align: center;
}

.send_button {
  color: #1099a3;
}
.send_button:hover {
  color: #fff;
  background-color: #1099a3;
}

.footer {
  background-color: #1d1d1d;
}

.copyright {
  text-align: center;
}
.copyright_text {
  font-size: 1rem;
  color: #fff;
}

.footer_pageTop {
  position: fixed;
  z-index: 100;
  right: 2vw;
  bottom: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background-color: rgba(204, 204, 204, 0.8);
}

@media (max-width: 559px) {
  ._btn-hamb {
    width: 8vw;
    height: 5.8vw;
    cursor: pointer;
  }
  ._btn-hamb_menu {
    position: relative;
    background: #dddddd;
    -webkit-transition: all 0ms 0.2s;
    -o-transition: all 0ms 0.2s;
    transition: all 0ms 0.2s;
    -webkit-transform: translateY(2.4vw);
        -ms-transform: translateY(2.4vw);
            transform: translateY(2.4vw);
  }
  ._btn-hamb_menu, ._btn-hamb_menu::before, ._btn-hamb_menu::after {
    width: 8vw;
    height: 1vw;
    -webkit-box-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.25);
            box-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.25);
  }
  ._btn-hamb_menu::before {
    position: absolute;
    left: 0;
    bottom: 2.4vw;
    background: #dddddd;
    content: "";
    transition: bottom 0.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  ._btn-hamb_menu::after {
    position: absolute;
    top: 2.4vw;
    left: 0;
    background: #dddddd;
    content: "";
    transition: top 0.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  ._btn-hamb.on ._btn-hamb_menu {
    background: rgba(0, 0, 0, 0);
  }
  ._btn-hamb.on ._btn-hamb_menu, ._btn-hamb.on ._btn-hamb_menu::before, ._btn-hamb.on ._btn-hamb_menu::after {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  ._btn-hamb.on ._btn-hamb_menu::before {
    bottom: 0;
    background: #0068b7;
    transition: bottom 0.2s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  ._btn-hamb.on ._btn-hamb_menu::after {
    top: 0;
    background: #0068b7;
    transition: top 0.2s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  body {
    font-size: 1.8rem;
    line-height: 1.7;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .hoverTop {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .hoverTop:hover {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .wrapper {
    max-width: 90%;
  }

  .header {
    background-size: cover;
  }
  .header_name {
    width:85%;
    font-size: 1em;
    text-align: center;
  }

  .header_logo {
    width: 100%;
  }

  .gNav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    height: 100vh;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    background: #fff;
  }
  .gNav.on {
    z-index: 10;
    opacity: 1;
  }
  .gNav_item {
    width: 100%;
    text-align: center;
  }
  .gNav_hamb {
    position: fixed;
    z-index: 100;
    top: 4vw;
    right: 3vw;
    display: block;
  }

  /*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: flex;/*表示*/
    flex-direction: column;
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

  .card {
    width: auto;
    max-width: 100%;
    margin: 0 auto 10vw;
  }

  .about_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about_text {
    width: 100%;
  }
  .about_sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about_twitter, .about_note {
    width: 100%;
  }

  .value-box {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }

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