@charset "utf-8";

/* カラー */
/* アクセント：#ff7473 */
/* メイン：#34314c */
/* ポイント：#47b8e0 */
/* サポート：#ffc952 */

html {
  scroll-behavior: smooth;
  /* overflow: hidden; */
}

:root {
  --vh: 100px; /* デフォルトの値を設定しておく */
  --base-font-size: 16px;
  scroll-behavior: smooth;
}

/* スクロールデザイン */
::-webkit-scrollbar {
  width: 5px;
  height: 0;
}
::-webkit-scrollbar-track {
  background-color: #34314c;
}
::-webkit-scrollbar-thumb {
  background-color: #e85a71;
}
/* --------------------------- */

input,select {
  width: 100%;
  height: 50px;
  padding: 10px;
  border-bottom: 1px solid rgb(52, 49, 76, 0.2);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 0 solid #ffc952; /* 選択時にカスタムの枠線を表示 */
  border-bottom: 1px solid rgb(52, 49, 76, 0.2);
}

body {
  width: 100%;
  height: calc(var(--dvh, 1vh)* 100);
  min-height: 660px;
  margin: 0 auto;
  color: #e85a71;
  font-size: 16px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  user-select: none;
  /* overflow: auto; */
}

/* containerLine */
.containerLine {
  height: 100%;
}

/* position: fixed; の場合 */
.setHeight {
  height: calc(var(--dvh, 1vh)* 100);
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #34314c;
  overflow: hidden;
  transition: height 0.5s;
}
header.default {
  height: 210px;
}
header.transform {
  height: 110px;
}
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #e85a71;
  -webkit-clip-path: polygon(68% 0%, 100% 0%, 100% 100%, 56% 100%);
  clip-path: polygon(68% 0%, 100% 0%, 100% 100%, 56% 100%);
  transition: height 0.5s, background-color 0.5s, clip-path 0.5s;
}
/* セカンドビュー */
.secondView header {
  height: 100%;
}
.secondView header::before {
  -webkit-clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 35% 100%);
  clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 35% 100%);
}
/* ファーストビュー */
.firstView header::before {
  background-color: rgb(232, 90, 113, 0);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* title */
.title {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: transparent;
  border-radius: 10px;
  transition: top 0.5s, left 0.5s, transform 0.5s, width 0.5s, height 0.5s, background-color 0.5s;
}
.title img {
  width: 100%;
}
.firstView .title {
  background-color: #e85a71;
}
.secondView .title {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-color: #e85a71;
}

/* ナビ */
.mainNav {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 840px;
  height: 50px;
}
header.default .mainNav {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 1s, visibility 0.1s;
}
header.transform .mainNav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.1s 0.5s;
}
.secondView header.default .mainNav {
  opacity: 0;
  visibility: hidden;
}
.mainNav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  color: #fff;
}
.mainNav li {
  padding-left: 15px;
  position: relative;
}
.mainNav li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.mainNav li:hover::before {
  background-color: #e85a71;
}
.mainNav li::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 3px;
  background-color: #fff;
  border-radius: 100px;
  transition: width 0.3s;
}
.mainNav li:hover::after {
  width: 100%;
}

/* 新規登録ボタン */
header .createAccountBtn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 50px;
  opacity: 1;
  font-weight: 700;
  color: #fff;  
  transition: opacity 0.5s;
}
header .createAccountBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid rgb(255, 255, 255, 0.4);
  border-radius: 10px;
  transition: left 0.5s, border 0.5s;
}
header .createAccountBtn:hover::before {
  left: 0;
  border: 3px solid rgb(255, 255, 255);
}
.secondView .createAccountBtn {
  opacity: 0;
}

/* メインコンテンツ */
main {
  min-height: 100%;
  padding-top: 210px;
  background-color: #34314c;
  color: #fff;
  position: relative;
  z-index: 1;
}
main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(var(--dvh, 1vh)* 100);
  background-color: #e85a71;
  -webkit-clip-path: polygon(0% 0%, 70% 0%, 0% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 70% 0%, 0% 100%, 0% 100%);
}

/* トップ */
main .sectionContents.topSec {
  height: calc(var(--dvh, 1vh)* 100 - 210px);
  min-height: 650px;
  padding: 800px 10px 0;
  position: relative;
}
.topSec .mainTitle {
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
  padding: 10px;
  font-weight: 700;
}
.topSec .mainTitle h2 {
  line-height: 2;
  font-size: 42px;
}
.topSec .mainTitle span {
  display: block;
}
.topSec .phoneImageSample img {
  width: 100%;
}
.topSec .phoneImageSample .designPosition {
  width: 100%;
  max-width: 520px;
  position: absolute;
  top: 20%;
  left: 75%;
  transform: translate(-50%, 0);
  background-color: #34314c;
  border-radius: 65px;
}
.topSec .phoneImageSample .designPosition::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  width: 90%;
  height: 93%;
  background-image: url(../img/publicTopPageImages/officialAccountScreenshot.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
}
.topSec .scrollItem {
  position: absolute;
  bottom: 145px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
  overflow: hidden;
}
.topSec .scrollItem .scrollBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgb(232, 90, 113, 0);
  box-shadow: 2px 2px 5px -2px rgb(52, 49, 76, 0);
  border-radius: 100%;
  text-transform: capitalize;
  font-size: 42px;
  font-weight: 700;
  position: relative;
  transition: background-color 0.5s 0.5s, box-shadow 0.5s 0.5s;
}
.topSec .scrollItem .scrollBtn:hover {
  background-color: #e85a71;
  box-shadow: 2px 2px 5px -2px rgb(52, 49, 76, 0.6);
}
@keyframes scrollRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(1800deg);
  }
}
.topSec .scrollItem .scrollBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url(../img/publicTopPageImages/topScrollBtnDesign.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation-name: scrollRotate;
  animation-duration: 180s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

/* セクション共通 */
main .sectionContents {
  padding: 300px 10px 0;
}
main .sectionContents h2 {
  letter-spacing: 0.2em;
  font-size: 36px;
}
main .sectionTitle {
  padding: 0 5%;
}
main .sectionTitle span {
  font-weight: 700;
  color: #e85a71;
}
main .sectionContents h3 {
  font-size: 58px;
  font-weight: 700;
  position: relative;
}
main .sectionContents h3::before {
  position: absolute;
  top: -30px;
  left: 25px;
  z-index: 0;
  text-transform: capitalize;
  opacity: 0.1;
  color: #fff;
}

/* サービス セクション */
.serviceSec {
  background-color: #34314c;
}
.serviceSec h3::before {
  content: 'service';
}
.serviceSec .contents {
  width: 100%;
  max-width: 480px;
  margin: 80px auto 0;
  padding-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 5px -2px rgb(52, 49, 76, 0.6);
  color: #34314c;
}
.serviceSec dt {
  display: flex;
  justify-content: start;
  align-items: center;
  min-height: 70px;
  padding: 5px 10px;
  background-color: #e85a71;
  border-radius: 10px 10px 0 0;
  line-height: 1.5;
  font-size: 20px;
  color: #fff;
}
.serviceSec dd {
  padding: 0 10px;
}
.serviceSec .contents p {
  margin-top: 20px;
  line-height: 1.5;
}
.serviceSec .contents .note {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  min-height: 20px;
  margin-top: 20px;
  font-size: 12px;
}
/* contents1 */
.serviceSec .inputDesign {
  display: block;
  padding: 30px 0;
  position: relative;
}
.serviceSec .inputDesign::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: url(../img/publicTopPageImages/search_24dp_34314C_FILL0_wght400_GRAD0_opsz24.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.serviceSec input {
  padding-left: 50px;
  background-color: #fff;
  box-shadow: 0 0 5px 1px rgb(52, 49, 76, 0.6) inset;
  border-radius: 100px;
}
/* contents2 */
.serviceSec .qrcodeImage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  padding: 30px 0;
  border-radius: 5px;
}
.serviceSec .qrcodeImage img {
  height: 100%;
  border-radius: 10px;
}
/* contents3 */
.serviceSec .applicationIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  padding: 30px 0;
  border-radius: 5px;
}
.serviceSec .applicationIcon img {
  height: 100%;
  filter: drop-shadow(2px 2px 3px rgb(52, 49, 76, 0.4));
  border-radius: 10px;
}

/* 特徴 セクション */
.featuresSec {
  background-color: #34314c;
}
.featuresSec h3::before {
  content: 'features';
}
.featuresSec .contents {
  padding: 100px 10px;
}
.featuresSec .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  margin: 0 auto;
  font-size: 38px;
  font-weight: 700;
  position: relative;
}
.featuresSec .number::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 15px;
  height: 2px;
  background-color: #fff;
  border-radius: 100px;
}
.featuresSec .usePoint {
  padding-top: 30px;
  text-align: center;
  font-size: 24px;
}
/* content1 */
.featuresSec .content1 .useImage {
  height: calc((65px + 20px + 20px)  * 3 );
  padding: 20px;
}
.featuresSec .content1 .useImage ul {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.featuresSec .content1 .useImage li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: #e85a71;
  border-radius: 100px;
  margin-top: 20px;
}
.featuresSec .content1 .useImage li:nth-child(1) {
  top: 0;
}
.featuresSec .content1 .useImage li:nth-child(2) {
  top: calc((65px + 20px) * 1);
}
.featuresSec .content1 .useImage li:nth-child(3) {
  top: calc((65px + 20px) * 2);
}
.featuresSec .content1 .useImage li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.featuresSec .content1 .useImage li:nth-child(1)::before {
  background-image: url(../img/publicTopPageImages/Instagram_Glyph_White.png);
}
.featuresSec .content1 .useImage li:nth-child(2)::before {
  background-image: url(../img/publicTopPageImages/logo-white.png);
}
.featuresSec .content1 .useImage li:nth-child(3)::before {
  background-image: url(../img/publicTopPageImages/Spotify_Icon_CMYK_White.png);
}
@keyframes contrast {
  0%, 100% {
    filter: contrast(0.7);
  }
  50% {
    filter: contrast(0.4);
  }
}
.featuresSec .content1 .useImage span {
  position: absolute;
  top: 50%;
  left: 75px;
  transform: translate(0, -50%);
  display: block;
  width: 160px;
  height: 18px;
  background-color: #e85a71;
  border-radius: 100px;
  filter: contrast(0.7);
  animation-name: contrast;
  animation-duration: 2s;
  animation-delay: 0ms;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.featuresSec .content1 .useImage li:nth-child(2) span {
  width: 80px;
  animation-delay: 2s;
}
.featuresSec .content1 .useImage li:nth-child(3) span {
  width: 120px;
  animation-delay: 1s;
}
/* content2 */
.featuresSec .content2 .useImage {
  display: flex;
  justify-content: center;
  align-items: start;
  height: 180px;
  margin-top: 55px;
  overflow: hidden;
  position: relative;
}
.featuresSec .content2 .useImage img {
  width: 350px;
}
@keyframes scanner {
  0%, 100% {
    top: 10%;
  }
  25% {
    top: 80%;
  }
  50% {
    top: 20%;
  }
  75% {
    top: 95%;
  }
}
.featuresSec .content2 .useImage::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 200px;
  height: 1px;
  background-color: #e85a71;
  border-radius: 100px;
  box-shadow: 0 0 8px 2px #e85a71;
  animation-name: scanner;
  animation-duration: 16s;
  animation-delay: 0ms;
  animation-iteration-count: infinite;
}
/* content3 */
.featuresSec .content3 .useImage {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 55px;
}
.featuresSec .content3 .useImage img {
  width: 140px;
}
.featuresSec .content3 .useImage .arrowsImage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.featuresSec .content3 .useImage .webImage {
  width: 290px;
  height: 120px;
  object-fit: cover;
}
.featuresSec .content3 .useImage p {
  width: 100%;
  text-align: center;
}

/* プラン セクション */
.planSec {
  position: relative;
}
.planSec h3 {
  color: #34314c;
}
.planSec h3::before {
  content: 'plan';
  color: #34314c;
}
.planSec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% + 90px);
  background-color: #ffc952;
}
.planSec .planContainer {
  width: 100%;
  max-width: 480px;
  margin: 50px auto 0;
  padding: 80px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 5px -2px rgb(52, 49, 76, 0.6);
  position: relative;
  color: #34314c;
}
.planSec .planContainer .planName {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 60px;
  background-color: #e85a71;
  box-shadow: 2px 2px 5px -2px rgb(52, 49, 76, 0.6);
  border-radius: 10px;
}
.planSec .planContainer .planName h4 {
  font-size: 26px;
  color: #fff;
}
.planSec .planContainer dt {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 25px;
  font-size: 14px;
}
.planSec .planContainer dd {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-size: 26px;
}
.planSec .planContainer dd span {
  margin-left: 5px;
  padding: 2px 10px;
  background-color: #ffc952;
  border-radius: 100px;
  font-size: 14px;
}
.planSec .planContainer p {
  margin-top: 10px;
  line-height: 1.5;
}

/* 登録 セクション */
.accountSec {
  margin-top: 85px;
  background-color: #34314c;
  position: relative;
}
.accountSec h3::before {
  content: 'account';
}
.accountSec .createAccountinformation {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  color: #34314c;
}
@keyframes button {
  0%, 100% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
}
.accountSec .createAccountinformation .createBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
  max-width: 480px;
  margin: 0 auto;
  background-color: #e85a71;
  box-shadow: 2px 2px 5px -2px rgb(52, 49, 76, 0.6);
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
  animation-name: button;
  animation-duration: 1s;
  animation-delay: 0ms;
  animation-iteration-count: infinite;
}
.accountSec .createAccountinformation .flow {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 100px;
}
.accountSec .createAccountinformation .flow li {
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 45px;
  min-height: 180px;
  line-height: 1.5;
  font-size: 22px;
  color: #fff;
  position: relative;
}
.accountSec .createAccountinformation .flow .number {
  position: absolute;
  top: -40px;
  left: -30px;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-right: 8px;
  background-color: #e85a71;
  border-radius: 100px;
  transform: rotate(15deg);
  opacity: 0.8;
  font-size: 58px;
  font-weight: 700;
  color: #fff;
}
.accountSec .createAccountinformation .serviceLoginBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 65px;
  margin: 50px auto 0;
  background-color: #ffc952;
  box-shadow: 2px 2px 5px -2px rgb(52, 49, 76, 0.6);
  border-radius: 100px;
  font-weight: 700;
  color: #34314c;
  animation-name: button;
  animation-duration: 1s;
  animation-delay: 0ms;
  animation-iteration-count: infinite;
}

/* FAQ セクション */
.faqSec {
  background-color: #34314c;
}
.faqSec h3::before {
  content: 'FAQ';
}
.faqSec dl {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 50px 0;
}
.faqSec dt {
  display: flex;
  justify-content: start;
  align-items: center;
  min-height: 40px;
  margin-top: 30px;
  padding: 5px 10px;
  background-color: #e85a71;
  border-radius: 100px;
  line-height: 1.5;
}
.faqSec dd {
  padding: 10px 10px 20px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
  line-height: 1.5;
}
.faqSec dd a {
  margin: 0 5px;
  text-decoration: underline;
}

/* フッター */
.copyRight-fixed {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 10;
  transform: translate(0, -50%) rotate(90deg);
  font-size: 14px;
  color: #fff;
  transition: opacity 0.5s;
}
footer {
  height: calc(var(--dvh, 1vh)* 100 - 210px);
  background-color: #e85a71;
  color: #fff;
  overflow: hidden;
  position: relative;
}
footer .copyRight {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 25px;
  text-align: center;
  font-size: 14px;
}
footer .createAccount {
  width: 100%;
  height: calc(100% / 2);
  padding-top: 60px;
  overflow: hidden;
}
footer .createAccountBtn {
  display: block;
  width: 520px;
  margin-left: auto;
  padding: 30px 0;
  position: relative;
}
footer .createAccountBtn::before,
footer .createAccountBtn::after {
  content: '';
  position: absolute;
  height: 2px;
  background-color: rgb(255, 255, 255, 0.4);
  transition: left 0.5s, width 0.5s, background-color 0.5s;
}
footer .createAccountBtn::before {
  top: 0;
  left: -30px;
  width: 40%;
}
footer .createAccountBtn::after {
  bottom: 0;
  left: 30px;
  width: 70%;
}
footer .createAccountBtn:hover::before,
footer .createAccountBtn:hover::after {
  background-color: #fff;
}
footer .createAccountBtn:hover::before {
  left: -10px;
  width: 60%;
}
footer .createAccountBtn:hover::after {
  left: 10px;
  width: 90%;
}
footer .createAccountBtn h4 {
  font-size: 26px;
}
footer .createAccountBtn p {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
}
/* フッターナビ */
footer .footerNav {
  width: 100%;
  height: calc(100% / 2);
  padding: 30px 0 55px 30px;
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
footer .footerNav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #34314c;
  -webkit-clip-path: polygon(78% 0%, 100% 0%, 100% 100%, 50% 100%);
  clip-path: polygon(78% 0%, 100% 0%, 100% 100%, 50% 100%);
}
footer .footerNav ul {
  width: 100%;
  max-width: 260px;
}
footer .footerNav li {
  margin-top: 30px;
}
footer .footerNav ul button {
  position: relative;
}
footer .footerNav ul button::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 3px;
  background-color: #fff;
  border-radius: 100px;
  transition: width 0.3s;
}
footer .footerNav ul button:hover::before {
  width: 100%;
}
footer .footerNav ul button::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -20px;
  width: 15px;
  height: 15px;
  background-image: url(../img/publicTopPageImages/ungroup_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/* SNS アイコンリンク */
footer .sns-link {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 150px;
  margin-left: auto;
  margin-right: 30px;
}
footer .sns-link button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 5px;
}
footer .sns-link img {
  width: 35px;
}