/* =============================================
header
============================================= */
header {
  position: fixed;
  top: 0;
  transition: all .3s ease;
  z-index: 10000;
  width: 100vw;
}
.header__contents {
  align-items: center;
  display: flex;
  height: 104px;
  justify-content: space-between;
  padding: 0 40px;
}
.header__link-list {
  align-items: center;
  display: flex;
  gap: 32px;
}
.header__logo-link {
  position: relative;
  width: 14.5%;
}
.header__shop-link {
  align-items: center;
  background-color: #F3F3F3;
  border-radius: 50px;
  display: flex;
  font-weight: 600;
  padding: 14px 24px;
  transition: all .3s ease;
}
.header__shop-link:hover {
  background-color: #dbdbdb;
}
.header__shop-link .shop-icon {
  display: inline-block;
  height: 24px;
  margin-right: 8px;
  width: 24px;
}
.header__menu-btn {
  height: 55px;
  position: relative;
  width: 100px;
  z-index: 10;
}
.header__menu-btn:hover {
  cursor: pointer;
}
.header__menu-btn span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all .3s;
}
.header__menu-btn span:nth-of-type(1) {
  top: 38%;
}
.header__menu-btn:hover span:nth-of-type(1) {
  top: 40%;
}
.header__menu-btn.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(10deg);
}
.header__menu-btn.active:hover span:nth-of-type(1) {
  transform: translateY(6px) rotate(15deg);
  top: 38%;
}
.header__menu-btn span:nth-of-type(2) {
  bottom: 38%;
}
.header__menu-btn:hover span:nth-of-type(2) {
  bottom: 40%;
}
.header__menu-btn.active span:nth-of-type(2) {
  transform: translateY(-6px) rotate(-10deg);
}
.header__menu-btn.active:hover span:nth-of-type(2) {
  transform: translateY(-6px) rotate(-15deg);
  bottom: 38%;
}

.header__nav {
  align-items: start;
  background-color: rgb(61, 61, 61, 0.7);
  backdrop-filter: blur(11px);
  display: flex;
  height: 100%;
  justify-content: center;
  max-height: 100vh;
  overflow-y: auto;
  padding: 160px 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translate(464px);
  transition: all .5s;
  width: 464px;
}
.header__nav.open {
  transform: translateZ(0);
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.header__nav-item a {
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 28px;
}

@media screen and (max-width: 960px){
  .header__logo-link {
    width: 20%;
  }
}
@media screen and (max-width: 769px){
  .header__contents {
    height: 80px;
    padding: 0 5%;
  }
  .header__link-list {
    gap: 16px;
  }
  .header__shop-link {
    padding: 8px 16px;
  }
  .header__shop-link .shop-icon {
    height: 16px;
    width: 16px;
  }
  .header__nav {
    transform: translate(100%);
    width: 100%;
  }
  .header__nav-item a {
    font-size: 20px;
  }
}

/* =============================================
kv
============================================= */
#kv {
  position: relative;
}
.kv-section__contents {
  display: flex;
  height: 100vh;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 720px;
  justify-content: space-between;
  width: 85%;
}

.kv__text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 1000ms ease;
}
.kv__text-area.fade-in-3 {
  opacity: 1;
}
.kv__sub-copy {
  font-size: 16px;
  margin-top: 40px;
}
.kv__main-copy {
  font-size: 48px;
  margin-top: 16px;
}
.kv__description-area {
  margin-top: 44px;
}
.kv__main-description {
  font-size: 20px;
}
.kv__point-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.kv__point-item {
  background-color: #F9F9FB;
  padding: 8px 40px;
}
.kv__sub-description {
  font-size: 16px;
  margin-top: 40px;
}

.kv__img-area {
  margin-right: calc(50% - 50vw);
  position: relative;
  width: 50vw;
}
.kv__img-area img {
  height: 100%;
  object-fit: cover;
}
.kv__img-area::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

/* scroll_down */
.scroll_down{
  position:absolute;
  bottom: 0px;
  right: 30px;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#FFF;
  animation:
    circlemove 3s ease-in-out infinite,
    cirlemovehide 3s ease-out infinite;
}
@keyframes circlemove{
  0%{bottom:140px;}
  100%{bottom:22px;}
}
@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}
.scroll_down:after{
  content: "";
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 1px;
  height: 136px;
  background:#fff;
}

@media screen and (max-width: 960px){
  .kv-section__contents {
    flex-direction:column-reverse;
    padding: 0 0 60px 0;
    height: auto;
    width: 100%;
  }
  .kv__sub-copy {
    font-size: 14px;
  }
  .kv__main-copy {
    font-size: 28px;
  }
  .kv__main-description {
    font-size: 18px;
  }
  .kv__sub-description {
    font-size: 14px;
  }
  .kv__img-area {
    width: 100%;
  }
  .kv__img-area::before {
    display: none;
  }
  .kv__text-area {
    padding: 0;
    width: 85%;
    margin: 0 auto;
  }
  .kv__description-area {
    margin-top: 16px;
  }
}
/* =============================================
troubles
============================================= */
#troubles {
  background-image: url(../img/troubles-bg.webp);
  position: relative;
}
#troubles::before {
  background-image: url(../img/troubles-bg-l.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 25.3%;
}
#troubles::after {
  background-image: url(../img/troubles-bg-r.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 100%;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 25.3%;
}
.troubles-section__contents {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 140px 0 86px 0;
}
#troubles .section__title-area {
  text-align: center;
  position: relative;
}
#troubles .section__title-area::before {
  background: linear-gradient(0deg, rgba(205,205,205,1),  rgba(205,205,205,0));;
  content: "";
  display: block;
  height: 60px;
  position: absolute;
  right: 50%;
  top: -100px;
  width: 1px;
}
.troubles__contents {
  margin-top: 50px;
  width: 66.4%;
}
.troubles__illust-area {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 546px;
  justify-content: center;
  position: relative;
  width: 546px;
}
.troubles__illust-area::after {
  background-color: rgba(250, 250, 250, .8);
  border-radius: 50%;
  content: "";
  display: block;
  filter: blur(32px);
  height: 546px;
  left: calc(50% - 273px);
  position: absolute;
  top: 0;
  width: 546px;
}
.troubles__illust {
  width: 343px;
  z-index: 1;
}
.troubles__voice-area {
  display: flex;
  justify-content: center;
  position: relative;
}
.troubles__voice-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 10;
}
.troubles__voice-list01 {
  left: 0;
  height: 634px;
  position: relative;
}
.troubles__voice-list02 {
  right: 0;
  height: 634px;
  position: relative;
}
.troubles__voice-item {
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
  text-align: center;
}
.troubles__voice-item svg {
  filter: drop-shadow(0 0 30px rgba(153, 153, 153, .1));
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.troubles__voice-item01 {
  top: 0;
  left: -60px;
}
.troubles__voice-item01, .troubles__voice-item01 svg {
  height: 212px;
  width: 239px;
}
.troubles__voice-item02 {
  top: 190px;
  left: -215px;
}
.troubles__voice-item02, .troubles__voice-item02 svg {
  height: 212px;
  width: 242px;
}
.troubles__voice-item03 {
  bottom: 0px;
  left: -40px;
}
.troubles__voice-item03, .troubles__voice-item03 svg {
  height: 229px;
  width: 232px;
}
.troubles__voice-item04 {
  top: 0;
  left: -140px;
}
.troubles__voice-item04, .troubles__voice-item04 svg {
  height: 206px;
  width: 235px;
}
.troubles__voice-item05 {
  top: 220px;
  left: -50px;
}
.troubles__voice-item05, .troubles__voice-item05 svg {
  height: 218px;
  width: 229px;
}
.troubles__voice-item06 {
  bottom: 0px;
  left: -240px;
}
.troubles__voice-item06, .troubles__voice-item06 svg {
  height: 222px;
  width: 221px;
}


@media screen and (max-width: 960px){
  .troubles__voice-list01 {
    height: auto;
  }
  .troubles__voice-list02 {
    height: auto;
  }
  .troubles__voice-item {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
  }
  .troubles__voice-item01 {
    top: -40px;
  }
  .troubles__voice-item03 {
    top: 20px;
  }
  .troubles__voice-item04 {
    top: -40px;
  }
  .troubles__voice-item06 {
    top: 20px;
  }
  .troubles__voice-item01, .troubles__voice-item01 svg,
  .troubles__voice-item02, .troubles__voice-item02 svg,
  .troubles__voice-item03, .troubles__voice-item03 svg,
  .troubles__voice-item04, .troubles__voice-item04 svg,
  .troubles__voice-item05, .troubles__voice-item05 svg,
  .troubles__voice-item06, .troubles__voice-item06 svg {
    height: 20vw;
    width: 25vw;
  }
}
@media screen and (max-width: 769px){
  .troubles__contents {
    margin-top: 80px;
    width: 85%;
  }
  .troubles__voice-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .troubles__voice-list01 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .troubles__illust-area {
    grid-area: 2 / 1 / 3 / 3;
    margin-top: 30px;
    height: auto;
    width: 100%;
  }
  .troubles__illust {
    width: 65%;
  }
  .troubles__voice-list02 {
    grid-area: 1 / 2 / 2 / 3;
  }
  .troubles__voice-item {
    font-size: 3vw;
    width: auto;
  }
  .troubles__voice-item01, .troubles__voice-item01 svg,
  .troubles__voice-item02, .troubles__voice-item02 svg,
  .troubles__voice-item03, .troubles__voice-item03 svg,
  .troubles__voice-item04, .troubles__voice-item04 svg,
  .troubles__voice-item05, .troubles__voice-item05 svg,
  .troubles__voice-item06, .troubles__voice-item06 svg {
    height: 30vw;
    width: 45vw;
  }
}

/* =============================================
about
============================================= */
.about-section__contents {
  align-items: start;
  display: flex;
  margin: 0 auto;
  max-width: 1104px;
  width: 85%;
}
.about__img-container {
  margin-left: calc(50% - 50vw);
  width: 50vw;
}
.about__img-area {
  height: 100vh;
  position: relative;
  width: 100%;
}
.about__img-area img {
  height: 100%;
  object-fit: cover;
}
.about__img-area::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, #ffffff);
}
.about__text-container {
  padding: 96px 0;
  max-width: 50%;
  width: 540px;
}
.about__text-scroll {
  margin-left: 50%;
}
.about__main-description {
  margin-top: 40px;
  letter-spacing: .08em;
}
.about__sns {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 64px;
}
.about__sns-img {
  border-radius: 50%;
  height: 135px;
  width: 135px;
}
.aboute__sns-id {
  align-items: center;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  gap: 6px;
  line-height: 1;
}
.instagram-icon {
  display: inline-block;
  height: 15px;
  width: 15px;
}
.aboute__sns-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 12px;
}
.aboute__sns-description {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 24px;
}
.about__sns-voicearea {
  margin-top: 64px;
}
.about__sns-voicetitle {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 14px;
  text-align: center;
  position: relative;
}
.about__sns-voicetitle::before {
  background-color: #c1c1c1;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 30%;
}
.about__sns-voicetitle::after {
  background-color: #c1c1c1;
  content: "";
  display: block;
  height: 1px;
  right: 0;
  position: absolute;
  top: 50%;
  width: 30%;
  
}
.about__sns-voicelist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__sns-voiceitem {
  background-color: #F5F5F5;
  border-radius: 4px;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  padding: 8px 16px;
}
.aboute__sns-voice-attention {
  font-size: 10px;
  text-align: end;
  margin-top: 8px;
}

@media screen and (max-width: 960px){
  .about__sns-img {
    height: unset;
    max-width: 135px;
    width: 30%;
  }
}
@media screen and (max-width: 769px){
  .about-section__contents {
    flex-direction: column;
    max-width: unset;
    width: 100%;
  }
  .about__img-area {
    height: auto;
    min-height: unset;
    width: 100%;
  }
  .about__img-area::before {
    display: none;
  }
  .about__text-container {
    margin: 0 auto;
    max-width: unset;
    padding: 8vw 0;
    width: 85%;
  }
  .about__img-container {
    margin-left: unset;
    width: 100%;
  }
  .about__main-description {
    margin-top: 24px;
  }
  .aboute__sns-name {
    line-height: 1.4;
    margin-top: 6px;
  }
  .aboute__sns-description {
    margin-top: 12px;
  }
  .about__sns-voicetitle::before, .about__sns-voicetitle::after {
    width: 25%;
  }
}
/* =============================================
structure
============================================= */
#structure {
  background-image: url(../img/structure-bg.webp);
  background-size: 689px 636px;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
.structure-section__contents {
  align-items: end;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  margin: 0 auto;
  max-width: 1104px;
  padding: 96px 0;
  width: 85%;
}
.structure__subtitle {
  background-color: #EFEFEF;
  border-radius: 10px;
  display: inline-block;
  letter-spacing: .08em;
  margin-top: 40px;
  padding: 12px 24px;
  position: relative;
}
.structure__subtitle::before {
  background-image: url(../img/structure-speech.svg);
  background-size: contain;
  bottom: -20px;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  left: 24px;
  width: 15px;
}
.structure__title {
  margin-top: 22px;
}
.structure__main-description {
  font-size: 18px;
  letter-spacing: .08em;
  margin-top: 56px;
}

@media screen and (max-width: 960px){
  #structure {
    background-size: 50%;
  }
  .structure-section__contents {
    grid-template-columns: 1fr;
    padding: 20vw 0;
    margin: 0 auto;
    width: 85%;
  }
}
@media screen and (max-width: 769px){
  .structure__main-description {
    font-size: 14px;
    margin-top: 24px;
  }
}
/* =============================================
point
============================================= */
#point {
  background-image: url(../img/point-bg.webp);
  background-size: 100vw;
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.point-section__contents {
  padding: 120px 0 327px;
  margin: 0 auto;
  max-width: 1104px;
  width: 85%;
}
#point .section__title-area {
  text-align: center;
}
.point__list {
  display: flex;
  flex-direction: column;
  gap: 140px;
  margin-top: 80px;
}
.point__item {
  align-items: start;
  display: flex;
  gap: 80px;
}
.point__item:nth-child(2n+1) {
  margin-left: calc(50% - 50vw);
}
.point__item:nth-child(2n) {
  flex-direction: row-reverse;
  justify-content: start;
  margin-right: calc(50% - 50vw);
}
.point__item:nth-child(2n) .point__img-area {
  max-width: 440px;
}
.point__img-area {
  width: 47.2vw;
}
.point__img-area01 {
  padding: 20px 0;
}
.point__text-area {
  max-width: 512px;
  width: 35.5vw;
}
.point__text-scroll {
  margin-left: calc(47.2vw + 80px);
}
.point__number {
  color: #CDCDCD;
  font-family: "EB Garamond", serif;
  font-size: 80px;
  line-height: 1;
}
.point__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.6;
  margin-top: 16px;
}
.point__figure {
  margin-top: 32px;
}
.point__subtext {
  font-size: 18px;
  margin-top: 32px;
}
.point__attention {
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.4;
  margin-top: 4px;
}
.point__text {
  letter-spacing: .04em;
  margin-top: 32px;
}
.point02__img-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.point02__img-item {
  align-items: center;
  display: flex;
  gap: 32px;
}
.point02__img-item img {
  border-radius: 50%;
  width: 160px;
}
.point02__img-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.point02__img-text {
  margin-top: 16px;
}
.point04__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.point04__item {
  aspect-ratio: 1;
  align-items: center;
  background-image: url(../img/point04-bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 960px){ 
  .point-section__contents {
    margin: 0 auto;
    padding: 5vw 0 25vw;
    width: 85%;
  }
  .point__item {
    flex-direction: column-reverse;
  }
  .point__item:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .point04__list {
    gap: 12px;
    max-width: 100%;
    width: auto;
  }
  .point__item:nth-child(2n+1) {
    margin-left: unset;
  }
  .point__item:nth-child(2n) {
    margin-right: unset;
  }
  .point__text-area {
    max-width: unset;
    width: 100%;
  }
  .point__img-area {
    width: 100%;
  }
  .point__item:nth-child(2n) .point__img-area {
    max-width: unset;
  }
  .point02__img-list {
    flex-direction: row;
  }
  .point02__img-item {
    flex-direction: column;
  }
}

@media screen and (max-width: 769px){
  .point__list {
    margin-top: 40px;
    gap: 80px;
  }
  .point__item {
    gap: 24px;
  }
  .point__number {
    font-size: 64px;
  }
  .point__title {
    font-size: 24px;
    margin-top: 8px;
  }
  .point__subtext {
    margin-top: 16px;
  }
  .point__text {
    margin-top: 24px;
  }
  .point02__img-list {
    flex-direction: column;
    gap: 16px;
  }
  .point02__img-item {
    flex-direction: row;
    gap: 12px;
  }
  .point02__img-item img {
    width: 30%;
  }
  .point02__img-title {
    font-size: 16px;
  }
  .point02__img-text {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.4;
  }
}


/* =============================================
step
============================================= */
.step-section__container {
  align-items: center;
  display: flex;
  gap: 44px;
  padding: 160px 0 140px 0;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1104px;
  width: 85%;
}
#step .section___title-jp {
  margin: 0;
}
.step__main-description {
  font-size: 18px;
  letter-spacing: .08em;
  line-height: 1.6;
  margin-top: 42px;
}
.step__img-list {
  align-items: center;
  display: flex;
  gap: 16px;
}
.step__img-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.step__img-item::before {
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 40%;
  left: -10%;
  position: absolute;
  top: -10%;
  width: 40%;
}
.step__img-item:nth-of-type(1):before {
  background-image: url(../img/step01_text.webp);
}
.step__img-item:nth-of-type(2):before {
  background-image: url(../img/step02_text.webp);
}
.step__img {
  border-radius: 50%;
  max-width: 240px;
  width: 18.3vw;
}
.step__img-arrow {
  margin-bottom: 40px;
  width: 1.5vw;
}

@media screen and (max-width: 960px){  
  .step-section__container { 
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
  }
  .step__img {
    max-width: 220px;
    width: 36vw;
  }
  .step__img-arrow {
    max-width: 28px;
    width: 4vw;
  }
}
/* =============================================
price
============================================= */
.price-section__container {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1104px;
  width: 85%;
}
.price__img-container {
  height: 100vh;
  margin-left: calc(50% - 50vw);
  width: 47vw;
}
.price__img-area {
  height: 100%;
  width: 100%;
}
.price__img-area img {
  height: 100%;
  object-fit: cover;
}
.price__text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 ;
  width: 50%;
}
.price__text-scroll {
  margin-left: 50%;
}
.price__main-description {
  letter-spacing: .08em;
  line-height: 1.6;
  margin-top: 56px;
}
.price__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 96px;
}
.price__item-title {
  letter-spacing: .08em;
  line-height: 1.6;
  margin-bottom: 8px;
}
.price__item-description {
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1.6;
}
.price__num {
  font-size: 18px;
}
.price__tax {
  font-size: 12px;
}
@media screen and (max-width: 769px){
  .price-section__container {
    flex-direction: column;
    width: 100%;
  }
  .price__img-container {
    height: 50vh;
    min-height: 300px;
    width: 100%;
  }
  .price__text-container {
    padding: 60px 0 40px;
    margin: 0 auto;
    width: 85%;
  }
  .price__main-description {
    margin-top: 24px;
  }
  .price__list {
    margin-top: 56px;
  }
  .price__item-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .price__item-description {
    font-size: 12px;
  }
}

/* =============================================
message
============================================= */
#message {
  background-image: url(../img/message-bg.webp);
  background-repeat: no-repeat;
  background-position: 0 100px;
  background-size: cover;
}
.main-message__contents {
  height: 43vw;
  margin: 160px 0 0;
  position: relative;
}
.main-message__img {
  border-radius: 0 10px 0 10px;
  height: auto;
  position: absolute;
  opacity: 0;
  transition: opacity 1000ms ease;
}
.main-message__contents.fade-in-2 .main-message__img {
  opacity: 1;
}
.main-message__img:nth-child(1) {
  top: 4.8vw;
  left: -2.9vw;
  width: 17.9vw; 
}
.main-message__img:nth-child(2) {
  top: 0;
  left: 16.6vw;
  width: 17.9vw; 
  transition-delay: .1s;
}
.main-message__img:nth-child(3) {
  top: 11.1vw;
  left: 36.6vw;
  width: 10.4vw; 
  transition-delay: .3s;
}
.main-message__img:nth-child(4) {
  top: 20.1vw;
  left: 7vw;
  width: 27.6vw; 
  transition-delay: .6s;
}
.main-message__img:nth-child(5) {
  top: 23.6vw;
  left: 36.6vw;
  width: 14.5vw; 
  transition-delay: .9s;
}
.main-message__img:nth-child(6) {
  top: 28.4vw;
  left: 53.2vw;
  width: 17.9vw; 
  transition-delay: 1.2s;
}
.main-message__text {
  font-size: 2.98vw;
  letter-spacing: .08em;
  line-height: 1.8;
  position: absolute;
  right: 6vw;
  top: 4vw;
  text-align: center;
  opacity: 0;
  transition: opacity 1000ms ease;
  transition-delay: 1.5s;
}
.main-message__contents.fade-in-2 .main-message__text {
  opacity: 1;
}

.message__contents {
  align-items: center;
  display: grid;
  gap: 5.5vw;
  grid-template-columns: repeat(2, 1fr);
  padding: 120px 0 174px;
  max-width: 1104px;
  margin: 0 auto;
  width: 85%;
}
.message-sign {
  margin-top: 16px;
  width: 7.9vw;
}


@media screen and (max-width: 769px){
  #message {
    background-image: unset;
  }
  .main-message__contents {
    background-image: url(../img/message-bg.webp);
    background-repeat: no-repeat;
    background-position: 0 10px;
    background-size: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
    height: 105vw;
  }
  .main-message__text {
    display: inline-block;
    font-size: 5.5vw;
    position: relative;
    top: unset;
    right: unset;
  }
  .main-message__img:nth-child(1) {
    top: 10vw;
    left: -2.9vw;
    width: 30vw; 
  }
  .main-message__img:nth-child(2) {
    top: -3vw;
    left: 29.6vw;
    width: 31vw; 
  }
  .main-message__img:nth-child(3) {
    top: 10vw;
    left: 63.6vw;
    width: 26vw; 
  }
  .main-message__img:nth-child(4) {
    top: 73vw;
    left: unset;
    right: 54vw;
    width: 37vw; 
  }
  .main-message__img:nth-child(5) {
    top: 75.6vw;
    left: unset;
    right: 29vw;
    width: 22vw; 
  }
  .main-message__img:nth-child(6) {
    top: 69.4vw;
    left: unset;
    right: -2vw;
    width: 28.9vw; 
  }

  .message__contents {
    background-color: #F7F9FA;
    gap: 60px;
    grid-template-columns: 1fr;
    padding: 60px 0;
    width: 100%;
  }
  .message__text-container {
    align-items: end;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    order: 1;
    width: 85%;
  }
  #message .section__title-area {
    display: block;
    width: 100%;
  }
  .message-sign {
    width: 30%;
  }
}


/* =============================================
shop-link
============================================= */
.shop-link-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.shop__text-container {
  align-items: center;
  background-image: url(../img/shop-bg.webp);
  background-color: #EFEFEF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
}
.shop__text-container::before {
  background-color: #414141;
  content: "";
  display: block;
  height: .54px;
  position: absolute;
  top: 24px;
  width: 100%;
}
.shop__text-container::after {
  background-color: #414141;
  content: "";
  display: block;
  height: .54px;
  position: absolute;
  bottom: 24px;
  width: 100%;
}
.shop__cv-text {
  font-size: 24px;
  letter-spacing: .08em;
}
.shop__cv-btn {
  align-items: center;
  background-color: #414141;
  border-radius: 50px;
  color: #fff;
  display: flex;
  gap: 6px;
  height: 84.6px;
  justify-content: center;
  margin-top: 24px;
  transition: all .3s ease;
  width: 376px;
}
.shop__cv-btn:hover {
  background-color: #818181;
}
#shop-link .shop-icon {
  display: inline-block;
  height: 24px;
  stroke: #fff;
  width: 24px;
}
@media screen and (max-width: 769px){
  .shop-link-section__container {
    grid-template-columns: 1fr;
  }
  .shop__text-container {
    height: 50vw;
    min-height: 310px;
  }
  .shop__cv-btn {
    height: 64px;
    width: 80%;
  }
}

/* =============================================
company
============================================= */
.company-section__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 140px 0;
  margin: 0 auto;
  max-width: 1104px;
  width: 85%;
}
#company .section__title-area {
  display: block;
  text-align: start;
  width: 100%;
}
.company__table {
  margin-top: 64px;
}
.company__table th {
  font-weight: 600;
}
.company__table th, .company__table td {
  padding: 21px;
}
.company__table a {
  transition: all .3s ease;
}
.company__table a:hover {
  opacity: .8;
}
@media screen and (max-width: 769px){
  .company-section__container {
    max-width: unset;
    padding: 60px 0;
  }
  .company__table {
    margin-top: 24px;
  }
  .company__table tr {
    display: flex;
    flex-direction: column;
  }
  .company__table th {
    padding: 12px 12px 4px;
  }
   .company__table td {
    padding: 4px 12px 12px;
   }
}

/* =============================================
footer
============================================= */
footer {
  background: linear-gradient(#FFFFFF, #ECECEC);
}
.footer__container {
  border-top: .6px solid #626262;
  margin: 0 auto;
  padding: 64px 0 40px;
  width: 76.5%;
}
.footer__main {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.footer__logo-link {
  display: inline;
  width: 12%;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 32px;
  justify-content: end;
  width: 45%;
}
.footer__item a {
  padding: 8px 16px;
  transition: all .3s ease;
}
.footer__item a:hover {
  opacity: .8;
}
.footer__copyright {
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.6;
  margin-top: 64px;
}
@media screen and (max-width: 769px){
  .footer__container {
    padding: 60px 0;
    width: 85%;
  }
  .footer__main {
    flex-direction: column;
  }
  .footer__logo-link {
    width: 35%;
  }
  .footer__list {
    margin-top: 24px;
    justify-content: center;
    gap: 4px;
    row-gap: 8px;
    width: 100%;
  }
  .footer__copyright {
    margin-top: 40px;
    text-align: center;
  }
}