@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #000;
  font-feature-settings: "palt";
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 641px) {
  a:hover {
    opacity: 0.6;
  }
}

.sponly {
  display: block;
}
@media screen and (min-width: 1025px) {
  .sponly {
    display: none;
  }
}

.pconly {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pconly {
    display: block;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.container {
  background: url("../images/bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  .container {
    padding: 60px;
  }
}

.title {
  padding-bottom: 1.25rem;
  position: relative;
  font-size: 17.0346666667vw;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}
@media screen and (min-width: 376px) {
  .title {
    font-size: 63.88px;
  }
}
@media screen and (min-width: 1025px) {
  .title {
    padding-bottom: 1.5625rem;
    font-size: 120px;
  }
}
@media screen and (min-width: 1920px) {
  .title {
    font-size: 6.25vw;
  }
}
.title .title--jp {
  display: block;
  font-size: 7.4533333333vw;
  color: #969696;
  padding-bottom: 1.3333333333vw;
}
@media screen and (min-width: 376px) {
  .title .title--jp {
    font-size: 27.95px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .title .title--jp {
    padding-bottom: 3px;
    font-size: 35px;
  }
}
@media screen and (min-width: 1920px) {
  .title .title--jp {
    font-size: 1.8229166667vw;
  }
}
.title .title--en {
  font-family: "Inter", serif;
}

.header {
  height: 2.5rem;
  font-family: "Inter", serif;
  mix-blend-mode: exclusion;
}
@media screen and (min-width: 1025px) {
  .header {
    height: 4.375rem;
  }
}

.header__inner {
  padding: 20px;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .header__inner {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1920px) {
  .header__inner {
    padding: 0 3.125vw;
  }
}

.header__logo {
  width: 123px;
  height: 20px;
}
@media screen and (min-width: 1025px) {
  .header__logo {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1920px) {
  .header__logo {
    width: 6.40625vw;
    height: 1.0416666667vw;
    margin-top: 1.0416666667vw;
  }
}
.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 1025px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  height: inherit;
}
.header__nav-item {
  height: 100%;
  overflow: hidden;
}
.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}
.header__nav-item a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: opacity 0.3s, transform 0.3s;
  line-height: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (min-width: 1920px) {
  .header__nav-item a {
    font-size: 0.8333333333vw;
  }
}
.header__nav-item a:hover {
  transform: translateY(-60px);
}
.header__nav-item a::after {
  content: attr(data-item);
  position: absolute;
  bottom: 0;
  color: #fff;
  font-size: 16px;
}
@media screen and (min-width: 1920px) {
  .header__nav-item a::after {
    font-size: 0.8333333333vw;
  }
}
.header__nav-item.insta a {
  padding: 14px 0;
  margin-left: 31px;
}
@media screen and (min-width: 1441px) {
  .header__nav-item.insta a {
    padding: 19px 0;
  }
}
@media screen and (min-width: 1920px) {
  .header__nav-item.insta a {
    padding: 0.78125vw 0;
  }
}
.header__nav-item.insta a:hover {
  transform: none;
}

.header_modal {
  position: fixed;
  z-index: 999;
}
.header_modal .header__hamburger {
  display: none;
}

.header__hamburger {
  right: 20px;
  top: 20px;
  outline: none;
  border: none;
  position: fixed;
  z-index: 999;
  width: 15px;
  height: 13px;
  cursor: pointer;
  transition: 0.3s;
  background: #000;
}
@media screen and (min-width: 1025px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}
.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}
.header__hamburger span:nth-of-type(2) {
  top: 0;
}
.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.js-drawer {
  display: none;
}
.js-drawer .header__hamburger {
  display: block;
}
.js-drawer .header__hamburger span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.js-drawer .header__hamburger span:nth-of-type(2) {
  opacity: 0;
}
.js-drawer .header__hamburger span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}
.js-drawer .header__drawer {
  padding: 20px;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow-y: scroll;
  scrollbar-width: none;
}
.js-drawer .header__drawer::-webkit-scrollbar {
  display: none;
}
.js-drawer .header__drawer-list {
  margin-bottom: 96px;
}
.js-drawer .header__drawer-item {
  padding: 15px 0;
}
.js-drawer .header__drawer-item a {
  display: block;
  font-size: 10.6666666667vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  font-family: "Inter", serif;
}
@media screen and (min-width: 376px) {
  .js-drawer .header__drawer-item a {
    font-size: 40px;
  }
}
.js-drawer .header__drawer-item.insta {
  padding: 19px 0;
}
.js-drawer .header__drawer-item.insta img {
  width: 51px;
  height: 51px;
}
.js-drawer .header__drawer-item--contact {
  padding: 20px 0;
}
@media screen and (min-width: 641px) {
  .js-drawer .header__drawer-item--contact {
    padding: 20px 0 10px;
  }
}
.js-drawer .header__drawer-item--contact a {
  color: #000;
  background: #fff;
  text-align: center;
  font-size: 6.1333333333vw;
  padding: 1.3125rem;
}
@media screen and (min-width: 376px) {
  .js-drawer .header__drawer-item--contact a {
    font-size: 23px;
    padding: 21px;
  }
}
@media screen and (min-width: 641px) {
  .js-drawer .header__drawer-item--contact a {
    font-size: 23px;
    padding: 19px;
  }
}
.js-drawer .header__drawer-item--contact a::after {
  content: "";
  margin-left: 0.625rem;
  width: 1.0625rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/arrow_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.js-drawer .header__drawer .header__drawer-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.js-drawer .header__drawer .header__logo {
  width: 100%;
  height: initial;
  margin-top: auto;
}

.statement {
  background: #000;
  color: #fff;
  padding: 20px 20px 28.5333333333vw;
}
@media screen and (min-width: 641px) {
  .statement {
    padding-bottom: 107px;
  }
}
@media screen and (min-width: 1025px) {
  .statement {
    padding: 60px;
    padding-bottom: 187px;
  }
}
@media screen and (min-width: 1920px) {
  .statement {
    padding-bottom: 9.7395833333vw;
  }
}
.statement .statement__container {
  margin: 0 auto;
  max-width: 338px;
}
@media screen and (min-width: 1025px) {
  .statement .statement__container {
    max-width: 900px;
  }
}
.statement .statement__container .statement__text--en {
  font-family: "Inter", serif;
  font-weight: bold;
  line-height: 1.2;
  font-size: 14.9333333333vw;
  padding-top: 23.4666666667vw;
}
@media screen and (min-width: 376px) {
  .statement .statement__container .statement__text--en {
    font-size: 56px;
    padding-top: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .statement .statement__container .statement__text--en {
    font-size: 100px;
    padding-top: 140px;
  }
}
@media screen and (min-width: 1920px) {
  .statement .statement__container .statement__text--en {
    font-size: 5.2083333333vw;
    padding-top: 7.2916666667vw;
  }
}
.statement .statement__container .statement__text--jp {
  font-size: 5.8666666667vw;
  margin-top: 13.3333333333vw;
  line-height: 2.2;
}
@media screen and (min-width: 376px) {
  .statement .statement__container .statement__text--jp {
    font-size: 22px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .statement .statement__container .statement__text--jp {
    font-size: 27px;
    line-height: 2.5;
    margin-top: 100px;
  }
}
@media screen and (min-width: 1920px) {
  .statement .statement__container .statement__text--jp {
    font-size: 1.40625vw;
    margin-top: 5.2083333333vw;
  }
}

.works {
  padding: 25.8666666667vw 0 0;
}
@media screen and (min-width: 376px) {
  .works {
    padding: 100px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .works {
    padding: 120px 0 0;
  }
}
@media screen and (min-width: 1441px) {
  .works {
    padding: 115px 0 0;
  }
}
@media screen and (min-width: 1920px) {
  .works {
    padding: 5.9895833333vw 0 0;
  }
}
.works__content {
  position: relative;
  text-align: left;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 5.3333333333vw 4.8vw;
  margin-bottom: 0.5333333333vw;
  height: 54.1333333333vw;
}
@media screen and (min-width: 376px) {
  .works__content {
    padding: 20px 18px;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 641px) {
  .works__content {
    margin-bottom: 0;
    width: 50%;
    height: 28.6458333333vw;
  }
}
@media screen and (min-width: 1025px) {
  .works__content {
    padding: 17px 20px;
    height: 26.8292682927vw;
  }
}
@media screen and (min-width: 1441px) {
  .works__content {
    padding: 17px 20px;
    height: 27.7777777778vw;
  }
}
@media screen and (min-width: 1920px) {
  .works__content {
    padding: 0.8854166667vw 1.0416666667vw;
    height: 28.4375vw;
  }
}
.works__content a {
  display: block;
  width: 100%;
  height: 100%;
}
.works__content:hover {
  opacity: 0.6;
  transition: 0.5s;
}
.works__content--entertainment {
  background-image: url("../images/works1.jpg");
}
.works__content--stage {
  background-image: url("../images/works2.jpg");
}
.works__content--sports {
  background-image: url("../images/works3.jpg");
}
.works__content--live {
  background-image: url("../images/works4.jpg");
}
.works__content h4 {
  font-family: "Inter", serif;
  font-size: 10.6666666667vw;
  line-height: 1;
}
@media screen and (min-width: 376px) {
  .works__content h4 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .works__content h4 {
    font-size: 80px;
  }
}
@media screen and (min-width: 1441px) {
  .works__content h4 {
    font-size: 80px;
  }
}
@media screen and (min-width: 1920px) {
  .works__content h4 {
    font-size: 4.1666666667vw;
  }
}
.works__content p {
  display: flex;
  align-items: center;
  font-family: "Inter", serif;
  font-size: 5.3333333333vw;
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 376px) {
  .works__content p {
    font-size: 20px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .works__content p {
    font-size: 20px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 1441px) {
  .works__content p {
    font-size: 20px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 1920px) {
  .works__content p {
    font-size: 1.0416666667vw;
    margin-top: 0.2604166667vw;
  }
}
.works__content p img {
  width: 4.8vw;
  margin-left: 11px;
  display: inline;
}
@media screen and (min-width: 376px) {
  .works__content p img {
    width: 18px;
  }
}
@media screen and (min-width: 1920px) {
  .works__content p img {
    width: 0.9375vw;
  }
}
.works__content-wrap {
  margin-top: 6.1333333333vw;
}
@media screen and (min-width: 376px) {
  .works__content-wrap {
    margin-top: 23px;
  }
}
@media screen and (min-width: 641px) {
  .works__content-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1920px) {
  .works__content-wrap {
    margin-top: 0.8854166667vw;
  }
}
.works .lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.service {
  padding: 31.2vw 0 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 376px) {
  .service {
    padding: 117px 0 0;
  }
}
@media screen and (min-width: 641px) {
  .service {
    padding: 121px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .service {
    padding: 174px 0 0;
  }
}
@media screen and (min-width: 1441px) {
  .service {
    padding: 180px 0 0;
    flex-direction: row;
  }
}
@media screen and (min-width: 1920px) {
  .service {
    padding: 9.21875vw 0 0;
  }
}
.service .service__content-wrap {
  margin-top: 5.8666666667vw;
  padding-left: 10.9333333333vw;
  width: 100%;
}
@media screen and (min-width: 376px) {
  .service .service__content-wrap {
    margin-top: 18px;
    padding-left: 41px;
  }
}
@media screen and (min-width: 641px) {
  .service .service__content-wrap {
    margin-top: 21px;
    padding-left: 41px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__content-wrap {
    margin-top: 18px;
    padding-left: 41px;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__content-wrap {
    margin-top: 58px;
    padding-left: 41px;
    width: 50%;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__content-wrap {
    margin-top: 3.0208333333vw;
    padding-left: 2.1354166667vw;
  }
}
.service .service__content {
  margin-bottom: 10.1333333333vw;
}
@media screen and (min-width: 376px) {
  .service .service__content {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 641px) {
  .service .service__content {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__content {
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__content {
    margin-bottom: 67px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__content {
    margin-bottom: 3.125vw;
  }
}
.service .service__content p {
  font-size: 4.8vw;
  line-height: 1.65;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 376px) {
  .service .service__content p {
    line-height: 1.7;
    font-size: 18px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 641px) {
  .service .service__content p {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__content p {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__content p {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__content p {
    margin-top: 0.5208333333vw;
  }
}
.service .service__title {
  flex: 1;
}
.service .service__content-title {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}
.service .service__content-title::before {
  content: url("../images/service_icon.svg");
  width: 99px;
  height: 99px;
  display: block;
  position: absolute;
  left: -88px;
}
@media screen and (min-width: 376px) {
  .service .service__content-title::before {
    left: -88px;
  }
}
@media screen and (min-width: 641px) {
  .service .service__content-title::before {
    left: -88px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__content-title::before {
    left: -88px;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__content-title::before {
    left: -88px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__content-title::before {
    left: -4.5833333333vw;
  }
}
.service .service__content-title--en {
  font-family: "Inter", serif;
  font-size: 13.3333333333vw;
  padding-top: 9.8666666667vw;
  line-height: 1;
}
@media screen and (min-width: 376px) {
  .service .service__content-title--en {
    font-size: 50px;
    padding-top: 29px;
  }
}
@media screen and (min-width: 641px) {
  .service .service__content-title--en {
    font-size: 50px;
    padding-top: 38px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__content-title--en {
    font-size: 60px;
    padding-top: 29px;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__content-title--en {
    font-size: 60px;
    padding-top: 29px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__content-title--en {
    font-size: 3.125vw;
    padding-top: 1.5104166667vw;
  }
}
.service .service__content-title--jp {
  font-size: 22px;
  color: #969696;
}
@media screen and (min-width: 641px) {
  .service .service__content-title--jp {
    font-size: 22px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__content-title--jp {
    font-size: 24px;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__content-title--jp {
    font-size: 24px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__content-title--jp {
    font-size: 1.25vw;
  }
}
.service .service__box {
  background-color: #fff;
  border: 1px solid #000;
  margin-top: 15.4666666667vw;
  margin-left: -11.2vw;
  padding: 6.6666666667vw 5.3333333333vw 8vw 8vw;
}
@media screen and (min-width: 376px) {
  .service .service__box {
    margin-top: 88px;
    margin-left: -42px;
    padding: 25px 20px 35px 30px;
  }
}
@media screen and (min-width: 641px) {
  .service .service__box {
    margin-top: 63px;
    margin-left: -42px;
    padding: 25px 20px 35px 30px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__box {
    margin-top: 76px;
    margin-left: -42px;
    padding: 25px 20px 32px 30px;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__box {
    margin-top: 88px;
    margin-left: -42px;
    padding: 25px 20px 35px 30px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__box {
    margin-top: 4.1666666667vw;
    margin-left: -2.0833333333vw;
    padding: 1.1458333333vw 1.0416666667vw 1.8229166667vw 1.5625vw;
  }
}
.service .service__box p {
  font-size: 4.267vw;
  line-height: 1.8;
}
@media screen and (min-width: 376px) {
  .service .service__box p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 641px) {
  .service .service__box p {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__box p {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__box p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__box p {
    font-size: 0.9375vw;
  }
}
.service .service__box-footer-left {
  background-color: #e6e6e6;
  text-align: center;
  max-width: 274px;
  width: 100%;
  font-size: 16px;
}
.service .service__box-footer-right {
  display: flex;
  align-items: center;
}
.service .service__box-footer-right .text {
  width: 86%;
}
.service .service__box-footer-right .link_icon {
  width: 6.5%;
  margin-left: 2.6666666667vw;
  margin-top: -0.25em;
}
@media screen and (min-width: 376px) {
  .service .service__box-footer-right .link_icon {
    margin-left: 20px;
  }
}
@media screen and (min-width: 641px) {
  .service .service__box-footer-right .link_icon {
    margin-left: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__box-footer-right .link_icon {
    margin-left: 20px;
    margin-top: -0.3em;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__box-footer-right .link_icon {
    margin-left: 1.0416666667vw;
  }
}
.service .service__box-footer {
  display: flex;
  flex-direction: column;
  gap: 5.8666666667vw;
  margin-top: 5.6vw;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 376px) {
  .service .service__box-footer {
    flex-direction: row;
    gap: 22px 40px;
    margin-top: 24px;
    align-items: center;
  }
}
@media screen and (min-width: 641px) {
  .service .service__box-footer {
    margin-top: 20px;
    gap: 22px 30px;
  }
}
@media screen and (min-width: 1025px) {
  .service .service__box-footer {
    margin-top: 15px;
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1441px) {
  .service .service__box-footer {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1920px) {
  .service .service__box-footer {
    margin-top: 1.25vw;
  }
}

.about-us {
  padding: 32.2666666667vw 0 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 376px) {
  .about-us {
    padding: 121px 0 0;
  }
}
@media screen and (min-width: 641px) {
  .about-us {
    padding: 121px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .about-us {
    padding: 174px 0 0;
  }
}
@media screen and (min-width: 1441px) {
  .about-us {
    padding: 185px 0 0;
  }
}
@media screen and (min-width: 1920px) {
  .about-us {
    padding: 9.21875vw 0 0;
  }
}

.about-us__title {
  display: flex;
  flex-direction: column;
}

.about-us__content {
  margin-top: 33px;
}
@media screen and (min-width: 1025px) {
  .about-us__content {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1441px) {
  .about-us__content {
    margin-top: 23px;
    margin-left: auto;
    width: 75.3%;
  }
}
@media screen and (min-width: 1920px) {
  .about-us__content {
    margin-top: 23px;
    margin-left: auto;
    width: 81.5%;
  }
}

.about-us__list {
  padding: 6vw 0;
  display: flex;
  flex-direction: column;
  font-size: 4.2666666667vw;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
}
.about-us__list:first-of-type {
  border-top: 1px solid #000;
}
@media screen and (min-width: 376px) {
  .about-us__list {
    font-size: 16px;
    padding: 22.5px 0;
  }
}
@media screen and (min-width: 1025px) {
  .about-us__list {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}
@media screen and (min-width: 1920px) {
  .about-us__list {
    font-size: 0.8333333333vw;
  }
}

.about-us__term {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .about-us__term {
    border-right: 1px solid #000;
    padding: 21.7px 0;
    width: 186px;
    text-align: center;
  }
}

@media screen and (min-width: 1025px) {
  .about-us__description {
    padding-left: 50px;
  }
}

.access {
  padding: 31.4666666667vw 0 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 376px) {
  .access {
    padding: 118px 0 0;
  }
}
@media screen and (min-width: 641px) {
  .access {
    padding: 115px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .access {
    display: grid;
    grid-template: "title btn" "map map";
    padding: 174px 0 0;
  }
}
@media screen and (min-width: 1441px) {
  .access {
    padding: 175px 0 0;
  }
}
@media screen and (min-width: 1920px) {
  .access {
    padding: 9.21875vw 0 0;
  }
}
.access .access__title {
  grid-area: title;
}
.access .access__map {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  margin-top: 3.2vw;
  height: 160vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 376px) {
  .access .access__map {
    margin-top: 12px;
    height: 600px;
  }
}
@media screen and (min-width: 1025px) {
  .access .access__map {
    grid-area: map;
    margin-top: 20px;
    height: 600px;
  }
}
@media screen and (min-width: 1441px) {
  .access .access__map {
    margin-top: 25px;
    height: 600px;
  }
}
@media screen and (min-width: 1920px) {
  .access .access__map {
    margin-top: 0.78125vw;
  }
}
.access .access__map iframe {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 1920px) {
  .access .access__map iframe {
    margin: 0 auto;
    width: 100%;
  }
}
.access .access__button {
  order: 3;
  border: 1px solid #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", serif;
  width: 100%;
  max-width: 335px;
  height: 70px;
  font-size: 6.1333333333vw;
  margin-top: 6.9333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 376px) {
  .access .access__button {
    font-size: 23px;
    margin-top: 26px;
  }
}
@media screen and (min-width: 641px) {
  .access .access__button {
    width: 100%;
    max-width: 335px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .access .access__button {
    order: 2;
    width: 300px;
    max-width: none;
    grid-area: btn;
    margin: auto 0 2.5rem auto;
  }
}
@media screen and (min-width: 1920px) {
  .access .access__button {
    font-size: 1.1979166667vw;
    height: 3.6458333333vw;
  }
}
.access .access__button img {
  margin-left: 2.6666666667vw;
}
@media screen and (min-width: 376px) {
  .access .access__button img {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1920px) {
  .access .access__button img {
    margin-left: 0.5208333333vw;
  }
}
.access .access__text {
  font-family: "Inter", serif;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 376px) {
  .access .access__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 641px) {
  .access .access__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .access .access__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1441px) {
  .access .access__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1920px) {
  .access .access__text {
    font-size: 0.9375vw;
  }
}

.footer {
  text-align: center;
  color: white;
  background: url("../images/footer_image.jpg") no-repeat center top;
  background-size: cover;
  height: 242.9333333333vw;
  margin-top: 26.6666666667vw;
  padding: 29.3333333333vw 20px;
}
@media screen and (min-width: 376px) {
  .footer {
    height: 911px;
    margin-top: 103px;
    padding: 110px 20px;
  }
}
@media screen and (min-width: 641px) {
  .footer {
    height: 880px;
  }
}
@media screen and (min-width: 1025px) {
  .footer {
    height: 700px;
    margin-top: 116px;
    padding: 110px 60px;
  }
}
@media screen and (min-width: 1920px) {
  .footer {
    height: 36.4583333333vw;
    margin-top: 6.0416666667vw;
    padding: 5.7291666667vw 60px;
  }
}
.footer__logo {
  width: 89.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 376px) {
  .footer__logo {
    width: 335px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__logo {
    width: 370px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__logo {
    width: 19.2708333333vw;
  }
}
.footer__contact-message {
  font-size: 7.2vw;
  margin-top: 23.4666666667vw;
  line-height: 1.7;
}
@media screen and (min-width: 376px) {
  .footer__contact-message {
    font-size: 27px;
    margin-top: 88px;
  }
}
@media screen and (min-width: 641px) {
  .footer__contact-message {
    margin-top: 87px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__contact-message {
    margin-top: 72px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__contact-message {
    font-size: 1.40625vw;
    margin-top: 3.75vw;
  }
}
.footer__privacy-message {
  font-size: 4.2666666667vw;
  margin-top: 5.6vw;
  line-height: 1.7;
}
@media screen and (min-width: 376px) {
  .footer__privacy-message {
    font-size: 16px;
    margin-top: 21px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__privacy-message {
    margin-top: 27px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__privacy-message {
    font-size: 0.8333333333vw;
    margin-top: 1.40625vw;
  }
}
.footer__contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid #fff;
  text-align: center;
  font-family: "Inter", serif;
  width: 89.3333333333vw;
  margin: 14.6666666667vw auto 0;
  font-size: 6.1333333333vw;
  height: 26.6666666667vw;
}
@media screen and (min-width: 376px) {
  .footer__contact-button {
    width: 335px;
    font-size: 23px;
    height: 100px;
    margin-top: 54px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__contact-button {
    width: 600px;
    margin-top: 34px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__contact-button {
    width: 31.25vw;
    font-size: 1.1979166667vw;
    height: 5.2083333333vw;
    margin-top: 1.7708333333vw;
  }
}
.footer__contact-button img {
  margin-left: 4.8vw;
}
@media screen and (min-width: 376px) {
  .footer__contact-button img {
    margin-left: 18px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__contact-button img {
    margin-left: 0.9375vw;
  }
}
.footer__contact-info {
  font-size: 4.8vw;
  margin-top: 9.0666666667vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 376px) {
  .footer__contact-info {
    font-size: 18px;
    margin-top: 34px;
  }
}
@media screen and (min-width: 641px) {
  .footer__contact-info {
    font-size: 18px;
    margin-top: 34px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__contact-info {
    font-size: 18px;
    margin-top: 23px;
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__contact-info {
    font-size: 0.9375vw;
    margin-top: 1.1979166667vw;
    gap: 1.0416666667vw;
  }
}
.footer__nav {
  margin-top: 18.6666666667vw;
}
@media screen and (min-width: 376px) {
  .footer__nav {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__nav {
    margin-top: 3.6458333333vw;
  }
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 376px) {
  .footer__nav-list {
    font-size: 14px;
  }
}
@media screen and (min-width: 641px) {
  .footer__nav-list {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1920px) {
  .footer__nav-list {
    font-size: 0.7291666667vw;
  }
}
.footer__nav-item {
  padding: 0 5.8666666667vw;
  position: relative;
  line-height: 2.5;
}
@media screen and (min-width: 376px) {
  .footer__nav-item {
    padding: 0 22px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__nav-item {
    padding: 0 1.1458333333vw;
  }
}
.footer__nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 44%;
  top: 28%;
  border-right: 1px solid #fff;
}
.footer__nav-item img {
  width: 4vw;
}
@media screen and (min-width: 376px) {
  .footer__nav-item img {
    width: 15px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__nav-item img {
    width: 0.78125vw;
  }
}
.footer__copyright {
  font-size: 3.7333333333vw;
  margin-top: 6.1333333333vw;
}
@media screen and (min-width: 376px) {
  .footer__copyright {
    font-size: 14px;
    margin-top: 22px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__copyright {
    font-size: 0.7291666667vw;
    margin-top: 1.1458333333vw;
  }
}