@charset "UTF-8";
/*====================================================================
# header
====================================================================*/
.header {
  background-color: #F8E8EE;
}


.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 21px;
  padding-top: 22px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 22px 15px;
  }
}

.header__logo {
  width: 100px;
  height: 50px;
}

.header__logo-link {
  display: block;
  width: 100px;
  height: 60px;
}
.header__logo-link img {
  height: 60px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  transition: color 0.3s;
}
.header__link:hover {
  color: #fff;
}

.header__open {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__open {
    margin-top: 3px;
    display: block;
  }
}

/*====================================================================
# Drawer
====================================================================*/
.drawer-content {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer-content {
    display: block;
    overflow: hidden ;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 120px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.3s linear;
  }
  .drawer-content.is-checked {
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .drawer-content__menu {
    width: 100%;
    color: #000;
  }
}

@media screen and (max-width: 768px) {
  .drawer-content__link {
    display: block;
    color: #111;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.48px;
  }
  .drawer-content__link:hover {
    opacity: 0.7;
  }
}

.drawer-icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer-icon {
    display: block;
    width: 36px;
    height: 21px;
    position: relative;
    z-index: 51;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
}

.drawer-icon__bar {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer-icon__bar {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 3px;
    border-radius: 6px;
    background: #111;
    transition: transform 0.3s linear, top 0.3s linear;
  }
  .drawer-icon__bar:nth-of-type(2) {
    top: 9px;
  }
  .drawer-icon__bar:nth-of-type(3) {
    top: 18px;
  }
}

/*====================================================================
# footer
====================================================================*/
.footer {
  background-color: #c0c0c0;
  padding: 50px 10px 24px;
  color: #000;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 0 10px 24px;
  }
}

.footer__title-en {
  color: #fff;
  padding-top: 50px;
  text-align: center;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .footer__title-en {
    padding-top: 40px;
  }
}

.footer__title-ja {
  color: #fff;
  text-align: center;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    text-align: center;
  }
}

.footer__logo {
  width: 150px;
  margin: 0 0 40px;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: block;
  }
}

.nav__block {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .nav__block {
    text-align: center;
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .contents__nav {
    margin: 30px auto 0;
    text-align: center;
  }
}

.nav__item {
  margin: 7px 0 0;
}
.nav__item:first-child {
  margin-top: 0;
}

.nav__item-type2 {
  margin-top: 20px;
}
.nav__item-type2:first-child {
  margin-top: 0;
}

.map {
  width: 50%;
  border: none;
}
@media screen and (max-width: 768px) {
  .map {
    margin-top: 40px;
    width: 100%;
    height: 50%;
    border: none;
  }
}
.map iframe {
  width: 100%;
  height: 223px;
  border: none;
}
@media screen and (max-width: 768px) {
  .map iframe {
    width: 100%;
    height: 223px;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .map {
    width: 100%;
    height: 100%;
  }
}

.sns__nav {
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .sns__nav {
    text-align: center;
  }
}

.sns__icons {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sns__icons {
    justify-content: center;
  }
}

.sns__icon {
  margin: 0 10px 0;
}
.sns__icon:first-child {
  margin-left: 0;
}
.sns__icon img {
  width: 40px;
}
@media screen and (max-width: 768px) {
  .sns__icon {
    text-align: center;
    max-width: 787px;
  }
}

svg {
  fill: #fff;
}

.copyright {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 10px;
  }
}

.top figure {
  width: 100%;
  margin: 0;
}
.top figure img {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .top figure img {
    height: 300px;
  }
}

.subpage__title {
  padding: 60px 0px 60px;
}
@media screen and (max-width: 768px) {
  .subpage__title {
    padding: 40px 0 40px;
  }
}

.concept__inner {
  padding-top: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .concept__inner {
    padding-top: 70px;
    margin-right: 20px;
    margin-left: 20px;
  }
}

.concept__inner-title {
  font-size: 32px;
  color: #333;
}

.concept__inner-text {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  margin-right: 30px;
  margin-left: 30px;
}

.concept01 {
  margin: 100px auto 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
  background: #F8E8EE;
}
@media screen and (max-width: 768px) {
  .concept01 {
    width: 100%;
    margin: 50px auto 0px;
    flex-direction: column;
    padding: 40px 0 0px;
  }
}
.concept01 figure {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .concept01 figure {
    height: auto;
    margin: 0;
  }
}
.concept01 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept02 {
  margin: 50px auto 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .concept02 {
    width: 100%;
    margin: 30px auto 40px;
    flex-direction: column-reverse;
    padding: 40px 0 0px;
  }
}
.concept02 figure {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .concept02 figure {
    height: auto;
    margin: 0;
  }
}
.concept02 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textBox {
  width: 50%;
  padding: 70px;
}
@media screen and (max-width: 768px) {
  .textBox {
    width: 90%;
    padding: 30px;
    margin: 0 auto;
  }
}

.textBox__title {
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .textBox__title {
    margin-bottom: 20px;
  }
}

.textBox__description {
  font-size: 16px;
}

.top figure {
  width: 100%;
  margin: 0;
}
.top figure img {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .top figure img {
    height: 300px;
  }
}

.subpage__title {
  padding: 60px 0px 60px;
}
@media screen and (max-width: 768px) {
  .subpage__title {
    padding: 40px 0 40px;
  }
}

.concept__inner {
  padding-top: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .concept__inner {
    padding-top: 70px;
    margin-right: 20px;
    margin-left: 20px;
  }
}

.concept__inner-title {
  font-size: 32px;
  color: #333;
}

.concept__inner-text {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  margin-right: 30px;
  margin-left: 30px;
}

.concept01 {
  margin: 100px auto 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
  background: #F8E8EE;
}
@media screen and (max-width: 768px) {
  .concept01 {
    width: 100%;
    margin: 50px auto 0px;
    flex-direction: column;
    padding: 40px 0 0px;
  }
}
.concept01 figure {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .concept01 figure {
    height: auto;
    margin: 0;
  }
}
.concept01 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept02 {
  margin: 50px auto 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .concept02 {
    width: 100%;
    margin: 30px auto 40px;
    flex-direction: column-reverse;
    padding: 40px 0 0px;
  }
}
.concept02 figure {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .concept02 figure {
    height: auto;
    margin: 0;
  }
}
.concept02 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textBox {
  width: 50%;
  padding: 70px;
}
@media screen and (max-width: 768px) {
  .textBox {
    width: 90%;
    padding: 30px;
    margin: 0 auto;
  }
}

.textBox__title {
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .textBox__title {
    margin-bottom: 20px;
  }
}

.textBox__description {
  font-size: 16px;
}

.pricePage {
  width: 100%;
  margin: 50px auto 50px;
}
@media screen and (max-width: 768px) {
  .pricePage {
    margin: 0 auto;
  }
}

.pricePage__title {
  padding: 0 70px;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .pricePage__title {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    margin-top: 20px;
    display: block;
    padding: 0 35px;
  }
}

.pricePage__attention {
  margin-top: 20px;
  margin-left: 70px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .pricePage__attention {
    margin-left: 35px;
  }
}

.priceList {
  margin: 20px auto 20px;
  padding: 0 6vw;
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .priceList {
    padding: 0 5vw;
  }
}

.priceMenu__title {
  color: #6e5e54;
  font-size: 2.6rem;
  margin: 50px 0 0;
  padding-top: 40px;
  border-top: 2px solid #e9e9e9;
}
@media screen and (max-width: 768px) {
  .priceMenu__title {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin: 40px 0 0;
    padding-top: 30px;
    border-top: 3px solid #e9e9e9;
  }
}

.price__table {
  width: 100%;
  margin-top: 35px;
  border: none;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .price__table {
    margin-top: 25px;
  }
}

tr th {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #ddd;
  padding: 2%;
  text-align: left;
  width: 50%;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  tr th {
    background: #eee;
    padding: 12px 10px;
    width: 100%;
    display: block;
    font-size: 18px;
  }
}
tr td {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #ddd;
  padding: 1%;
  background: #fcfcfa;
  min-width: 100px;
  text-align: right;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  tr td {
    display: flex;
    border-bottom: 0;
    padding: 12px 10px;
    font-size: 16px;
  }
}

.top figure {
  width: 100%;
  margin: 0;
}
.top figure img {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .top figure img {
    height: 300px;
  }
}

.subpage__title {
  padding: 60px 0px 60px;
}
@media screen and (max-width: 768px) {
  .subpage__title {
    padding: 40px 0 40px;
  }
}

.concept__inner {
  padding-top: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .concept__inner {
    padding-top: 70px;
    margin-right: 20px;
    margin-left: 20px;
  }
}

.concept__inner-title {
  font-size: 32px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .concept__inner-title {
    font-size: 28px;
  }
}


.concept__inner-text {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  margin-right: 30px;
  margin-left: 30px;
}

.concept01 {
  margin: 100px auto 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
  background: #F8E8EE;
}
@media screen and (max-width: 768px) {
  .concept01 {
    width: 100%;
    margin: 50px auto 0px;
    flex-direction: column;
    padding: 40px 0 0px;
  }
}
.concept01 figure {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .concept01 figure {
    height: auto;
    margin: 0;
  }
}
.concept01 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept02 {
  margin: 50px auto 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .concept02 {
    width: 100%;
    margin: 30px auto 40px;
    flex-direction: column-reverse;
    padding: 40px 0 0px;
  }
}
.concept02 figure {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .concept02 figure {
    height: auto;
    margin: 0;
  }
}
.concept02 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textBox {
  width: 50%;
  padding: 70px;
}
@media screen and (max-width: 768px) {
  .textBox {
    width: 90%;
    padding: 30px;
    margin: 0 auto;
  }
}

.textBox__title {
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .textBox__title {
    margin-bottom: 20px;
  }
}

.textBox__description {
  font-size: 16px;
}

.license {
  margin-bottom: 100px;
  width: 100%;
  margin: 0 auto;
}

.license__title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 24px 0;
  background: #F7F3F0;
}
@media screen and (max-width: 768px) {
  .license__title {
    font-size: 18px;
  }
}

.license__block {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-around;
  padding-top: 25px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .license__block {
    display: block;
    padding-top: 0;
    margin-top: 0;
  }
}

.reverse {
  flex-direction: row;
}

.license__content {
  font-size: 24px;
  line-height: 2.5;
  margin-top: 20px;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .license__content {
    padding: 15px;
  }
}

.content__inner {
  max-width: 700px;
  padding: 20px;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .content__inner {
    padding: 0;
  }
}

.content__title {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .content__title {
    font-size: 18px;
    font-weight: bold;
  }
}

.lesson__time {
  font-size: 18px;
}

.lesson__price {
  font-size: 16px;
}
.lesson__price span {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .license__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }
}
.license__image img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .license__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }
}

.license__button {
  padding: 70px 0;
  text-align: center;
}

.license__link {
  margin-top: 20px;
  text-align: center;
  border: 1px solid #111;
  display: inline-block;
  padding: 20px 35px;
  min-width: 200px;
  transition: background-color 0.3s, color 0.3s;
}

.salon {
  padding: 120px 0 20px;
}
@media screen and (max-width: 768px) {
  .salon {
    padding: 60px 0 10px;
  }
}

.salon__picture-inner {
  max-width: 1200px;
  padding: 0 10%;
  display: flex;
  justify-content: space-around;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .salon__picture-inner {
    display: block;
    padding: 0 6%;
  }
}

.name__box {
  padding: 70px 0px 70px 100px;
}
@media screen and (max-width: 768px) {
  .name__box {
    margin-bottom: 20px;
    padding: 0;
  }
}

.en-name {
  font-size: 24px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .en-name {
    font-size: 28px;
    margin-bottom: 0;
  }
}

.ja-name {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.salon__img {
  margin: 0;
}
.salon__img img {
  width: 370px;
  height: 490px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .salon__img img {
    width: 100%;
  }
}

.salon__text-inner {
  max-width: 100%;
  padding: 0 10%;
}
@media screen and (max-width: 768px) {
  .salon__text-inner {
    padding: 0 6%;
  }
}

.owner__description {
  margin: 40px 0;
}

.career__title {
  color: #fff;
  background-color: #73716d;
  font-size: 16px;
  width: 172px;
  padding: 5px 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .career__title {
    width: 140px;
  }
}

.career__text {
  position: relative;
}
.career__text::before {
  content: "";
  position: absolute;
  border-top: solid 1px #73716d;
  width: 100%;
  left: 0;
  top: -40px;
}

.career__license {
  margin: 40px 0;
  padding-left: 0.6rem;
}

/*====================================================================
# 共通パーツ
====================================================================*/
body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Kiwi Maru", serif;
}

@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  margin-right: 100px;
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .inner {
    margin: 0;
  }
}

.section__title-en {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.section__title-ja {
  text-align: center;
}

img {
  max-width: 100%;
}

.fv img {
  object-fit: cover;
  height: 600px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .fv img {
    height: 400px;
  }
}

.fade-in-up .fv img {
  width: 100%;
  height: 600px;
}

/*====================================================================
# Concept
====================================================================*/
.concept {
  margin-top: 63px;
  text-align: center;
}

.concept__message {
  font-size: 26px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .concept__message {
    font-size: 26px;
    margin-right: 40px;
    margin-left: 40px;
  }
}

.concept__description {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .concept__description {
    margin-right: 40px;
    margin-left: 40px;
  }
}

/*====================================================================
# card
====================================================================*/
.menu {
  margin-top: 100px;
  background: url(../img/background-cover.png);
  padding-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .menu {
    padding-bottom: 60px;
  }
}

.menu__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .cards {
    display: block;
  }
}

.cards_item {
  display: flex;
  padding: 1rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .cards_item {
    display: block;
    padding: 0px 40px 48px;
    width: 100%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_image img {
  height: 300px;
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.card_content {
  padding: 1rem;
  text-align: center;
}

.card_title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.card_text {
  color: #111;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  margin-top: 20px;
}

.btn:hover {
  opacity: 0.7;
}

/*====================================================================
# license
====================================================================*/
.section02 {
  padding: 160px 30px 160px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .section02 {
    padding: 75px 40px;
  }
}

.boxes {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.boxes:nth-child(1) {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .boxes:nth-child(1) {
    flex-direction: column-reverse;
  }
  .boxes:nth-child(2) {
    flex-direction: column;
  }
}

.txt__box {
  width: 50%;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .txt__box {
    width: 100%;
    padding: 0;
  }
}

.box__title-en {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .box__title-en {
    margin-top: 10px;
  }
}

.box__text {
  padding-top: 20px;
}

.img__box {
  height: 400px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .img__box {
    width: 100%;
    height: auto;
  }
}
.img__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .img__box img {
    width: 100%;
    height: 200px;
  }
}

.box__btn {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .box__btn {
    text-align: center;
  }
}

.button {
  border: 1px solid #111;
  display: inline-block;
  padding: 20px 35px;
  min-width: 200px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #F8E8EE;
}

/*====================================================================
# instagram
====================================================================*/
.instagram {
  margin-top: 100px;
  background-image: url(../img/background-cover.png);
}
@media screen and (max-width: 768px) {
  .instagram {
    margin-top: 30px;
  }
}

.instagram__title {
  padding-top: 40px;
}

.instagram__box {
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.instagram__box img {
  width: 900px;
  height: 400px;
}

.instagram__link {
  margin-top: 40px;
  text-align: center;
  padding-bottom: 90px;
}

.type1:hover {
  background-color: #fff;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */