@charset "UTF-8";
/* CSS Document */

.top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.top__contents {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top__contents div {
  width: 50%;
}

.top__contents__text {
  max-width: 625px;
  margin-left: 5%;
}

.top__contents__image img {
  height: 380px;
  object-fit: cover;
  object-position: 50% 30%;
  object-position: 50% 30%;
  border-radius: 10px 0 0 10px;
}

.top__contents__text h2 {
  font-size: 4rem;
  line-height: 1.9;
  margin-bottom: 70px;
}

.top__contents__text h2 span {
  opacity: 0;
  animation: title 1.5s ease-out both;
  animation-delay: calc(0.1s * var(--i) + 0.4s);
  display: inline-block;
  margin: 0 -6px;
}

@keyframes title {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.loop__fade {
  animation: textloop 1s ease-out both;
  opacity: 0;
  animation-delay: 4s;
}

@keyframes textloop {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.top__contents__text p {
  line-height: 2;
  letter-spacing: 0.2rem;
  width: 80%;
  animation: toptext 1s ease-in both;
  animation-delay: 3.5s;
  transform: translateY(20px);
  opacity: 0;
}

@keyframes toptext {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.top__contents__image {
  margin-top: 80px;
}

.top__loop {
  position: absolute;
  top: 15%;
  left: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.top__loop li {
  width: 100vw;
  animation: top 24s infinite linear;
  text-align: right;
  color: #EBEBEB;
}

.loop2 {
  font-size: 2rem;
  top: 22%;
}

.loop2 li {
  animation: top 18s infinite linear;
  text-align: center;
}

.loop3 {
  font-size: 1.4rem;
  top: 34%;
}

.loop3 li {
  animation: top 28s infinite linear;
  text-align: left;
}

.loop4 {
  font-size: 2.5rem;
  top: 42%;
}

.loop4 li {
  animation: top 24s infinite linear;
  text-align: left;
}

.loop5 {
  font-size: 1.5rem;
  top: 56%;
}

.loop5 li {
  animation: top 16s infinite linear;
  text-align: right;
}

.loop6 {
  font-size: 3.5rem;
  top: 65%;
}

.loop6 li {
  animation: top 30s infinite linear;
  text-align: left;
}

.loop7 {
  font-size: 1.6rem;
  top: 85%;
}

.loop7 li {
  animation: top 26s infinite linear;
  text-align: right;
}

.loop8 {
  font-size: 1.2rem;
  top: 95%;
}

.loop8 li {
  animation: top 18s infinite linear;
  text-align: left;
}

@keyframes top {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1023px) {
  .top__contents {
    flex-direction: column;
    top: 52.5%;
  }

  .top__contents div {
    width: 90%;
    margin: 0 auto 30px;
    max-width: none;
  }

  .top__contents div:nth-of-type(2) {
    margin-right: 0;
  }

  .top__contents__image img {
    height: 20vh;
  }

  .top__contents__text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .top__contents__text p {
    font-size: 1.4rem;
    width: 100%;
    letter-spacing: 0.1rem;
    line-height: 1.75;
  }

  .top__contents__text h2 span {
    margin: 0 -3px;
  }
}

@media (max-width: 375px) {
  .top {
    height: 110vh;
  }

}



.scroll__area {
  width: 90%;
  max-width: 1240px;
  margin: -100px auto 0;
}

.scroll {
  position: relative;
  height: 200px;
  width: 1px;
  background: #000000;
}

.scroll span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: solid 1px #000;
  left: -5.5px;
  animation: scroll 3s infinite ease-out;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: translateY(200px);
    opacity: 0;
  }
}


.about {
  padding-top: 150px;
  margin: 0 auto;
}

.about small {
  width: 90%;
  max-width: 1240px;
  display: block;
  font-size: 2rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  margin: 0 auto 150px;
}

.about h2 {
  width: 90%;
  max-width: 1240px;
  font-size: 4rem;
  line-height: 1.9;
  letter-spacing: 0.2rem;
  margin: 0 auto 20px;
}

.about__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}

.about__top p {
  width: calc(45% - 55px);
  max-width: 565px;
  line-height: 2;
  letter-spacing: 0.2rem;
}

.about__top img {
  width: 50%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.about__center {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto 70px;
  display: flex;
  align-items: center;
}

.about__center div {
  width: 50%;
}

.about__button {
  width: 210px !important;
  padding: 10px 0;
  letter-spacing: 0.4rem !important;
  text-align: center !important;
  font-weight: 600;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
}


.about__center div img {
  max-width: 340px;
  width: 50%;
  border-radius: 10px;
  margin-left: -20%;
  margin-top: -25px;
}

.about__bottom {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
}

.about__bottom div {
  width: 50%;
}

.about__bottom div img {
  margin-left: 5%;
  width: 60%;
  border-radius: 10px;
}

@media (max-width: 1023px) {
  .about {
    padding-top: 150px;
  }

  .about__top {
    display: block;
    width: 100%;
  }

  .about small {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .about h2 {
    font-size: 3rem;
  }

  .about__top p {
    width: 90%;
    font-size: 1.4rem;
    max-width: none;
    margin: 0 auto 50px;
  }

  .about__top img {
    display: block;
    width: 90%;
    margin: 10px 0 0 auto;
    min-height: auto;
    aspect-ratio: 2/1;
    object-fit: cover;
  }

  .about__center div {
    width: 100%;
  }

  .about__center {
    margin: 0 auto;
  }

  .about__center div img {
    max-width: none;
    width: 60%;
    border-radius: 10px;
    margin: -20px 0 40px 0;
  }

  .about__bottom div {
    width: 100%;
  }

  .about__bottom div img {
    display: block;
    margin-left: auto;
    width: 80%;
    border-radius: 10px;
  }
}

@media (max-width: 375px) {
  .about h2 {
    letter-spacing: 0;
  }
}


.service {
  padding-top: 150px;
}

.service__wapper {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 320px;
}

.service__wapper div {
  width: 50%;
}

.service__wapper div img {
  border-radius: 0 10px 10px 0;
  height: 380px;
  object-fit: cover;
}

.service__wapper .service__wapper__text {
  width: calc(45% - 55px);
  max-width: 565px;
  margin-bottom: -170px;
}

.service__wapper__text small {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  margin-bottom: 30px;
}

.service__wapper__text h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
}

.service__wapper__text__p {
  line-height: 2;
  letter-spacing: 0.2rem;
  margin-bottom: 80px;
}

@media (max-width: 1023px) {
  .service__wapper {
    display: block;
    margin-bottom: 0;
  }

  .service__wapper div {
    width: 100%;
  }

  .service__wapper div img {
    height: auto;
    width: 90%;
    display: block;
    aspect-ratio: 2/1;
    object-fit: cover;
    margin-bottom: 50px;
  }

  .service__wapper .service__wapper__text {
    width: 90%;
    max-width: none;
    margin: 0 auto;
  }

  .service__wapper__text small {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .service__wapper__text h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .service__wapper__text__p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }

  .about__button {
    margin: 0 auto;
    font-size: 1.4rem;
  }
}

.news {
  width: 90%;
  padding-top: 150px;
  margin: 0 auto 150px;
  max-width: 1080px;
  display: flex;
}

.news div {
  width: 30%;
}

.news div small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.4rem;
}

.news div h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
}

.news ul {
  width: 70%;
}

.news ul li {
  padding-bottom: 20px;
  border-bottom: solid 1px #000000;
  margin-bottom: 50px;
}

.news ul li time {
  display: block;
  letter-spacing: 0.4rem;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
}

.news ul li h3 {
  letter-spacing: 0.2rem;
}

@media (max-width: 1023px) {
  .news {
    display: block;
    margin-bottom: 50px;
  }

  .news div small {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .news ul {
    width: 100%;
  }

  .news div h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .news ul li time {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .news div {
    width: 100%;
  }
}

.works {
  width: 90%;
  padding-top: 150px;
  margin: 0 auto 150px;
  max-width: 1200px;
}

.works__small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.4rem;
  text-align: center;
}

.works__title {
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
  text-align: center;
}

.worksPage__text {
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 100px;
  line-height: 2;
}

.works__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 50px;
}

.works__ul__li {
  width: 32%;
  margin-bottom: 50px;
}

.works__ul__li__image {
  aspect-ratio: 4/3;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.works__ul__li__image img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 10px;
  transition: 0.6s;
}

.works__ul__li__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.works__ul__li__top p {
  width: 120px;
  border-radius: 4px;
  text-align: center;
  padding: 4px 0;
  font-size: 1.4rem;
  border: solid 1px #000000;
}

.works__ul__li__top time {
  letter-spacing: 0.4rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
}

.works__ul__li h3 {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 15px;
}

.works__ul__li__top__text {
  line-height: 2;
  letter-spacing: 0.2rem;
  margin-bottom: 20px;
  height: 65px;
}

.list__more {
  position: relative;
  letter-spacing: 0.4rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
}

.list__more::after {
  content: "";
  display: block;
  position: absolute;
  right: -35px;
  top: 8px;
  width: 20px;
  height: 1px;
  background: #000000;
  transition: 0.6s;
}

.works__ul__li a:hover .list__more::after {
  transform: translateX(20px);
}

.works__ul__li a:hover .works__ul__li__image img {
  transform: scale(1.1);
}

.works .about__button {
  margin: 0 auto;
}

@media(max-width: 1023px) {
  .works {
    margin-bottom: 50px;
  }

  .works__small {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .works__title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .works__text {
    margin-bottom: 50px;
  }

  .works__ul__li__top p {
    font-size: 1.2rem;
    width: 100px;
  }

  .works__ul__li__top time {
    font-size: 1.2rem;
  }

  .works__ul__li h3 {
    font-size: 2rem;
  }

  .works__ul__li__top__text {
    font-size: 1.4rem;
  }

  .list__more {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .works__ul {
    flex-direction: column;
    gap: 80px;
  }

  .works__ul__li {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 599px) {
  .works__text {
    text-align: left;
  }
}

.voise {
  width: 90%;
  margin: 0 auto 150px;
  max-width: 1080px;
  padding-top: 150px;
}

.voise__small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.4rem;
  text-align: center;
}

.voise__title {
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
  text-align: center;
}

.voise__text {
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 100px;
  line-height: 2;
}

.voise__ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.voise__ul__li {
  width: 50%;
}

.voise__ul__li img {
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 65%;
  margin: -20px auto 0;
  border-radius: 10px;
}

.voise__ul__li p {
  position: relative;
  line-height: 2;
  letter-spacing: 0.2rem;
  padding: 20px;
  border-radius: 20px;
  border: solid 1px #000000;
  background: #FFFFFF;
  width: 75%;
}

.voise__ul__li p::before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(images/voise__triangle.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -12px;
  left: 30%;
}

.voise__ul__li:nth-child(2) img {
  width: 80%;
  margin-top: -35px;
  margin-left: 0;
}

.voise__ul__li:nth-child(2) p {
  width: 65%;
  margin-left: -10%;
}

.voise__ul__li:nth-child(2) p::before {
  left: 60%;
}

.voise__ul__li:nth-child(3) {
  margin-top: -7.5%;
}

.voise__ul__li:nth-child(3) img {
  width: 80%;
  margin-top: -35px;
  margin-right: -5%;
}

.voise__ul__li:nth-child(3) p {
  width: 70%;
  margin: 0 auto;
  margin-left: 10%;
}

.voise__ul__li:nth-child(3) p::before {
  left: 80%;
}

.voise__ul__li:nth-child(4) {
  margin-top: -10%;
}

.voise__ul__li:nth-child(4) img {
  width: 70%;
  margin-top: -35px;
}

.voise__ul__li:nth-child(4) p {
  width: 70%;
  margin: 0 auto;
  margin-right: 0;
}

.voise__ul__li:nth-child(4) p::before {
  left: 60%;
}

@media (max-width: 1023px) {
  .voise {
    margin-bottom: 0;
  }

  .voise__small {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .voise__title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .voise__text {
    margin-bottom: 50px;
  }

  .voise__ul {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }

  .voise__ul__li {
    width: 100%;
  }

  .voise__ul__li p {
    font-size: 1.4rem;
    padding: 15px;
    width: 85%;
  }

  .voise__ul__li img {
    width: 95%;
  }

  .voise__ul__li:nth-child(2) p {
    width: 80%;
    margin: -15px auto 0;
  }

  .voise__ul__li:nth-child(2) img {
    width: 75%;
    margin-top: -20px;
    margin-left: auto;
    margin-right: 0;
  }

  .voise__ul__li:nth-child(3) {
    margin: 0;
  }

  .voise__ul__li:nth-child(3) p {
    width: 89%;
    margin: -15px auto 0 0;
  }

  .voise__ul__li:nth-child(3) img {
    width: 97.5%;
    margin-top: -20px;
    margin-left: -2.5%;
  }

  .voise__ul__li:nth-child(4) {
    margin: 0;
  }

  .voise__ul__li:nth-child(4) p {
    width: 90%;
    margin: -15px -2.5% 0 auto;
  }

  .voise__ul__li:nth-child(4) img {
    width: 90%;
    margin-top: -15px;
    margin-left: auto;
  }
}

@media (max-width: 599px) {
  .voise__text {
    text-align: left;
  }
}

.privacy {
  width: 90%;
  max-width: 1200px;
  margin: 250px auto 200px;
  text-align: left;
}

.privacy__small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.privacy__title {
  font-size: 3.5rem;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
}

.privacy ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 100px;
}

.privacy ul li h3 {
  font-size: 2rem;
  padding-bottom: 20px;
  border-bottom: solid 1px #000000;
  margin-bottom: 20px;
}

.privacy ul li p {
  line-height: 2;
  letter-spacing: 0.2rem;
}

.privacy address {
  line-height: 2;
  letter-spacing: 0.2rem;
}

@media (max-width: 1023px) {
  .privacy {
    margin-top: 110px;
  }

  .privacy__small {
    font-size: 1.6rem;
  }

  .privacy__title {
    font-size: 2.5rem;
  }

  .privacy ul li h3 {
    font-size: 1.6rem;
  }

  .privacy ul li p {
    font-size: 1.4rem;
  }

  .privacy address {
    font-size: 1.4rem;
  }
}

.thanks {
  width: 90%;
  max-width: 1200px;
  margin: 250px auto 200px;
  text-align: left;
}

.thanks small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.thanks h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
}

.thanks__text {
  letter-spacing: 0.2rem;
  line-height: 2;
  margin-bottom: 100px;
}

@media (max-width: 1023px) {
  .thanks {
    margin-top: 110px;
  }

  .thanks small {
    font-size: 1.6rem;
  }

  .thanks h2 {
    font-size: 2.5rem;
  }

  .thanks__text {
    font-size: 1.4rem;
  }
}

.servicePage {
  margin: 250px 0 200px;
  text-align: left;
  overflow-x: hidden;
}

.servicePage small {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.servicePage h2 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
}

.servicePage__image {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.servicePage__image img {
  width: 110%;
  margin-left: -10%;
  border-radius: 0 10px 10px 0;
  min-height: 180px;
  max-height: 350px;
  object-fit: cover;
}

.servicePage__text {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 180px;
  letter-spacing: 0.2rem;
  line-height: 2;
}

.servicePage__ul {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.servicePage__ul__li strong {
  display: block;
  font-size: 8rem;
  font-weight: 600;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  margin-bottom: 30px;
}

.servicePage__ul__li:nth-child(even) strong {
  width: calc(50% - 80px);
  margin-left: auto;
}

.servicePage__ul__li__contents {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.servicePage__ul__li:nth-child(even) .servicePage__ul__li__contents {
  flex-direction: row-reverse;
}

.servicePage__ul__li:nth-child(even) .slick-dots {
  right: 0;
  left: auto;
  width: calc(50% - 80px);
}

.servicePage__ul__li__contents__text {
  width: 50%;
}

.servicePage__ul__li__contents__text h3 {
  font-size: 3.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 50px;
}

.servicePage__ul__li__contents__text__text {
  letter-spacing: 0.2rem;
  line-height: 2;
  margin-bottom: 160px;
}

.servicePage__ul__li__contents .slider {
  width: 50%;
  border-radius: 10px;
  position: static;
}

.servicePage__ul__li__contents .slider img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  max-height: 350px;
}

.slick-dots {
  display: flex;
  bottom: 100px;
  left: 0;
}

.slick-dots li button:before {
  font-family: 'Zen Maru Gothic', serif;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: solid 1px #000;
  content: "";
  left: 6px;
  top: 6px;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background: #000000;
}


@media (max-width: 1023px) {
  .servicePage {
    margin-top: 110px;
    margin-bottom: 0;
  }

  .servicePage small {
    font-size: 1.6rem;
  }

  .servicePage h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .servicePage__ul {
    gap: 100px;
  }

  .servicePage__ul__li__contents__text__text {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .servicePage__ul__li__contents .slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 80px;
  }

  .servicePage__ul__li:nth-child(even) strong {
    width: 100%;
  }

  .servicePage__ul__li:nth-child(even) .slick-dots {
    width: 100%;
  }

  .slick-dots {
    bottom: -35px;
    justify-content: center;
  }

  .servicePage__ul__li__contents .slider img {
    max-height: none;
  }

  .servicePage__text {
    font-size: 1.4rem;
    margin-bottom: 100px;
  }

  .servicePage__ul__li strong {
    font-size: 6rem;
    margin-bottom: 15px;
  }

  .servicePage__ul__li__contents__text h3 {
    font-size: 2.5rem;
  }

  .servicePage__ul__li__contents {
    display: block;
  }

  .servicePage__ul__li__contents__text {
    width: 100%;
  }
}

.serviceStrong {
  padding: 150px 0;
  margin: 0 auto;
  overflow: hidden;
}

.serviceStrong small {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.serviceStrong h2 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
}

.serviceStrong__image {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.serviceStrong__image img {
  margin-right: -10%;
  width: 110%;
  border-radius: 10px 0 0 10px;
  min-height: 180px;
  max-height: 350px;
  object-fit: cover;
}

.serviceStrong__ul {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.serviceStrong__ul__li {
  display: flex;
  gap: 60px;
}

.serviceStrong__ul__li:nth-child(even) {
  flex-direction: row-reverse;
}

.serviceStrong__ul__li__text {
  width: 55%;
}

.serviceStrong__ul__li__text h3 {
  font-size: 3.5rem;
  letter-spacing: 0.2rem;
  line-height: 2;
  margin-bottom: 50px;
}

.serviceStrong__ul__li__text p {
  line-height: 2;
  letter-spacing: 0.2rem;
  width: 90%;
}

.serviceStrong__ul__li__image {
  width: 45%;
}

.serviceStrong__ul__li:nth-child(even) {
  align-items: center;
}

.serviceStrong__ul__li:nth-child(even) img {
  border-radius: 10px;
}

.serviceStrong__ul__li__image__second {
  width: 70%;
  display: block;
  margin-top: -30px;
  margin-left: -5%;
}

@media (max-width: 1023px) {
  .serviceStrong {
    padding-bottom: 0;
  }

  .serviceStrong small {
    font-size: 1.6rem;
  }

  .serviceStrong h2 {
    font-size: 2.5rem;
  }

  .serviceStrong__ul__li {
    flex-direction: column;
  }

  .serviceStrong__ul__li__text {
    width: 100%;
  }

  .serviceStrong__ul__li__text h3 {
    font-size: 2.5rem;
  }

  .serviceStrong__ul__li__text p {
    width: 100%;
    font-size: 1.4rem;
  }

  .serviceStrong__ul__li:nth-child(even) {
    flex-direction: column-reverse;
  }

  .serviceStrong__ul__li__image {
    width: 100%;
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (min-width: 1440px) {
  .serviceStrong__image img {
    margin-right: -10vw;
    width: 92vw;
  }

  .servicePage__image img {
    margin-left: -400px;
    width: 1600px;
  }

}

.service__voise {
  width: 90%;
  max-width: 1080px;
  padding: 150px 0;
  margin: 0 auto;
}

.service__voise small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
  text-align: center;
}

.service__voise h2 {
  font-size: 3.5rem;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
  text-align: center;
}

.service__voise ul li {
  padding: 30px;
  border-top: solid 1px #000000;
  display: flex;
  gap: 30px;
}

.service__voise ul li:last-child {
  border-bottom: solid 1px #000000;
}

.service__voise ul li img {
  width: 60px;
  height: 60px;
  display: block;
}

.service__voise ul li h3 {
  line-height: 2;
  letter-spacing: 0.2rem;
}

.service__voise ul li p {
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: 0.2rem;
}

@media (max-width: 1023px) {
  .service__voise {
    padding-bottom: 0;
  }

  .service__voise small {
    font-size: 1.6rem;
  }

  .service__voise h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .service__voise ul li {
    gap: 10px;
    padding: 30px 0;
  }

  .service__voise ul li img {
    width: 35px;
    height: 35px;
  }

  .service__voise ul li h3 {
    font-size: 1.4rem;
  }

  .service__voise ul li p {
    font-size: 1.7rem;
  }
}

.aboutPage {
  margin-bottom: 0;
}

.aboutPage .servicePage__image {
  margin-bottom: 0;
}

.about__vision {
  width: 90%;
  max-width: 1200px;
  padding-top: 200px;
  padding-bottom: 150px;
  margin: 0 auto 150px;
  display: flex;
  align-items: flex-end;
  gap: 120px;
}

.about__vision__left {
  width: 50%;
  margin-bottom: -150px;
}

.about__vision__left img {
  border-radius: 10px;
}

.about__vision__right {
  width: 50%;
}

.about__vision__right small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.about__vision__right h2 {
  font-size: 3.5rem;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
  line-height: 2;
}

.about__vision__right p {
  letter-spacing: 0.4rem;
  line-height: 2;
}

@media (max-width: 1023px) {
  .about__vision {
    padding-top: 50px;
    flex-direction: column-reverse;
    gap: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .about__vision__right {
    width: 100%;
  }

  .about__vision__right small {
    font-size: 1.6rem;
  }

  .about__vision__right h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .about__vision__right p {
    font-size: 1.4rem;
    line-height: 2.2;
  }

  .about__vision__left {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 0 0;
  }
}

.menber {
  width: 90%;
  max-width: 1200px;
  padding: 150px 0;
  margin: 0 auto;
}

.menber small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
  text-align: center;
}

.menber h2 {
  font-size: 3.5rem;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
  text-align: center;
}

.menber ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.menber ul li {
  width: calc(25% - 30px);
  margin-bottom: 40px;
}

.modal {
  z-index: 99999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
}

.js-modal-open {
  cursor: pointer;
}

.js-modal-open img {
  display: block;
  margin-bottom: 10px;
}

.js-modal-open p {
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}

.js-modal-open h3 {
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
}

.js-modal-open small {
  display: block;
  font-size: 1.4rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  letter-spacing: 0.4rem;
  text-align: left;
}

.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll;
  height: 90%;
  width: 90%;
  max-width: 1080px;
  /* background: #FFFFFF; */
  padding: 100px 25px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.close__button {
  position: absolute;
  top: 40px;
  right: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  line-height: 1;
  align-items: center;
  font-size: 4rem;
  cursor: pointer;
  font-weight: 400;
}

.modal__image {
  width: 30%;
}

.modal__text {
  width: 70%;
}

.modal__text__top {
  display: block;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}

.modal__text h3 {
  display: inline-block;
  margin-right: 30px;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
}

.modal__text small {
  display: inline-block;
  font-size: 1.4rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  letter-spacing: 0.4rem;
  margin-bottom: 80px;
}

.modal__text dl {
  line-height: 1.75;
  letter-spacing: 0.4rem;
}

.modal__text dl dt {
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: solid 1px #000000;
  margin-bottom: 10px;
}

.modal__text dl dd {
  margin-bottom: 50px;
}

@media (max-width: 1023px) {
  .menber {
    padding: 100px 0 0;
  }

  .menber small {
    font-size: 1.6rem;
  }

  .menber h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .menber ul li {
    width: calc(100% / 3 - 27px);
  }

  .js-modal-open p {
    font-size: 1.2rem;
  }

  .js-modal-open h3 {
    font-size: 1.8rem;
  }

  .js-modal-open small {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
  }

  .modal__text__top {
    font-size: 1.2rem;
  }

  .modal__text h3 {
    font-size: 1.8rem;
  }

  .menber small {
    font-size: 1.2rem;
  }

  .modal__text dl dt {
    font-size: 1.6rem;
  }

  .modal__text dl dd {
    font-size: 1.4rem;
  }
}

@media (max-width: 599px) {
  .menber ul li {
    width: calc(100% / 2 - 20px);
  }

  .modal-content {
    display: block;
  }

  .modal__image {
    display: block;
    width: 60%;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .modal__text {
    width: 100%;
  }

  .modal__text__top {
    text-align: center;
    margin-bottom: 20px;
  }

  .modal__text h3 {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .menber small {
    display: block;
  }

}

.company {
  width: 90%;
  max-width: 1080px;
  padding: 150px 0;
  margin: 0 auto;
}

.company small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
  text-align: center;
}

.company h2 {
  font-size: 3.5rem;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
  text-align: center;
}

.company table,
.company table tbody {
  display: block;
  letter-spacing: 0.4rem;
  line-height: 2;
}

.company table tbody tr {
  display: flex;
  padding-bottom: 20px;
  border-bottom: solid 1px #000000;
  margin-bottom: 50px;
}

.company table tbody tr:last-child {
  margin-bottom: 0;
}

.company table tbody tr th {
  width: 250px;
}

@media (max-width: 1023px) {
  .company {
    padding: 100px 0 0;
  }

  .company small {
    font-size: 1.6rem;
  }

  .company h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .company table,
  .company table tbody {
    font-size: 1.4rem;
  }

  .company table tbody tr th {
    width: 100px;
  }

  .company table tbody tr td {
    flex: 1;
  }
}

.history {
  width: 90%;
  max-width: 1080px;
  padding: 150px 0;
  margin: 0 auto 150px;
}

.history small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.history__flex {
  display: flex;
}

.history h2 {
  width: 35%;
  font-size: 3.5rem;
  letter-spacing: 0.2rem;
}

.history ul {
  position: relative;
  flex: 1;
  font-size: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.history ul::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 120%;
  background: #000000;
  top: 12px;
  left: 125px;
}

.history ul li {
  display: flex;
  align-items: center;
  gap: 50px;
}

.history ul li h3 {
  width: 70px;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
}

.history ul li span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
}

@media (max-width: 1023px) {
  .history {
    padding: 100px 0 0 0;
  }

  .history small {
    font-size: 1.6rem;
  }

  .history h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    width: 100%;
  }

  .history__flex {
    display: block;
  }

  .history ul {
    font-size: 1.6rem;
    gap: 50px;
  }

  .history ul li {
    gap: 20px;
  }

  .history ul li h3 {
    width: 50px;
  }

  .history ul::after {
    left: 75px;
  }

  .history ul li p {
    flex: 1;
  }
}

.archive__news {
  padding-top: 250px;
  margin-bottom: 100px;
}

.pagenation {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 100px;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border: none;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  gap: 25px;
}

.wp-pagenavi .current {
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  position: relative;
  color: #000000;
}

.wp-pagenavi a {
  font-size: 2rem;
  font-weight: 600;
  color: #C8C8C8;
  transition: 0.4s;
}

.wp-pagenavi a:hover {
  color: #000000;
}

.wp-pagenavi .current::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -17px;
  left: -5px;
  width: calc(100% + 10px);
  height: 2px;
  background: #000000;
}

@media (max-width: 1023px) {
  .archive__news {
    padding-top: 110px;
  }
}

.single-page {
  width: 90%;
  max-width: 800px;
  padding: 250px 0 100px;
  margin: 0 auto;
}

.single-page time {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.single-page__title {
  font-size: 3.5rem;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
}

.single__text {
  margin-bottom: 100px;
}

.single-page {
  line-height: 2;
  letter-spacing: 0.2rem;
  text-align: left;
}

@media (max-width: 1023px) {
  .single-page {
    padding: 110px 0 0;
  }

  .single-page time {
    font-size: 1.6rem;
  }

  .single-page__title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .single__text {
    margin-bottom: 100px;
  }

}

input,
select {
  -webkit-appearance: none;
  appearance: none;
}

.contact {
  padding-top: 250px;
}

.contact .about__button {
  margin-bottom: 0;
}

form {
  margin-bottom: 200px;
}

.wpcf7-response-output {
  margin-bottom: 300px;
  margin-top: -80px;
  text-align: center;
}

.screen-reader-response {
  display: none !important;
}

.contact__wapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 100px;
  display: flex;
}

.contact__title {
  width: 35%;
  text-align: left;
}

.contact__title small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.contact__title h2 {
  font-size: 3.5rem;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
}

.contact__form {
  width: 65%;
}

.contact__form table,
.contact__form table tbody,
.contact__form table tbody tr {
  width: 100%;
  display: block;
}

.contact__form table tbody tr {
  margin-bottom: 50px;
  display: flex;
}

.contact__form table tbody tr:last-child {
  margin-bottom: 0;
}

.contact__form table tbody tr th {
  padding: 15px 0;
  width: 180px;
}

.contact__form table tbody tr td {
  flex: 1;
}


.wpcf7-text, .wpcf7-select {
  padding: 15px 10px;
  border: solid 1px #000000;
  width: 100%;
}

.CF7_table tr:nth-child(4) .wpcf7-form-control-wrap {
	position: relative
}

.CF7_table tr:nth-child(4)  .wpcf7-form-control-wrap::after {
	content: "";
	display: block;
	width: 16px;
	height: 14px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	top: 65%;
	right: 10px;
	transform: translatey(-50%);
	background: #000000;
}

textarea {
  padding: 15px 10px;
  border: solid 1px #000000;
  width: 100%;
  height: 180px;
  resize: none;
}

.contact__form td,
.contact__form th,
.wpcf7-not-valid-tip {
  display: block;
}

.contact__privacy {
  letter-spacing: 0.2rem;
  text-align: center;
  width: 90%;
  margin: 100px auto 50px;
}

.contact__privacy a {
  position: relative;
}

.contact__privacy a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  left: 0;
  bottom: -2.5px;
}

.contact__privacy a span {
  display: inline-block;
  width: 13px;
  height: 10px;
  border: solid 1px #000;
  position: relative;
  margin: 0 2.5px;
}

.contact__privacy a span::after {
  content: "";
  display: block;
  width: 13px;
  height: 10px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: -3px;
  right: -3px;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  margin: -10px 0;
}

.wpcf7-spinner {
  display: none !important;
}

@media (max-width: 1023px) {
  .contact {
    padding: 110px 0 0;
  }

  .contact__title small {
    font-size: 1.6rem;
  }

  .contact__title h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    width: 100%;
  }

  .contact__wapper {
    display: block;
  }

  .contact__title,
  .contact__form {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .contact__form table tbody tr {
    flex-direction: column;
  }
}


.archive__works {
  width: 90%;
  max-width: 1200px;
  padding: 250px 0 150px;
  margin: 0 auto;
}

.archive__works small {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
  text-align: left;
}

.archive__works h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
  text-align: left;
}

.works__ul__li__top__text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1023px) {
  .archive__works {
    padding: 110px 0 0;
  }

  .archive__works small {
    font-size: 1.6rem;
  }

  .archive__works h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .archive__works small {
    font-size: 1.6rem;
    max-width: 450px;
    margin: 0 auto 30px;
  }

  .archive__works h2 {
    max-width: 450px;
    font-size: 2.5rem;
    margin: 0 auto 50px;
  }
}


.works-single-page {
  width: 90%;
  max-width: 800px;
  padding: 250px 0 100px;
  margin: 0 auto;
}

.works-single-page time {
  display: block;
  font-size: 2rem;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.4rem;
}

.works-single-page h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  letter-spacing: 0.2rem;
}

.works__category {
  width: 150px;
  padding: 8px;
  font-size: 1.4rem;
  border: solid 1px #000000;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.1rem;
}

.works__image {
  aspect-ratio: 3/2;
  margin-bottom: 50px;
}

.works__image img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.works__images {
  aspect-ratio: 3/2;
  margin-bottom: 30px;
}

.works__images img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.works__text {
  letter-spacing: 0.2rem;
  line-height: 2;
  text-align: left;
  margin-bottom: 50px;
}

@media (max-width: 1023px) {
  .works-single-page {
    padding: 110px 0 0;
  }

  .works-single-page time {
    font-size: 1.6rem;
  }

  .works-single-page h2 {
    font-size: 2.5rem;
  }

  .works__category {
    width: 120px;
    font-size: 1.2rem;
  }

  .works__text {
    font-size: 1.4rem;
  }
}

.archive__downlist {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

#category-form {
  position: relative;
  margin-bottom: 0;
}

#cat {
  position: relative;
  width: 210px;
  padding: 12px 20px;
  border: solid 1px #000000;
}

#category-form::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #000000;
  border-right: solid 2px #000000;
  position: absolute;
  top: 45%;
  right: 15px;
  transform: rotate(45deg) translateY(-50%);
}

#cat:hover {
  cursor: pointer;
}

.select__button {
  position: relative
}

.manthly {
  position: relative;
  width: 210px;
  padding: 12px 20px;
  border: solid 1px #000000;
}

.select__button::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #000000;
  border-right: solid 2px #000000;
  position: absolute;
  top: 45%;
  right: 15px;
  transform: rotate(45deg) translateY(-50%);
}

.select__button:hover {
  cursor: pointer;
}

@media (max-width: 767px) {
  .archive__downlist {
    max-width: 450px;
    margin: 0 auto 50px;
  }
}

.news__image {
  margin-bottom: 30px;
}

.news__image img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.content__title__bottom {
  width: 90%;
  line-height: 2;
  letter-spacing: 0.2rem;
  margin-top: -50px;
}

.content__title__bottom div {
  width: 150px;
  margin: 25px 0;
}

@media (max-width: 1023px) {
  .content__title__bottom {
    margin: 50px 0;
  }
}