@charset "UTF-8";
/* Reset style */
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media (max-width: 800px) {
  html {
    font-size: 54.68%;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 46.87%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1A1A1A;
  font-size: 14px;
  overflow-x: hidden;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

h2 {
  font-size: 18px;
  color: #1A1A1A;
  font-weight: bold;
  /*border: 1px solid #ffcc1a;*/
  background-color: #ffb100;
  padding: 12px 10px 8px 10px;
  margin: 0 0 30px 0;
}

h3 {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 3px solid #ffb100;
  margin: 20px 0;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    padding: 0 3%;
  }
}

/*===================================================*/
アニメーション .box-inner {
  max-width: 700px;
  margin: 250px auto;
  padding: 0 40px;
}

.box {
  width: 200px;
  height: 200px;
  background-color: orange;
  margin: 50px auto 0;
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/*===================================================*/
アコーディオン .toggle_switch {
  position: relative;
  cursor: pointer;
  margin-top: 3vw;
}
@media screen and (min-width: 1600px) {
  アコーディオン .toggle_switch {
    margin-top: 60px;
  }
}
アコーディオン .toggle_switch img {
  vertical-align: bottom;
}

.toggle_switch:hover {
  background-color: #eee;
}

.toggle_switch::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 14px;
  background: url("./images/parts_time_4.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  .toggle_switch::after {
    width: 20px;
    height: 9.3px;
    transform: translateY(-50%);
  }
}

.toggle_switch.open::after {
  transform: rotateZ(180deg);
  transform-origin: 50% 25%;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .toggle_switch.open::after {
    top: 60%;
    transform-origin: 50% 0%;
  }
}

.toggle_contents {
  display: none;
}

#top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}
#header .one {
  color: red;
}
#header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1193px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 400px) {
  #header .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#header .header .header-left img {
  width: 18rem;
  padding: 2rem 0;
  line-height: 1em;
}
@media (max-width: 900px) {
  #header .header .header-left img {
    width: 18rem;
  }
}
#header .header .header-right ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 400px) {
  #header .header .header-right ul {
    margin-bottom: 1rem;
  }
}
@media (max-width: 900px) {
  #header .header .header-right ul li {
    display: none;
  }
}
#header .header .header-right ul li a {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 3.5rem;
  border-left: 1px solid #1a1a1a;
  position: relative;
}
#header .header .header-right ul li a img {
  width: 3rem;
  margin-right: 0.5rem;
}
@media (max-width: 1200px) {
  #header .header .header-right ul li a {
    padding: 0 1rem;
  }
}
#header .header .header-right ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30%;
  height: 1px;
  border-top: 1px solid #1a1a1a;
  transform: translateX(-50%) scale(0, 1);
  transform-origin: left top;
  transition: all 0.8s;
}
#header .header .header-right ul li a:hover {
  opacity: 0.3s;
}
#header .header .header-right ul li a:hover::after {
  transform: translateX(-50%) scale(1, 1);
}
@media (max-width: 900px) {
  #header .header .header-right ul .li-last {
    display: block;
  }
}
#header .header .header-right ul .li-last a {
  display: flex;
  align-items: center;
  border-right: 1px solid #1a1a1a;
}
#header .header .header-right ul .hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  z-index: 10;
}
@media (max-width: 900px) {
  #header .header .header-right ul .hamburger {
    display: block;
    background-color: #1a1a1a;
    width: 5rem;
    height: 5rem;
    margin-left: 1rem;
    border-radius: 1rem;
    position: relative;
  }
  #header .header .header-right ul .hamburger .bar_1, #header .header .header-right ul .hamburger .bar_2, #header .header .header-right ul .hamburger .bar_3 {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 60%;
    height: 2px;
    border-top: 2px solid #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.3s;
  }
  #header .header .header-right ul .hamburger .bar_2 {
    top: 50%;
  }
  #header .header .header-right ul .hamburger .bar_3 {
    top: 70%;
  }
}
@media (max-width: 400px) {
  #header .header .header-right ul .hamburger {
    position: absolute;
    right: 3%;
  }
}
#header .header .header-right ul .hamburger:hover {
  opacity: 0.8;
}
#header .header .header-right ul .hamburger.toggle .bar_1 {
  transform: translate(-30%, 0) rotate(45deg);
  transform-origin: left top;
}
#header .header .header-right ul .hamburger.toggle .bar_2 {
  display: none;
}
#header .header .header-right ul .hamburger.toggle .bar_3 {
  transform: translate(-30%, 0) rotate(-45deg);
  transform-origin: left bottom;
}
#header .header .sp-nav {
  position: fixed;
  z-index: 9;
  background-color: rgba(39, 39, 39, 0.7333333333);
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  transform: translateY(-100%);
  transition: all 0.3s;
}
#header .header .sp-nav ul {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translate(-50%, -50%);
}
@media (max-width: 550px) {
  #header .header .sp-nav ul {
    right: 12.5%;
  }
}
#header .header .sp-nav ul li {
  margin: 2rem 0;
  text-align: center;
}
#header .header .sp-nav.toggle {
  transform: translateY(0);
}

/*#schedule {
  margin: 3rem 0 3rem 0;
  .schedule {
    padding: 0 3%;
  }
}*/
#mainvisual .mainvisual img {
  vertical-align: bottom;
}

#schedule {
  background-image: url("./images/bg_schedule.png");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
}
#schedule .schedule-ttl {
  max-width: 30rem;
  width: 21vw;
  margin: 0 auto 6rem auto;
}
@media screen and (max-width: 768px) {
  #schedule .schedule-ttl {
    margin: 0 auto 3rem auto;
  }
}
#schedule .wrap {
  max-width: 1000px;
  width: 62.5%;
  margin-inline: auto;
  background-color: #fff8;
  padding: 6rem 0;
} 
#schedule .schedule-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 385px;
  width: 35vw;
  gap: 3vw;
  margin: 0 auto;
  /*background-color: #ffffff50;
  border-radius: 2rem;*/
}
/*@media screen and (max-width: 580px) {
  #schedule .schedule-box ul {
    width: 60vw;
  }
}*/
/*#schedule .schedule-box ul:nth-child(3) {
  margin: 0 auto 6rem auto;
}*/
#schedule .schedule-box ul li {
  width: calc((100% - (3vw)) / 2);
  max-width: 17rem;
}

#photo {
  background-image: url("./images/bg_photo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}
#photo .photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#photo .photo .photo-title {
  width: 100%;
  margin: 0 auto;
}
#photo .photo .photo-title img {
  display: block;
  max-width: 35rem;
  width: 21.87vw;
  margin: 0 auto;
}
#photo .wrap {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  background-color: #fff8;
  padding: 2rem;
  margin-top: 3.75vw;
}
@media screen and (min-width: 1600px) {
  #photo .wrap {
    margin-top: 6rem;
  }
}
#photo .photo .img-box_title {
  width: 100%;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(24, 127, 195, 1), rgba(0, 184, 238, 1));
  padding: 0.5vw 1vw;
  margin: 0 0 1.875vw 0;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (min-width: 1600px) {
  #photo .photo .img-box_title {
    padding: 0.5rem 1rem;
    margin: 0rem 0 3rem 0;
  }
}
@media (max-width: 900px) {
  #photo .photo .img-box_title {
    padding: 0.8vw 0.8vw;
  }
}
@media (max-width: 600px) {
  #photo .photo .img-box_title {
    padding: 0.5vw 0.8vw;
    font-size: 1.8rem;
  }
}
@media (max-width: 450px) {
  #photo .photo .img-box_title {
    padding: 0.5vw 0.8vw;
  }
}
@media (max-width: 350px) {
  #photo .photo .img-box_title {
    padding: 0 0.5vw;
  }
}
#photo .photo .img-box_title img {
  width: auto;
  height: 1.875vw;
}
@media (min-width: 1600px) {
  #photo .photo .img-box_title img {
    height: 3rem;
  }
}
#photo .photo .img-box_2_title, #photo .photo .img-box_3_title {
  width: 45%;
}
#photo .photo .img-box {
  width: 100%;
}
#photo .photo .img-box_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  #photo .photo .img-box_1 {
    flex-direction: column;
  }
}
#photo .photo .img-box_1 .img-box_1-left {
  width: 45%;
}
@media (max-width: 768px) {
  #photo .photo .img-box_1 .img-box_1-left {
    width: 100%;
  }
}
#photo .photo .img-box_1 .img-box_1-right {
  width: 54%;
}
@media (max-width: 768px) {
  #photo .photo .img-box_1 .img-box_1-right {
    width: 100%;
  }
}
#photo .photo .img-box_1 .img-box_1-right ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
@media (max-width: 768px) {
  #photo .photo .img-box_1 .img-box_1-right ul {
    justify-content: space-between;
  }
}
#photo .photo .img-box_1 .img-box_1-right ul li {
  width: 29.2%;
  margin: 2%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #photo .photo .img-box_1 .img-box_1-right ul li {
    width: 30.5%;
  }
}
@media (max-width: 500px) {
  #photo .photo .img-box_1 .img-box_1-right ul li {
    width: 48%;
    margin: 1%;
  }
}
#photo .photo .img-box_1 .img-box_1-right ul li:nth-child(3), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(6),
#photo .photo .img-box_1 .img-box_1-right ul li:nth-child(9) {
  margin-right: 0;
}
@media (max-width: 500px) {
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(3), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(6),
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(9) {
    margin-right: 2%;
  }
}
@media (max-width: 768px) {
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(1), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(4),
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(7) {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(1), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(4),
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(7) {
    margin-left: 2%;
  }
}
@media (max-width: 500px) {
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(1), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(3),
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(5), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(7), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(9) {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(2), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(4),
  #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(6), #photo .photo .img-box_1 .img-box_1-right ul li:nth-child(8) {
    margin-right: 0;
  }
}
#photo .photo .img-box_1 .img-box_2, #photo .photo .img-box_1 .img-box_3 {
  width: 45%;
}
#photo .photo .img-box_1 .img-box_2 .img-box_2_1, #photo .photo .img-box_1 .img-box_2 .img-box_3_1, #photo .photo .img-box_1 .img-box_3 .img-box_2_1, #photo .photo .img-box_1 .img-box_3 .img-box_3_1 {
  width: 100%;
  margin: 0 0 1.4rem 0;
}
@media (max-width: 1200px) {
  #photo .photo .img-box_1 .img-box_2 .img-box_2_1, #photo .photo .img-box_1 .img-box_2 .img-box_3_1, #photo .photo .img-box_1 .img-box_3 .img-box_2_1, #photo .photo .img-box_1 .img-box_3 .img-box_3_1 {
    margin: 0 0 1rem 0;
  }
}
@media (max-width: 1065px) {
  #photo .photo .img-box_1 .img-box_2 .img-box_2_1, #photo .photo .img-box_1 .img-box_2 .img-box_3_1, #photo .photo .img-box_1 .img-box_3 .img-box_2_1, #photo .photo .img-box_1 .img-box_3 .img-box_3_1 {
    margin: 0 0 0.65rem 0;
  }
}
@media (max-width: 850px) {
  #photo .photo .img-box_1 .img-box_2 .img-box_2_1, #photo .photo .img-box_1 .img-box_2 .img-box_3_1, #photo .photo .img-box_1 .img-box_3 .img-box_2_1, #photo .photo .img-box_1 .img-box_3 .img-box_3_1 {
    margin: 0 0 0.3rem 0;
  }
}
@media (max-width: 580px) {
  #photo .photo .img-box_1 .img-box_2 .img-box_2_1, #photo .photo .img-box_1 .img-box_2 .img-box_3_1, #photo .photo .img-box_1 .img-box_3 .img-box_2_1, #photo .photo .img-box_1 .img-box_3 .img-box_3_1 {
    margin: 0 0 0.1rem 0;
  }
}
@media (max-width: 500px) {
  #photo .photo .img-box_1 .img-box_2 .img-box_2_1, #photo .photo .img-box_1 .img-box_2 .img-box_3_1, #photo .photo .img-box_1 .img-box_3 .img-box_2_1, #photo .photo .img-box_1 .img-box_3 .img-box_3_1 {
    margin: 0;
  }
}
#photo .photo .img-box_1 .img-box_2 .img-box_2_2, #photo .photo .img-box_1 .img-box_2 .img-box_3_2, #photo .photo .img-box_1 .img-box_3 .img-box_2_2, #photo .photo .img-box_1 .img-box_3 .img-box_3_2 {
  width: 40%;
}
#photo .photo .img-box_2 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #photo .photo .img-box_2 {
    flex-direction: column;
  }
}
#photo .photo .img-box_2 .img-box_2-1, #photo .photo .img-box_2 .img-box_2-2 {
  width: 45%;
}
@media (max-width: 768px) {
  #photo .photo .img-box_2 .img-box_2-1, #photo .photo .img-box_2 .img-box_2-2 {
    width: 100%;
  }
}

#voices {
  padding: 6rem 0;
}

#movie {
  padding: 3.75vw 0;
  background-color: #EEFFFF;
}
@media (min-width: 1200px) {
  #movie {
    padding: 6rem 0;
  }
}
#movie .movie .movie-title {
  width: 12vw;
  margin: 1.87vw auto;
}
@media (min-width: 1200px) {
  #movie .movie .movie-title {
    width: 13.7rem;
    margin: 3rem auto;
  }
}
#movie .movie .movie-movie .youtube {
  padding: 4vw 0;
  margin: 0 auto 1vw auto;
  max-width: 1200px;
  width: 90vw;
  display: block;
}
@media (min-width: 1200px) {
  #movie .movie .movie-movie .youtube {
    padding: 3rem 0;
    margin: 0 auto 0 auto;
    width: 1200px;
  }
}
@media (max-width: 800px) {
  #movie .movie .movie-movie .youtube {
    height: 100vw;
  }
}

#department {
  background-color: #EEF1EE;
  padding: 6rem 0;
}
#department .department-ttl {
  max-width: 572px;
  width: 43vw;
  margin: 0 auto;
  display: block;
}
#department .department-box {
  width: 100%;
  margin-top: 60px;
}
#department .department-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#department .department-box ul li {
  width: 33%;
}
@media (max-width: 768px) {
  #department .department-box ul li {
    width: 50%;
  }
}
#department .department-box ul li img {
  vertical-align: bottom;
}

#voices .voices-box {
  width: 100%;
}
#voices .voices-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 6rem 0;
}
#voices .voices-box ul li {
  width: 23%;
  /*@media (max-width: 500px) {
    width: 60%;
    margin: 0 auto 3rem auto;
  }*/
}
@media (max-width: 768px) {
  #voices .voices-box ul li {
    width: 48%;
    margin-bottom: 5rem;
  }
}
#voices .voices-bottom-img {
  max-width: 938px;
  width: 55vw;
  margin: 0 auto;
  display: block;
}

#app {
  background-color: #ECFFE5;
  padding: 6rem 0;
}
#app .app-ttl {
  display: block;
  max-width: 350px;
  width: 40vw;
  margin: 0 auto;
}
#app .app-box {
  width: 100%;
  margin: 6rem auto;
}
#app .app-box ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #app .app-box ul {
    flex-direction: column;
    justify-content: center;
  }
}
#app .app-box ul li {
  width: 25%;
}
@media (max-width: 768px) {
  #app .app-box ul li {
    width: 70%;
    margin: 0 auto;
  }
}
#app .app-box ul li a {
  cursor: pointer;
}
#app .app-box ul li a:hover {
  opacity: 0.8;
}
#app .app-box ul .app-arrow {
  width: 55px;
  margin: 5rem auto;
}
@media (max-width: 768px) {
  #app .app-box ul .app-arrow {
    transform: rotate(90deg);
  }
}

#time {
  background-color: #EEF1EE;
  padding: 6rem 0;
}
#time .time {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
#time .time-ttl {
  max-width: 590px;
  margin: 0 auto;
  width: 43vw;
  display: block;
}
#time .time .time-subttl {
  position: relative;
  cursor: pointer;
  margin-top: 3vw;
}
@media screen and (min-width: 1600px) {
  #time .time .time-subttl {
    margin-top: 60px;
  }
}
#time .time .time-subttl img {
  vertical-align: bottom;
}
#time .coming {
  margin-top: 5rem;
}
@media screen and (max-width: 1600px) {
  #time .coming {
    margin-top: 4vw;
  }
}
#app .app area {
  cursor: pointer;
}

#access {
  padding: 3.75vw 0;
}
@media (min-width: 1200px) {
  #access {
    padding: 6rem 0;
  }
}
#access .access .access-title {
  display: block;
  max-width: 41.2rem;
  width: 25.75vw;
  margin: 3vw auto 2vw auto;
}
@media (min: 1200px) {
  #access .access .access-title {
    width: 41.2rem;
    margin: 6rem auto;
  }
}
#access .access .access-map {
  display: block;
  padding: 4vw 0;
  margin: 0 auto 1vw auto;
  max-width: 1200px;
  width: 75vw;
}
@media (min-width: 1200px) {
  #access .access .access-map {
    padding: 3rem 0;
    margin: 0 auto 3rem auto;
    width: 1200px;
  }
}
@media (max-width: 800px) {
  #access .access .access-map {
    height: 100vw;
  }
}
#access .access .access-map_2 {
  border-top: 3px solid #606060;
  padding-top: 3rem;
}
@media screen and (max-width: 1300px) {
  #access .access .access-map_2 {
    padding: 3rem 2% 0 2%;
  }
}
@media screen and (max-width: 1200px) {
  #access .access .access-map_2 {
    padding: 3rem 0 0 0;
  }
}

#footer {
  /*background-color: #ECFFE5;*/
  padding: 6rem 0;
}
#footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 650px) {
  #footer .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#footer .footer area {
  cursor: pointer;
}
#footer .footer .footer-left {
  display: flex;
  align-items: center;
}
@media (max-width: 650px) {
  #footer .footer .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#footer .footer .footer-left .footer-logo {
  width: 24.5rem;
  margin: 0 2rem 0 0;
}
@media (max-width: 1080px) {
  #footer .footer .footer-left .footer-logo {
    width: 19.6rem;
  }
}
@media (max-width: 850px) {
  #footer .footer .footer-left .footer-logo {
    width: 15.68rem;
  }
}
#footer .footer .footer-left .footer-add {
  width: 54.5rem;
}
@media (max-width: 1080px) {
  #footer .footer .footer-left .footer-add {
    width: 43.6rem;
  }
}
@media (max-width: 850px) {
  #footer .footer .footer-left .footer-add {
    width: 34.88rem;
  }
}
@media (max-width: 650px) {
  #footer .footer .footer-left .footer-add {
    margin: 2rem 0;
  }
}
#footer .footer .footer-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.5rem;
}
#footer .footer .footer-right a {
  display: block;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  #footer .footer .footer-right a {
    width: 3rem;
    height: 3rem;
  }
}
#footer .footer .footer-right .footer-insta, #footer .footer .footer-right .footer-line, #footer .footer .footer-right .footer-twitter {
  position: relative;
}
#footer .footer .footer-right .footer-insta::after, #footer .footer .footer-right .footer-line::after, #footer .footer .footer-right .footer-twitter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /*transform: translate(-50%, -50%);*/
  width: 4rem;
  height: 4rem;
  transition: all 0.3s;
  display: none;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #footer .footer .footer-right .footer-insta::after, #footer .footer .footer-right .footer-line::after, #footer .footer .footer-right .footer-twitter::after {
    width: 3rem;
    height: 3rem;
  }
}
#footer .footer .footer-right .footer-insta::after {
  background-image: url("./images/logo_insta_2.png");
}
#footer .footer .footer-right .footer-line::after {
  background-image: url("./images/logo_line_2.png");
}
#footer .footer .footer-right .footer-twitter::after {
  background-image: url("./images/logo_twitter_2.png");
  transform: translate(0, 5px);
}
@media screen and (max-width: 768px) {
  #footer .footer .footer-right .footer-twitter::after {
    transform: translate(0, 2.5px);
  }
}
#footer .footer .footer-right .footer-insta:hover::after, #footer .footer .footer-right .footer-line:hover::after, #footer .footer .footer-right .footer-twitter:hover::after {
  display: block;
}
#footer .footer .footer-right .footer-sns {
  width: 17rem;
}
@media (max-width: 1080px) {
  #footer .footer .footer-right .footer-sns {
    width: 13.6rem;
  }
}
@media (max-width: 850px) {
  #footer .footer .footer-right .footer-sns {
    width: 10.88rem;
  }
}
#footer .footer-copy {
  display: block;
  width: 25.2rem;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  #footer .footer-copy {
    width: 18rem;
  }
}/*# sourceMappingURL=style.css.map */