/* ------------------------------------------------------------------
h3
------------------------------------------------------------------ */
.topTitle {
  text-align: center;
  margin-bottom: 40px;
}

.toppage_title {
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .2em;
  margin-bottom: 0;
}

.toppage_title {
  display: inline-block;
}

/*——文字下にライン——*/
.bottom_accent_border .title_ja {
  padding-bottom: 30px;
}

.bottom_accent_border {
  position: relative;
}

.bottom_accent_border::before {
  content: "";
  display: inline-block;
  width: 250px;
  height: 5px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -125px;
  background: url(../img/line.svg);
  background-repeat: repeat-x;
  background-size: 250px 5px;
}

.topTitle .title_ja {
  color: #3e3e3e;
  margin-top: .8em;
  font-size: 1.4rem;
  display: block;
  line-height: 1;
  letter-spacing: normal;
}

.topTitle .title_en {
  font-family: "Futura Std", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .05em;
  text-indent: .15em;
  font-size: 2.6rem;
  display: block;
  line-height: 1;
}

/*——文字の左右にライン——*/
.title_border {
  position: relative;
  letter-spacing: .2em;
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  position: relative;
  font-weight: 500;
  font-size: 1.9rem;
  margin-bottom: 0;
}

/*——画像タイトル——*/
.title_img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

@media(min-width:1024px) {
  .topTitle .title_ja {
    font-size: 2.0rem;
  }

  .topTitle .title_en {
    font-size: 5.0rem;
  }

  /*——文字の左右にライン——*/
  .title_border {
    font-size: 2.8rem;
  }

  .title_border::before {
    content: "";
    display: inline-block;
    width: 279px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: -279px;
    margin-top: -.5px;
    background: url(../img/d_line.svg);
    background-repeat: repeat-x;
    background-size: 18px 1px;
  }

  .title_border::after {
    content: "";
    display: inline-block;
    width: 279px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: -279px;
    margin-top: -.5px;
    background: url(../img/d_line.svg);
    background-repeat: repeat-x;
    background-size: 18px 1px;
  }
}

@media(min-width:1280px) {
  .topTitle {
    margin-bottom: 80px;
  }

  .topTitle .title_ja {
    font-size: 2.4rem;
  }

  .topTitle .title_en {
    font-size: 5.4rem;
  }

  /*——文字の左右にライン——*/
  .title_border {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 1023px) {
  .topTitle .title_ja {
    margin-bottom: 20px;
    font-size: 200%;
    font-size: 1.6rem;
  }

  .topTitle .title_en {
    font-size: 3.4rem;
  }

  .bottom_accent_border::before {
    content: "";
    display: inline-block;
    width: 144px;
    height: 3px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -72px;
    background: url(../img/line.svg);
    background-repeat: no-repeat;
    background-size: 144px 3px;
  }

  .bottom_accent_border .title_en {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 540px) {
  .topTitle {
    margin-bottom: 30px;
  }

  .topTitle .title_ja {
    line-height: 1.4;
    font-size: 1.6rem;
  }

  .topTitle .title_en {
    font-size: 3.0rem;
  }

  .bottom_accent_border .title_ja {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 320px) {

  /*——文字の左右にライン——*/
  .title_border {
    font-size: 1.9rem;
  }
}

/* ------------------------------------------------------------------
トップページ_zoom
------------------------------------------------------------------ */
.img_zoom {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}

.img_zoom img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .6s ease;
  /* ゆっくり変化させる */
}

.img_zoom:hover img {
  transform: scale(1.1);
  /* 拡大 */
}

@media(min-width:768px) {
  .img_zoom img {
    height: 140px;
  }
}

@media(min-width:1024px) {
  .img_zoom img {
    height: 180px;
  }
}

@media(min-width:1280px) {
  .img_zoom img {
    height: 240px;
  }
}

@media only screen and (max-width: 360px) {
  .img_zoom img {
    height: 180px;
  }
}

/* ------------------------------------------------------------------
サイト中に使用するロゴ
------------------------------------------------------------------ */
.site__logo__mark{
  display: inline-block;
  position: relative;
  width: 160px;
  height: 20px;
  margin-right: .5em;
}

.site__logo__mark:before {
  display: block;
  content: "";
  width: 160px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/logo_black.svg) no-repeat 0 0;
  background-size: 160px 20px;
}

@media only screen and (max-width: 1023px) {
  .site__logo__mark{
    display: inline-block;
    position: relative;
    width: 120px;
    height: 15px;
    margin-right: .5em;
  }

  .site__logo__mark:before {
    display: block;
    content: "";
    width: 120px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/logo_black.svg) no-repeat 0 0;
    background-size: 120px 15px;
  }
}

/* ------------------------------------------------------------------
見出しlarge
------------------------------------------------------------------ */
.c-large-gotham {
  position: absolute;
  white-space: nowrap;
  font-family: "Futura Std", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 10.0rem;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  pointer-events: none;
}

.c-large-top_center {
  left: 50%;
  width: 2000px;
  margin-left: -1000px;
  top: 0;
}

.c-large-top_right {
  right: 0;
  top: 0;
}

.c-large-right_bottom {
  right: 0;
  top: 0;
}

.c-large-left_bottom {
  left: 0;
  bottom: 0;
}

@media(min-width:1024px) {
  .c-large-gotham {
    font-size: 8.0rem;
  }
}

@media(min-width:1280px) {
  .c-large-gotham {
    font-size: 10.6rem;
  }
}

@media(min-width:1366px) {}

@media(min-width:1728px) {
  .c-large-gotham {
    font-size: 14.6rem;
  }
}

@media only screen and (max-width: 1023px) {
  .c-large-gotham {
    font-size: 8.0rem;
  }

  .c-large-top_center {
    margin-left: -500px;
    width: 1000px;
  }
}

@media only screen and (max-width: 540px) {
  .c-large-gotham {
    font-size: 6.0rem;
  }
}
/* ------------------------------------------------------------------
トップページ_about
------------------------------------------------------------------ */
.toppage_about {
  position: relative;
  padding: 160px 0 0;
  background: #fff;
}

.toppage_about::before{
  display: block;
  content: "";
  width: 900px;
  height: 113px;
  position: absolute;
  right: 0;
  bottom: -50px;
  background: url(../img/logo_black.svg) no-repeat 0 0;
  background-size: 900px 113px;
  opacity: .05;
  z-index: 1;
}

.toppage_about .topTitle{
  text-align: left;
  margin-bottom: 40px;
}
.toppage_about h3{
  margin-bottom: 0;
}

.toppage_about h4 {
  letter-spacing: .1em;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.toppage_about p {
  font-weight: 500;
}

@media(min-width:1024px) {
  .toppage_about h4 {
    font-size: 2.2rem;
  }
}

@media(min-width:1280px) {
  .toppage_about h4 {
    margin-bottom: 50px;
    font-size: 2.8rem;
  }
}


@media only screen and (max-width: 1023px) {
  .toppage_about {
    padding: 100px 0 0;
  }

  .toppage_about .topTitle{
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 540px) {

  .toppage_about::before{
    background: url(../img/logo_black_sp.svg) no-repeat 0 0;
    width: 220px;
    height: 88px;
    bottom: -22.5px;
    background-size: 220px 88px;
  }
}

@media only screen and (max-width: 420px) {

}

@media only screen and (max-width: 390px) {

  .toppage_about h4 {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 360px) {
  .toppage_about h4 {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------------
トップページ_sauna_story_experience
------------------------------------------------------------------ */
.toppage_sauna, .toppage_story, .toppage_experience {
  position: relative;
  padding: 160px 0;
  background: #fff;
}

.toppage_experience{
  margin-bottom: 160px;
}

.toppage_sauna .topTitle, .toppage_story .topTitle, .toppage_experience .topTitle{
  text-align: left;
  margin-bottom: 20px;
}

.toppage_sauna .topTitle .title_en, .toppage_story .topTitle .title_en, .toppage_experience .topTitle .title_en{
  text-indent: 0em;
}

.toppage_sauna h4, .toppage_story h4, .toppage_experience h4 {
  letter-spacing: .1em;
  font-size: 1.7rem;
  margin-bottom: 40px;
}

@media(min-width:1024px) {
  .toppage_sauna .left, .toppage_story .left, .toppage_experience .left {
    width: 440px;
  }

  .toppage_sauna .right, .toppage_story .right, .toppage_experience .right{
    width: 40%;
    position: absolute;
    right:0;
    bottom:0;
  }

}

@media(min-width:1280px) {
  .toppage_sauna h4, .toppage_story h4, .toppage_experience h4 {
    margin-bottom: 50px;
    font-size: 2.7rem;
  }
}

@media(min-width:1366px) {

  .toppage_sauna .right, .toppage_story .right, .toppage_experience .right{
    width: 40%;
  }

}

@media only screen and (max-width: 1023px) {

  .toppage_sauna, .toppage_story, .toppage_experience {
    padding: 100px 0 0;
  }

  .toppage_experience{
    margin-bottom: 100px;
  }

  .toppage_sauna .left, .toppage_story .left, .toppage_experience .left{
    margin-bottom: 40px;
  }
}

/* ------------------------------------------------------------------
トップページ_VOICE
------------------------------------------------------------------ */
.toppage_voice {
  position: relative;
  padding: 160px 0;
  background: #000;
  position: relative;
  background-image: url(../img/voice_bg.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.toppage_voice h3{
  color: #fff;
}

.toppage_voice p {
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.toppage_voice .btn{
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 360px;
  font-family: "Futura Std", sans-serif;
  line-height: 80px;
  text-align: left;
  padding: 0 2em;
  margin-top: 50px;
}

.voice__cta .btn{
  margin-top: 0px;
}

.toppage_voice .btn::before{
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 1.5em;
  top: 50%;
  background: url(../img/arrow_right_white.svg) no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
}
.voice_logo_cta{
  margin-left: 0;
  margin-bottom: 10px;
  width: 280px;
}

.voice__cta h3{
  margin-bottom: 0;
}

@media(min-width:1024px) {
  .toppage_voice .c-flex{
    align-items: center;
    justify-content: space-between;
  }

  .voice__cta h3{
    font-size: 2.2rem;
  }
  .voice_logo_cta{
    width: 330px;
  }

}

@media only screen and (max-width: 1023px) {
  .toppage_voice {
    padding: 200px 0;
  }

  .toppage_voice .btn{
    width: 100%;
  }

  .voice__cta h3{
    margin-bottom: 30px;
  }

}

@media only screen and (max-width: 390px) {
  .toppage_voice p {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 360px) {
  .toppage_voice p {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 360px) {
  .toppage_voice p {
    font-size: 1.3rem;
  }
}

/* ------------------------------------------------------------------
トップページ_hotels
------------------------------------------------------------------ */

.toppage_hotels {
  padding: 160px 0;
  background: #fff;
}

.toppage_hotels .image-wrap {
  padding-top: 140%;
}



ul.hotels__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.hotels__list li{
  color: #000;
  width: 45%;
  margin-bottom: 100px;
}

ul.hotels__list li:nth-last-child(1), ul.hotels__list li:nth-last-child(2){
  margin-bottom: 0px;
}

.hotels__list__title{
  position: relative;
  margin-bottom: 0px;
}

.hotel__name{
  display: flex;
  align-items: center;
  letter-spacing: .1em;
  text-indent: .1em;
  padding: 1.5em 0;
}

.hotel__name div:first-child{
  padding: .2em 1em;
  background: #000000;
  color: #fff;
  font-size: 1.38rem;
  text-align: center;
}

.hotel__name div:last-child{
  margin-left: .5em;
  color: #000;
  font-size: 1.85rem;
}

ul.hotels__list li h4 {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  z-index: 1;
  line-height: 2.4em;
  font-weight: 500;
}

ul.hotels__list li dl{
  padding: 1.5em 0;
  border-top: solid 1px;
  border-bottom: solid 1px;
  display: flex;
  flex-wrap:wrap;
  letter-spacing: .1em;
  text-indent: .1em;
  font-size: 1.38rem;
  color: #000;
  line-height: 1.8em;
}

ul.hotels__list li dl dt{
  font-family: "Futura Std", sans-serif;
  font-weight: 700;
  width: 23%;
}

ul.hotels__list li dl dd{
  width: 77%;
}

@media(min-width:1024px) {


}

@media only screen and (max-width: 1023px) {
  .toppage_hotels {
    padding: 100px 0;
  }

  ul.hotels__list li{
    margin-bottom: 50px;
    width: 47%;
  }

  ul.hotels__list li h4{
    width: 100%;
  }

  .hotel__name{
    display: block;
    padding: 1.0em 0 .1em;
  }

  .hotel__name div:last-child{
    margin-left: 0em;
    margin-top: .2em;
    font-size: 1.40rem;
  }

  ul.hotels__list li dl{
    padding: 1.0em 0;
    font-size: 1.28rem;
    display: block;
    line-height: 1.5em;
  }
}

@media only screen and (max-width: 390px) {

  .toppage_hotels h4 {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 360px) {
  .toppage_hotels h4 {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------------
トップページ_owner
------------------------------------------------------------------ */
.toppage_owner {
  padding: 160px 0 0;
  background: #fff;
}

.toppage_owner h3{
  margin-bottom: 10px;
}

.owner_logo{
  width: 200px;
  margin-bottom: 30px;
}

@media(min-width:1024px) {
  .owner__wrapper{
    margin: 0 auto;
    width: 680px;
  }
  .toppage_owner .c-flex{
    align-items: center;
    justify-content: space-between;
  }

  .toppage_owner .left{
    width: 35%;
  }

  .toppage_owner .right{
    width: 60%;
  }

  .owner_logo{
    width: 200px;
  }
}

@media only screen and (max-width: 1023px) {
  .toppage_owner {
    padding: 100px 0 0;
  }

  .toppage_owner h3{
    text-align: center;
  }

  .owner_logo {
    width: 180px;
    margin-bottom: 20px;
  }

  .toppage_owner .link_border{
    margin: 0 auto 30px;
    width: 250px;
  }

}

@media only screen and (max-width: 390px) {

  .toppage_owner h4 {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 360px) {
  .toppage_owner h4 {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------------
トップページ_メディア掲載
------------------------------------------------------------------ */
.toppage_media {
  padding: 160px 0;
  background: #fff;
}

.card05 {
  overflow: hidden;
}

.card05 {
  /* コンテナ */
  overflow: hidden;
  /* スライド */
  /* スライド ホバー時 */
}

.card05 .swiper {
  overflow: visible;
}

.card05 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.card05 .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.toppage_media h3{
  font-size: 2.6rem;
}

ul.client__bnr{
  margin-bottom: 50px;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}
/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

@media(min-width:1024px) {
  .toppage_media h3 {
    font-size: 5.0rem;
  }
}

@media(min-width:1280px) {
  .toppage_media h3 {
    font-size: 5.4rem;
  }
}

@media only screen and (max-width: 1023px) {
  .toppage_media {
    padding: 100px 0;
  }

  .toppage_media h3{
    font-size: 3.4rem;
  }

}

@media only screen and (max-width: 540px) {
  .toppage_media h3{
    font-size: 3.0rem;
  }

}

/* ------------------------------------------------------------------
topニュース
------------------------------------------------------------------ */
/* -----toppege----- */
.toppage_news {
  padding: 160px 0 160px;
  background: #f7f3ed;
}

.toppage_news .topTitle .title_en{
  text-transform:capitalize;
}

ul.news-list {
  margin: 0px auto 0;
}

ul.news-list li {
  border-bottom: solid 1px #333;
  transition: transform .6s ease;
}

ul.news-list li:first-child {
  border-top: solid 1px #333;
}

ul.news-list li a {
  padding: 35px 25px;
  display: block;
  color: #000;
  transition-duration: 0.3s;
}

ul.news-list li a:hover{
  opacity: 0.4;
}

/* -----共通----- */
ul.news-list li .t_a_b {
  padding: 20px;
}

.newsItemInfo {
  display: flex;
}

.newsItemInfo .image-wrap {
  border-radius: .2em;
  padding-top: 100%;
}

.newsItemInfo .left {
  width: 16%;
}

.newsItemInfo .right {
  padding: 20px;
  width: 84%;
}

.newsItem_tag {
  display: flex;
  align-items: center;
}

.tag__inner {
  width: 100px;
}

.newsList-time {
  color: #000;
  font-weight: 400;
  position: relative;
  letter-spacing: .1em;
  line-height: 1.81818;
  padding: 0;
  font-size: 1.4rem;
}

.title_list {
  letter-spacing: 0.1em;
  margin-top: .1em;
  margin-bottom: 0;
}

span.news {
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.8333;
  font-size: 1.3rem;
  text-align: center;
}

/* -----一覧ページ----- */
.news__Wrapper {
  margin-left: auto;
  margin-right: auto;
}

.news-page ul.news-list li {
  border-bottom: solid 1px #ebedf0;
}

.news-page ul.news-list li:first-child {
  border-top: solid 1px #ebedf0;
}

/* -----詳細ページ----- */
.blog_title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  position: relative;
  font-weight: 500;
  padding-bottom: 1em;
  margin-bottom: 2.5em;
  border-bottom: 1px solid #ebedf0;
}

.blog_title .day {
  font-family: "Futura Std", sans-serif;
  display: block;
  line-height: 1;
  font-size: 1.00125vw;
  letter-spacing: 0;
  margin-bottom: 1em;
}

.news_inner p {
  line-height: 2.2em;
  margin-bottom: 1em;
}

.news_inner p:last-child {
  margin-bottom: 0;
}

.news_inner img {
  width: 100%;
  display: block !important;
  margin-right: auto !important;
  margin-left: auto !important;
  margin-top: 30px;
  margin-bottom: 30px;
  height: auto !important;
}

.news_inner p a {
  text-decoration: underline;
}

.news_inner ul, .news_inner ol {
  padding-left: 20px;
}

.mark, mark {
  background: rgba(253, 246, 77, .6);
}

@media(min-width:768px) {

  /* -----toppege----- */
  .toppage_news .btn {
    width: 210px;
    padding-right: 20px;
  }

  .news_inner img {
    margin-left: 0 !important;
  }
}

@media(min-width:1024px) {

  /* -----toppege----- */
  .toppage_news .topTitle {
    margin-bottom: 140px;
  }

  /* -----共通----- */
  ul.news-list {
    margin: 0px auto 0;
  }

  ul.news-list li {
    transition: transform .6s ease;
  }

  .news__wrapper {
    display: flex;
    align-items: center;
  }

  .flexInner {
    padding: 40px 30px;
  }

  /* -----一覧ページ----- */
  .news__Wrapper {
    width: 846px;
  }

  /* -----詳細ページ----- */
  .blog_title {
    line-height: 1.66667;
    margin-top: 1.625vw;
    font-size: 1.87735vw;
    letter-spacing: 0.05em;
  }
}

@media(min-width:1280px) {

  /* -----toppege----- */

  /* -----共通----- */
  .title_list {
    font-size: 1.6rem;
  }
}

@media(min-width:1920px) {

  /* -----toppege----- */
  .toppage_news {
    padding: 100px 0 100px;
  }

  /* -----共通----- */
  .title_list {
    font-size: 1.86rem;
  }
}

@media only screen and (max-width: 1023px) {
  .toppage_news {
    padding: 100px 0;
  }

  /* -----toppege----- */
  .toppage_news .topTitle {
    margin-bottom: 80px;
  }
  .toppage_news .c-flex {
    display: block;
  }

  .news__header__btn {
    width: 180px;
    margin: 30px auto 0;
  }

  /* -----共通----- */
  .news-page .c-flex {
    display: block;
  }

  .newsItemInfo .left {
    width: 20%;
  }

  .newsItemInfo .right {
    width: 80%;
  }

  .newsItem_tag {
    margin-bottom: 10px;
  }

  .newsList-time {
    font-size: 1.3rem;
    padding: 0 0 0 0px;
  }
}

@media only screen and (max-width: 736px) {
  ul.news-list li a {
    display: block;
    width: 100%;
  }

  .toppage_news .btn {
    margin-top: 20px;
    width: 180px;
    line-height: 44px;
    font-size: 1.4rem;
    padding-right: 20px;
  }

  ul.news-list li::before {
    display: none;
  }

  /* -----共通----- */
  ul.news-list {
    margin-bottom: 0px;
  }

  ul.news-list li {
    padding-right: 0px;
  }

  .newsItemInfo .right {
    padding: 0 0 0 10px;
  }

  /* -----詳細ページ----- */
  .blog_title .day {

    font-size: 1.6rem;
  }

  .news_inner img {
    width: 100%;
  }
}

@media only screen and (max-width: 320px) {
  .blog, .news, .orderitem, .newmark {
    font-size: .8rem;
    width: 80px;
  }
}

/* ------------------------------------------------------------------
会員ページ_パスワード
------------------------------------------------------------------ */
.members p {
  font-weight: 600;
}

.members_input {
  margin-left: auto;
  margin-right: auto;
  background: #ebecf5;
  padding: 40px;
}

.members_input h4 {
  text-align: center;
  font-size: 2.0rem;
  margin: 0 0 20px;
}

.members .btn {
  text-decoration: none;
  margin-bottom: 20px;
}

.members_input .btn {
  width: 100%;
  margin-top: 20px;
}

@media(min-width:768px) {
  .members p {
    text-align: center;
  }

  .members .btn {
    width: 260px;
  }

  .members_input {
    width: 500px;
  }

  .members_input .btn {
    font-size: 1.6rem;
    line-height: 40px;
    width: 220px;
  }
}

@media only screen and (max-width: 736px) {}

.instagram_wrapper {
  margin-top: 50px;
}

@media only screen and (max-width: 736px) {
  .instagram_wrapper {
    margin-top: 30px;
  }
