@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  word-break: break-all;
  line-height: 1.5;
}

html {
  min-height: 100%;
  position: relative;
  text-align: center;
}

body {
  background-size: 100%;
  background-color: #ffffff;
  color: #000;
  font-size: 16px;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  overflow-x: hidden;
}
@media screen and (max-width: 780px) {
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
  }
}

main {
  min-height: calc(100vh - 380px);
}
@media screen and (max-width: 780px) {
  main {
    min-height: calc(100vh - 70px);
  }
}

table {
  border-collapse: collapse;
  border-style: none;
  border-spacing: 0;
}

section {
  margin: 20px auto;
  width: 100%;
}
section .section__heading {
  margin-bottom: 50px;
  text-align: left;
}
section .section__heading img {
  max-width: 258px;
  max-height: 30px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 780px) {
  section {
    margin: 20px auto;
    width: 100%;
  }
  section .section__heading {
    text-align: center;
    margin: 0 auto 30px;
  }
}
a {
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease-in;
  word-break: break-all;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
form,
input,
select,
label {
  font-weight: normal;
  letter-spacing: 0.1em;
  margin: 0;
  outline: none;
  padding: 0;
}

ul,
ol {
  list-style: none outside;
}

p,
li,
dt,
dd {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 780px) {
  p,
  li,
  dt,
  dd {
    font-size: 4vw;
  }
}

img {
  border-style: none;
  height: auto;
  vertical-align: bottom;
  width: 100%;
  object-fit: contain;
}

.pc__only {
  display: block;
}

.sp__only {
  display: none !important;
}

@media screen and (max-width: 780px) {
  .pc__only {
    display: none !important;
  }
  .sp__only {
    display: block !important;
  }
}
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20000;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.1), 0px 1px 4px rgba(12, 12, 13, 0.05);
}
header .hamburger__menu {
  display: none;
}
header .pc__menu {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  max-width: 880px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  height: 20px;
}
header .pc__menu > li {
  margin-right: 3.4vw;
}
header .pc__menu > li a {
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 500;
}
header .pc__menu > li:last-child {
  margin-right: 0;
}
header h1 {
  font-style: normal;
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}
header h1 img {
  max-width: 249px;
}
header .header__wrapper {
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav__menu__btn {
  display: none;
}

@media only screen and (max-width: 780px) {
  header {
    width: 100%;
    margin-bottom: 0;
  }
  header .pc__menu {
    display: none;
  }
  header h1 {
    margin: 0 auto 0 0;
    font-size: min(7vw, 26px);
  }
  header h1 img {
    max-width: 190px;
  }
  header .header__wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 12px 3.5vw;
  }
  header .nav__menu__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    opacity: 0.9;
    border-radius: 0px 0px 0px 20px;
    border: none;
    cursor: pointer;
  }
  header .nav__menu__btn img,
  header .nav__menu__btn svg {
    width: 17px;
    height: 15px;
  }
  header .gnav__list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .gnav__list .nav__top__wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 12px 3.5vw;
    box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.1), 0px 1px 4px rgba(12, 12, 13, 0.05);
  }
  header .gnav__list .nav__top__wrapper h2 {
    margin: 0 auto 0 0;
    font-size: min(7vw, 26px);
    display: block;
    max-width: 190px;
  }
  header .gnav__list .nav__top__wrapper h2 img {
    max-width: 190px;
  }
  header .hamburger__menu {
    position: fixed;
    display: block;
    z-index: 999;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    transition: all 0.6s;
    right: 0;
  }
  header .hamburger__menu.is__close {
    right: -120%; /* 画面の右側に隠すためのコード */
  }
  header .hamburger__menu .nav__top__logo {
    width: calc(100% - 36px);
  }
  header .hamburger__menu .nav__top__logo a {
    color: #000000;
  }
  header .hamburger__menu .nav__top__logo img {
    max-width: 190px;
  }
  header .hamburger__menu .link__list {
    text-align: left;
    width: 100%;
    z-index: 999;
    padding: min(40px, 10vw) 3.5vw;
  }
  header .hamburger__menu .link__list li {
    margin-bottom: 35px;
  }
  header .hamburger__menu .link__list li a {
    color: #000000;
    padding: 10px;
    display: block;
    letter-spacing: 0.1em;
    font-size: 18px;
    line-height: 1;
    text-align: left;
    position: relative;
  }
  header .hamburger__menu .link__list li a::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    right: 16px;
    top: calc(50% - 1px);
    position: absolute;
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-50%);
    color: #fabd00;
  }
  header .hamburger__menu .link__list:last-child {
    padding: 20px 10px;
  }
  header .hamburger__menu .link__list:last-child li {
    margin-bottom: 24px;
  }
  header .hamburger__menu .link__list:last-child li:last-child {
    margin-bottom: 0;
  }
  header .hamburger__menu .link__list:last-child li a {
    font-size: 22px;
  }
  header .hamburger__menu .sns__list {
    display: flex;
    width: 100%;
    padding: 12px 3.5vw;
  }
  header .hamburger__menu .sns__list li {
    width: 25%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .hamburger__menu .sns__list li a {
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .hamburger__menu .sns__list li a img {
    max-width: 25px;
    width: 100%;
    height: auto;
  }
  header .hamburger__menu .gnav__list__footer {
    background-color: #eeeeee;
    color: #ffffff;
    font-size: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 170px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  header .hamburger__menu .gnav__list__footer .bg__title {
    color: #ffffff;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 800;
    font-size: min(120px, 25vw);
    line-height: 1.2;
  }
  header .hamburger__menu .gnav__list__footer .footer__logo a {
    margin: 0 auto;
  }
  header .hamburger__menu .gnav__list__footer .footer__logo a img {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
  }
  header .hamburger__menu .gnav__list__footer .footer__link__list {
    padding: 12px 3.5vw;
    font-size: 12px;
    color: #ffffff;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
  }
  header .hamburger__menu .gnav__list__footer .footer__link__list a {
    color: #ffffff;
  }
}
footer {
  width: 100%;
  background-color: #231816;
  padding: 30px 20px 30px;
}
footer .footer__top {
  margin-bottom: 42px;
}
footer .footer__logo {
  max-width: 320px;
  max-height: 108px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
footer .footer__logo img {
  width: 100%;
  min-width: 300px;
  max-width: 320px;
  height: auto;
  max-height: 108px;
}
footer .footer__bottom {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
footer .footer__bottom .footer__link__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
footer .footer__bottom .footer__link__wrapper ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer__bottom .footer__link__wrapper ul li {
  margin: 0 30px 8px;
}
footer .footer__bottom .footer__link__wrapper ul li a {
  font-size: 16px;
}
footer .footer__bottom .copyright a {
  color: #ffffff;
}
footer .footer__bottom .footer__link__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
footer .footer__bottom .footer__link__list > div {
  color: #ffffff;
  word-break: keep-all;
  font-size: 12px;
  margin: 0 15px;
}
footer .footer__bottom .footer__link__list > div a {
  word-break: keep-all;
  color: #ffffff;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__bottom .footer__link__list > div a span.icon__link {
  margin-left: 8px;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 18px;
  height: 18px;
}
footer .footer__bottom .footer__link__list > div a span.icon__link img {
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 780px) {
  footer .footer__logo {
    max-width: 200px;
    max-height: 63px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  footer .footer__logo img {
    width: 100%;
    min-width: 180px;
    max-width: 200px;
    height: auto;
    max-height: 63px;
  }
  footer .footer__bottom {
    flex-direction: column;
    padding: 12px 2vw;
    max-height: none;
    height: auto;
  }
  footer .footer__bottom .footer__link__wrapper {
    margin-top: 12px;
    height: auto;
  }
  footer .footer__bottom .footer__link__list {
    flex-direction: column;
  }
  footer .footer__bottom .footer__link__list > div {
    margin: 8px auto;
  }
}
.icon__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 38px;
  font-size: 16px;
  text-align: center;
  color: rgba(60, 60, 67, 0.6);
  background: #ffffff;
  border: 1px solid #dedede;
}

.contents__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 140px 1.2vw 80px;
  position: relative;
  min-height: 964px;
}
.contents__wrapper .bg__title {
  position: absolute;
  width: auto;
  height: auto;
  right: 0;
  top: 0;
  font-weight: 800;
  font-size: 220px;
  line-height: 1.1;
  color: #f2f2f2;
  z-index: 1;
}
.contents__wrapper .contents__heading {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  max-width: 1400px;
  margin: 0 auto 50px;
  z-index: 2;
  width: 75%;
}
.contents__wrapper .contents__heading h3 {
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.contents__wrapper .contents__heading h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  border: solid 3px #feda00;
  margin-right: 32px;
}
.contents__wrapper .contents__heading > a {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
.contents__wrapper .contents__subheading {
  color: #000000;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  text-align: left;
  max-width: 1400px;
  z-index: 2;
  position: relative;
  margin: 0 auto 48px;
  width: 75%;
}
.contents__wrapper .contents__inner {
  z-index: 2;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  padding-bottom: 180px;
  width: 75%;
}
.contents__wrapper .contents__inner.is__border {
  border: 10px solid #f5f5f5;
  padding: 14px;
}
.contents__wrapper .contents__inner.is__schedule {
  border: 10px solid #f5f5f5;
  padding: 0;
}
.contents__wrapper .contents__inner .inner__item {
  width: 50%;
  font-size: 18px;
  max-width: 660px;
}
.contents__wrapper .contents__inner .inner__item:first-child {
  margin-right: 20px;
}
.contents__wrapper .contents__inner .inner__item h4 {
  margin-bottom: 40px;
}
.contents__wrapper .contents__inner .inner__item .item__image {
  max-width: 660px;
  margin: 0 auto 24px;
}
.contents__wrapper .contents__inner .inner__item .item__image img {
  border-radius: 24px;
  width: 100%;
  height: auto;
}
.contents__wrapper .contents__inner .inner__item .item__subheading {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin-bottom: 24px;
}
.contents__wrapper .box__inner {
  z-index: 2;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  padding-bottom: 180px;
  width: 75%;
  column-gap: 40px;
  row-gap: 40px;
  position: relative;
  z-index: 20;
}
.contents__wrapper .box__inner .box__item {
  box-shadow: 10px 10px 0px 0px #f2f2f2;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px;
  width: 100%;
  min-height: 400px;
  position: relative;
  z-index: 20;
}
.contents__wrapper .box__inner .box__item .item__category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contents__wrapper .box__inner .box__item .item__category .title__kana {
  font-size: 14px;
  color: #212121;
  margin-bottom: 4px;
}
.contents__wrapper .box__inner .box__item .item__category .title__en {
  font-size: 24px;
  text-transform: uppercase;
  color: #fabd00;
}
.contents__wrapper .box__inner .box__item .item__text {
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 400;
  color: #000000;
}
.contents__wrapper .box__inner .box__item .item__link {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.contents__wrapper article {
  padding: 0;
  text-align: left;
  width: 75%;
  margin: 24px auto;
}
.contents__wrapper article .article__heading {
  padding-bottom: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contents__wrapper article .article__heading > div {
  color: #76010c;
  font-size: 16px;
  font-weight: 500;
  margin-left: 28px;
}
.contents__wrapper article .article__heading > h4 {
  font-size: 28px;
  color: #3c3c3c;
}
.contents__wrapper article .article__wrapper {
  text-align: left;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}
.contents__wrapper article .article__wrapper a {
  color: #000000;
  text-decoration: underline;
}
.contents__wrapper article .article__wrapper *,
.contents__wrapper article .article__wrapper div,
.contents__wrapper article .article__wrapper p,
.contents__wrapper article .article__wrapper span {
  margin-bottom: 14px;
}
.contents__wrapper article .article__wrapper figure,
.contents__wrapper article .article__wrapper picture,
.contents__wrapper article .article__wrapper img {
  margin: 32px auto 50px;
  max-width: 920px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.contents__wrapper article .article__wrapper figure > img,
.contents__wrapper article .article__wrapper picture > img {
  margin-top: 0;
  margin-bottom: 0;
}
.contents__wrapper .btn__wrapper {
  width: 75%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contents__wrapper .btn__all,
.contents__wrapper .btn__more {
  width: 100px;
  height: 50px;
  display: block;
}
.contents__wrapper .btn__all img,
.contents__wrapper .btn__more img {
  width: 100%;
  height: auto;
  max-width: 100px;
  max-height: 50px;
}
.contents__wrapper .btn__top {
  width: 60px;
  display: block;
}
.contents__wrapper .btn__top img {
  width: 100%;
  height: auto;
  max-width: 60px;
  max-height: 42px;
}
.contents__wrapper.section__about {
  background-color: #212121;
  max-width: none;
  min-height: 80vh;
}
.contents__wrapper.section__about .bg__title {
  height: auto;
  right: auto;
  top: auto;
  bottom: 0;
  left: 0;
  color: #000000;
  z-index: 1;
}
.contents__wrapper.section__about .contents__heading {
  color: #ffffff;
}
.contents__wrapper.section__about .contents__heading h3,
.contents__wrapper.section__about .contents__heading h4 {
  color: #ffffff;
}
.contents__wrapper.section__about .contents__heading > a {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}
.contents__wrapper.section__about .contents__inner .inner__item {
  color: #ffffff;
}
.contents__wrapper.section__about .contents__inner .inner__item h4 {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15px;
  font-size: min(32px, 5vw);
}
.contents__wrapper.section__about .contents__inner .inner__item .item__image {
  max-width: 500px;
  margin: 0 auto;
}
.contents__wrapper.section__about .contents__inner .inner__item .item__image img {
  border-radius: 24px;
  width: 100%;
  height: auto;
}
.contents__wrapper.section__about .contents__inner .text__only {
  color: #ffffff;
}
.contents__wrapper.section__about .contents__inner .text__only h4 {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15px;
  font-size: min(32px, 5vw);
  margin-bottom: 20px;
}
.contents__wrapper.section__about .contents__inner .text__only .inner__text {
  font-size: 24px;
  line-height: 2.5;
}
.contents__wrapper.section__service {
  padding: 150px 1.2vw 80px;
}
.contents__wrapper.section__vision {
  position: relative;
  min-height: 670px;
  padding: 40px 1.2vw 20px;
  overflow: hidden;
  background-image: url("/assets/img/top/vision.png");
  background-position: center;
  background-size: cover;
}
.contents__wrapper.section__vision .bg__title {
  height: auto;
  right: auto;
  top: auto;
  bottom: -3%;
  left: 0;
  color: rgba(0, 0, 0, 0.5019607843);
  z-index: 2;
}
.contents__wrapper.section__vision .bg__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 970px;
  z-index: 1;
}
.contents__wrapper.section__vision .bg__img img {
  max-height: 970px;
  max-width: 1920px;
}
.contents__wrapper.section__vision .contents__heading {
  margin: 0 auto 20px;
}
.contents__wrapper.section__vision .contents__heading h3 {
  color: #ffffff;
}
.contents__wrapper.section__vision .contents__wrapper {
  min-height: auto;
  position: relative;
  max-width: 1400px;
  padding: 40px 0 80px;
  width: 75%;
  z-index: 3;
}
.contents__wrapper.section__vision .contents__wrapper .vision__text {
  text-align: left;
  color: #ffffff;
  position: relative;
  z-index: 2;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: min(24px, 1.8vw);
  max-width: 1000px;
  width: 100%;
  line-height: 2.5;
}
.contents__wrapper.section__vision * {
  color: #ffffff;
}
.contents__wrapper.section__solution {
  padding: 140px 1.2vw 0;
}
.contents__wrapper.section__solution .bg__title {
  top: 0;
  left: auto;
  right: 0;
  text-align: right;
}
.contents__wrapper.section__solution .contents__inner {
  flex-direction: column;
}
.contents__wrapper.section__solution .contents__inner div {
  width: 100%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 2;
}
.contents__wrapper.section__solution .contents__inner div.solution__img {
  margin: 40px auto 60px;
  max-width: 1200px;
}
.contents__wrapper.section__solution .contents__inner div.solution__img img {
  max-width: 1200px;
  width: 100%;
  height: auto;
}

.pagination__wrapper {
  max-width: 1400px;
  width: 75%;
  margin: 0 auto 130px;
}
.pagination__wrapper > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pagination__wrapper > ul li {
  padding: 0 12px;
  margin: 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #5c5c5c;
}
.pagination__wrapper > ul li > span,
.pagination__wrapper > ul li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Inter";
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
.pagination__wrapper > ul li:first-child {
  margin-left: 0;
  margin-right: 28px;
}
.pagination__wrapper > ul li:last-child {
  margin-right: 0;
  margin-left: 28px;
}
.pagination__wrapper > ul li.not__exists {
  width: 115px;
}
.pagination__wrapper > ul li.current__page {
  border-bottom: 1px solid #000000;
}

.link__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 18px;
}
.link__arrow.arrow__left {
  transform: rotateY(180deg);
}

.news__detail__page .contents__wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.news__detail__page .contents__wrapper .contents__heading {
  margin-bottom: 8px;
  width: 75%;
}
.news__detail__page .contents__wrapper .contents__heading h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  line-height: 1.2;
  text-align: left;
}
.news__detail__page .contents__wrapper .contents__heading h3::before {
  content: none;
}
.news__detail__page .contents__wrapper .contents__heading h3.new::before {
  content: "NEW";
  border: none;
  width: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #fabd00;
  margin-right: 24px;
  word-break: keep-all;
}
.news__detail__page .contents__wrapper article .article__heading > div {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgba(60, 60, 67, 0.6);
  text-align: right;
}
.news__detail__page .btn__top {
  width: 60px;
  height: 48px;
  display: block;
  margin-left: 20px;
}
.news__detail__page .btn__top img {
  width: 100%;
  height: auto;
  max-width: 60px;
  max-height: 48px;
}
.news__detail__page .no__article {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 1.2vw 80px;
}

@media only screen and (max-width: 780px) {
  .icon__tag {
    width: 64px;
    height: 28px;
    font-size: 14px;
  }
  .contents__wrapper {
    min-height: auto;
    padding: 70px min(20px, 3.2vw) 40px;
  }
  .contents__wrapper .bg__title {
    width: 100%;
    height: auto;
    right: auto;
    left: 5%;
    top: 0;
    font-size: min(120px, 25vw);
    text-align: left;
  }
  .contents__wrapper .contents__heading {
    margin: 0 auto 40px;
    width: 100%;
  }
  .contents__wrapper .contents__heading h3 {
    padding-top: 40px;
    font-size: 28px;
    align-items: center;
  }
  .contents__wrapper .contents__heading h3.new::before {
    font-size: 14px;
    margin-right: 16px;
  }
  .contents__wrapper .contents__subheading {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.15px;
    color: #000000;
    width: 100%;
  }
  .contents__wrapper .contents__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: min(180px, 20vw);
    width: 100%;
  }
  .contents__wrapper .contents__inner.is__border {
    border: 10px solid #f5f5f5;
    padding: 14px;
  }
  .contents__wrapper .contents__inner .inner__item {
    width: 100%;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  .contents__wrapper .contents__inner .inner__item h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
  }
  .contents__wrapper .contents__inner .inner__item:first-child {
    margin-right: 0;
  }
  .contents__wrapper .contents__inner .inner__item .item__subheading {
    font-size: 18px;
  }
  .contents__wrapper.section__about {
    min-height: auto;
  }
  .contents__wrapper.section__about .contents__inner .inner__item > div {
    font-size: 18px;
  }
  .contents__wrapper.section__about .contents__inner .text__only {
    margin-bottom: 20px;
  }
  .contents__wrapper.section__about .contents__inner .text__only h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
  }
  .contents__wrapper.section__about .contents__inner .text__only .inner__text {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
  }
  .contents__wrapper.section__vision {
    position: relative;
    min-height: 65vh;
    padding: 70px min(20px, 3.2vw) 40px;
    overflow: hidden;
    height: auto;
    background-image: url("/assets/img/top/vision_sp.png");
  }
  .contents__wrapper.section__vision .contents__heading {
    margin-bottom: 12px;
  }
  .contents__wrapper.section__vision .contents__heading h3 {
    padding-top: 20px;
    line-height: 2;
  }
  .contents__wrapper.section__vision .contents__wrapper {
    width: 100%;
    padding: 0;
  }
  .contents__wrapper.section__vision .contents__wrapper .vision__text {
    font-size: max(14px, 2.4vw);
    width: 100%;
    line-height: 2;
  }
  .contents__wrapper.section__solution {
    padding: 70px min(20px, 3.2vw) 40px;
  }
  .contents__wrapper.section__solution .contents__inner div {
    font-size: 15px;
    line-height: 1.4;
  }
  .contents__wrapper.section__solution .contents__inner div.solution__img {
    margin: 40px auto 20px;
  }
  .contents__wrapper .box__inner {
    grid-template-columns: auto;
    width: 90%;
    padding-bottom: 80px;
  }
  .contents__wrapper .box__inner .box__item {
    padding: 20px;
    min-height: 450px;
  }
  .contents__wrapper article {
    width: 100%;
    margin-top: 26px;
  }
  .contents__wrapper article .article__heading > div {
    font-size: 16px;
    margin-left: 16px;
  }
  .contents__wrapper article .article__heading > h4 {
    font-size: 22px;
  }
  .contents__wrapper article .article__wrapper {
    text-align: left;
    font-size: 14px;
  }
  .contents__wrapper article .article__wrapper figure,
  .contents__wrapper article .article__wrapper picture,
  .contents__wrapper article .article__wrapper img {
    margin: 16px auto 50px;
    max-width: 920px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .contents__wrapper .btn__wrapper {
    width: 100%;
  }
  .contents__wrapper .btn__more,
  .contents__wrapper .btn__all,
  .contents__wrapper .btn__top {
    width: 80px;
    height: 30px;
    display: block;
  }
  .contents__wrapper .btn__more img,
  .contents__wrapper .btn__all img,
  .contents__wrapper .btn__top img {
    width: 100%;
    height: auto;
    max-width: 80px;
    max-height: 30px;
  }
  .contents__wrapper.section__service {
    padding: 70px min(20px, 3.2vw) 40px;
  }
  .contents__wrapper.section__service .bg__title {
    left: 0;
    text-align: right;
  }
  .pagination__wrapper {
    width: 100%;
    margin-bottom: 130px;
    padding: 0 min(20px, 3.2vw) 0;
  }
  .pagination__wrapper > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .pagination__wrapper > ul li {
    margin: 0 6px;
    padding: 0 6px;
  }
  .pagination__wrapper > ul li > span,
  .pagination__wrapper > ul li > a {
    font-size: 14px;
  }
  .pagination__wrapper > ul li:first-child {
    margin-left: 0;
    margin-right: 6px;
  }
  .pagination__wrapper > ul li:last-child {
    margin-right: 0;
    margin-left: 6px;
  }
  .pagination__wrapper > ul li.current__page > a {
    color: #76010c;
  }
  .link__arrow {
    margin: 0 4px;
    width: 14px;
  }
  .link__arrow img {
    max-width: 14px;
  }
  .news__detail__page .contents__wrapper .contents__heading {
    width: 100%;
  }
}
.section__news {
  margin: 0 auto;
  padding: 140px 1.2vw 80px;
  position: relative;
}
.section__news .bg__title {
  position: absolute;
  width: auto;
  height: 220px;
  right: 0;
  top: 0;
  font-weight: 800;
  font-size: 220px;
  line-height: 220px;
  color: #f2f2f2;
  z-index: 1;
}
.section__news .contents__heading {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  max-width: 1400px;
  margin: 0 auto 40px;
  z-index: 2;
  width: 75%;
}
.section__news .contents__heading h3 {
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.section__news .contents__heading h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  border: solid 3px #feda00;
  margin-right: 32px;
}
.section__news .contents__heading > a {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
.section__news .tag__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1400px;
  width: 75%;
  margin: 0 auto 40px;
}
.section__news .tag__wrapper a {
  color: #000000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  padding-left: 32px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  line-height: 1.2;
}
.section__news .tag__wrapper a.current::before {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background-color: #feda00;
  border-radius: 50%;
}
.section__news .contents__inner {
  z-index: 2;
  position: relative;
  max-width: 1400px;
  width: 75%;
  margin: 0 auto;
}
.section__news .contents__inner.is__border {
  border: 10px solid #f5f5f5;
  padding: 14px;
}
.section__news .contents__inner.is__schedule {
  border: 10px solid #f5f5f5;
  padding: 0;
}
.section__news article {
  margin-top: 24px;
  padding: 0 1.2vw;
  text-align: left;
}
.section__news article .article__heading {
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.section__news article .article__heading > div {
  color: #76010c;
  font-size: 16px;
  font-weight: 500;
}
.section__news article .article__heading > h4 {
  font-size: 28px;
  color: #3c3c3c;
}
.section__news article .article__wrapper {
  text-align: left;
  font-size: 15px;
}
.section__news article .article__wrapper a {
  color: #76010c;
}
.section__news article .article__wrapper *,
.section__news article .article__wrapper div,
.section__news article .article__wrapper p,
.section__news article .article__wrapper span {
  margin-bottom: 14px;
}
.section__news article .article__wrapper figure,
.section__news article .article__wrapper picture,
.section__news article .article__wrapper img {
  margin: 32px auto 50px;
  max-width: 920px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.section__news article .article__wrapper figure > img,
.section__news article .article__wrapper picture > img {
  margin-top: 0;
  margin-bottom: 0;
}
.section__news .btn__wrapper {
  max-width: 1400px;
  width: 75%;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.section__news .btn__more,
.section__news .btn__all {
  width: 100px;
  height: 50px;
  display: block;
}
.section__news .btn__more img,
.section__news .btn__all img {
  width: 100%;
  height: auto;
  max-width: 100px;
  max-height: 50px;
}
.section__news .news__list li {
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
  word-break: break-all;
  font-size: 15px;
  padding: 12px 8px;
}
.section__news .news__list li:last-child {
  border-bottom: none;
}
.section__news .news__list li a {
  color: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}
.section__news .news__list li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 16px;
  top: calc(50% - 2px);
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  color: inherit;
}
.section__news .news__list li a div {
  line-height: 1.2;
}
.section__news .news__list li a div span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgba(60, 60, 67, 0.6);
  margin-right: 28px;
}
.section__news .news__list li a div span.title {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.15px;
  color: #000000;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}
.section__news .news__list li a div:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.section__news .news__list li a div:first-child span:first-child {
  word-break: keep-all;
  width: 110px;
}
.section__news .news__list li a div:last-child {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
}
.section__news .news__list li.new a div:last-child span.title::before {
  display: inline-block;
  word-break: keep-all;
  content: "NEW";
  color: #fabd00 !important;
  font-weight: 600;
  font-size: 16px;
  margin-right: 28px;
}

.news__page .section__news .bg__title {
  color: rgba(254, 218, 0, 0.2);
}
.news__page .section__news .contents__heading h3::before {
  content: none !important;
}

@media only screen and (max-width: 780px) {
  .section__news {
    padding: 70px min(20px, 3.2vw) 40px;
  }
  .section__news .bg__title {
    width: 100%;
    height: auto;
    right: auto;
    left: 5%;
    top: -8%;
    font-size: min(120px, 25vw);
    text-align: left;
  }
  .section__news .contents__heading {
    margin: 0 auto 40px;
    width: 100%;
  }
  .section__news .contents__heading h3 {
    padding-top: 40px;
    font-size: 28px;
  }
  .section__news .tag__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 40px;
  }
  .section__news .tag__wrapper a {
    padding-left: 18px;
    margin-right: 10px;
    line-height: 1.4;
    font-size: 14px;
  }
  .section__news .tag__wrapper a.current::before {
    top: 5px;
    width: 8px;
    height: 8px;
  }
  .section__news .contents__inner {
    width: 100%;
  }
  .section__news .contents__inner.is__border {
    border: 10px solid #f5f5f5;
    padding: 14px;
  }
  .section__news article {
    margin-top: 26px;
  }
  .section__news article .article__heading > div {
    font-size: 16px;
  }
  .section__news article .article__heading > h4 {
    font-size: 22px;
  }
  .section__news article .article__wrapper {
    text-align: left;
    font-size: 15px;
  }
  .section__news article .article__wrapper figure,
  .section__news article .article__wrapper picture,
  .section__news article .article__wrapper img {
    margin: 16px auto 50px;
    max-width: 920px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .section__news .btn__wrapper {
    width: 100%;
  }
  .section__news .btn__more,
  .section__news .btn__all {
    width: 80px;
    height: 48px;
    display: block;
  }
  .section__news .btn__more img,
  .section__news .btn__all img {
    width: 100%;
    height: auto;
    max-width: 80px;
    max-height: 48px;
  }
  .section__news .news__list li {
    font-size: 14px;
    padding: 12px 8px;
  }
  .section__news .news__list li:last-child {
    border-bottom: none;
  }
  .section__news .news__list li a {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .section__news .news__list li a::after {
    width: 12px;
    height: 12px;
    right: 16px;
    top: calc(50% - 2px);
  }
  .section__news .news__list li a div {
    line-height: 1.2;
  }
  .section__news .news__list li a div span {
    font-size: 14px;
    margin-right: 16px;
  }
  .section__news .news__list li a div span.title {
    font-size: 16px;
  }
  .section__news .news__list li a div:first-child {
    margin-bottom: 8px;
  }
  .section__news .news__list li a div:last-child {
    padding-right: 18px;
  }
  .section__news .news__list li.new a div:last-child span.title::before {
    width: 33px;
    height: 17px;
    font-size: 14px;
    margin-right: 16px;
  }
  .news__page .section__news .bg__title {
    top: 0;
    left: 2%;
    line-height: 1;
  }
}
.artist__wrapper {
  position: relative;
  background: #212121;
  min-height: 816px;
  height: auto;
  display: grid;
  grid-template-columns: 240px auto;
  align-items: center;
}
.artist__wrapper .bg__wrapper {
  position: relative;
  width: 240px;
  height: 100%;
  background: #feda00;
}
.artist__wrapper .bg__wrapper .bg__title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 240px;
  height: 100%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 800;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.5019607843);
  writing-mode: vertical-rl;
  line-height: 1;
}
.artist__wrapper .contents__heading {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  max-width: 1400px;
  margin: 0 auto 40px;
  z-index: 2;
  width: 75%;
}
.artist__wrapper .contents__heading h3 {
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.artist__wrapper .contents__heading h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  border: solid 3px #feda00;
  margin-right: 32px;
}
.artist__wrapper .contents__heading > a {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}
.artist__wrapper .contents__right {
  width: 100%;
  padding: min(124px, 7vw) 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.artist__wrapper .contents__right .artist__lists {
  width: 75%;
  margin: 0 auto;
  max-width: 1400px;
}
.artist__wrapper .contents__right .artist__lists ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.artist__wrapper .contents__right .artist__lists ul li {
  width: 20%;
  min-width: 200px;
  max-width: 256px;
  margin: 12px;
}
.artist__wrapper .contents__right .artist__lists ul li a {
  color: #ffffff;
}
.artist__wrapper .contents__right .artist__lists ul li a .artist__image {
  max-width: 256px;
  margin-bottom: 24px;
}
.artist__wrapper .contents__right .artist__lists ul li a .artist__image img {
  width: 100%;
  height: auto;
  min-width: 200px;
}
.artist__wrapper .contents__right .artist__lists ul li a .artist__name {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .artist__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .artist__wrapper .bg__wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }
  .artist__wrapper .bg__wrapper .bg__title {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    font-size: min(120px, 25vw);
    writing-mode: unset;
  }
  .artist__wrapper .contents__heading {
    width: 100%;
  }
  .artist__wrapper .contents__heading h3 {
    padding-top: 40px;
    font-size: 28px;
  }
  .artist__wrapper .contents__heading > a {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
  }
  .artist__wrapper .contents__right {
    width: 100%;
    padding: 40px 20px;
  }
  .artist__wrapper .contents__right .artist__lists {
    width: 100%;
  }
  .artist__wrapper .contents__right .artist__lists ul {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-evenly;
    row-gap: 10px;
    column-gap: 10px;
  }
  .artist__wrapper .contents__right .artist__lists ul li {
    width: 100%;
    max-width: 256px;
    min-width: auto;
    margin: 0;
  }
  .artist__wrapper .contents__right .artist__lists ul li a .artist__image {
    max-width: 256px;
    margin-bottom: 8px;
  }
  .artist__wrapper .contents__right .artist__lists ul li a .artist__image img {
    min-width: auto;
    width: 100%;
    height: auto;
  }
  .artist__wrapper .contents__right .artist__lists ul li a .artist__name {
    font-size: 14px;
  }
}
.section__company {
  width: 100%;
  margin: 0 auto;
  padding: 200px 1.2vw 80px;
  position: relative;
}
.section__company .bg__title {
  position: absolute;
  width: auto;
  height: 220px;
  right: 0;
  top: 0;
  font-weight: 800;
  font-size: min(220px, 20vw);
  line-height: 220px;
  color: #f2f2f2;
  text-align: right;
  z-index: 1;
}
.section__company .contents__heading {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  max-width: 1400px;
  margin: 0 auto 50px;
  z-index: 2;
  width: 75%;
}
.section__company .contents__heading h3 {
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.section__company .contents__heading h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  border: solid 3px #feda00;
  margin-right: 32px;
}
.section__company .contents__heading > a {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
.section__company .contents__subheading {
  color: #000000;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  text-align: left;
  max-width: 1400px;
  z-index: 2;
  position: relative;
  margin: 0 auto 48px;
  width: 75%;
}
.section__company .company__info {
  z-index: 2;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 75%;
}
.section__company .company__info .info__list {
  text-align: left;
  font-size: 15px;
  padding: 16px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section__company .company__info .info__list .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-align: left;
  color: #000000;
}
.section__company .company__info .info__list .title::after {
  content: "";
  margin-top: 12px;
  display: block;
  height: 2px;
  width: 160px;
  background-color: #feda00;
}
.section__company .company__info .info__list .info {
  width: calc(100% - 202px);
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}
.section__company .company__info .info__list .info::after {
  content: "";
  margin-top: 12px;
  display: block;
  height: 2px;
  min-width: 160px;
  width: 100%;
  background-color: #c6c6c8;
}
.section__company.is__acd {
  background-color: #212121;
  padding: 80px 1.2vw 200px;
}
.section__company.is__acd .bg__title {
  color: #000000 !important;
  right: auto;
  top: auto;
  bottom: 0;
  left: 0;
}
.section__company.is__acd .contents__heading h3,
.section__company.is__acd .company__info .info__list .title,
.section__company.is__acd .company__info .info__list .info {
  color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .section__company {
    padding: 70px min(20px, 3.2vw) 40px;
  }
  .section__company .bg__title {
    width: 100%;
    height: auto;
    right: 0;
    left: auto;
    top: -3%;
    font-size: min(120px, 25vw);
    line-height: 1.2;
    text-align: right;
  }
  .section__company .contents__heading {
    margin: 0 auto 40px;
    width: 100%;
  }
  .section__company .contents__heading h3 {
    padding-top: 40px;
    font-size: 28px;
  }
  .section__company .contents__subheading {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.15px;
    color: #000000;
    width: 100%;
  }
  .section__company .company__info {
    width: 100%;
  }
  .section__company .company__info .info__list {
    text-align: left;
    font-size: 15px;
    padding: 32px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .section__company .company__info .info__list .title {
    width: 30%;
    font-size: min(20px, 3.4vw);
    line-height: 1.2;
  }
  .section__company .company__info .info__list .title::after {
    width: 60%;
    margin-top: 6px;
  }
  .section__company .company__info .info__list .info {
    width: 70%;
    font-size: min(20px, 3.4vw);
    line-height: 1.2;
  }
  .section__company .company__info .info__list .info::after {
    margin-top: 6px;
  }
  .section__company.is__acd {
    padding: 70px min(20px, 3.2vw) 40px;
  }
  .section__company.is__acd .bg__title {
    width: 100%;
    height: auto;
    right: 0;
    left: auto;
    top: 0;
    font-size: min(120px, 25vw);
    line-height: 1.2;
    text-align: right;
  }
}
.section__contact {
  width: 100%;
  margin: 0 auto;
  padding: 280px 1.2vw 80px;
  position: relative;
  min-height: 660px;
  background: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.section__contact .bg__title {
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: min(220px, 19vw);
  line-height: 1.1;
  color: #ffffff;
  z-index: 1;
}
.section__contact .contact__wrapper {
  max-width: 1400px;
  width: 75%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.section__contact .contact__heading__wrapper {
  max-width: 600px;
  margin-right: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}
.section__contact .contact__heading {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  margin-bottom: 40px;
  max-width: 1400px;
  margin: 0 auto 0 0;
  z-index: 2;
}
.section__contact .contact__heading h3 {
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.section__contact .contact__heading h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  border: solid 3px #feda00;
  margin-right: 32px;
}
.section__contact .contact__heading > a {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
.section__contact .contact__link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}
.section__contact .contact__link > a {
  text-decoration-line: underline;
  color: #000000;
}
.section__contact .contact__btn {
  margin: 0;
  max-width: 320px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.section__contact .contact__btn > a {
  display: block;
}
.section__contact .official__link__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}
.section__contact .official__link__wrapper .official__link {
  padding: 1.2vw;
  font-size: 16px;
  width: 50%;
  height: 165px;
  border: #000000 1px solid;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: left;
  color: #000000;
}
.section__contact .official__link__wrapper .official__link:last-child {
  margin-left: 30px;
}
.section__contact .official__link__wrapper .official__link .icon__link {
  max-width: 28px;
  max-height: 28px;
}
.section__contact .official__link__wrapper .official__link .icon__link img {
  width: 28px;
  height: 28px;
}
.section__contact.is__acd .contact__wrapper {
  flex-direction: column;
  align-items: flex-start;
}
.section__contact.is__acd .contact__heading__wrapper {
  margin-right: 0;
  margin-bottom: 12px;
}
.section__contact.is__acd .bg__title {
  left: auto;
  right: 0;
  top: 0;
}

@media only screen and (max-width: 780px) {
  .section__contact {
    padding: 70px min(20px, 3.2vw) 40px;
    min-height: 45vh;
    align-items: flex-start;
  }
  .section__contact .bg__title {
    width: 100%;
    height: auto;
    right: auto;
    left: 0;
    top: 0;
    font-size: min(120px, 25vw);
    right: 0;
    text-align: left;
  }
  .section__contact .contact__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }
  .section__contact .contact__heading__wrapper {
    margin-right: 0;
    width: 100%;
    max-width: none;
  }
  .section__contact .contact__heading {
    margin: 0 auto 0 0;
  }
  .section__contact .contact__heading h3 {
    padding-top: 40px;
    font-size: 28px;
  }
  .section__contact .contact__link {
    font-size: 14px;
    letter-spacing: 0.15px;
    text-align: left;
  }
  .section__contact .contact__btn {
    margin: 40px auto;
    max-width: 260px;
    width: 100%;
  }
  .section__contact .official__link__wrapper {
    flex-direction: column;
    margin-top: 32px;
  }
  .section__contact .official__link__wrapper .official__link {
    width: 280px;
    height: 120px;
    font-size: 14px;
  }
  .section__contact .official__link__wrapper .official__link:last-child {
    margin-left: 0;
    margin-top: 24px;
  }
  .section__contact .official__link__wrapper .official__link .icon__link {
    max-width: 22px;
    max-height: 22px;
  }
  .section__contact .official__link__wrapper .official__link .icon__link img {
    width: 22px;
    height: 22px;
  }
  .section__contact.is__acd .bg__title {
    width: 100%;
    height: auto;
    right: auto;
    left: 0;
    top: 0;
    font-size: min(120px, 25vw);
    right: 0;
    text-align: left;
  }
}
#top {
  margin: 0 auto 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
#top .top__main__image {
  max-width: 1400px;
  max-height: 964px;
  width: 75%;
  height: auto;
  overflow: hidden;
  margin: 0 auto 40px;
  position: relative;
}
#top .top__main__image img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 780px) {
  #top {
    margin: 0 auto;
  }
  #top .top__main__image {
    margin: 0 auto 20px;
    max-width: 780px;
    max-height: none;
    width: 100%;
    height: auto;
  }
  #top .top__main__image img {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    transform: scale(1);
    object-fit: contain;
  }
}