@charset "UTF-8";
/*------------------------------------
全体設定　ここから
-------------------------------------*/
@font-face {
  font-family: 'blackjar';
  src: url('../font/BLACKJAR.TTF') format('truetype');
}

/* 初期設定 */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  color: #574841;
  font-weight: 400;
}
body,
header,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a,
dl,
dd,
dt,
div,
span,
time,
figure,
figcaption,
article,
section,
aside {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
p{
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 1.1875em;
}
p.bg-white{
  background-color: #fff;
  height: 2.4rem;
  line-height: 2.4rem;
  display: inline-block;
  padding: 0 0.5rem;
}
small{
  font-size: 1rem;
}

img,
svg {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
iframe{
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
ul li {
  list-style-type: none;
  line-height: 1.5;
}
@media screen and (max-width: 600px){
}

.color-red{
  color: #C85B62!important;
}
.color-pink{
  color: #EFA8AE!important;
}

.flex-container{
  display: flex;
  flex-wrap: wrap;
}
.sp-only,
.sp-newline{
  display: none;
}
@media screen and (max-width: 600px){
  .pc-only,
  .pc-newline{
    display: none;
  }
  .sp-only,
  .sp-newline{
    display: block;
  }
}

/* 初期設定----------------------------------------------- */

/* セクション設定 */
.section-wrapper {
  padding: 6.4rem 2rem;
}
.lp-width{
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 600px){
  .section-wrapper {
    padding: 3rem 1rem 5rem;
  }
}
/* セクション設定-------------------------------------------- */

/** -----------------------------------
ボタン設定　ここから
-------------------------------------**/
.btn-about{
  color: #C85B62;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.428;
  width: 100%;
  height: 62px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0px 0px 5px rgba(183, 62, 62, 0.25);
  transition: .2s all;
}
.btn-about:hover{
  opacity: 0.7;
}
@media screen and (max-width: 900px){
  .btn-about{
    width: 211px;
  }
}
.btn-sns{
  width: 30px;
  height: 30px;
  margin: 0 6px;
}
.btn,
.btn-event{
  width: auto;
  height: 36px;
  padding: 8px 23px 8px 40px;
  color: #574841;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 0px 0px 2px rgba(87,72,65,0.25);
  position: relative;
}
.btn::after{
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  width: 3.5px;
  height: 3.5px;
  border-top: 1px solid #CCC;
  border-right: 1px solid #CCC;
  transform: translateY(-50%) rotate(45deg);
}
.btn-event{
  width: 120px;
  height: 42px;
  margin: 0 12px;
  padding: 13px;
  justify-content: flex-start;
}
.btn-event::after{
  position: absolute;
  content: "";
  top: 50%;
  right: 1.0rem;
  width: 3.5px;
  height: 3.5px;
  border-bottom: 1px solid #574841;
  border-left: 1px solid #574841;
  transform: translateY(-50%) rotate(-45deg);
}
.btn.line::before{
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/line.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 1rem;
}
.btn.map::before{
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 1rem;
}
@media screen and (max-width: 600px){
  .btn-event{
    margin: 6px 6px !important;
  }
}

/*------------------------------------
トップページ（index.html）設定
-------------------------------------*/
/* メインビジュアル */
#mainvisual{
  width: 100%;
  height: 87vh;
  max-height: 70vw;

  background-image: url('../images/mv-bg.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top right -10vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5%;
}
#mainvisual .mv-top-text{
  font-size: 2.58rem;
  line-height: 1.395;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 9.53rem;
}
#mainvisual .mv-title-img{
  width: 35vw;
  margin-bottom: 3.82rem;
}
#mainvisual .flex-item-parent{
  display: flex;
  justify-content: space-between;
  width: 35vw;
}
#mainvisual .btn-area{
  width: calc( 100% - 160px);
}
#mainvisual .sns-area{
  width: 160px;
}
#mainvisual .sns-area,
#mainvisual .text-list{
  margin-left: 2.2rem;
}
@media screen and (max-width: 900px){
  #mainvisual .mv-top-text{
    font-size: 2rem;
    margin-bottom: 4.33rem;
  }
  #mainvisual .mv-title-img{
    width: 40vw;
  }
  #mainvisual .flex-item-parent{
    width: auto;
  }
  #mainvisual .flex-container .flex-item:nth-of-type(1){
    margin-bottom: 2.8rem;
  }
  #mainvisual .flex-container .flex-item:nth-of-type(2){
    margin-bottom: 1.4rem;
  }
  #mainvisual .flex-container .flex-item:nth-of-type(3){
    font-size: 1.2rem;
  }
  #mainvisual .btn-area{
    width: auto;
  }
  #mainvisual .text-list{
    margin-left: 0;
  }
}
@media screen and (max-width: 600px){
  #mainvisual{
    justify-content: flex-end;
    max-height: none;
  }
  #mainvisual .mv-title-img{
    max-width: 27.5rem;
    width: 100%;
    margin-bottom: 3.5rem;
  }
  #mainvisual .flex-item-parent{
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
  }
  #mainvisual .sns-area{
    margin-left: 0;
  }
  #mainvisual .flex-container{
    flex-direction: column;
  }
}

/* 開催予定のイベント */
.section-event h2,h3{
  font-size: 3.3rem;
  letter-spacing: 0.05em;
  color: #2266AA;
  background-color: #FFF;
  display: inline-block;
  padding: 8px 16px;
}
.section-event h3{
  writing-mode: vertical-lr;
  padding: 16px 8px;
}
.section-event .btn-event-wrap{
  justify-content: center;
  margin: 26px auto 0;
}
.section-event .event-map-wrap{
  position: relative;
  padding-left: 10%;
  padding-top: 54px;
  justify-content: space-evenly;
}
.section-event .event-map-wrap .event-title{
  position: absolute;
  top: 54px;
  left: 0;
}
.section-event .event-map-wrap .event-map{
  background-color: #FFF;
  width: 41%;
  height: fit-content;
  text-align: left;
  padding: 24px;
  margin-bottom: 44px;
  position: relative;
  box-shadow: 0 0 5px rgba(87, 72, 65, 0.25);
}
.section-event .event-map-wrap .event-map::before{
  position: absolute;
  content: "";
  height: 2.8rem;
  width: 35%;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(247,255,0,0.5);
}
.section-event .event-map-wrap .event-map h4{
  font-size: 1.8rem;
  margin-bottom: 1.05em;
}
.section-event .event-map-wrap .event-map p{
  font-size: 14px;
}
.section-event .event-map-wrap .event-map .map-area{
  width: 100%;
  height: 17vw;
  margin-bottom: 20px;
  overflow: hidden;
}
.section-event .event-map-wrap .event-map .map-area iframe {
  width: 100%;
  height: 34vw;
  margin-top: -7vw;
}
.section-event .event-map-wrap .event-map .link-wrap{
  justify-content: space-between;
}

@media screen and (max-width: 900px){
  .section-event .event-map-wrap .event-map{
    width: 48%;
  }
  .section-event .event-map-wrap .event-map:nth-of-type(2n+1){
    margin-right: 2%;
  }
  .section-event .event-map-wrap .event-map:nth-of-type(2n+2){
    margin-left: 2%;
  }
}
@media screen and (max-width: 600px){
  .section-event h3{
    writing-mode: horizontal-tb;
    padding: 8px 16px;
    margin-bottom: 54px;
  }
  .section-event .btn-event-wrap{
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
  .section-event .event-map-wrap{
    padding-left: 0;
    padding-top: 0;
  }
  .section-event .event-map-wrap .event-title{
    position: relative;
    top: 0;
  }
  .section-event .event-map-wrap .event-map{
    width: 100%;
  }
  .section-event .event-map-wrap .event-map:nth-of-type(2n+1),
  .section-event .event-map-wrap .event-map:nth-of-type(2n+2){
    margin-left: 0;
    margin-right: 0;
  }
  .section-event .event-map-wrap .event-map .map-area{
    height: 20rem;
  }
  .section-event .event-map-wrap .event-map .map-area iframe {
    height: 38rem;
    margin-top: -7.5rem;
  }
}

#koube.section-event{
  text-align: center;
  background-image: url(../images/bg-koube.png);
  background-repeat: repeat;
  background-size: 400px 400px;
}
#hyogo.section-event{
  text-align: center;
  background-image: url(../images/bg-hyogo.png);
  background-repeat: repeat;
  background-size: 400px 400px;
}
#osaka.section-event{
  text-align: center;
  background-image: url(../images/bg-osaka.png);
  background-repeat: repeat;
  background-size: 400px 400px;
}
#kyoto.section-event{
  text-align: center;
  background-image: url(../images/bg-kyoto.png);
  background-repeat: repeat;
  background-size: 400px 400px;
}
#aichi.section-event{
  text-align: center;
  background-image: url(../images/bg-aichi.png);
  background-repeat: repeat;
  background-size: 400px 400px;
}

#hyogo.section-event .event-map-wrap,
#osaka.section-event .event-map-wrap,
#kyoto.section-event .event-map-wrap,
#aichi.section-event .event-map-wrap{
  padding-top: 0px;
}

#hyogo.section-event .event-map-wrap .event-title,
#osaka.section-event .event-map-wrap .event-title,
#kyoto.section-event .event-map-wrap .event-title,
#aichi.section-event .event-map-wrap .event-title{
  top: 0px;
}


/* cta */
#cta{
  background: linear-gradient(180deg, rgb(246, 230, 230), rgb(255, 255, 255));
}
#cta .flex-container{
  justify-content: center;
  align-items: center;
}
#cta .flex-container .flex-item .bg-white{
  max-width: 356px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 3px rgba(87, 72, 65, 0.25);
  border-radius: 20px;
  text-align: center;
  padding: 2rem 4rem;
}
#cta .flex-container .flex-item .bg-white .img-arrow{
  width: 108px;
  display: block;
  margin: 0 auto 10px;
}
#cta .flex-container .flex-item .bg-white p{
  margin-bottom: 0;
}
#cta .flex-container .flex-item .bg-white p span{
  font-size: 2.4rem;
  color: #fff;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-weight: 600;
}
#cta .flex-container .flex-item .img-women{
  width: 6.6rem;
}
#cta .flex-container .flex-item .img-flower{
  width: 5.5rem;
}
#cta .flex-container .flex-item .message01,
#cta .flex-container .flex-item .message02{
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.428;
  position: relative;
  z-index: 2;
}
#cta .flex-container .flex-item .message01{
  margin-bottom: 5rem;
}
#cta .flex-container .flex-item .message01::after,
#cta .flex-container .flex-item .message02::after{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
#cta .flex-container .flex-item .message01::after{
  width: 150%;
  height: 180%;
  background-image: url(../images/cta-message01.png);
}
#cta .flex-container .flex-item .message02::after{
  width: 130%;
  height: 160%;
  background-image: url(../images/cta-message02.png);
}

#cta .flex-container .flex-item.first{
  padding-left: 8%;
  position: relative;
  margin-right: 5%;
}
#cta .flex-container .flex-item.first::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 105.85px;
  height: 100px;
  background-image: url(../images/cta-shoes01.png);
}
#cta .flex-container .flex-item.first::after{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 95px;
  height: 103px;
  background-image: url(../images/cta-shoes02.png);
}
#cta .flex-container .flex-item.second{
  max-width: 350px;
  width: 100%;
}
#cta .flex-container .flex-item.second .flex-container{
  justify-content: space-between;
}
@media screen and (max-width: 600px){
  #cta .flex-container .flex-item .bg-white{
    max-width: 100%;
    padding: 2rem;
  }
  #cta .flex-container .flex-item.first::before,
  #cta .flex-container .flex-item.first::after{
    display: none;
  }
  #cta .flex-container .flex-item.first{
    padding-left: 0;
    margin-right: 0;
    width: 100%;
  }
  #cta .flex-container .flex-item.second{
    padding-left: 7%;
    margin-top: 5rem;
  }
  #cta .flex-container .flex-item .img-flower{
    display: none;
  }
}

/* bg-white */
#bg-white {
  background-image: url(../images/bg-white.jpg);
  position: relative;
  z-index: 2;
}

/* 推せるところ */
#about{
  overflow: hidden;
}
#about .title-area{
  text-align: center;
}
#about .title-area .title{
  display: inline-block;
  position: relative;
  margin-bottom: 10rem;
}
#about .title-area .title::before{
  position: absolute;
  content: "";
  width: 9.6rem;
  height: 5.8rem;
  top: 1rem;
  left: -12rem;
  background-image: url(../images/about-title01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#about .title-area .title::after{
  position: absolute;
  content: "";
  width: 9.8rem;
  height: 5.8rem;
  top: 1rem;
  right: -12rem;
  background-image: url(../images/about-title02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#about .title-area .title h2{
  font-size: 2.2rem;
  line-height: 1.636;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  display: inline;
  border-bottom: 2px solid #EFA8AE;
  padding-bottom: 0;
}
#about .title-area .title h2::after{
  position: absolute;
  content: "";
  width: 2rem;
  height: 1.8rem;
  bottom: 0.7rem;
  right: -2.3rem;
  background-image: url(../images/about-title-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#about .flex-container{
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13rem;
}
#about .flex-container.bg-pink{
  position: relative;
}
#about .flex-container.bg-pink::after{
  position: absolute;
  content: "";
  width: 130%;
  height: 130%;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F6E6E6;
  z-index: -1;
}
#about .flex-container .img-area{
  width: 40%;
  position: relative;
}
#about .flex-container .img-area .number{
  position: absolute;
}
#about .flex-container .img-area .sub-title{
  position: absolute;
  color: #EFA8AE;
  font-size: 4.4rem;
  line-height: 0.88;
  transform: rotate(-5deg);
  font-family: 'blackjar';
  letter-spacing: 0;
}
#about .flex-container .img-area .bg-white{
  position: absolute;
  right: 0;
  bottom: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
}
#about .flex-container .text-area{
  width: 52%;
}
#about .flex-container .text-area p{
  margin-bottom: 0;
  margin-top: 2rem;
  padding: 1.3rem;
}
#about .flex-container.first{
  position: relative;
}
#about .flex-container.first::before{
  position: absolute;
  content: "";
  top: -25%;
  right: 5%;
  width: 112px;
  height: 97px;
  background-image: url(../images/about-icon-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#about .flex-container.first .img-area .number{
  top: -5rem;
  right: 0;
  width: 76px;
}
#about .flex-container.first .img-area .sub-title{
  top: -1rem;
  right: -90%;
}
#about .flex-container.first .img-area .bg-white{
  right: -2rem;
}
#about .flex-container.second .img-area .number{
  top: -5rem;
  left: -5rem;
  width: 87.6px;
}
#about .flex-container.second .img-area .sub-title{
  top: -4rem;
  left: 8rem;
}
#about .flex-container.second .img-area .bg-white{
  right: auto;
  left: -2.5rem;
}
#about .flex-container.third .img-area .number{
  top: -4rem;
  left: 3rem;
  width: 87.28px;
}
#about .flex-container.third .img-area .sub-title{
  top: -7rem;
  left: 14rem;
}
#about .flex-container.third .img-area .bg-white{
  right: auto;
  left: 3rem;
  bottom: 5rem;
}

#about .flex-container.attention{
  margin-bottom: 0;
  justify-content: center;
}
#about .flex-container.attention .img{
  width: 15%;
}
#about .flex-container.attention .text{
  padding: 0 5%;
}
#about .flex-container.attention .text .bg-white{
  background: #fff;
  box-shadow: 0px 0px 3px rgba(87, 72, 65, 0.25);
  border-radius: 2rem;
  padding: 2.5rem;
  position: relative;
  max-width: 54.6rem;
  width: 100%;
}
#about .flex-container.attention .text .bg-white .title{
  position: absolute;
  top: -2rem;
  left: -2.5rem;
  background-color: #F6E6E6;
  font-size: 1.8rem;
  padding: 0 0.2em;
  font-weight: bold;
}
#about .flex-container.attention .text li{
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px){
  #about{
    padding: 3rem 1.6rem 5rem;
  }
  #about .title-area .title{
    margin-bottom: 7rem;
  }
  #about .title-area .title::before,
  #about .title-area .title::after,
  #about .flex-container.first::before{
    display: none;
  }
  #about .flex-container .img-area,
  #about .flex-container .text-area{
    width: 100%;
  }
  #about .flex-container.first .img-area .number{
    right: 0rem;
  }
  #about .flex-container.first .img-area .bg-white{
    right: -0.5rem;
  }
  #about .flex-container.first .img-area .sub-title{
    right: auto;
    left: 0rem;
  }
  #about .flex-container.bg-pink{
    padding-bottom: 3rem;
  }
  #about .flex-container.bg-pink::after{
    width: 120%;
    height: 63%;
    right: -2rem;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
  #about .flex-container.bg-pink.third::after{
    height: 75%;
  }
  #about .flex-container.second{
    flex-direction: column-reverse;
    margin-bottom: 8rem;
  }
  #about .flex-container.second .img-area .number{
    left: 0rem
  }
  #about .flex-container.second .img-area .sub-title{
    left: 11rem;
  }
  #about .flex-container.second .img-area .bg-white{
    left: 0;
    bottom: 2rem;
  }
  #about .flex-container .img-area .img{
    max-width: 30rem;
    width: 100%;
    margin: 0 auto;
  }
  #about .flex-container.third{
    margin-bottom: 5rem;
  }
  #about .flex-container.third .img-area .number{
    left: 0rem;
  }
  #about .flex-container.third .img-area .sub-title{
    left: 11rem;
    top: -3rem;
  }
  #about .flex-container.attention .img{
    display: none;
  }
  #about .flex-container.attention .text{
    padding-right: 0;
  }
  #about .flex-container.attention .text .bg-white{
    padding: 2rem;
  }
  #about .flex-container.attention .text .bg-white .title{
    left: -1.5rem;
  }
}


#sns{
  background-image: url(../images/sns-bg.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: top right;
  position: relative;
}
#sns::after{
  position: absolute;
  content: "";
  background-color: #EEDEDA;
  width: 50%;
  height: 25vw;
  left: 0;
  top: 23%;
  z-index: -1;
}
#sns .title{
  position: absolute;
  top: 6rem;
  right: 25%;
  font-size: 2.2rem;
  font-weight: 700;
}
#sns .top-icon{
  position: absolute;
  top: 3rem;
  right: 10%;
  width: 12rem;
  height: 10.9rem;
}
#sns .flex-container{
  justify-content: space-between;
  align-items: flex-start;
}
#sns .flex-container .img{
  width: 30%;
}
#sns .flex-container .img video{
  width: 100%;
  height: auto;
  max-height: 519px;
  object-fit: contain;
  position: relative;
}
#sns .flex-container .img iframe {
  width: 300px;
  height: 534px;
}
#sns .flex-container .img:nth-of-type(1){
  margin-bottom: 20rem;
}
#sns .flex-container .img:nth-of-type(2){
  margin-top: 20rem;
}
#sns .flex-container .img:nth-of-type(3){
  margin: 10rem 0;
}
#sns .flex-container .img:nth-of-type(4){
  margin-top: -7rem;
}

#sns .flex-container .insta-area{
  background-color: #EEDEDA;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 7rem 2rem;
  width: 45%;
  margin-top: 5rem;
  margin-right: -2rem;
  position: relative;
}
#sns .flex-container .insta-area::before{
  position: absolute;
  content: "";
  width: 143px;
  height: 240px;
  top: 0%;
  left: -45%;
  background-image: url(../images/sns-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#sns .flex-container .insta-area .bg-white{
  font-size: 2.2rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}
#sns .flex-container .insta-area .img-insta{
  max-width: 152px;
  width: 100%;
  margin: 0 auto;
}
#sns .sns-footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#sns .sns-footer::after{
  position: absolute;
  content: "";
  width: 50vw;
  height: 110%;
  top: -50%;
  left: -30%;
  background-image: url(../images/sns-bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
#sns .sns-footer .text{
  text-align: center;
}
#sns .sns-footer .text p{
  font-size: 14px;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
#sns .sns-footer .text p::after{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%,-45%);
  width: 150%;
  height: 190%;
  background-image: url(../images/sns-message01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
#sns .sns-footer .img{
  width: 221px;
}
#sns .sns-footer .icon01{
  position: absolute;
  width: 10.9rem;
  top: 30%;
  left: 10%;
}
#sns .sns-footer .icon02{
  position: absolute;
  width: 14rem;
  top: 20%;
  right: 10%;
}
@media screen and (max-width: 600px){
  #sns {
    background-size: 50% 10%;
    background-position: top right;
  }
  #sns::after{
    height: 10%;
    top: 13%;
  }
  #sns .title{
    top: 4rem;
    right: 7%;
  }
  #sns .top-icon{
    display: none;
  }
  #sns .flex-container{
    flex-direction: column;
    margin-top: 8rem;
    align-items: center;
    gap: 20px;
  }
  #sns .flex-container .img{
    width: 85%;
  }
  #sns .flex-container .img:nth-of-type(1),
  #sns .flex-container .img:nth-of-type(2),
  #sns .flex-container .img:nth-of-type(3),
  #sns .flex-container .img:nth-of-type(4){
    margin: 0;
  }
  #sns .flex-container .insta-area{
    width: 100%;
    margin-right: 0;
    margin-top: 4rem;
  }
  #sns .flex-container .insta-area::before{
    display: none;
  }
  #sns .sns-footer{
    margin-top: 8rem;
  }
  #sns .sns-footer::after{
    top: auto;
    bottom: 0;
    width: 100vw;
    left: -50vw;
    height: 120%;
  }
  #sns .sns-footer .icon01,
  #sns .sns-footer .icon02{
    display: none;
  }
}


#footer{
  background-color: #F2F2F2;
  text-align: center;
  padding: 3.5rem 2rem;
}
#footer .logo{
  max-width: 312px;
  width: 90%;
  margin: 0 auto;
}
#footer .flex-container{
  justify-content: center;
  margin: 3rem 0;
}
#footer .sns-link{
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 2rem;
}
#footer .company-detail{
  font-size: 1.2rem;
}
#footer .contact-link{
  text-decoration: underline;
  font-size: 1.4rem;
  color: #574841;
}

#copyright{
  text-align: center;
  padding: 2rem;
  color: #CCCCCC;
}
