@charset "UTF-8";
/* CSS Document */
/* base
----------------------------------------- */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  background-color: #fcfcfc;
}

h1 {
  font-size: 4.8rem;
} /* 900 */
h2 {
  font-size: 3.6rem;
  font-weight: 700;
} /* 700 */
h3 {
  font-size: 2.2rem;
  font-weight: 600;
} /* 600 */
p {
  font-size: 1.6rem;
} /* 400 */
/* Utility  */
.d_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.m_auto {
  margin: 0 auto;
}

.xy_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fluid {
  width: 100%;
  height: auto;
}

.t_left {
  text-align: left;
}

.t_center {
  text-align: center;
}

.t_right {
  text-align: right;
}

.t_justy {
  text-align: justify;
}

.v_top {
  vertical-align: top;
}

.v_middle {
  vertical-align: middle;
}

.v_bottom {
  vertical-align: bottom;
}

.t-left {
  text-align: left;
}

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

.t-right {
  text-align: right;
}

.headerGroup {
  width: 100%;
  height: 80px;
  justify-content: space-between;
  align-items: center;
}
.headerGroup__left {
  width: 185px;
  height: 50px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.headerGroup__logo {
  width: 100%;
  height: auto;
}
.headerGroup__right {
  width: 800px;
  text-align: right;
  padding-right: 40px;
}

.underline a {
  position: relative;
  color: #000;
  text-decoration: none;
}

.underline a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #111;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.underline a:hover::after {
  transform: scale(1, 1);
}

.openbtn {
  display: none;
}

#g-nav {
  display: none;
}

#g-nav-list {
  display: none;
}

.circle-bg {
  display: none;
}

.headerGroup__nav span {
  padding: 0px 5px;
}

@media screen and (max-width: 1024px) {
  .headerGroup__nav {
    display: none;
  }
  .headerGroup__left {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .headerGroup__left {
    margin-top: 12px;
  }
}
.slideWrapper {
  position: relative;
}

.slideWrapper__title {
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
}

.setContents-wrap {
  width: 100%;
  background-color: #F9F9F9;
  padding: 100px 0px;
  margin-bottom: 100px;
}

.setContents-Group {
  max-width: 1440px;
  background-color: #F9F9F9;
  padding: 0 200px;
}
.setContents-Group__left {
  flex-basis: 50%;
}
.setContents-Group__right {
  flex-basis: 50%;
  padding-left: 50px;
}
.setContents-Group__image {
  width: 100%;
  height: auto;
}
.setContents-Group__title {
  font-weight: 900;
  width: 360px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.setContents-Group__description {
  width: 450px;
  line-height: 2;
  letter-spacing: 2px;
}

@media screen and (max-width: 1024px) {
  .slideWrapper__title img {
    width: 80%;
    height: auto;
  }
  .setContents-Group {
    flex-direction: column-reverse;
    padding: 20px 50px;
  }
  .setContents-Group__right {
    padding-left: 0px;
    width: 100%;
  }
  .setContents-Group__title {
    width: 100%;
    margin-bottom: 30px;
  }
  .setContents-Group__description {
    width: 100%;
    margin-bottom: 20px;
  }
}
.lineup-Group {
  max-width: 1260px;
  margin-bottom: 100px;
}
.lineup-Group__title {
  font-weight: 900;
}
.lineup-Group__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lineup-Group__title-bgLogo {
  display: block;
  margin-top: -12px;
  margin-bottom: 30px;
}

.lineup-Group-contents {
  display: flex;
  width: 33.3333333333%;
  flex-direction: column;
  padding: 50px 30px 50px 30px;
}
.lineup-Group-contents__img {
  border-radius: 50%;
  margin-bottom: 40px;
}
.lineup-Group-contents__title {
  color: #fff;
  margin-bottom: 30px;
}
.lineup-Group-contents__description {
  width: 100%;
  color: #fff;
  line-height: 2;
  margin-bottom: 40px;
}
.lineup-Group-contents__btn {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  margin-top: auto;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 4;
  transition: all 0.3s;
}
.lineup-Group-contents__btn:hover {
  border-radius: 40px;
  transition: border-radius 0.3s;
}

.contentsColor-left {
  background-color: #f29600;
}

.contentsColor-center {
  background-color: #e73828;
}

.contentsColor-right {
  background-color: #6a3906;
}

@media screen and (max-width: 1024px) {
  .lineup-Group-contents {
    padding: 50px 15px;
  }
}
@media screen and (max-width: 768px) {
  .lineup-Group__flex {
    flex-direction: column;
  }
  .lineup-Group-contents {
    width: 100%;
  }
}
.trinity-Group {
  max-width: 1440px;
  margin-bottom: 100px;
}
.trinity-Group__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trinity-Group__title-bgLogo {
  display: block;
  margin-top: -12px;
  margin-bottom: 30px;
}

.trinity-Group-contents {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
}
.trinity-Group-contents__title {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 900;
  width: 100%;
  height: 480px;
}
.trinity-Group-contents__description {
  padding: 40px 45px;
  line-height: 2;
}

.trinity-imgLeft {
  background-image: url(../img/img_trinity-imgLeft.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.trinity-imgCenter {
  background-image: url(../img/img_trinity-imgCenter.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.trinity-imgRight {
  background-image: url(../img/img_trinity-imgRight.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.trinityColor-center {
  background-color: #efefef;
}

@media screen and (max-width: 1024px) {
  .trinity-Group-contents__description {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .trinity-Group__flex {
    flex-direction: column;
  }
  .trinity-Group-contents {
    width: 100%;
  }
}
.toping-Group {
  max-width: 530px;
  margin-bottom: 100px;
}
.toping-Group__title-bgLogo {
  display: block;
  margin-top: -12px;
  margin-bottom: 30px;
}
.toping-GroupList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.toping-GroupList__item {
  max-width: 240px;
}
.toping-GroupList__item-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #6a3906;
  margin-bottom: 30px;
}
.toping-GroupList__item-name {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .toping-GroupList__item {
    margin: 0 auto;
  }
  .toping-GroupList__item-img {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.how-to-make-Group {
  max-width: 1260px;
  margin-bottom: 100px;
}
.how-to-make-Group__title-bgLogo {
  display: block;
  margin-top: -12px;
  margin-bottom: 30px;
}
.how-to-make-Group__left {
  width: 36%;
  background-color: #ECECEC;
  padding: 50px;
}
.how-to-make-Group__left_subtitle {
  font-weight: 500;
  margin-bottom: 25px;
}
.how-to-make-Group__left_description {
  line-height: 2;
}
.how-to-make-Group__right {
  width: 64%;
  background-color: #f29600;
}

@media screen and (max-width: 1024px) {
  .how-to-make-Group {
    width: 100%;
  }
  .how-to-make-Group__left {
    flex-basis: 100%;
  }
  .how-to-make-Group__right {
    flex-basis: 100%;
  }
}
.orderGroup {
  max-width: 1260px;
  margin-bottom: 180px;
}
.orderGroup__bnr a {
  width: 100%;
  height: 150px;
  background-color: #f29600;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  transition: border-radius 0.3s;
}
.orderGroup__title-bgLogo {
  display: block;
  margin-top: -12px;
  margin-bottom: 30px;
}

.orderGroup__bnr a:hover {
  border-radius: 75px;
  transition: border-radius 0.3s;
}

@media screen and (max-width: 599px) {
  .orderGroup__bnr a {
    padding: 10px 60px;
    line-height: 1.5;
  }
}
.footerGroup {
  width: 100%;
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 50px;
}
.footerGroup__logo {
  display: block;
  margin: 0 auto 50px auto;
}
.footerGroup__snsWrap {
  width: 250px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footerGroup__icon {
  width: 30px;
  color: #fff;
}
.footerGroup__icon a:hover {
  opacity: 0.7;
}
.footerGroup__copyright {
  color: #fff;
  transition: all 0.3s;
}
.footerGroup__copyright a:hover {
  color: #f29600;
  transition: all 0.3s;
}
.footerGroup__copyright span {
  font-size: 15px;
  margin-right: 3px;
}
.footerGroup__des {
  max-width: 325px;
  width: 100%;
  line-height: 200%;
  color: #ffffff;
  margin: 0 auto;
  font-size: 1.4rem;
  margin-bottom: 50px;
  text-align: justify;
}

#page-tops {
  position: fixed;
  bottom: 0;
  right: 0;
  min-width: 50px;
  min-height: 50px;
  bottom: 2%;
  right: 2%;
}

/* ベースの本体 */
#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #f29600;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader005 {
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  transform: translateZ(0);
}

@-webkit-keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@media screen and (max-width: 1024px) {
  .openbtn {
    display: block;
  }
  #g-nav {
    display: block;
  }
  #g-nav-list {
    display: block;
  }
  .circle-bg {
    display: block;
  }
  /* hamburger navigation 
  --------------------------------------------------- */
  #g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  .circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f29600;
    opacity: 95%; /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    top: -50px;
    left: calc(50% - 50px); /*50%から円の半径を引いた値*/
    transition: all 0.6s; /*0.6秒かけてアニメーション*/
  }
  .circle-bg.circleactive {
    transform: scale(50);
  }
  #g-nav-list {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch; /* padding-bottom: 10px; */
  }
  #g-nav.panelactive #g-nav-list {
    display: block;
  }
  #g-nav ul {
    opacity: 0;
    z-index: 999;
    max-width: 1024px;
    margin: 0 auto;
    padding: 50px;
  }
  #g-nav.panelactive ul {
    opacity: 1;
    margin: 0 auto;
  }
  #g-nav.panelactive ul li {
    -webkit-animation-name: gnaviAnime;
    animation-name: gnaviAnime;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @-webkit-keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #g-nav li {
    text-align: center;
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 20px 10px;
  }
  #g-nav li p {
    color: #fff;
  }
  #g-nav li span {
    color: #fff;
    font-weight: 400;
  }
  .nav-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  #g-nav li a {
    color: #111;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
  }
  /*========= navigation button CSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 16px;
    right: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.2s;
    position: absolute;
    left: 13px;
    height: 2px;
    border-radius: 2px;
    background-color: #111;
    width: 50%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}/*# sourceMappingURL=style.css.map */