@charset "UTF-8";
/*clamp(最小値のrem,希望の画面幅でのpx,最大値のrem,画面幅)*/
/*16px=10remの計算で考える！*/
@media screen and (max-width:768px) {
  .is-pc {
    display: none;
  }
}
@media screen and (max-width:900px) {
  .is-logo-pc {
    display: none;
  }
}
@media screen and (min-width:900px) {
  .is-logo-sp {
    display: none;
  }
}
@media screen and (max-width:1200px) {
  .is-sp {
    display: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url(../img/main-bg-color.jpg);
  background-size: 60% auto;
  color: #3e3e3e;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.6px;
  margin: 0 auto;
}

.body-wrapper {
  width: 70em;
  max-width: calc(100% - 4em);
  margin: 0 auto;
}
@media screen and (max-width:900px) {
  .body-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

input,
textarea,
select {
  cursor: pointer;
}

.main {
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 80px;
}

.inner {
  margin: -8px auto;
  padding: 0px 60px;
  box-sizing: content-box;
  background: #fff;
}
@media screen and (max-width:768px) {
  .inner {
    padding: 0 5%;
  }
}

.block-inner {
  display: block;
  background: #e3e3e3;
  padding: 0 5%;
  padding-bottom: 54px;
  margin: 0 auto;
  background: rgba(253, 234, 230, 0.4);
}

.article-textInner {
  display: block;
  text-align: justify;
  padding: 5% 10%;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .article-textInner {
    padding: 20px 0;
  }
}

.section-title {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.125rem, 2.7777777778vw, 2.125rem);
  padding: 5% 0;
  color: #1DB088;
  font-family: "Noto Serif JP", serif;
}

.section-title-ja {
  font-size: clamp(0.6875rem, 1.5555555556vw, 1.25rem);
  color: #000;
  font-family: "M PLUS 1p", sans-serif;
  display: block;
}

.section-titleSub {
  text-align: center;
  color: #c8c8c8;
  font-size: clamp(0.75rem, 1.5555555556vw, 1.3125rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.section-titleSub-number {
  font-size: clamp(1rem, 2.4444444444vw, 1.875rem);
}

.button {
  text-align: center;
  margin: 0 auto;
  color: #fff;
  margin-top: 2rem;
  background: linear-gradient(135deg, #DD487B 0%, #DDC37B 33%, #DD487B 66%, #DDC37B 100%);
  background-size: 200% 200%;
  animation: gradationAnim 20s ease infinite;
  padding: 1.5rem;
  border-radius: 20px;
  width: 50%;
  line-height: 2px;
  opacity: 0.8;
}
.button:hover {
  background: #1DB088;
  transition: 0.3s;
}
.button:hover {
  opacity: 1;
}
@media screen and (max-width:1200px) {
  .button {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .button {
    width: 100%;
  }
}
@keyframes gradationAnim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.button a {
  color: #fff;
}

.star-2 {
  color: #1DB088;
}

.star-1 {
  color: #a45963;
}

.mark-img {
  width: clamp(3.875rem, 13.3333333333vw, 7.5rem);
}

.header {
  font-family: "Noto Serif JP", serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #fff;
  margin: 0 auto;
  width: 70em;
  max-width: calc(100% - 4em);
  transition: 0.5s;
}
@media screen and (max-width:900px) {
  .header {
    width: 100%;
    max-width: 100%;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  background-color: rgba(184, 103, 124, 0.8);
  padding: 2em;
}
@media screen and (max-width:900px) {
  .header-inner {
    background-color: rgba(255, 255, 255, 0);
  }
}
@media screen and (max-width:768px) {
  .header-inner {
    padding: 1em;
  }
}

.header-nav {
  margin-left: auto;
}
@media screen and (max-width:900px) {
  .header-nav {
    display: none;
  }
}

.header-logo {
  font-weight: bold;
  font-size: clamp(0.875rem, 1.7777777778vw, 1.375rem);
}
@media screen and (max-width:900px) {
  .header-logo {
    color: #a45963;
  }
}

.header-nav-list {
  display: flex;
}
@media screen and (max-width:900px) {
  .header-nav-list {
    margin-top: 60px;
  }
}
.header-nav-list li {
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  line-height: 1.2;
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
.header-nav-list li:first-of-type {
  border-left: 1px solid #fff;
}
.header-nav-list a {
  letter-spacing: -0.4px;
  position: relative;
}
@media screen and (max-width:900px) {
  .header-nav-list a {
    text-align: center;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
  }
}

.header-nav-link {
  font-size: clamp(0.8125rem, 1.7777777778vw, 1.25rem);
}

.header-nav-sub {
  font-size: clamp(0.625rem, 1.3333333333vw, 0.875rem);
  font-family: "M PLUS 1p", sans-serif;
}

.header-nav-link.is-active {
  color: #000;
}

/*drawer nav*/
.drawer-inner {
  display: none;
}
@media screen and (max-width:900px) {
  .drawer-inner {
    display: block;
  }
}

.drawer-open .overlay-active {
  position: fixed;
  background: #000;
  opacity: 0.1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.drawer-nav {
  padding: 100px 60px 60px 60px;
  text-align: center;
  background-color: rgba(164, 89, 99, 0.7);
}

.drawer--top .drawer-hamburger {
  right: 3vw;
}

@media screen and (min-width:1201px) {
  .drawer-toggle,
  .drawer-hamburger {
    display: none;
  }
}
@media screen and (max-width:900px) {
  .drawer-toggle,
  .drawer-hamburger {
    padding-top: 44px;
  }
}
@media screen and (max-width:768px) {
  .drawer-toggle,
  .drawer-hamburger {
    padding-top: 20px;
  }
}

.drawer-hamburger-icon,
.drawer-hamburger-icon::before,
.drawer-hamburger-icon::after {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: rgba(184, 103, 124, 0.8);
}

@media screen and (max-width:900px) {
  .drawer-open .drawer-hamburger-icon:after,
  .drawer-open .drawer-hamburger-icon::before {
    background: #fff;
    width: 30px;
    height: 4px;
  }
}

.drawer-open .drawer-overlay {
  display: none;
}

.drawer-menu a {
  color: #fff;
}

.drawer-menu-item:hover {
  text-decoration: none;
}

.top-inner {
  position: relative;
}
.top-inner .line-box .line-icon {
  position: absolute;
  bottom: -11%;
  right: 20%;
}
.top-inner .line-box .line-icon img {
  width: clamp(11rem, 21.1111111111vw, 18rem);
}
.top-inner .line-box .line-iconSp {
  position: absolute;
  width: 78%;
  display: block;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 0%);
  margin: 3rem 0;
}
@media screen and (max-width:768px) {
  .top-inner .line-box .line-iconSp {
    margin-top: 2.5rem;
    width: 80%;
  }
}
.top-inner .line-button {
  font-size: clamp(0.875rem, 2.6666666667vw, 1.225rem);
  border: 2px solid #24AB49;
  padding: 0.8em;
  border-radius: 40px;
  width: 50%;
  margin: 0 auto;
  color: #24AB49;
  text-align: center;
}
@media screen and (max-width:768px) {
  .top-inner .line-button {
    padding: 0.7em;
  }
}
.top-inner .line-button:hover {
  color: #fff;
  background: #24AB49;
}

.top-title {
  font-weight: bold;
  letter-spacing: 0.02px;
  margin-bottom: 28px;
}
@media screen and (max-width:900px) {
  .top-title {
    padding-top: 63px;
    line-height: 1.666;
  }
}

.top-text {
  font-weight: bold;
  letter-spacing: 0.45px;
  margin-bottom: 38px;
}
@media screen and (max-width:900px) {
  .top-text {
    margin-top: 21px;
  }
}

.top-link {
  color: #fff;
  text-align: center;
  display: inline-block;
  width: 282px;
}
@media screen and (max-width:900px) {
  .top-link {
    margin-top: 27px;
    display: inline-block;
    height: 46px;
  }
}

.fv {
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width:900px) {
  .fv {
    margin-top: 0;
  }
}
.fv .fv-logo-pc {
  position: absolute;
  top: 12%;
  right: 7%;
  width: 12.5%;
  z-index: 5;
}
.fv .fv-logo-sp {
  position: absolute;
  top: 11%;
  right: 8%;
  width: 14.5%;
}

.schedule {
  padding-top: 4rem;
}
@media screen and (max-width:900px) {
  .schedule {
    padding-top: 40vw;
  }
}
@media screen and (max-width:768px) {
  .schedule {
    padding-top: clamp(13.5rem, 43.137254902vw, 20rem);
  }
}

.ac-list {
  margin: 0 auto;
}
.ac-list li {
  border-bottom: solid 1px #cecdcd;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ac-list li:first-child {
  border-top: solid 1px #cecdcd;
}

.ac-title {
  width: 100%;
}
.ac-title .qa-wrap {
  padding: 1.5rem 3rem 1.5rem 1rem;
}
.ac-title .ac-titleCard {
  display: flex;
  line-height: 1.7;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.2px;
  padding: 1em 3em 1em 0.2em;
}
@media screen and (max-width:1200px) {
  .ac-title .ac-titleCard {
    display: block;
  }
}
.ac-title .ac-titleCard .ac-lecture {
  color: #1DB088;
  font-weight: 800;
  text-align: left;
  width: 20%;
  font-size: clamp(1rem, 1.5555555556vw, 1.25rem);
}
@media screen and (max-width:1200px) {
  .ac-title .ac-titleCard .ac-lecture {
    width: 100%;
  }
}
.ac-title .ac-titleCard .ac-time {
  text-align: left;
  flex-basis: 16em;
  width: 100%;
  flex-shrink: 0;
  font-size: clamp(0.875rem, 1.5555555556vw, 1.25rem);
  font-weight: 500;
}
.ac-title .ac-titleCard .ac-venue {
  text-align: left;
  flex-basis: auto;
  width: 100%;
  flex-shrink: 2;
  font-size: clamp(0.875rem, 1.5555555556vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.4px;
}
.ac-title .ac-titleCard:before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1DB088;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.ac-title .ac-titleCard:after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1DB088;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
}
.ac-title .ac-titleCard.active:after {
  display: none;
}
.ac-title .ac-text {
  background-color: #fff;
  display: none;
}
@media screen and (max-width:768px) {
  .ac-title .ac-text {
    padding: 0px;
  }
}
.ac-title .ac-text .ac-content {
  display: block;
  background: #fff;
}
.ac-title .ac-text .ac-contentText {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: auto;
  font-size: clamp(0.875rem, 1.5555555556vw, 1.25rem);
  padding: 1.2rem;
  text-align: left;
}
.ac-title .ac-text .ac-contentText2 {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: auto;
  font-size: clamp(0.875rem, 1.5555555556vw, 1.25rem);
  padding: 0.2rem;
  text-align: center;
}
.ac-title .ac-preLink {
  font-weight: bold;
  color: #a45963;
  margin: 0 auto;
}

.pre-button {
  font-size: clamp(0.875rem, 2.3333333333vw, 1.125rem);
  display: inline-block;
  border: 2px solid #a45963;
  color: #a45963;
  text-align: center;
  padding: 0.5rem 2rem;
  margin: 0 auto;
  border-radius: 40px;
}
.pre-button:hover {
  background: #a45963;
  opacity: 0.8;
  color: #fff;
  transition: color 0.3s;
}

.span1 {
  font-size: 15px;
  display: block;
  color: #000;
}

.story .story-inner {
  padding-bottom: 3em;
  position: relative;
}
.story .story-titleMain {
  padding-bottom: 3rem;
  padding-top: 0;
}
@media screen and (max-width:768px) {
  .story .story-titleMain {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}
.story .story-aboutUs {
  margin-top: 2rem;
  position: relative;
}
.story .story-aboutUs-card {
  border: 1px solid #e1c2c9;
  background: #fef8f6;
  padding-top: clamp(0.625rem, 1.5555555556vw, 1.75rem);
  padding-bottom: clamp(0.625rem, 1.5555555556vw, 1.75rem);
  padding-left: clamp(0.625rem, 2.7777777778vw, 3.1rem);
  padding-right: clamp(0.625rem, 2.7777777778vw, 3.1rem);
  margin-top: 3rem;
  font-size: clamp(0.875rem, 1.7777777778vw, 1.375rem);
  position: relative;
}
.story .story-aboutUs-card .aboutus-icon {
  position: absolute;
  width: clamp(2.075rem, 5.5555555556vw, 3.125rem);
  top: -2vw;
  left: 4vw;
}
@media screen and (max-width:768px) {
  .story .story-aboutUs-card .aboutus-icon {
    top: -2.5vw;
  }
}
.story .story-aboutUs-card p {
  color: #e1c2c9;
  letter-spacing: 0.1px;
  line-height: 2;
}
.story .section-titleSub-number {
  color: #000;
}
.story .story-top {
  margin-bottom: 4rem;
  font-size: clamp(0.875rem, 1.7777777778vw, 1.375rem);
}
.story .story-message {
  margin-top: 2rem;
}
.story .story-message p {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.kumo-iconBox {
  width: clamp(6.25rem, 16.6666666667vw, 18.75rem);
  position: absolute;
  top: 2vw;
  right: 0;
}
@media screen and (max-width:768px) {
  .kumo-iconBox {
    top: 8vw;
  }
}

.kumo-iconBox2 {
  width: clamp(12.5rem, 16.6666666667vw, 18.75rem);
  position: absolute;
  bottom: 12vw;
  left: 0;
}

.cast {
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 90px;
}
@media screen and (max-width:768px) {
  .cast {
    padding: 0 20px;
  }
}

.block-inner-cast {
  display: block;
  background: #e3e3e3;
  padding: 2rem;
  margin: 0 auto;
  background: url(../img/cast-bg@2x.png);
  background-size: 100% 50%;
  background-position: cover;
}
@media screen and (max-width:768px) {
  .block-inner-cast {
    padding: 2em 0;
  }
}

.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width:1200px) {
  .cast-list {
    gap: 35px;
  }
}
@media screen and (max-width:768px) {
  .cast-list {
    display: block;
    width: 100%;
  }
}
.cast-list li {
  margin-bottom: 5vw;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width:1200px) {
  .cast-list li {
    text-align: center;
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (max-width:768px) {
  .cast-list li {
    width: 90%;
    padding-bottom: 4rem;
    margin: 0 auto;
  }
}
.cast-list li .cast-imgBox {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width:1200px) {
  .cast-list li .cast-imgBox {
    width: 80%;
  }
}
@media screen and (max-width:768px) {
  .cast-list li .cast-imgBox {
    width: 80%;
  }
}
.cast-list li .cast-imgBox img {
  display: block;
  border-radius: 20px;
  width: 80%;
  margin: 0 auto;
}
.cast-list li .cast-name-role {
  text-align: center;
  margin-top: 1rem;
  font-size: clamp(0.8125rem, 1.5555555556vw, 1.25rem);
}
.cast-list li .cast-name-actor {
  text-align: center;
  font-weight: bold;
  color: #1DB088;
  font-size: clamp(1.125rem, 2.2222222222vw, 1.75rem);
  letter-spacing: 4px;
}
.cast-list li .cast-career {
  text-align: left;
  padding-top: 1rem;
  margin: 0 auto;
  width: 90%;
  text-align: justify;
  font-size: clamp(0.8125rem, 1.3333333333vw, 0.75rem);
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0.2px;
}
@media screen and (max-width:1200px) {
  .cast-list li .cast-career {
    width: 80 .cast-list li .cast-career;
  }
}
@media screen and (max-width:768px) {
  .cast-list li .cast-career {
    width: 90%;
  }
}

.staff {
  position: relative;
}
.staff .kumo-iconBox3 {
  position: absolute;
  width: clamp(6.25rem, 16.6666666667vw, 18.75rem);
  top: 0;
  right: 0;
}
.staff .kumo-iconBox4 {
  position: absolute;
  width: clamp(2rem, 16.6666666667vw, 18.75rem);
  bottom: 26em;
  left: 0;
}
@media screen and (max-width:900px) {
  .staff .kumo-iconBox4 {
    bottom: 36em;
  }
}

.block-list {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width:1200px) {
  .block-list {
    display: block;
  }
}
.block-list li {
  margin-bottom: 15rem;
  width: 100%;
}
@media screen and (max-width:768px) {
  .block-list li {
    display: block;
    text-align: center;
    margin-bottom: 8rem;
  }
}
.block-list .staff-bossImage {
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width:768px) {
  .block-list .staff-bossImage {
    width: 80%;
  }
}
.block-list .staff-bossText {
  text-align: justify;
  margin-left: 2.4rem;
  font-size: clamp(0.875rem, 1.7777777778vw, 1.375rem);
}
@media screen and (max-width:1200px) {
  .block-list .staff-bossText {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.spotlight {
  display: flex;
  margin: 2em 0;
  align-items: flex-start;
  font-size: clamp(0.875rem, 1.7777777778vw, 1.125rem);
  background: #fff;
  z-index: 10;
}
@media screen and (max-width:900px) {
  .spotlight {
    display: block;
  }
}

.tablestyle table {
  border-collapse: unset;
  text-align: left;
  margin: 1em;
  flex: 0 1 48%;
}

.tablestyle table tr {
  border: 0;
  background-color: rgba(0, 0, 0, 0) !important;
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.tablestyle table tr td {
  display: inline-block;
  padding: 0.5em;
}

.tablestyle table tr td:nth-child(2) {
  flex: 1 1 auto;
}

hr.dotin {
  min-width: 0.5em;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  border-top: 1px dotted #000;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

.project .project-inner {
  max-width: 900px;
  margin: 0 auto;
}
.project .project-content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.project .project-content h3 {
  color: #1DB088;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.7777777778vw, 1.375rem);
}
.project .project-content p {
  font-size: 14px;
}
.project .project-text {
  background-color: #fff;
}
.project .project-text .project-preText {
  margin: 0;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: auto;
  font-size: clamp(0.8125rem, 1.7777777778vw, 1.25rem);
  font-family: "M PLUS 1p", sans-serif;
  border-bottom: 1px solid #3e3e3e;
  padding: 1.4rem 1.4rem 0 1.4rem;
}
.project .project-text .project-preText .ac-preLink {
  color: #1DB088;
  font-weight: bold;
}

.contact {
  font-family: "Noto Serif JP", serif;
  padding: 4rem 1rem;
}
@media screen and (max-width:900px) {
  .contact {
    height: auto;
  }
}
.contact .contact-block {
  display: flex;
  justify-content: center;
}
.contact .contact-block .ala-logoBox {
  width: 20%;
  vertical-align: middle;
  margin: auto 0;
}
@media screen and (max-width:900px) {
  .contact .contact-block .ala-logoBox {
    margin: 0 auto;
  }
}
@media screen and (max-width:900px) {
  .contact .contact-block {
    position: initial;
    transform: none;
    text-align: center;
    display: block;
  }
}

.contact-telephone {
  position: relative;
  font-size: clamp(1.375rem, 2.8888888889vw, 1.625rem);
  padding-left: clamp(2rem, 3.3333333333vw, 3rem);
}
.contact-telephone .contact-icon::before {
  position: absolute;
  top: 0.4vw;
  left: 0.5vw;
}

.contact-textBox {
  margin-left: 4.5rem;
  font-size: 28px;
}
@media screen and (max-width:900px) {
  .contact-textBox {
    font-size: 16px;
    margin-left: 0;
    margin-top: 2rem;
  }
}

.contact-address-span {
  font-size: 18px;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width:900px) {
  .contact-address-span {
    font-size: 14px;
  }
}

.socialMedia {
  padding: 3em;
}
.socialMedia .block-icon .block-icon-list {
  display: flex;
  justify-content: center;
}
.socialMedia .block-icon .block-icon-list li {
  margin-right: 3rem;
}
.socialMedia .block-icon .block-icon-list li:hover {
  opacity: 0.7;
}
.socialMedia .block-icon .block-icon-list li:last-of-type {
  margin-right: 0;
}
.socialMedia .block-icon .block-icon-list li .fa-brands {
  font-size: clamp(1.875rem, 5.5555555556vw, 3.5rem);
}

.fa-twitter {
  position: relative;
}
.fa-twitter:before {
  position: absolute;
  content: "𝕏";
  font-family: unset;
  font-weight: bold;
  font-size: clamp(1.875rem, 5.5555555556vw, 3.5rem);
  transform: translate(-50%, -20%);
}

.footer {
  background: #e3e3e3;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
}
.footer .footer-creditTop {
  background: #a3a3a3;
  color: #fff;
  padding: 2em 1em;
  text-align: center;
  display: block;
  font-size: clamp(0.625rem, 1.3333333333vw, 0.875rem);
}
@media screen and (max-width:900px) {
  .footer .footer-creditTop {
    padding: 2em;
  }
}
.footer .footer-creditBottom {
  padding: 4em 5em;
  font-size: clamp(0.75rem, 1.3333333333vw, 0.875rem);
}
.footer .footer-creditBottom .bunkacyo-logo {
  display: inline-block;
  width: 2vw;
}
.footer .footer-copyright {
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 10px;
  padding: 2em;
  font-size: 14px;
  letter-spacing: 1px;
}
@media screen and (max-width:900px) {
  .footer .footer-copyright {
    padding-top: 8px;
    font-size: 12px;
    letter-spacing: 2px;
  }
}
.footer .footer-list-sns {
  display: flex;
}
@media screen and (max-width:900px) {
  .footer .footer-list-sns {
    justify-content: center;
  }
}
.footer .fa-icon {
  color: #e3e3e3;
  opacity: 0.6;
}
.footer .footer-totop-logo .totop-icon {
  position: fixed;
  right: 6vw;
  bottom: 4vw;
  width: 100px;
}
@media screen and (max-width:768px) {
  .footer .footer-totop-logo .totop-icon {
    width: 80px;
  }
}/*# sourceMappingURL=style.css.map */