@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* リセットCSS
===================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
}

/*===========================================================
#common
===========================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333333;
  overflow-x: hidden;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.section {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .section {
    margin-top: 96px;
  }
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 16px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background: #333;
}

/*=========================
header
=========================*/
.header {
  width: 100%;
  height: 70px;
  line-height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .header__inner {
    width: 95%;
  }
}

.header__nav {
  height: 70px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__nav {
    height: 60px;
    align-items: center;
  }
}

.header__logo a {
  font-size: 40px;
  font-weight: bold;
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.7;
}

.header__right-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__right-menu {
    display: none;
  }
}
.header__right-menu li:not(:first-child) {
  margin-left: 48px;
}
.header__right-menu li a {
  transition: all 0.3s ease 0s;
}
.header__right-menu li a:hover {
  opacity: 0.7;
}

/*=========================
top-visual
=========================*/
.top-visual {
  width: 100%;
  height: 100%;
  margin-top: 70px;
}

.top-visual__inner {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top-visual__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .top-visual__inner {
    width: 95%;
  }
}

.top-visual__view {
  text-align: right;
  height: 100%;
  width: 100%;
}

.swiper-slide {
  width: 100%;
  padding-top: 62.5%;
  position: relative;
}
.swiper-slide::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 20px 20px #fff;
}
.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-visual__content {
  width: 20%;
  background: #fff;
  padding: 70px 40px 70px 0;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top-visual__content {
    padding: 20px 40px 20px 0;
  }
}
@media (max-width: 767px) {
  .top-visual__content {
    width: 100%;
    display: contents;
  }
}

.top-visual__title {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-visual__title {
    margin-top: 40px;
  }
}

.top-visual__text {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .top-visual__text {
    margin-top: 32px;
  }
}

/*=========================
concept
=========================*/
@media (min-width: 768px) and (max-width: 1199px) {
  .concept__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .concept__inner {
    width: 95%;
  }
}

.concept__contents {
  margin-top: 60px;
  display: flex;
}
@media (max-width: 767px) {
  .concept__contents {
    display: block;
    margin-top: 48px;
  }
}
.concept__contents img {
  width: 50%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .concept__contents img {
    width: 100%;
  }
}

.concept__content {
  width: 50%;
  max-width: 100%;
  margin: auto 0 auto 80px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept__content {
    margin: auto 0 auto 40px;
  }
}
@media (max-width: 767px) {
  .concept__content {
    width: 100%;
    margin: 40px 0 0;
  }
}

.concept__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.concept__text {
  margin-top: 48px;
  line-height: 1.6875;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept__text {
    margin: 32px 0 0;
  }
}
@media (max-width: 767px) {
  .concept__text {
    margin: 32px 0 0;
  }
}

/*=========================
feauture
=========================*/
@media (min-width: 768px) and (max-width: 1199px) {
  .feauture__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .feauture__inner {
    width: 95%;
  }
}

.feauture__items {
  margin-top: 64px;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feauture__items {
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .feauture__items {
    display: block;
    margin-top: 48px;
  }
}

.feauture__item {
  width: calc(33.3% - 60px);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}
.feauture__item:not(:first-child) {
  margin-left: 90px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feauture__item:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .feauture__item:not(:first-child) {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .feauture__item {
    display: block;
    width: 340px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .feauture__item:not(:first-child) {
    margin-top: 49px;
  }
}
.feauture__item:hover .feauture__picture > img {
  transform: scale(1.1);
}

.feauture__picture {
  position: relative;
  width: 100%;
  padding-top: 76.4705%;
  overflow: hidden;
}
.feauture__picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}

.feauture__text {
  padding: 32px 0;
  text-align: center;
  line-height: 1.6875;
}
@media (max-width: 767px) {
  .feauture__text {
    padding: 16px 0;
    text-align: center;
    line-height: 1.6875;
  }
}
.feauture__text span {
  display: inline-block;
  text-align: center;
}

/*=========================
second-visual
=========================*/
.second-visual {
  background-image: url(../img/second-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  background-blend-mode: lighten;
}
.fixed-background {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .second-visual__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .second-visual__inner {
    width: 95%;
  }
}

.second-visual__content {
  padding: 70px 0 125px;
}
@media (max-width: 767px) {
  .second-visual__content {
    padding: 182px 0 55px 0;
  }
}

.second-visual__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 0 #333;
  line-height: 1.6818181818;
}
@media (max-width: 767px) {
  .second-visual__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
  }
}

.second-visual__text {
  margin-top: 40px;
  color: #fff;
  text-shadow: 2px 2px 0 #333;
  line-height: 1.6875;
}
@media (max-width: 767px) {
  .second-visual__text {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

/*=========================
products
=========================*/
.products__items {
  margin: 64px auto 0;
  width: 990px;
  max-width: 100%;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products__items {
    width: 95%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .products__items {
    display: block;
    width: 95%;
    margin: auto;
  }
}

.products__item {
  width: calc(33.3% - 53.3333333333px);
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products__item {
    width: calc(33.3% - 26.6666666667px);
    margin: 48px auto 0;
  }
}
@media (max-width: 767px) {
  .products__item {
    display: block;
    width: 340px;
    max-width: 100%;
    margin: 48px auto 0;
  }
}
.products__item:not(:first-child) {
  margin-left: 80px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products__item:not(:first-child):not(:first-child) {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .products__item:not(:first-child):not(:first-child) {
    margin-left: auto;
  }
}
.products__item img {
  height: auto;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}
.products__item img:hover {
  transform: scale(1.1);
}

.products__text {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-top: 24px;
  width: 100%;
}

.products__price {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-top: 16px;
  color: #989898;
  width: 260px;
}

.products__btn {
  display: block;
  margin: 48px auto 0;
}
.products__btn a {
  display: inline-block;
  width: 157px;
  color: #333;
  border: 1px solid #333;
  padding: 14px;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease 0s;
}
.products__btn a:hover {
  color: #fff;
  background-color: #333;
}

/*=========================
news
=========================*/
.news__inner {
  width: 1040px;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .news__inner {
    width: 95%;
  }
}

.news__items {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .news__items {
    margin: 48px auto 0;
  }
}

.news__item {
  display: flex;
  padding-bottom: 24px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .news__item {
    display: block;
    width: calc(100% - 64px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.news__item:nth-child(n+2) {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .news__item:nth-child(n+2) {
    margin-top: 24px;
  }
}
.news__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 1px solid #e0e0e0;
}

.news__img {
  overflow: hidden;
  flex: 0 0 260px;
  width: 100%;
}
.news__img img {
  height: 160px;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}
.news__img img:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .news__img img {
    width: 100%;
    height: auto;
  }
}

.mews__meta {
  margin-left: 40px;
  width: calc(100% - 260px);
}
@media (max-width: 767px) {
  .mews__meta {
    width: 100%;
    margin-left: auto;
  }
}

.news__date {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-top: 13px;
}

.news__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7222222222;
  margin-top: 8px;
}

.news__text {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #888888;
  margin-top: 12px;
}

.news__date-even {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .news__date-even {
    margin-top: 13px;
  }
}

.news__title-even {
  font-weight: 700;
  line-height: 1.7222222222;
}
@media (max-width: 767px) {
  .news__title-even {
    margin-top: 8px;
  }
}

.news__text-even {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #888888;
}
@media (max-width: 767px) {
  .news__text-even {
    margin-top: 12px;
  }
}

.news__btn {
  display: block;
  margin: 48px auto 0;
}
.news__btn a {
  display: inline-block;
  width: 157px;
  font-size: 14px;
  color: #333;
  border: 1px solid #333;
  padding: 14px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.news__btn a:hover {
  color: #fff;
  background-color: #333;
}

/*=========================
third-visual
=========================*/
.third-visual {
  background-image: url(../img/concept-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  background-blend-mode: lighten;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .third-visual__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .third-visual__inner {
    width: 95%;
  }
}

.third-visual__contents {
  display: flex;
  flex-direction: row-reverse;
  padding: 150px 0 150px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .third-visual__contents {
    display: block;
  }
}
@media (max-width: 767px) {
  .third-visual__contents {
    display: block;
  }
}
.third-visual__contents img {
  width: 600px;
  max-width: 100%;
  margin-left: 80px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .third-visual__contents img {
    width: 100%;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .third-visual__contents img {
    width: 100%;
    margin-left: auto;
  }
}

.third-visual__content {
  width: 560px;
  margin: auto 0;
}
@media (max-width: 767px) {
  .third-visual__content {
    width: 100%;
    margin: auto;
  }
}

.third-visual__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7142857143;
  color: #fff;
  text-shadow: 2px 2px 0 #333;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .third-visual__title {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .third-visual__title {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
  }
}

.third-visual__text {
  line-height: 1.6875;
  margin-top: 48px;
  color: #fff;
  text-shadow: 2px 2px 0 #333;
}
@media (max-width: 767px) {
  .third-visual__text {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

/*=========================
contact
=========================*/
.contact {
  margin-top: 225px;
  background-image: url(../img/contact-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 72px 0 85px;
}
@media (max-width: 767px) {
  .contact {
    margin-top: 96px;
    padding: 57px 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .contact__inner {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .contact__inner {
    width: 95%;
  }
}

.contact-taitle {
  color: #fff;
}
.contact-taitle::after {
  background: #fff;
}

.contact__form {
  margin: 64px auto 0;
}
@media (max-width: 767px) {
  .contact__form {
    margin-top: 33px;
  }
}

.contact__form-text {
  font-size: 14px;
  letter-spacing: 1.4px;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .contact__form-text {
    font-weight: 700;
  }
}
.contact__form-text span {
  font-size: 12px;
  color: #e7728e;
}

.contact-form {
  padding: 24px 345px 85px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact-form {
    padding: 32px 120px 0;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding: 32px 15px 0;
  }
}

.contact-form__dl {
  margin: 0;
  padding: 0;
}

.contact-form__row {
  display: flex;
}
@media (max-width: 767px) {
  .contact-form__row {
    display: block;
  }
}
.contact-form__row:not(:first-child) {
  margin-top: 32px;
}

.contact-form__label {
  width: 180px;
  height: 40px;
  margin: 0;
  line-height: 40px;
  background: #fff;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form__label {
    height: 32px;
    line-height: 20px;
    margin: 0px;
    width: auto;
    display: inline-block;
    padding: 5px 16px;
  }
  .contact-form__label::after {
    opacity: 0;
  }
}
.contact-form__label label {
  font-weight: 700;
  font-size: 18px;
  color: #333;
  padding-right: 12px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form__label label {
    font-size: 14px;
  }
}
.contact-form__label label::after {
  content: "＊";
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 2px;
  color: #e7728e;
}
@media (max-width: 767px) {
  .contact-form__label label::after {
    top: -4px;
  }
}

.contact-form__input {
  width: calc(100% - 180px);
  margin-left: 16px;
}
@media (max-width: 767px) {
  .contact-form__input {
    margin-top: 3px;
    margin-left: 0;
    width: 100%;
  }
}
.contact-form__input [type=text] {
  width: 100%;
  height: 40px;
  border: none;
  box-shadow: 5px 6px 15px rgba(0, 0, 0, 0.16);
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 2px;
}
.contact-form__input [type=email] {
  width: 100%;
  height: 40px;
  border: none;
  box-shadow: 5px 6px 15px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 2px;
}
.contact-form__input textarea {
  width: 100%;
  height: 122px;
  border: none;
  box-shadow: 5px 6px 15px rgba(0, 0, 0, 0.16);
  resize: vertical;
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.radio_button {
  display: flex;
  height: 40px;
}
.radio_button input[type=radio] {
  display: none;
}
.radio_button input[type=radio]:checked + label {
  color: #fff;
  background: #333;
}
.radio_button label {
  display: inline-block;
  color: #333;
  background: #fff;
  box-shadow: 5px 6px 15px rgba(0, 0, 0, 0.16);
  text-align: center;
  width: 78px;
  padding: 10px;
}
.radio_button label:hover {
  cursor: pointer;
}

.contact-form__check {
  margin-top: 30px;
  text-align: center;
}
.contact-form__check input[type=checkbox] {
  display: none;
}
.contact-form__check input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}
.contact-form__check input[type=checkbox] + label::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  background: #fff;
  position: absolute;
  left: 0;
  top: -5px;
  transition: all 0.12s, border-color 0.08s;
}
.contact-form__check input[type=checkbox]:checked + label::before {
  width: 10px;
  top: -10px;
  left: 0;
  border-radius: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
  background: transparent;
  border-bottom: 6px solid #fff;
  border-right: 3px solid #fff;
}
.contact-form__check a {
  text-decoration: underline;
  color: #fff;
}

.contact-form__button {
  margin-top: 51px;
  text-align: center;
}

#submit {
  display: inline-block;
  border: none;
  text-align: center;
  padding: 14px;
  width: 137px;
  font-size: 14px;
  letter-spacing: 1.4px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  background: #fff;
  color: #333;
}
@media (max-width: 767px) {
  #submit {
    margin-top: 29px;
  }
}

#submit[disabled] {
  cursor: not-allowed;
  background: #333;
  color: #fff;
  border: 1px solid #fff;
}

/*=========================
footer
=========================*/
.footer {
  background: #f7f7f7;
  padding: 48px 17px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 17px;
  }
}

.footer__logo {
  font-size: 30px;
}
.footer__information {
  display: flex;
  margin-top: 24px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__information {
    display: block;
  }
}

.footer__information-1 a {
  font-size: 12px;
}

.footer__information-2 {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .footer__information-2 {
    margin-top: 16px;
    margin-left: auto;
  }
}
.footer__information-2 a {
  font-size: 12px;
}

.footer__sns {
  margin-top: 37px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .footer__sns {
    margin-top: 33px;
  }
}
.footer__sns ul {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__sns ul li:not(:first-child) {
  margin-left: 40px;
}
.footer__sns ul li a i {
  color: #333;
  font-size: 22px;
}

.footer__copy {
  color: #888888;
  font-size: 12px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .footer__copy {
    margin-top: 18px;
  }
}

/*=========================
drawer
=========================*/
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  top: 8px;
  transform: rotate(-45deg);
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  top: 8px;
  transform: rotate(45deg);
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #333;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__item {
  border-bottom: 1px dotted #707070;
}
.drawer-content__item a {
  text-decoration: none;
  display: block;
  color: #707070;
  padding: 18px 20px;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}
/*# sourceMappingURL=style.css.map */